Rakefile in autotest-notification-2.3.1 vs Rakefile in autotest-notification-2.3.2

- old
+ new

@@ -1,7 +1,7 @@ require 'rubygems' -gem 'hoe', '>= 2.1.0' +gem 'hoe', '>= 2.8.0' require 'hoe' require 'fileutils' require './lib/autotest_notification.rb' Hoe.plugin :newgem @@ -12,11 +12,10 @@ # Run 'rake -T' to see list of generated tasks (from gem root directory) $hoe = Hoe.spec 'autotest-notification.rb' do self.developer 'Carlos Brando', 'eduardobrando@gmail.com' self.post_install_message = 'PostInstall.txt' # TODO remove if post-install message not required self.rubyforge_name = self.name # TODO this is default value - self.extra_deps = [['autotest','~> 4.3']] - + self.extra_deps = [['autotest-standalone','~> 4.5']] end require 'newgem/tasks' Dir['tasks/**/*.rake'].each { |t| load t }