Skip to content
This repository was archived by the owner on Nov 30, 2024. It is now read-only.

Commit 55af21c

Browse files
committed
Pin childprocess on older rubies
1 parent e264cda commit 55af21c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Gemfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ else
2121
gem 'rake', '>= 12.3.3'
2222
end
2323

24+
if RUBY_VERSION < '2.3.0'
25+
gem "childprocess", "< 3.0.0"
26+
else
27+
gem "childprocess", ">= 3.0.0"
28+
end
29+
2430
### dep for ci/coverage
2531
gem 'simplecov', '~> 0.8'
2632

0 commit comments

Comments
 (0)