Rakefile in resqutils-1.2.1 vs Rakefile in resqutils-1.3.0
- old
+ new
@@ -3,9 +3,20 @@
rescue LoadError
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end
require 'rubygems/package_task'
require 'rspec/core/rake_task'
+
+# Fix for NoMethodError: undefined method `last_comment'
+# Deprecated in Rake 12.x
+module FixForRakeLastComment
+ def last_comment
+ last_description
+ end
+end
+Rake::Application.send :include, FixForRakeLastComment
+### end of fix
+
RSpec::Core::RakeTask.new(:spec)
require 'rdoc/task'
include Rake::DSL