Skip to content

Commit 3817f31

Browse files
authored
Merge pull request #866 from puppetlabs/maint_modsync_384f4c1
(maint) - modulesync 384f4c1
2 parents c95ae34 + 49ea030 commit 3817f31

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

.travis.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,12 @@ matrix:
2828
- rvm: 2.1.9
2929
bundler_args: --without system_tests
3030
env: PUPPET_GEM_VERSION="~> 4.0"
31+
- rvm: 2.1.9
32+
bundler_args: --without system_tests
33+
env: PUPPET_GEM_VERSION="~> 4.6.0"
34+
- rvm: 2.1.9
35+
bundler_args: --without system_tests
36+
env: PUPPET_GEM_VERSION="~> 4.7.0"
3137
- rvm: 2.1.9
3238
script: bundle exec rake rubocop
3339
notifications:

Gemfile

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,19 @@ def location_for(place_or_version, fake_version = nil)
2828
end
2929

3030
# Used for gem conditionals
31-
supports_windows = false
3231
ruby_version_segments = Gem::Version.new(RUBY_VERSION.dup).segments
3332
minor_version = "#{ruby_version_segments[0]}.#{ruby_version_segments[1]}"
3433

34+
# The following gems are not included by default as they require DevKit on Windows.
35+
# You should probably include them in a Gemfile.local or a ~/.gemfile
36+
#gem 'pry' #this may already be included in the gemfile
37+
#gem 'pry-stack_explorer', :require => false
38+
#if RUBY_VERSION =~ /^2/
39+
# gem 'pry-byebug'
40+
#else
41+
# gem 'pry-debugger'
42+
#end
43+
3544
group :development do
3645
gem "puppet-module-posix-default-r#{minor_version}", :require => false, :platforms => "ruby"
3746
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'])
6271
gem 'facter', *location_for(ENV['FACTER_GEM_VERSION']) if ENV['FACTER_GEM_VERSION']
6372
gem 'hiera', *location_for(ENV['HIERA_GEM_VERSION']) if ENV['HIERA_GEM_VERSION']
6473

65-
6674
# Evaluate Gemfile.local if it exists
6775
if File.exists? "#{__FILE__}.local"
6876
eval(File.read("#{__FILE__}.local"), binding)

0 commit comments

Comments
 (0)