Rakefile in restful_query-0.3.6 vs Rakefile in restful_query-0.4.0
- old
+ new
@@ -5,26 +5,26 @@
require 'jeweler'
Jeweler::Tasks.new do |s|
s.name = %q{restful_query}
s.version = RestfulQuery::VERSION
s.authors = ["Aaron Quint"]
+ s.email = "aaron@quirkey.com"
+ s.homepage = "https://github.com/quirkey/restful_query"
+ s.license = "MIT"
s.summary = 'Simple ActiveRecord and Sequel queries from a RESTful and safe interface'
s.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.}
- s.rubyforge_project = %q{quirkey}
- s.add_runtime_dependency(%q<activesupport>, [">= 2.2.0"])
- s.add_runtime_dependency(%q<chronic>, [">= 0.2.3"])
- s.add_development_dependency(%q<Shoulda>, [">= 1.2.0"])
end
- Jeweler::GemcutterTasks.new
+ Jeweler::RubygemsDotOrgTasks.new
+
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
end
Rake::TestTask.new do |t|
t.libs << "test"
- t.test_files = FileList['test/test*.rb']
+ t.test_files = FileList["test/**/*_test.rb"]
t.verbose = true
end
Dir['tasks/**/*.rake'].each { |t| load t }
-task :default => :test
\ No newline at end of file
+task :default => :test