Sha256: 4b2055d2643f628d33c0cf857a32f22cc9e5219652c7a6d330b7b88a3715b87a

Contents?: true

Size: 379 Bytes

Versions: 8

Compression:

Stored size: 379 Bytes

Contents

require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
require 'rubocop/rake_task'

RuboCop::RakeTask.new

task :fast_first do
  Rake::Task['spec'].invoke('fast')
  Rake::Task['spec'].reenable
  Rake::Task['spec'].invoke('slow')
end

RSpec::Core::RakeTask.new(:spec, :tag) do |t, args|
  t.rspec_opts = ["--tag #{args[:tag]}"]
end

task default: :fast_first

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
rutl-0.8.0 Rakefile
rutl-0.6.0 Rakefile
rutl-0.5.0 Rakefile
rutl-0.4.0 Rakefile
rutl-0.3.0 Rakefile
rutl-0.2.1 Rakefile
rutl-0.2.0 Rakefile
rutl-0.1.4 Rakefile