Sha256: 638b57f643ce0d9af98fcfc6e6be86ee759645f390cbe6c0993c95f0511074d9
Contents?: true
Size: 322 Bytes
Versions: 21
Compression:
Stored size: 322 Bytes
Contents
require 'rspec/core' require 'rspec/core/rake_task' RSpec::Core::RakeTask.new('spec:quick') do |task| task.rspec_opts = '--tag ~@no_db_clean --tag ~@migration' end RSpec::Core::RakeTask.new('spec:slow') do |task| task.rspec_opts = '--tag @no_db_clean --tag @migration' end task :spec => ['spec:quick', 'spec:slow']
Version data entries
21 entries across 21 versions & 1 rubygems