aboutsummaryrefslogtreecommitdiffstats
path: root/spec/dummy/config/boot.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/dummy/config/boot.rb')
-rw-r--r--spec/dummy/config/boot.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/dummy/config/boot.rb b/spec/dummy/config/boot.rb
new file mode 100644
index 0000000..eba0681
--- /dev/null
+++ b/spec/dummy/config/boot.rb
@@ -0,0 +1,10 @@
+require 'rubygems'
+gemfile = File.expand_path('../../../../Gemfile', __FILE__)
+
+if File.exist?(gemfile)
+ ENV['BUNDLE_GEMFILE'] = gemfile
+ require 'bundler'
+ Bundler.setup
+end
+
+$:.unshift File.expand_path('../../../../lib', __FILE__) \ No newline at end of file