Rakefile in restful_query-0.2.0 vs Rakefile in restful_query-0.3.0
- old
+ new
@@ -1,18 +1,19 @@
-%w[rubygems rake rake/clean fileutils newgem rubigen].each { |f| require f }
+%w[rubygems rake rake/clean hoe fileutils newgem rubigen].each { |f| require f }
require File.dirname(__FILE__) + '/lib/restful_query'
# Generate all the Rake tasks
# Run 'rake -T' to see list of generated tasks (from gem root directory)
-$hoe = Hoe.new('restful_query', RestfulQuery::VERSION) do |p|
+$hoe = Hoe.spec('restful_query') do |p|
+ p.version = RestfulQuery::VERSION
p.developer('Aaron Quint', 'aaron@quirkey.com')
p.changes = p.paragraphs_of("History.txt", 0..1).join("\n\n")
p.rubyforge_name = 'quirkey'
- p.description = p.summary = 'Simple ActiveRecord queries from a RESTful and safe interface'
+ p.summary = 'Simple ActiveRecord and Sequel queries from a RESTful and safe interface'
+ p.description = %q{RestfulQuery provides a simple interface in front of a complex parser to parse specially formatted query hashes into complex SQL queries. It includes ActiveRecord and Sequel extensions.}
p.url = 'http://code.quirkey.com/restful_query'
p.extra_deps = [
['activesupport','>= 2.2.0'],
- ['activerecord','>= 2.2.0'],
['chronic','>= 0.2.3']
]
p.extra_dev_deps = [
['newgem', ">= #{::Newgem::VERSION}"],
['Shoulda', '>= 1.2.0']