(maint) - modulesync 384f4c1 (#280)
This commit is contained in:
33
.gitignore
vendored
33
.gitignore
vendored
@@ -1,24 +1,23 @@
|
|||||||
#This file is generated by ModuleSync, do not edit.
|
#This file is generated by ModuleSync, do not edit.Z
|
||||||
pkg/
|
|
||||||
Gemfile.lock
|
|
||||||
Gemfile.local
|
|
||||||
vendor/
|
|
||||||
spec/fixtures/manifests/
|
|
||||||
spec/fixtures/modules/
|
|
||||||
log/
|
|
||||||
junit/
|
|
||||||
.vagrant/
|
|
||||||
.bundle/
|
|
||||||
coverage/
|
|
||||||
log/
|
|
||||||
.idea/
|
|
||||||
.metadata
|
|
||||||
*.iml
|
*.iml
|
||||||
.*.sw[op]
|
.*.sw[op]
|
||||||
|
.DS_Store
|
||||||
|
.bundle/
|
||||||
|
.idea/
|
||||||
|
.metadata
|
||||||
|
.vagrant/
|
||||||
.yardoc
|
.yardoc
|
||||||
.yardwarns
|
.yardwarns
|
||||||
.DS_Store
|
Gemfile.local
|
||||||
|
Gemfile.lock
|
||||||
|
bin/
|
||||||
|
coverage/
|
||||||
|
doc/
|
||||||
|
junit/
|
||||||
|
log/
|
||||||
|
pkg/
|
||||||
|
spec/fixtures/manifests/
|
||||||
|
spec/fixtures/modules/
|
||||||
tmp/
|
tmp/
|
||||||
vendor/
|
vendor/
|
||||||
doc/
|
|
||||||
|
|
||||||
|
|||||||
12
Gemfile
12
Gemfile
@@ -28,10 +28,19 @@ def location_for(place_or_version, fake_version = nil)
|
|||||||
end
|
end
|
||||||
|
|
||||||
# Used for gem conditionals
|
# Used for gem conditionals
|
||||||
supports_windows = false
|
|
||||||
ruby_version_segments = Gem::Version.new(RUBY_VERSION.dup).segments
|
ruby_version_segments = Gem::Version.new(RUBY_VERSION.dup).segments
|
||||||
minor_version = "#{ruby_version_segments[0]}.#{ruby_version_segments[1]}"
|
minor_version = "#{ruby_version_segments[0]}.#{ruby_version_segments[1]}"
|
||||||
|
|
||||||
|
# The following gems are not included by default as they require DevKit on Windows.
|
||||||
|
# You should probably include them in a Gemfile.local or a ~/.gemfile
|
||||||
|
#gem 'pry' #this may already be included in the gemfile
|
||||||
|
#gem 'pry-stack_explorer', :require => false
|
||||||
|
#if RUBY_VERSION =~ /^2/
|
||||||
|
# gem 'pry-byebug'
|
||||||
|
#else
|
||||||
|
# gem 'pry-debugger'
|
||||||
|
#end
|
||||||
|
|
||||||
group :development do
|
group :development do
|
||||||
gem "puppet-module-posix-default-r#{minor_version}", :require => false, :platforms => "ruby"
|
gem "puppet-module-posix-default-r#{minor_version}", :require => false, :platforms => "ruby"
|
||||||
gem "puppet-module-win-default-r#{minor_version}", :require => false, :platforms => ["mswin", "mingw", "x64_mingw"]
|
gem "puppet-module-win-default-r#{minor_version}", :require => false, :platforms => ["mswin", "mingw", "x64_mingw"]
|
||||||
@@ -62,7 +71,6 @@ gem 'puppet', *location_for(ENV['PUPPET_GEM_VERSION'])
|
|||||||
gem 'facter', *location_for(ENV['FACTER_GEM_VERSION']) if ENV['FACTER_GEM_VERSION']
|
gem 'facter', *location_for(ENV['FACTER_GEM_VERSION']) if ENV['FACTER_GEM_VERSION']
|
||||||
gem 'hiera', *location_for(ENV['HIERA_GEM_VERSION']) if ENV['HIERA_GEM_VERSION']
|
gem 'hiera', *location_for(ENV['HIERA_GEM_VERSION']) if ENV['HIERA_GEM_VERSION']
|
||||||
|
|
||||||
|
|
||||||
# Evaluate Gemfile.local if it exists
|
# Evaluate Gemfile.local if it exists
|
||||||
if File.exists? "#{__FILE__}.local"
|
if File.exists? "#{__FILE__}.local"
|
||||||
eval(File.read("#{__FILE__}.local"), binding)
|
eval(File.read("#{__FILE__}.local"), binding)
|
||||||
|
|||||||
Reference in New Issue
Block a user