mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Include bundled env in toplevel require, if present
This commit is contained in:
parent
df55781458
commit
9c52f96acb
2 changed files with 10 additions and 11 deletions
|
@ -21,17 +21,19 @@
|
|||
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
#++
|
||||
|
||||
activesupport_path = "#{File.dirname(__FILE__)}/../../activesupport/lib"
|
||||
$:.unshift(activesupport_path) if File.directory?(activesupport_path)
|
||||
require 'active_support'
|
||||
bundled = "#{File.dirname(__FILE__)}/../../vendor/gems/environment"
|
||||
if File.exist?("#{bundled}.rb")
|
||||
require bundled
|
||||
else
|
||||
activesupport_path = "#{File.dirname(__FILE__)}/../../activesupport/lib"
|
||||
$:.unshift(activesupport_path) if File.directory?(activesupport_path)
|
||||
|
||||
begin
|
||||
require 'active_model'
|
||||
rescue LoadError
|
||||
$:.unshift "#{File.dirname(__FILE__)}/../../activemodel/lib"
|
||||
require 'active_model'
|
||||
activemodel_path = "#{File.dirname(__FILE__)}/../../activemodel/lib"
|
||||
$:.unshift(activemodel_path) if File.directory?(activemodel_path)
|
||||
end
|
||||
|
||||
require 'active_support'
|
||||
require 'active_model'
|
||||
require 'arel'
|
||||
|
||||
module ActiveRecord
|
||||
|
|
|
@ -1,9 +1,6 @@
|
|||
$:.unshift(File.dirname(__FILE__) + '/../../lib')
|
||||
$:.unshift(File.dirname(__FILE__) + '/../../../activesupport/lib')
|
||||
|
||||
bundler = "#{File.dirname(__FILE__)}/../../vendor/gems/environment"
|
||||
require bundler if File.exist?("#{bundler}.rb")
|
||||
|
||||
require 'config'
|
||||
|
||||
require 'rubygems'
|
||||
|
|
Loading…
Reference in a new issue