Rakefile in crags-1.6.0 vs Rakefile in crags-2.0.0

- old
+ new

@@ -1,6 +1,5 @@ -require 'rubygems' require 'rake' begin require 'jeweler' Jeweler::Tasks.new do |gem| @@ -8,46 +7,37 @@ gem.summary = %Q{A library to help search across multiple craigslist locations.} gem.description = %Q{A library to help search across multiple craigslist locations.} gem.email = "gotascii@gmail.com" gem.homepage = "http://github.com/gotascii/crags" gem.authors = ["Justin Marney"] + gem.add_dependency('curb') + gem.add_dependency('hpricot') end Jeweler::GemcutterTasks.new rescue LoadError puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler" end -require 'rake/testtask' -Rake::TestTask.new(:test) do |test| - test.libs << 'lib' << 'test' - test.pattern = 'test/**/*_test.rb' - test.verbose = true +require 'spec/rake/spectask' +Spec::Rake::SpecTask.new(:spec) do |spec| + spec.libs << 'lib' << 'spec' + spec.spec_files = FileList['spec/**/*_spec.rb'] end -begin - require 'rcov/rcovtask' - Rcov::RcovTask.new do |test| - test.libs << 'test' - test.pattern = 'test/**/*_test.rb' - test.verbose = true - end -rescue LoadError - task :rcov do - abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov" - end +Spec::Rake::SpecTask.new(:rcov) do |spec| + spec.libs << 'lib' << 'spec' + spec.pattern = 'spec/**/*_spec.rb' + spec.rcov = true + spec.rcov_opts = ['--exclude', 'spec,gems,crags.rb'] end -task :test => :check_dependencies +task :spec => :check_dependencies -task :default => :test +task :default => :spec require 'rake/rdoctask' Rake::RDocTask.new do |rdoc| - if File.exist?('VERSION') - version = File.read('VERSION') - else - version = "" - end + version = File.exist?('VERSION') ? File.read('VERSION') : "" rdoc.rdoc_dir = 'rdoc' rdoc.title = "crags #{version}" rdoc.rdoc_files.include('README*') rdoc.rdoc_files.include('lib/**/*.rb')