Sha256: ca547b416c8445d73c8432c34520d7ff946b4a0aa448d160089235810a1d4971

Contents?: true

Size: 419 Bytes

Versions: 50

Compression:

Stored size: 419 Bytes

Contents

require 'bundler/gem_tasks'
require 'rake/testtask'
require 'rubocop/rake_task'

RuboCop::RakeTask.new

Rake::TestTask.new do |t|
  t.verbose = true
  t.warning = true
  t.pattern = File.join('test', '**', 'test_*.rb')
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, :rubocop]

Version data entries

50 entries across 50 versions & 5 rubygems

Version Path
fix-command-0.5.0 Rakefile
fix-command-0.4.0 Rakefile
fix-command-0.3.0 Rakefile
fix-command-0.2.0 Rakefile
fix-its-0.5.0 Rakefile
fix-command-0.1.3 Rakefile
fix-let-0.1.0 Rakefile
fix-0.17.0 Rakefile
spectus-3.0.5 Rakefile
spectus-3.0.4 Rakefile
fix-command-0.1.2 Rakefile
fix-its-0.4.0 Rakefile
fix-0.16.0 Rakefile
spectus-3.0.3 Rakefile
spectus-3.0.2 Rakefile
spectus-3.0.1 Rakefile
spectus-3.0.0 Rakefile
fix-0.15.2 Rakefile
fix-0.15.1 Rakefile
fix-its-0.3.3 Rakefile