Rakefile in simple-navigation-2.2.3 vs Rakefile in simple-navigation-2.4.0

- old
+ new

@@ -36,14 +36,17 @@ gemspec.name = "simple-navigation" gemspec.summary = "Simple Navigation is a ruby library for creating navigations (with multiple levels) for your Ruby on Rails application." gemspec.email = "andreas.schacke@gmail.com" gemspec.homepage = "http://github.com/andi/simple-navigation" gemspec.description = "With the simple-navigation gem installed you can easily create multilevel navigations for your Ruby on Rails applications. The navigation is defined in a single configuration file. It supports automatic as well as explicit highlighting of the currently active navigation." + gemspec.add_dependency('rails', '>= 2.1.0') + gemspec.add_development_dependency('rspec', '>= 1.2.8') gemspec.authors = ["Andi Schacke"] gemspec.rdoc_options = ["--inline-source", "--charset=UTF-8"] gemspec.files = FileList["[A-Z]*", "{lib,spec,rails,generators}/**/*"] - FileList["**/*.log"] gemspec.rubyforge_project = 'andi' end + Jeweler::GemcutterTasks.new Jeweler::RubyforgeTasks.new do |rubyforge| rubyforge.doc_task = "rdoc" end rescue LoadError => e puts "Jeweler not available (#{e}). Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"