Skip to content

Commit

Permalink
add features to rake (and for Travis)
Browse files Browse the repository at this point in the history
  • Loading branch information
e2 committed Oct 29, 2014
1 parent 6cec89f commit 32eca98
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Rakefile
Expand Up @@ -2,11 +2,17 @@ require "bundler/gem_tasks"

require "rspec/core/rake_task"
RSpec::Core::RakeTask.new(:spec)
task default: :spec
task default: [:spec, :features]

require "guard/rake_task"
Guard::RakeTask.new(:guard, "--plugin ronn")

require "cucumber/rake/task"

Cucumber::Rake::Task.new(:features) do |t|
t.cucumber_opts = "features --format pretty"
end

class Releaser
def initialize(options = {})
@project_name = options.delete(:project_name) do
Expand Down

0 comments on commit 32eca98

Please sign in to comment.