mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
2dd2fcf896
This method return `Gem::Version.new(Rails.version)`, suggesting a more reliable way to perform version comparison. Example: Rails.version #=> "4.1.2" Rails.gem_version #=> #<Gem::Version "4.1.2"> Rails.version > "4.1.10" #=> false Rails.gem_version > Gem::Version.new("4.1.10") #=> true Gem::Requirement.new("~> 4.1.2") =~ Rails.gem_version #=> true This was originally introduced as `.version` by @charliesome in #8501 but got reverted in #10002 since it was not backward compatible. Also, updating template for `rake update_versions`.
87 lines
2.4 KiB
Ruby
87 lines
2.4 KiB
Ruby
require 'rails/ruby_version_check'
|
|
|
|
require 'pathname'
|
|
|
|
require 'active_support'
|
|
require 'active_support/dependencies/autoload'
|
|
require 'active_support/core_ext/kernel/reporting'
|
|
require 'active_support/core_ext/module/delegation'
|
|
require 'active_support/core_ext/array/extract_options'
|
|
|
|
require 'rails/application'
|
|
require 'rails/version'
|
|
|
|
require 'active_support/railtie'
|
|
require 'action_dispatch/railtie'
|
|
|
|
# For Ruby 1.9, UTF-8 is the default internal and external encoding.
|
|
silence_warnings do
|
|
Encoding.default_external = Encoding::UTF_8
|
|
Encoding.default_internal = Encoding::UTF_8
|
|
end
|
|
|
|
module Rails
|
|
extend ActiveSupport::Autoload
|
|
|
|
autoload :Info
|
|
autoload :InfoController
|
|
autoload :MailersController
|
|
autoload :WelcomeController
|
|
|
|
class << self
|
|
attr_accessor :application, :cache, :logger
|
|
|
|
delegate :initialize!, :initialized?, to: :application
|
|
|
|
# The Configuration instance used to configure the Rails environment
|
|
def configuration
|
|
application.config
|
|
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
|
|
|
|
# Returns all rails groups for loading based on:
|
|
#
|
|
# * The Rails environment;
|
|
# * The environment variable RAILS_GROUPS;
|
|
# * The optional envs given as argument and the hash with group dependencies;
|
|
#
|
|
# groups assets: [:development, :test]
|
|
#
|
|
# # Returns
|
|
# # => [:default, :development, :assets] for Rails.env == "development"
|
|
# # => [:default, :production] for Rails.env == "production"
|
|
def groups(*groups)
|
|
hash = groups.extract_options!
|
|
env = Rails.env
|
|
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!
|
|
groups.uniq!
|
|
groups
|
|
end
|
|
|
|
def public_path
|
|
application && Pathname.new(application.paths["public"].first)
|
|
end
|
|
end
|
|
end
|