2010-06-10 22:07:59 +00:00
|
|
|
require 'rubygems'
|
2011-11-27 09:05:39 +00:00
|
|
|
|
|
|
|
# Need to explicitly use syck for yaml
|
|
|
|
require 'yaml'
|
|
|
|
YAML::ENGINE.yamler = 'syck'
|
|
|
|
|
2010-06-10 22:07:59 +00:00
|
|
|
# Set up gems listed in the Gemfile.
|
|
|
|
if File.exist?(File.expand_path('../../Gemfile', __FILE__))
|
2010-03-29 22:01:47 +00:00
|
|
|
require 'bundler'
|
|
|
|
Bundler.setup
|
|
|
|
end
|