22 lines
No EOL
569 B
Ruby
22 lines
No EOL
569 B
Ruby
# Copyright (c) 2010-2011, Diaspora Inc. This file is
|
|
# licensed under the Affero General Public License version 3 or later. See
|
|
# the COPYRIGHT file.
|
|
|
|
if RUBY_VERSION.include?("1.9")
|
|
require 'yaml'
|
|
YAML::ENGINE.yamler= 'syck'
|
|
end
|
|
|
|
require 'rubygems'
|
|
|
|
# Set up gems listed in the Gemfile.
|
|
gemfile = File.expand_path('../../Gemfile', __FILE__)
|
|
begin
|
|
ENV['BUNDLE_GEMFILE'] = gemfile
|
|
require 'bundler'
|
|
Bundler.setup
|
|
rescue Bundler::GemNotFound => e
|
|
STDERR.puts e.message
|
|
STDERR.puts "Try running `bundle install`."
|
|
exit!
|
|
end if File.exist?(gemfile) |