From f6f71c98e4a4a889ddf90b1a2808299a7f4f88fe Mon Sep 17 00:00:00 2001 From: Liam Newman Date: Tue, 13 Dec 2016 15:53:55 -0800 Subject: [PATCH] Locked rake version to ~11.3.0 Rake 12.0 replace "last_comment" with "last_description". This describes the issue and possible fix: http://stackoverflow.com/questions/35893584/nomethoderror-undefined-method-last-comment-after-upgrading-to-rake-11 Rather than upgrade rspec to 3.5.x and risk changes to test behavior, I've locked rake to the last version before 12.0. --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 49579e3..9711f9b 100644 --- a/Gemfile +++ b/Gemfile @@ -4,7 +4,7 @@ gemspec group :development do gem 'jbundler', :platform => :jruby - gem 'rake' + gem 'rake', '~> 11.3.0' gem 'i18n', '~> 0.6.11', :platform => :mri_18 gem 'activesupport', '~> 3.x', :platform => :mri_18 gem 'ruby-maven', '~> 3.1.1.0', :platform => :jruby