Rakefile in simplificator-withings-0.1.1 vs Rakefile in simplificator-withings-0.2.0

- old
+ new

@@ -1,47 +1,13 @@ require 'rubygems' require 'rake' -begin - require 'jeweler' - Jeweler::Tasks.new do |gem| - gem.name = "simplificator-withings" - gem.summary = %Q{API implementation for withings.com} - gem.description = %Q{A withings API implementation in ruby. Created for the evita project} - gem.email = "info@simplificator.com" - gem.homepage = "http://github.com/simplificator/simplificator-withings" - gem.authors = ["pascalbetz"] - gem.add_development_dependency 'shoulda' - gem.add_development_dependency 'mocha' - gem.add_dependency('httparty') - # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings - end - Jeweler::GemcutterTasks.new -rescue LoadError - puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler" -end - require 'rake/testtask' Rake::TestTask.new(:test) do |test| test.libs << 'lib' << 'test' - test.pattern = 'test/**/test_*.rb' + test.pattern = 'test/**/*_test.rb' test.verbose = true 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 -end - -task :test => :check_dependencies task :default => :test require 'rake/rdoctask' Rake::RDocTask.new do |rdoc|