提交 a0e34619 编写于 作者: S Sean Griffin

Merge pull request #18170 from tgxworld/add_docs_for_rails_application_secrets

[ci skip]
...@@ -368,7 +368,21 @@ def config=(configuration) #:nodoc: ...@@ -368,7 +368,21 @@ def config=(configuration) #:nodoc:
@config = configuration @config = configuration
end end
def secrets #:nodoc: # Returns secrets added to config/secrets.yml.
#
# Example:
#
# development:
# secret_key_base: 836fa3665997a860728bcb9e9a1e704d427cfc920e79d847d79c8a9a907b9e965defa4154b2b86bdec6930adbe33f21364523a6f6ce363865724549fdfc08553
# test:
# secret_key_base: 5a37811464e7d378488b0f073e2193b093682e4e21f5d6f3ae0a4e1781e61a351fdc878a843424e81c73fb484a40d23f92c8dafac4870e74ede6e5e174423010
# production:
# secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
# namespace: my_app_production
#
# +Rails.application.secrets.namespace+ returns +my_app_production+ in the
# production environment.
def secrets
@secrets ||= begin @secrets ||= begin
secrets = ActiveSupport::OrderedOptions.new secrets = ActiveSupport::OrderedOptions.new
yaml = config.paths["config/secrets"].first yaml = config.paths["config/secrets"].first
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册