Skip to content

Commit 2284097

Browse files
committed
Pin rake to compatible version for ruby 1.9.3
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
1 parent 65ed307 commit 2284097

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Gemfile

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ gem 'simplecov', :require => false
2424

2525
gem 'rspec', '~> 2.0', :require => false if RUBY_VERSION >= '1.8.7' && RUBY_VERSION < '1.9'
2626
gem 'rake', '~> 10.0', :require => false if RUBY_VERSION >= '1.8.7' && RUBY_VERSION < '1.9'
27+
gem 'rake', '<= 12.2.1', :require => false if RUBY_VERSION < '2.0.0'
2728
gem 'json', '<= 1.8', :require => false if RUBY_VERSION < '2.0.0'
2829
gem 'json_pure', '<= 2.0.1', :require => false if RUBY_VERSION < '2.0.0'
2930
gem 'metadata-json-lint', '0.0.11' if RUBY_VERSION >= '1.8.7' && RUBY_VERSION < '1.9'

0 commit comments

Comments
 (0)