mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
22 lines
424 B
Ruby
22 lines
424 B
Ruby
|
begin
|
||
|
require File.expand_path('../.bundle/environment', __FILE__)
|
||
|
rescue LoadError
|
||
|
begin
|
||
|
require 'rubygems'
|
||
|
require 'bundler'
|
||
|
Bundler.setup
|
||
|
rescue LoadError
|
||
|
%w(
|
||
|
actionmailer
|
||
|
actionpack
|
||
|
activemodel
|
||
|
activerecord
|
||
|
activeresource
|
||
|
activesupport
|
||
|
railties
|
||
|
).each do |framework|
|
||
|
$:.unshift File.expand_path("../#{framework}/lib", __FILE__)
|
||
|
end
|
||
|
end
|
||
|
end
|