summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authorPaula McMaw <paula@puppet.com>2016-10-25 14:56:57 +0100
committerPaula McMaw <paula@puppet.com>2016-10-25 14:56:57 +0100
commit3742bd6f464dde2c6d253d6ed3cbdbc6f671aec1 (patch)
tree9f1b183832629eab8ab172d614798d939c8c5227 /Gemfile
parentabb2c51ba4a9d99fc51ffe40290a76ab7da5bc48 (diff)
This is to pin ruby version to parallel_tests
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile
index 0a7542d..c8af871 100644
--- a/Gemfile
+++ b/Gemfile
@@ -26,7 +26,8 @@ group :development, :unit_tests do
gem 'mocha', '< 1.2.0'
gem 'rspec-puppet-facts'
gem 'simplecov'
- gem 'parallel_tests'
+ gem 'parallel_tests', '< 2.10.0' if RUBY_VERSION < '2.0.0'
+ gem 'parallel_tests' if RUBY_VERSION >= '2.0.0'
gem 'rubocop', '0.41.2' if RUBY_VERSION < '2.0.0'
gem 'rubocop' if RUBY_VERSION >= '2.0.0'
gem 'rubocop-rspec', '~> 1.6' if RUBY_VERSION >= '2.3.0'