Sha256: eb8cb7b714ad3a82c393acad856180b2ff5aee6c37117709c4b963a5592d7e22

Contents?: true

Size: 341 Bytes

Versions: 14

Compression:

Stored size: 341 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

14 entries across 14 versions & 1 rubygems

Version Path
json-jwt-0.5.5 Rakefile
json-jwt-0.5.4 Rakefile
json-jwt-0.5.3 Rakefile
json-jwt-0.5.2 Rakefile
json-jwt-0.5.1 Rakefile
json-jwt-0.5.0 Rakefile
json-jwt-0.4.3 Rakefile
json-jwt-0.4.2 Rakefile
json-jwt-0.4.1 Rakefile
json-jwt-0.4.0 Rakefile
json-jwt-0.3.3 Rakefile
json-jwt-0.3.2 Rakefile
json-jwt-0.3.1 Rakefile
json-jwt-0.3.0 Rakefile