Sha256: 4fef892c98597150221083e32b07cc514b14a0dc79a2cc00f53e264bc14a6ed9

Contents?: true

Size: 566 Bytes

Versions: 13

Compression:

Stored size: 566 Bytes

Contents

require "cucumber/rake/task"
require 'rspec/core/rake_task'
require 'coveralls/rake/task'
Coveralls::RakeTask.new

task :default => [:spec,:run, 'coveralls:push']

RSpec::Core::RakeTask .new(:spec) do |task|
  task.rspec_opts = ["--format documentation"]
end

RSpec::Core::RakeTask .new(:nyan) do |task|
  task.rspec_opts = ["--format NyanCatFormater"]
end

Cucumber::Rake::Task.new(:run) do |task|
  task.cucumber_opts = ["-t","~@pending","features --format pretty"]
end

Cucumber::Rake::Task.new(:wip) do |task|
  task.cucumber_opts = ["-t","@wip","features"]
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
cello-0.0.35 Rakefile
cello-0.0.34 Rakefile
cello-0.0.33 Rakefile
cello-0.0.32 Rakefile
cello-0.0.31 Rakefile
cello-0.0.30 Rakefile
cello-0.0.29 Rakefile
cello-0.0.28 Rakefile
cello-0.0.27 Rakefile
cello-0.0.26 Rakefile
cello-0.0.25 Rakefile
cello-0.0.23 Rakefile
cello-0.0.21 Rakefile