Rakefile in rack-plastic-0.0.3 vs Rakefile in rack-plastic-0.1.0

- old
+ new

@@ -11,21 +11,23 @@ begin require 'jeweler' Jeweler::Tasks.new do |s| s.name = "rack-plastic" - s.version = "0.0.3" + s.version = "0.1.0" s.author = "Wyatt Greene" s.email = "techiferous@gmail.com" s.summary = "Helps you write Rack middleware using Nokogiri." s.description = %Q{ If you are creating Rack middleware that changes the HTML response, use - Plastic to get a head start. Plastic takes care of the + Rack::Plastic to get a head start. Rack::Plastic takes care of the boilerplate Rack glue so that you can focus on simply changing the HTML. } s.add_dependency('rack', '>= 1.0.0') s.add_dependency('nokogiri', '>= 1.4.0') + s.add_development_dependency('dirb') + s.add_development_dependency('colored') s.require_path = "lib" s.files = [] s.files << "README.rdoc" s.files << "LICENSE" s.files << "CHANGELOG" @@ -36,7 +38,7 @@ s.requirements << "none" s.has_rdoc = true end Jeweler::GemcutterTasks.new rescue LoadError - puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler" + puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler" end