Sha256: 668c2f6f492fc503e7c73fec60d0e93267ce65a7e4e1e402547f7387341fee0d

Contents?: true

Size: 409 Bytes

Versions: 6

Compression:

Stored size: 409 Bytes

Contents

$:.unshift(File.dirname(__FILE__) + '/../../lib')
require 'cucumber/rake/task'

Cucumber::Rake::Task.new do |t|
  t.cucumber_opts = %w{--format pretty}
end

desc "run cucumber with cucumber-1.9"
task "cucumber-1.9" do
  cd "features/"
  sh "cucumber-1.9 *.feature"
end

desc "run rspec"
task "spec" do
  sh "spec spec/*.rb"
end

desc "run rspec with spec-1.9"
task "spec-1.9" do
  sh "spec-1.9 spec/*.rb"
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ruby-station-0.1.6 tests/Rakefile
ruby-station-0.1.5 tests/Rakefile
ruby-station-0.1.4 tests/Rakefile
ruby-station-0.1.4.rc3 tests/Rakefile
ruby-station-0.1.4.rc2 tests/Rakefile
ruby-station-0.1.4.rc1 tests/Rakefile