Rakefile in newgem-1.5.2 vs Rakefile in newgem-1.5.3

- old
+ new

@@ -1,20 +1,22 @@ +require 'rubygems' gem 'hoe', '>= 2.3.0' require 'hoe' %w[fileutils rubigen].each { |f| require f } $:.unshift(File.dirname(__FILE__) + "/lib") Hoe.plugin :newgem +Hoe.plugin :git Hoe.plugin :website Hoe.plugin :cucumberfeatures # Generate all the Rake tasks # Run 'rake -T' to see list of generated tasks (from gem root directory) $hoe = Hoe.spec 'newgem' do developer 'Dr Nic Williams', 'drnicwilliams@gmail.com' self.post_install_message = 'PostInstall.txt' self.extra_deps = [ - ['activesupport','>= 2.0.2'], + ['activesupport','~> 2.3.4'], ['rubigen',">= #{RubiGen::VERSION}"], ['hoe', ">= #{Hoe::VERSION}"], ['RedCloth','>= 4.1.1'], # for website generation ['syntax','>= 1.0.0'] ]