google-api-ruby-client/tasks/spec.rake

68 lines
1.5 KiB
Ruby
Raw Normal View History

require 'rake/clean'
require 'rspec/core/rake_task'
CLOBBER.include('coverage', 'specdoc')
namespace :spec do
2012-06-14 09:18:35 +00:00
RSpec::Core::RakeTask.new(:all) do |t|
end
desc 'Generate HTML Specdocs for all specs.'
RSpec::Core::RakeTask.new(:specdoc) do |t|
specdoc_path = File.expand_path('../../specdoc', __FILE__)
t.rspec_opts = %W( --format html --out #{File.join(specdoc_path, 'index.html')} )
t.fail_on_error = false
end
RSpec::Core::RakeTask.new(:rcov) do |t|
if RCOV_ENABLED
if `which rcov`.strip == ""
STDERR.puts(
2012-06-14 09:18:35 +00:00
"Please install rcov and ensure that its binary is in the PATH:"
)
STDERR.puts("sudo gem install rcov")
exit(1)
end
t.rcov = true
else
t.rcov = false
end
2012-06-14 09:18:35 +00:00
t.rcov_opts = %w(
--exclude lib/google/api_client/environment.rb,
lib/compat,
spec,
.rvm/gems,
1.8/gems,
1.9/gems,
.rvm,
/Library/Ruby
)
end
if RCOV_ENABLED
RCov::VerifyTask.new(:verify) do |t|
2012-05-11 10:41:40 +00:00
t.threshold = 65.0
t.index_html = 'coverage/index.html'
end
task :verify => :rcov
end
namespace :rcov do
desc 'Browse the code coverage report.'
task :browse => 'spec:rcov' do
require 'launchy'
Launchy::Browser.run('coverage/index.html')
end
end
end
if RCOV_ENABLED
desc 'Alias to spec:rcov'
task 'spec' => 'spec:rcov'
else
desc 'Alias to spec:all'
task 'spec' => 'spec:all'
end