File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 22 - 1.8.7
33 - 1.9.3
44 - 2.0.0
5+ - 2.1.0
56language : ruby
67bundler_args : --without development integration openstack
78env :
@@ -16,3 +17,11 @@ matrix:
1617 env : PUPPET_VERSION="~> 2.7.0"
1718 - rvm : 2.0.0
1819 env : PUPPET_VERSION="~> 2.7.0"
20+ - rvm : 2.1.0
21+ env : PUPPET_VERSION="~> 2.7.0"
22+ - rvm : 1.8.7
23+ env : PUPPET_VERSION="~> 4.0.0"
24+ - rvm : 1.9.3
25+ env : PUPPET_VERSION="~> 4.0.0"
26+ - rvm : 2.0.0
27+ env : PUPPET_VERSION="~> 4.0.0"
Original file line number Diff line number Diff line change 1111
1212group :test do
1313 gem 'rake'
14+ # bugfix for ruby 1.8, puppet+rspec interplay
15+ # https://github.com/rspec/rspec-core/issues/1864
16+ if RUBY_VERSION . start_with? '1.8'
17+ gem 'rspec' , '~> 3.1.0' , :require => false
18+ end
1419 gem 'rspec-puppet'
1520 # avoid NoMethodError: private method `clone' called for #<RuboCop::Cop::CopStore:0x00000104e286c8>
1621 gem 'puppetlabs_spec_helper' , :git => 'https://github.com/ehaselwanter/puppetlabs_spec_helper'
1722 gem 'puppet-lint'
18- gem 'rubocop' , '~> 0.27 ' if RUBY_VERSION > '1.9.2'
23+ gem 'rubocop' , '~> 0.31 ' if RUBY_VERSION > '1.9.2'
1924end
2025
2126group :development do
You can’t perform that action at this time.
0 commit comments