Sha256: 8be6a4f49a38bf21232a3f20a2a87ce20d97126c1eaca48b704070f1fb2f1b70

Contents?: true

Size: 403 Bytes

Versions: 34

Compression:

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

34 entries across 34 versions & 4 rubygems

Version Path
apple_id-forestv8_compatibility-1.5.3 Rakefile
apple_id-1.6.4 Rakefile
apple_id-1.6.3 Rakefile
apple_id-1.6.2 Rakefile
apple_id-1.6.1 Rakefile
apple_id-1.6.0 Rakefile
apple_id-1.5.2 Rakefile
apple_id-1.5.1 Rakefile
apple_id-1.5.0 Rakefile
apple_id-1.4.3 Rakefile
apple_id-1.4.2 Rakefile
apple_id-1.4.1 Rakefile
apple_id-1.4.0 Rakefile
apple_id-1.3.0 Rakefile
twitter_oauth2-0.5.1 Rakefile
twitter_oauth2-0.5.0 Rakefile
twitter_oauth2-0.4.0 Rakefile
twitter_oauth2-0.3.0 Rakefile
twitter_oauth2-0.2.0 Rakefile
twitter_oauth2-0.1.0 Rakefile