instance method
credentials
Ruby on Rails 5.2.8.1
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.
Source
# File railties/lib/rails/application.rb, line 441
def credentials
@credentials ||= encrypted("config/credentials.yml.enc")
end
Defined in railties/lib/rails/application.rb line 441
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in Rails::Application