diff options
author | Sean Griffin <sean@seantheprogrammer.com> | 2015-10-20 17:27:16 -0600 |
---|---|---|
committer | Sean Griffin <sean@seantheprogrammer.com> | 2015-10-20 17:27:16 -0600 |
commit | ed8bcd6934d0f31c3318df69e12df03a3c81a453 (patch) | |
tree | 9530927c65544f8908b5dbb546a35c7f3a5ecc4a | |
parent | 328ec26cbe6cf8e85daf9646e7307b71be8fa7e9 (diff) | |
parent | ff76465131ec27235ea1661a588c199bfc150456 (diff) | |
download | rails-ed8bcd6934d0f31c3318df69e12df03a3c81a453.tar.gz rails-ed8bcd6934d0f31c3318df69e12df03a3c81a453.tar.bz2 rails-ed8bcd6934d0f31c3318df69e12df03a3c81a453.zip |
Merge pull request #22008 from rails/revert-19898-common-secrets
Revert " Added an example to show how common secrets can be shared ac…
-rw-r--r-- | railties/lib/rails/generators/rails/app/templates/config/secrets.yml | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/railties/lib/rails/generators/rails/app/templates/config/secrets.yml b/railties/lib/rails/generators/rails/app/templates/config/secrets.yml index 433133db98..b2669a0f79 100644 --- a/railties/lib/rails/generators/rails/app/templates/config/secrets.yml +++ b/railties/lib/rails/generators/rails/app/templates/config/secrets.yml @@ -10,22 +10,6 @@ # Make sure the secrets in this file are kept private # if you're sharing your code publicly. -# You can also share common secrets in multiple environments -# using YAML anchor/reference syntax. - -# common: &common -# api_key: <%= API_KEY %> -# api_secret: <%= API_SECRET %> - -# development: -# <<: *common -# -# test: -# <<: *common -# -# production: -# <<: *common - development: secret_key_base: <%= app_secret %> |