blob: eba068137040ef8ed142c71a48b0c14eb41d6575 (
plain)
| 1
2
3
4
5
6
7
8
9
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__)
 |