diff options
author | Jon Moss <maclover7@users.noreply.github.com> | 2016-03-14 11:38:26 -0400 |
---|---|---|
committer | Jon Moss <maclover7@users.noreply.github.com> | 2016-03-14 11:38:26 -0400 |
commit | 4232f7ee427a510eb07e420f5883611bcb0abfae (patch) | |
tree | 2bf56aeb2f792d28500d51291d45f2cab63e74b6 /guides | |
parent | 043ce5c33e780bbf53a6fa3469173fbbb3f45a83 (diff) | |
parent | 36ea7bcc702940c2392ddcd50084b5bbc369e51f (diff) | |
download | rails-4232f7ee427a510eb07e420f5883611bcb0abfae.tar.gz rails-4232f7ee427a510eb07e420f5883611bcb0abfae.tar.bz2 rails-4232f7ee427a510eb07e420f5883611bcb0abfae.zip |
Merge pull request #24188 from wiehann/railsguide-fix
Correct command for generating secret_key_base [ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/upgrading_ruby_on_rails.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/upgrading_ruby_on_rails.md b/guides/source/upgrading_ruby_on_rails.md index d5576be6f2..0c1e00100b 100644 --- a/guides/source/upgrading_ruby_on_rails.md +++ b/guides/source/upgrading_ruby_on_rails.md @@ -417,7 +417,7 @@ secrets, you need to: 3. Remove the `secret_token.rb` initializer. -4. Use `rails secret` to generate new keys for the `development` and `test` sections. +4. Use `rake secret` to generate new keys for the `development` and `test` sections. 5. Restart your server. |