Rakefile in wikipedia-client-1.0.0 vs Rakefile in wikipedia-client-1.1.0

- old
+ new

@@ -5,13 +5,13 @@ require 'jeweler' Jeweler::Tasks.new do |gem| gem.name = "wikipedia-client" gem.summary = %Q{Ruby client for the Wikipedia API} gem.description = %Q{Ruby client for the Wikipedia API} - gem.email = "christian.hellsten@gmail.com" - gem.homepage = "http://github.com/christianhellsten/wikipedia-client" - gem.authors = ["Cyril David", "Ken Pratt"] + gem.email = "mike.haugland@gmail.com" + gem.homepage = "http://github.com/mhaugland/wikipedia-client" + gem.authors = ["Cyril David", "Ken Pratt", "Mike Haugland"] gem.add_development_dependency "thoughtbot-shoulda", ">= 0" # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings end Jeweler::GemcutterTasks.new rescue LoadError @@ -26,12 +26,12 @@ end desc 'Test the wikipedia plugin.' task :spec do - spec_path = File.expand_path(File.dirname(__FILE__) + '/spec/**/*.rb') - system("spec -cfs #{spec_path}") + spec_path = File.expand_path(File.dirname(__FILE__) + '/spec/**/*.rb') + system("rspec -cfs #{spec_path}") end begin require 'rcov/rcovtask' Rcov::RcovTask.new do |test| @@ -47,10 +47,10 @@ task :spec => :check_dependencies task :default => :spec -require 'rake/rdoctask' +require 'rdoc/task' Rake::RDocTask.new do |rdoc| version = File.exist?('VERSION') ? File.read('VERSION') : "" rdoc.rdoc_dir = 'rdoc' rdoc.title = "wikipedia-client #{version}"