From 07509377f66581215b7376c4fa15b3b2863d6d71 Mon Sep 17 00:00:00 2001 From: David Chelimsky Date: Fri, 9 Jul 2010 21:45:20 -0500 Subject: [PATCH] OK, OK - remove ALL cases of Bundler.setup and just call rake with 'bundle exec'. This seems to do the right thing all the way down to aruba. --- Rakefile | 3 --- features/support/env.rb | 3 --- spec/spec_helper.rb | 3 --- 3 files changed, 9 deletions(-) diff --git a/Rakefile b/Rakefile index de8af0bcc..3f148768e 100644 --- a/Rakefile +++ b/Rakefile @@ -1,6 +1,3 @@ -require "bundler" -Bundler.setup - require 'rake' require 'rspec/mocks/version' diff --git a/features/support/env.rb b/features/support/env.rb index e9e22602b..356db24d1 100644 --- a/features/support/env.rb +++ b/features/support/env.rb @@ -1,6 +1,3 @@ -require 'bundler' -Bundler.setup - require 'aruba' require 'rspec/expectations' diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 9b3ceb03c..5abfedd5d 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,6 +1,3 @@ -require 'bundler' -Bundler.setup - require 'rspec/core' require 'rspec/mocks' require 'rspec/expectations'