Sha256: 14bf6f5f7237b68a746df3aef565028b57a1dacd9f00e0e80cdd640acb3e814d

Contents?: true

Size: 399 Bytes

Versions: 59

Compression:

Stored size: 399 Bytes

Contents

require 'bundler'
Bundler::GemHelper.install_tasks

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

namespace :coverage do
  desc "Open coverage report"
  task :report do
    require 'simplecov'
    `open "#{File.join SimpleCov.coverage_path, 'index.html'}"`
  end
end

task :spec do
  Rake::Task[:'coverage:report'].invoke unless ENV['TRAVIS_RUBY_VERSION']
end

task default: :spec

Version data entries

59 entries across 59 versions & 1 rubygems

Version Path
json-jwt-1.16.7 Rakefile
json-jwt-1.15.3.1 Rakefile
json-jwt-1.16.6 Rakefile
json-jwt-1.16.5 Rakefile
json-jwt-1.16.4 Rakefile
json-jwt-1.16.3 Rakefile
json-jwt-1.16.2 Rakefile
json-jwt-1.16.1 Rakefile
json-jwt-1.16.0 Rakefile
json-jwt-1.15.3 Rakefile
json-jwt-1.15.2 Rakefile
json-jwt-1.15.1 Rakefile
json-jwt-1.15.0 Rakefile
json-jwt-1.14.0 Rakefile
json-jwt-1.13.0 Rakefile
json-jwt-1.12.0 Rakefile
json-jwt-1.11.0 Rakefile
json-jwt-1.10.2 Rakefile
json-jwt-1.10.1 Rakefile
json-jwt-1.10.0 Rakefile