Sha256: 9359427673cc1f6fdd1e2e6f461b0485929e7b7158a0a64d4ed2c7838060a16b

Contents?: true

Size: 463 Bytes

Versions: 26

Compression:

Stored size: 463 Bytes

Contents

require 'bundler'
Bundler::GemHelper.install_tasks

require 'rspec/core/rake_task'
require 'cucumber'
require 'cucumber/rake/task'

desc "Run all specs in spec/"
RSpec::Core::RakeTask.new(:spec) do |t|
  t.fail_on_error = true
  t.pattern = "./spec/**/*_spec.rb"
  t.rspec_opts = %w[--color]
end


desc "Run all cukes in features/"
Cucumber::Rake::Task.new(:features) do |t|
  t.cucumber_opts = "features --format pretty"
end

task :default => [:spec, :features]

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
license_finder-1.0.0.0 Rakefile
license_finder-1.0.0.0-java Rakefile
license_finder-0.9.5.1-java Rakefile
license_finder-0.9.5.1 Rakefile
license_finder-0.9.5 Rakefile
license_finder-0.9.5-java Rakefile
license_finder-0.9.4-java Rakefile
license_finder-0.9.4 Rakefile
license_finder-0.9.3-java Rakefile
license_finder-0.9.3 Rakefile
license_finder-0.9.2-java Rakefile
license_finder-0.9.2 Rakefile
license_finder-0.9.1-java Rakefile
license_finder-0.9.1 Rakefile
license_finder-0.9.0-java Rakefile
license_finder-0.9.0 Rakefile
license_finder-0.8.2-java Rakefile
license_finder-0.8.2 Rakefile
license_finder-0.8.1-java Rakefile
license_finder-0.8.1 Rakefile