2010-06-11 14:02:47 -04:00
|
|
|
require 'rails/ruby_version_check'
|
|
|
|
|
2010-01-17 06:41:55 -05:00
|
|
|
require 'pathname'
|
2009-12-31 15:28:48 -05:00
|
|
|
|
|
|
|
require 'active_support'
|
|
|
|
require 'active_support/core_ext/kernel/reporting'
|
2011-07-10 07:35:06 -04:00
|
|
|
require 'active_support/core_ext/array/extract_options'
|
2009-12-31 15:28:48 -05:00
|
|
|
|
2010-01-21 17:14:20 -05:00
|
|
|
require 'rails/application'
|
2009-12-31 15:28:48 -05:00
|
|
|
require 'rails/version'
|
2012-01-17 11:53:09 -05:00
|
|
|
require 'rails/deprecation'
|
2009-12-31 15:28:48 -05:00
|
|
|
|
2010-01-24 19:06:12 -05:00
|
|
|
require 'active_support/railtie'
|
2010-01-17 06:41:55 -05:00
|
|
|
require 'action_dispatch/railtie'
|
|
|
|
|
2009-12-31 15:28:48 -05:00
|
|
|
# For Ruby 1.9, UTF-8 is the default internal and external encoding.
|
2011-12-20 11:58:45 -05:00
|
|
|
silence_warnings do
|
|
|
|
Encoding.default_external = Encoding::UTF_8
|
|
|
|
Encoding.default_internal = Encoding::UTF_8
|
2009-12-31 15:28:48 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
module Rails
|
2010-03-20 15:03:43 -04:00
|
|
|
autoload :Info, 'rails/info'
|
|
|
|
autoload :InfoController, 'rails/info_controller'
|
|
|
|
|
2009-12-31 15:28:48 -05:00
|
|
|
class << self
|
|
|
|
def application
|
2012-04-06 00:59:57 -04:00
|
|
|
@application ||= nil
|
2009-12-31 15:28:48 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def application=(application)
|
2012-04-06 00:59:57 -04:00
|
|
|
@application = application
|
2009-12-31 15:28:48 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
# The Configuration instance used to configure the Rails environment
|
|
|
|
def configuration
|
2010-01-12 06:52:09 -05:00
|
|
|
application.config
|
2009-12-31 15:28:48 -05:00
|
|
|
end
|
|
|
|
|
2012-04-27 00:38:08 -04: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
|
|
|
|
|
2009-12-31 15:28:48 -05:00
|
|
|
def initialize!
|
|
|
|
application.initialize!
|
|
|
|
end
|
|
|
|
|
|
|
|
def initialized?
|
2011-08-15 04:11:11 -04:00
|
|
|
application.initialized?
|
2009-12-31 15:28:48 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def logger
|
2012-04-06 00:59:57 -04:00
|
|
|
@logger ||= nil
|
2010-01-12 06:52:09 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def logger=(logger)
|
2012-04-06 00:59:57 -04:00
|
|
|
@logger = logger
|
2009-12-31 15:28:48 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def backtrace_cleaner
|
2012-04-06 00:59:57 -04:00
|
|
|
@backtrace_cleaner ||= begin
|
2010-06-14 17:21:53 -04:00
|
|
|
# Relies on Active Support, so we have to lazy load to postpone definition until AS has been loaded
|
2009-12-31 15:28:48 -05:00
|
|
|
require 'rails/backtrace_cleaner'
|
|
|
|
Rails::BacktraceCleaner.new
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def root
|
|
|
|
application && application.config.root
|
|
|
|
end
|
|
|
|
|
|
|
|
def env
|
2010-01-11 17:01:28 -05:00
|
|
|
@_env ||= ActiveSupport::StringInquirer.new(ENV["RAILS_ENV"] || ENV["RACK_ENV"] || "development")
|
2009-12-31 15:28:48 -05:00
|
|
|
end
|
|
|
|
|
2010-04-08 01:52:35 -04:00
|
|
|
def env=(environment)
|
|
|
|
@_env = ActiveSupport::StringInquirer.new(environment)
|
|
|
|
end
|
|
|
|
|
2009-12-31 15:28:48 -05:00
|
|
|
def cache
|
2012-04-06 00:59:57 -04:00
|
|
|
@cache ||= nil
|
2012-01-17 11:53:09 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def cache=(cache)
|
2012-04-06 00:59:57 -04:00
|
|
|
@cache = cache
|
2009-12-31 15:28:48 -05:00
|
|
|
end
|
|
|
|
|
2011-06-21 07:02:47 -04:00
|
|
|
# Returns all rails groups for loading based on:
|
|
|
|
#
|
|
|
|
# * The Rails environment;
|
|
|
|
# * The environment variable RAILS_GROUPS;
|
2011-07-10 07:35:06 -04:00
|
|
|
# * The optional envs given as argument and the hash with group dependencies;
|
2011-06-21 07:02:47 -04:00
|
|
|
#
|
|
|
|
# groups :assets => [:development, :test]
|
|
|
|
#
|
|
|
|
# # Returns
|
|
|
|
# # => [:default, :development, :assets] for Rails.env == "development"
|
|
|
|
# # => [:default, :production] for Rails.env == "production"
|
2011-07-10 07:35:06 -04:00
|
|
|
def groups(*groups)
|
|
|
|
hash = groups.extract_options!
|
2011-06-21 07:02:47 -04:00
|
|
|
env = Rails.env
|
2011-07-10 07:35:06 -04:00
|
|
|
groups.unshift(:default, env)
|
2011-06-21 07:02:47 -04:00
|
|
|
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 07:35:06 -04:00
|
|
|
groups.uniq!
|
2011-06-21 07:02:47 -04:00
|
|
|
groups
|
|
|
|
end
|
|
|
|
|
2009-12-31 15:28:48 -05:00
|
|
|
def version
|
|
|
|
VERSION::STRING
|
|
|
|
end
|
|
|
|
|
|
|
|
def public_path
|
2010-10-06 11:18:59 -04:00
|
|
|
application && application.paths["public"].first
|
2009-12-31 15:28:48 -05:00
|
|
|
end
|
2009-12-22 20:03:23 -05:00
|
|
|
end
|
2009-12-31 15:28:48 -05:00
|
|
|
end
|