Remove explicit require of rspec to fix builds

Not sure why this works, or is even possible? But I can reproduce locally that
all non-1.8 builds fail when using a bundler cache unless this line is removed.

My guess is that, when using the --path option to bundler, all gems are being
implicitly required, and requiring rspec a second time is somehow causing issues,
but that doesn't make much sense to me.
This commit is contained in:
Marc Siegel 2014-06-15 14:43:20 -04:00
parent 3aef43ac32
commit 95f2995a56
1 changed files with 0 additions and 1 deletions

View File

@ -30,7 +30,6 @@ $LOAD_PATH.unshift lib_dir unless $LOAD_PATH.include? lib_dir
require 'docile'
require 'singleton'
require 'rspec'
RSpec.configure do |config|
config.expect_with :rspec do |c|