Sha256: 0cc6ad80495fd738f498af541aa0334087879c8ed0baeb8f117623fbb9d20c1c

Contents?: true

Size: 342 Bytes

Versions: 13

Compression:

Stored size: 342 Bytes

Contents

require 'bundler'
Bundler::GemHelper.install_tasks

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

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

task default: :spec

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
openid_connect-0.7.2 Rakefile
openid_connect-0.7.1 Rakefile
openid_connect-0.7.0 Rakefile
openid_connect-0.6.1 Rakefile
openid_connect-0.6.0 Rakefile
openid_connect-0.5.1 Rakefile
openid_connect-0.5.0 Rakefile
openid_connect-0.4.1 Rakefile
openid_connect-0.4.0 Rakefile
openid_connect-0.3.7 Rakefile
openid_connect-0.3.6 Rakefile
openid_connect-0.3.5 Rakefile
openid_connect-0.3.4 Rakefile