Rakefile in biomart-0.1.5 vs Rakefile in biomart-0.2.0
- old
+ new
@@ -1,7 +1,10 @@
require "rubygems"
+
+gem "flog", "= 2.2.0"
gem "hoe", ">= 2.1.0"
+
require "hoe"
require "fileutils"
require "./lib/biomart"
Hoe.plugin :newgem
@@ -13,17 +16,17 @@
$hoe = Hoe.spec "biomart" do
self.developer "Darren Oakley", "daz.oakley@gmail.com"
self.rubyforge_name = self.name
self.url = "http://github.com/dazoakley/biomart"
self.summary = "A ruby API for interacting with Biomart services."
- self.description = "A ruby API for interacting with Biomart services."
+ self.description = "A ruby API for interacting with Biomart XML based webservices."
self.extra_deps = [["builder",">= 0"]]
- self.extra_dev_deps = [["thoughtbot-shoulda",">=0"]]
+ self.extra_dev_deps = [["shoulda",">= 2.10"]]
self.extra_rdoc_files = ["README.rdoc"]
end
require "newgem/tasks"
-Dir["tasks/*.task"].each { |t| load t }
+Dir["tasks/*.rake"].each { |t| load t }
# TODO - want other tests/tasks run by default? Add them to the list
# remove_task :default
# task :default => [:spec, :features]