We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1f910d commit e1b4cb5Copy full SHA for e1b4cb5
Gemfile
@@ -24,7 +24,8 @@ group :development, :unit_tests do
24
gem 'rspec-puppet', '>= 2.3.2'
25
gem 'rspec-puppet-facts'
26
gem 'simplecov'
27
- gem 'parallel_tests'
+ gem 'parallel_tests', '< 2.10.0' if RUBY_VERSION < '2.0.0'
28
+ gem 'parallel_tests' if RUBY_VERSION >= '2.0.0'
29
gem 'rubocop', '0.41.2' if RUBY_VERSION < '2.0.0'
30
gem 'rubocop' if RUBY_VERSION >= '2.0.0'
31
gem 'rubocop-rspec', '~> 1.6' if RUBY_VERSION >= '2.3.0'
0 commit comments