Lock rake to a version pre 11.0

Rake version 11.0 removed the `last_comment`
method which is used by `rspec 2.14.x` which we
use in this test app.
This commit is contained in:
jgrau 2017-03-28 22:44:19 +02:00
parent 4c64d521a3
commit 89458144be
No known key found for this signature in database
GPG Key ID: 701FB978EB0E2A61
3 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,6 @@
source 'https://rubygems.org'
gem 'rake', '>= 0.9'
gem 'rake', '>= 0.9', '< 11.0'
gem 'rdoc', '>= 2.4.2'
platforms :jruby do

View File

@ -1,6 +1,6 @@
source 'https://rubygems.org'
gem 'rake', '>= 0.9'
gem 'rake', '>= 0.9', '< 11.0'
gem 'rdoc', '>= 2.4.2'
platforms :jruby do

View File

@ -1,6 +1,7 @@
source 'https://rubygems.org'
gem 'rails', '~> 3.2'
gem 'rake', '< 11.0'
gem 'impressionist', :path => '../../'