Sha256: 88d5a84b711ddaa4a1ff30ff565e8d8d7f51552b3321af8e3bb6a5b6dd4bc1a7

Contents?: true

Size: 339 Bytes

Versions: 6

Compression:

Stored size: 339 Bytes

Contents

begin
  require 'rspec/core/rake_task'

  RSpec::Core::RakeTask.new(:spec, []) do |t|
    t.fail_on_error = false
    t.pattern = 'spec/**{,/*/**}/*.feature'
  end

  RSpec::Core::RakeTask.new(:rspec => :spec) do |t|
    t.pattern = 'rspec/**{,/*/**}/*_spec.rb'
  end

  task :default => :rspec
rescue LoadError
  # no rspec available
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
allure_turnip-0.4.0 Rakefile
allure_turnip-0.3.1 Rakefile
allure_turnip-0.3.0 Rakefile
allure_turnip-0.2.1 Rakefile
allure_turnip-0.2.0 Rakefile
allure_turnip-0.1.1 Rakefile