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
openid_connect-0.2.4 Rakefile
openid_connect-0.2.3 Rakefile
openid_connect-0.2.2 Rakefile
openid_connect-0.2.1 Rakefile
fb_graph-2.4.17 Rakefile
fb_graph-2.4.16 Rakefile
paypal-express-0.5.0 Rakefile
fb_graph-2.4.15 Rakefile
fb_graph-2.4.14 Rakefile
fb_graph-2.4.13 Rakefile
fb_graph-2.4.12 Rakefile
paypal-express-0.4.7 Rakefile
paypal-express-0.5.0.alpha Rakefile
fb_graph-2.4.11 Rakefile
fb_graph-2.4.10 Rakefile
openid_connect-0.2.0 Rakefile
fb_graph-2.4.9 Rakefile
fb_graph-2.4.8 Rakefile
paypal-express-0.4.6 Rakefile
fb_graph-2.4.7 Rakefile