Sha256: 2f245c850d5cbb7a0fad13d02a949cc18236fd566f8ecce624ab55a2c7a1bf45

Contents?: true

Size: 528 Bytes

Versions: 92

Compression:

Stored size: 528 Bytes

Contents

require 'bundler'
Bundler::GemHelper.install_tasks

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)

if RUBY_VERSION >= '1.9'
  namespace :cover_me do
    desc "Generates and opens code coverage report."
    task :report do
      require 'cover_me'
      CoverMe.complete!
    end
  end
  task :spec do
    Rake::Task['cover_me:report'].invoke
  end
else
  RSpec::Core::RakeTask.new(:rcov) do |spec|
    spec.rcov = true
    spec.rcov_opts = ['-Ilib -Ispec --exclude spec,gems']
  end
end

task :default => :spec

Version data entries

92 entries across 92 versions & 6 rubygems

Version Path
fb_graph-2.7.8 Rakefile
fb_graph-2.7.7 Rakefile
fb_graph-2.7.6 Rakefile
fb_graph-2.7.5 Rakefile
fb_graph-2.7.4 Rakefile
fb_graph-2.7.3 Rakefile
fb_graph-2.7.2 Rakefile
fb_graph-2.7.1 Rakefile
rack-oauth2-1.0.5 Rakefile
fb_graph-2.7.0 Rakefile
fb_graph-2.6.7 Rakefile
rack-oauth2-1.0.4 Rakefile
fb_graph-2.6.6 Rakefile
fb_graph-2.6.5 Rakefile
rack-oauth2-1.0.3 Rakefile
rack-oauth2-1.0.2 Rakefile
rack-oauth2-1.0.1 Rakefile
paypal-express-0.5.3 Rakefile
fb_graph-2.6.4 Rakefile
fb_graph-2.6.3 Rakefile