Skip to content

Commit

Permalink
Pin rake to compatible version for ruby 1.9.3
Browse files Browse the repository at this point in the history
Rake >12.2.1 throws the following error:

 rake-12.3.1 requires ruby version >= 2.0.0, which is incompatible with
 the current version, ruby 1.9.3p551
  • Loading branch information
waipeng committed Apr 9, 2018
1 parent 65ed307 commit 2284097
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ gem 'simplecov', :require => false

gem 'rspec', '~> 2.0', :require => false if RUBY_VERSION >= '1.8.7' && RUBY_VERSION < '1.9'
gem 'rake', '~> 10.0', :require => false if RUBY_VERSION >= '1.8.7' && RUBY_VERSION < '1.9'
gem 'rake', '<= 12.2.1', :require => false if RUBY_VERSION < '2.0.0'
gem 'json', '<= 1.8', :require => false if RUBY_VERSION < '2.0.0'
gem 'json_pure', '<= 2.0.1', :require => false if RUBY_VERSION < '2.0.0'
gem 'metadata-json-lint', '0.0.11' if RUBY_VERSION >= '1.8.7' && RUBY_VERSION < '1.9'
Expand Down

0 comments on commit 2284097

Please sign in to comment.