Skip to content
This repository has been archived by the owner on Jun 8, 2019. It is now read-only.

Commit

Permalink
Add RSpec to default task
Browse files Browse the repository at this point in the history
  • Loading branch information
gabebw committed Jul 26, 2011
1 parent 3dbdfd5 commit c36c62c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ require 'bundler'
Bundler::GemHelper.install_tasks

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

RSpec::Core::RakeTask.new(:spec)
Cucumber::Rake::Task.new(:cucumber)
task :default => [:cucumber]

desc "Run specs and cucumber features"
task :default => [:spec, :cucumber]

0 comments on commit c36c62c

Please sign in to comment.