instance method
credentials
Ruby on Rails 6.1.7.10
Since v5.2.8.1Signature
credentials()
Decrypts the credentials hash as kept in config/credentials.yml.enc. This file is encrypted with the Rails master key, which is either taken from ENV["RAILS_MASTER_KEY"] or from loading config/master.key. If specific credentials file exists for current environment, it takes precedence, thus for production environment look first for config/credentials/production.yml.enc with master key taken from ENV["RAILS_MASTER_KEY"] or from loading config/credentials/production.key. Default behavior can be overwritten by setting config.credentials.content_path and config.credentials.key_path.
Source
# File railties/lib/rails/application.rb, line 450
def credentials
@credentials ||= encrypted(config.credentials.content_path, key_path: config.credentials.key_path)
end
Defined in railties/lib/rails/application.rb line 450
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in Rails::Application