Sha256: 462b28f1293f26ada2157af0afafc5d2d531f435710f9a6b7d83ad1379f94b76

Contents?: true

Size: 357 Bytes

Versions: 8

Compression:

Stored size: 357 Bytes

Contents

require 'bundler/gem_tasks'
require 'rake/testtask'

Rake::TestTask.new do |t|
  t.pattern = File.join 'spec', '**', '*_spec.rb'
  t.verbose = true
  t.warning = true
end

namespace :test do
  task :coverage do
    ENV['COVERAGE'] = 'true'
    Rake::Task['test'].invoke
  end
end

task(:doc_stats) { ruby '-S yard stats' }
task default: [:test, :doc_stats]

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
opushon-0.0.1 Rakefile
fix-0.6.1 Rakefile
fix-0.6.0 Rakefile
fix-0.5.0 Rakefile
fix-0.4.0 Rakefile
fix-0.3.0 Rakefile
fix-0.2.0 Rakefile
fix-0.1.0 Rakefile