rails.rb 2.2 KB
Newer Older
1 2 3 4 5 6 7 8 9
require "pathname"

require 'active_support'
require 'active_support/core_ext/kernel/reporting'
require 'active_support/core_ext/logger'
require 'action_dispatch'

require 'rails/initializable'
require 'rails/application'
C
Carl Lerche 已提交
10
require 'rails/railtie'
11 12 13 14 15 16 17
require 'rails/plugin'
require 'rails/railties_path'
require 'rails/version'
require 'rails/rack'
require 'rails/paths'
require 'rails/configuration'
require 'rails/deprecation'
18
require 'rails/subscriber'
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
require 'rails/ruby_version_check'

# For Ruby 1.8, this initialization sets $KCODE to 'u' to enable the
# multibyte safe operations. Plugin authors supporting other encodings
# should override this behaviour and set the relevant +default_charset+
# on ActionController::Base.
#
# For Ruby 1.9, UTF-8 is the default internal and external encoding.
if RUBY_VERSION < '1.9'
  $KCODE='u'
else
  Encoding.default_external = Encoding::UTF_8
end

module Rails
34 35
  autoload :Bootstrap, 'rails/bootstrap'

36 37 38 39 40 41 42 43 44 45 46
  class << self
    def application
      @@application ||= nil
    end

    def application=(application)
      @@application = application
    end

    # The Configuration instance used to configure the Rails environment
    def configuration
47
      application.config
48 49 50 51 52 53 54
    end

    def initialize!
      application.initialize!
    end

    def initialized?
55
      @@initialized || false
56 57 58
    end

    def initialized=(initialized)
59
      @@initialized ||= initialized
60 61 62
    end

    def logger
63 64 65 66 67
      @@logger ||= nil
    end

    def logger=(logger)
      @@logger = logger
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
    end

    def backtrace_cleaner
      @@backtrace_cleaner ||= begin
        # Relies on ActiveSupport, so we have to lazy load to postpone definition until AS has been loaded
        require 'rails/backtrace_cleaner'
        Rails::BacktraceCleaner.new
      end
    end

    def root
      application && application.config.root
    end

    def env
83
      @_env ||= ActiveSupport::StringInquirer.new(ENV["RAILS_ENV"] || ENV["RACK_ENV"] || "development")
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
    end

    def cache
      RAILS_CACHE
    end

    def version
      VERSION::STRING
    end

    def public_path
      @@public_path ||= self.root ? File.join(self.root, "public") : "public"
    end

    def public_path=(path)
      @@public_path = path
    end
101
  end
102
end