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

Commit ccf1d30

Browse files
committed
Pin rake on older Ruby
1 parent d11c743 commit ccf1d30

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Gemfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,10 @@ if RUBY_VERSION < '1.9.3'
1616
gem 'rake', '< 11.0.0' # rake 11 requires Ruby 1.9.3 or later
1717
elsif RUBY_VERSION < '2.0.0'
1818
gem 'rake', '< 12.0.0' # rake 12 requires Ruby 2.0.0 or later
19+
elsif RUBY_VERSION < '2.2.0'
20+
gem 'rake', '< 13.0.0' # rake 13 requires Ruby 2.2.0 or later
1921
else
20-
gem 'rake', '>= 12.3.3'
22+
gem 'rake', '>= 13.0.0'
2123
end
2224

2325
if ENV['DIFF_LCS_VERSION']

0 commit comments

Comments
 (0)