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 2
2
- 1.8.7
3
3
- 1.9.3
4
4
- 2.0.0
5
+ - 2.1.0
5
6
language : ruby
6
7
bundler_args : --without development integration openstack
7
8
env :
@@ -16,3 +17,11 @@ matrix:
16
17
env : PUPPET_VERSION="~> 2.7.0"
17
18
- rvm : 2.0.0
18
19
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 11
11
12
12
group :test do
13
13
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
14
19
gem 'rspec-puppet'
15
20
# avoid NoMethodError: private method `clone' called for #<RuboCop::Cop::CopStore:0x00000104e286c8>
16
21
gem 'puppetlabs_spec_helper' , :git => 'https://github.com/ehaselwanter/puppetlabs_spec_helper'
17
22
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'
19
24
end
20
25
21
26
group :development do
You can’t perform that action at this time.
0 commit comments