- MODULE Rails::API
- MODULE Rails::Command
- MODULE Rails::Configuration
- MODULE Rails::ConsoleMethods
- MODULE Rails::Generators
- MODULE Rails::Info
- MODULE Rails::Initializable
- MODULE Rails::Paths
- MODULE Rails::Rack
- MODULE Rails::VERSION
- CLASS Rails::AppBuilder
- CLASS Rails::Application
- CLASS Rails::BacktraceCleaner
- CLASS Rails::Console
- CLASS Rails::DBConsole
- CLASS Rails::Engine
- CLASS Rails::PluginBuilder
- CLASS Rails::Railtie
- CLASS Rails::Secrets
- CLASS Rails::Server
- A
- B
- C
- E
- G
- P
- R
- V
[RW] | app_class | |
[W] | application | |
[RW] | cache | |
[RW] | logger |
The Configuration instance used to configure the Rails environment
Returns the current Rails environment.
Rails.env # => "development"
Rails.env.development? # => true
Rails.env.production? # => false
Sets the Rails environment.
Rails.env = "staging" # => "staging"
Returns the version of the currently loaded Rails as a
Gem::Version
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 ::env == “development” # => [:default, :production] for ::env == “production”
# File railties/lib/rails.rb, line 92 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
Returns a Pathname object of the public folder of the current Rails
project, otherwise it returns nil
if there is no project:
Rails.public_path
# => #<Pathname:/Users/someuser/some/path/project/public>
Returns a Pathname object of the current Rails project, otherwise it
returns nil
if there is no project:
Rails.root
# => #<Pathname:/Users/someuser/some/path/project>