public
Description: Ruby on Rails
Homepage: http://rubyonrails.org
Clone URL: git://github.com/rails/rails.git
Search Repo:
jamis (author)
Wed Oct 19 06:47:45 -0700 2005
commit  b437eee41d38188f10f11e041b82d7def0a20629
tree    3680e419dab5287a3744791389f8a0cf09549295
parent  83dc37b91057cc96f35c0b55b6e79a76072b2ab5
rails / railties / environments / boot.rb
100644 17 lines (15 sloc) 0.438 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
unless defined?(RAILS_ROOT)
  root_path = File.join(File.dirname(__FILE__), '..')
  unless RUBY_PLATFORM =~ /mswin32/
    require 'pathname'
    root_path = Pathname.new(root_path).cleanpath.to_s
  end
  RAILS_ROOT = root_path
end
 
if File.directory?("#{RAILS_ROOT}/vendor/rails")
  require "#{RAILS_ROOT}/vendor/rails/railties/lib/initializer"
else
  require 'rubygems'
  require 'initializer'
end
 
Rails::Initializer.run(:set_load_path)