Sha256: 20c95b0a75c525b8dfd564f23f5019770ea47854ff162ebab876f3a3c37ed3aa

Contents?: true

Size: 320 Bytes

Versions: 4

Compression:

Stored size: 320 Bytes

Contents

require 'rspec/core/rake_task'

desc 'Default: run specs and features'
task default: [:all]

desc 'Run specs and features'
RSpec::Core::RakeTask.new(:all) do |t|
  t.pattern = 'spec/{**/*_spec.rb,features/**/*.feature}'
end

desc 'Run specs'
RSpec::Core::RakeTask.new(:spec) do |t|
  t.pattern = 'spec/**/*_spec.rb'
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rabbit_feed-3.0.3 Rakefile
rabbit_feed-3.0.2 Rakefile
rabbit_feed-3.0.1 Rakefile
rabbit_feed-3.0.0 Rakefile