Skip to content
This repository has been archived by the owner on Nov 13, 2018. It is now read-only.

Commit

Permalink
Simpler Rakefile, dropping cucumber, using Bundler a bit more.
Browse files Browse the repository at this point in the history
  • Loading branch information
pat committed Jun 5, 2013
1 parent 34a270c commit 6294186
Showing 1 changed file with 6 additions and 13 deletions.
19 changes: 6 additions & 13 deletions Rakefile
@@ -1,17 +1,10 @@
#!/usr/bin/env rake
require "bundler/gem_tasks"
require 'appraisal'
require 'rspec/core/rake_task'
require 'cucumber'
require 'cucumber/rake/task'
require 'bundler/setup'

RSpec::Core::RakeTask.new(:spec) do |t|
t.rspec_opts = ["-c", "--format progress"]
end
Bundler::GemHelper.install_tasks

Cucumber::Rake::Task.new(:features) do |t|
end
require 'appraisal'
require 'rspec/core/rake_task'

task :all_tests => [:spec, :features]
RSpec::Core::RakeTask.new

task :default => :all_tests
task :default => :spec

0 comments on commit 6294186

Please sign in to comment.