rails--rails/railties/lib/rails.rb

134 lines
3.3 KiB
Ruby
Raw Normal View History

require 'rails/ruby_version_check'
require 'pathname'
require 'active_support'
require 'active_support/core_ext/kernel/reporting'
2011-07-10 11:35:06 +00:00
require 'active_support/core_ext/array/extract_options'
require 'rails/application'
require 'rails/version'
2012-01-17 16:53:09 +00:00
require 'rails/deprecation'
require 'active_support/railtie'
require 'action_dispatch/railtie'
# For Ruby 1.9, UTF-8 is the default internal and external encoding.
2011-12-20 16:58:45 +00:00
silence_warnings do
Encoding.default_external = Encoding::UTF_8
Encoding.default_internal = Encoding::UTF_8
end
module Rails
2010-03-20 19:03:43 +00:00
autoload :Info, 'rails/info'
autoload :InfoController, 'rails/info_controller'
class << self
def application
@application ||= nil
end
def application=(application)
@application = application
end
# The Configuration instance used to configure the Rails environment
def configuration
application.config
end
2012-04-27 04:38:08 +00:00
# Rails.queue is the application's queue. You can push a job onto
# the queue by:
#
# Rails.queue.push job
#
# A job is an object that responds to +run+. Queue consumers will
# pop jobs off of the queue and invoke the queue's +run+ method.
#
# Note that depending on your queue implementation, jobs may not
# be executed in the same process as they were created in, and
# are never executed in the same thread as they were created in.
#
# If necessary, a queue implementation may need to serialize your
# job for distribution to another process. The documentation of
# your queue will specify the requirements for that serialization.
def queue
application.queue
end
def initialize!
application.initialize!
end
def initialized?
application.initialized?
end
def logger
@logger ||= nil
end
def logger=(logger)
@logger = logger
end
def backtrace_cleaner
@backtrace_cleaner ||= begin
# Relies on Active Support, 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
@_env ||= ActiveSupport::StringInquirer.new(ENV["RAILS_ENV"] || ENV["RACK_ENV"] || "development")
end
def env=(environment)
@_env = ActiveSupport::StringInquirer.new(environment)
end
def cache
@cache ||= nil
2012-01-17 16:53:09 +00:00
end
def cache=(cache)
@cache = cache
end
# Returns all rails groups for loading based on:
#
# * The Rails environment;
# * The environment variable RAILS_GROUPS;
2011-07-10 11:35:06 +00:00
# * The optional envs given as argument and the hash with group dependencies;
#
2012-10-14 10:03:39 +00:00
# groups assets: [:development, :test]
#
# # Returns
# # => [:default, :development, :assets] for Rails.env == "development"
# # => [:default, :production] for Rails.env == "production"
2011-07-10 11:35:06 +00:00
def groups(*groups)
hash = groups.extract_options!
env = Rails.env
2011-07-10 11:35:06 +00:00
groups.unshift(:default, env)
groups.concat ENV["RAILS_GROUPS"].to_s.split(",")
groups.concat hash.map { |k,v| k if v.map(&:to_s).include?(env) }
groups.compact!
2011-07-10 11:35:06 +00:00
groups.uniq!
groups
end
def version
VERSION::STRING
end
def public_path
application && Pathname.new(application.paths["public"].first)
end
end
end