Skip to content

Commit

Permalink
For Ruby 1.9, specify rake version because 12.3.0 does not support 1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
estolfo committed Jan 17, 2018
1 parent 610e1fc commit da11d0e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ if RUBY_VERSION >= '2.3.0'
else
gem 'json', '~> 1.8'
end
gem 'rake'

if RUBY_VERSION < '2.0.0'
gem 'rake', '~> 12.2.0'
else
gem 'rake'
end

group :development, :test do
gem 'rspec', '~> 3.2'
Expand Down

0 comments on commit da11d0e

Please sign in to comment.