From 35e6f8027785142789037dadd3b061d137d0e890 Mon Sep 17 00:00:00 2001 From: Erik Michaels-Ober Date: Mon, 12 Mar 2012 18:45:30 -0500 Subject: [PATCH] Add spec directory to $LOAD_PATH --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 29aad4b..b0afa92 100644 --- a/Rakefile +++ b/Rakefile @@ -6,7 +6,7 @@ require 'rspec/core/rake_task' Bundler::GemHelper.install_tasks RSpec::Core::RakeTask.new do |task| - task.rspec_opts = "-r ./test_app/spec/spec_helper.rb" + task.rspec_opts = "-I ./test_app/spec" task.pattern = "./test_app/spec/**/*_spec.rb" end