From 94293e937f29fb9cb2b8ca1fa8eb835527f3b88f Mon Sep 17 00:00:00 2001 From: "Jeffrey S. Morgan" Date: Thu, 29 Sep 2011 06:44:20 -0400 Subject: [PATCH] removed rspec tasks since I have no specs --- Rakefile | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/Rakefile b/Rakefile index fcd8d80..2c494d9 100644 --- a/Rakefile +++ b/Rakefile @@ -3,11 +3,6 @@ require 'rspec/core/rake_task' require 'cucumber' require 'cucumber/rake/task' -RSpec::Core::RakeTask.new(:spec) do |spec| - spec.ruby_opts = "-I lib:spec" - spec.pattern = 'spec/**/*_spec.rb' -end -task :spec Cucumber::Rake::Task.new(:features, "Run features") do |t| t.profile = 'default' @@ -17,7 +12,4 @@ task :lib do $LOAD_PATH.unshift(File.expand_path("lib", File.dirname(__FILE__))) end -desc 'Run all specs and cukes' -task :test => ['spec', 'features'] - -task :default => :test +task :default => :features