diff options
author | Wiehann <wradyn@gmail.com> | 2016-03-14 17:00:00 +0200 |
---|---|---|
committer | Wiehann <wradyn@gmail.com> | 2016-03-14 17:00:00 +0200 |
commit | 36ea7bcc702940c2392ddcd50084b5bbc369e51f (patch) | |
tree | 58e93a3d6e2962f9e745da97f1a9ca3f45bb1fe9 /guides/source | |
parent | 493297d13f7d010a896b6cb026c874f64d959ba5 (diff) | |
download | rails-36ea7bcc702940c2392ddcd50084b5bbc369e51f.tar.gz rails-36ea7bcc702940c2392ddcd50084b5bbc369e51f.tar.bz2 rails-36ea7bcc702940c2392ddcd50084b5bbc369e51f.zip |
Correct command for generating secret_key_base [ci skip]
Diffstat (limited to 'guides/source')
-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. |