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
paypal-express-0.5.1 Rakefile
fb_graph-2.4.20 Rakefile
rack-oauth2-0.14.9 Rakefile
json-jwt-0.1.8 Rakefile
json-jwt-0.1.7 Rakefile
rack-oauth2-0.14.8 Rakefile
rack-oauth2-0.14.7 Rakefile
rack-oauth2-0.14.6 Rakefile
rack-oauth2-0.14.5 Rakefile
json-jwt-0.1.6 Rakefile
json-jwt-0.1.5 Rakefile
json-jwt-0.1.4 Rakefile
json-jwt-0.1.3 Rakefile
json-jwt-0.1.2 Rakefile
json-jwt-0.1.1 Rakefile
fb_graph-2.4.19 Rakefile
fb_graph-2.4.18 Rakefile
openid_connect-0.3.1 Rakefile
openid_connect-0.3.0 Rakefile
json-jwt-0.1.0 Rakefile