diff options
author | Kasper Timm Hansen <kaspth@gmail.com> | 2017-05-23 21:48:05 +0200 |
---|---|---|
committer | Kasper Timm Hansen <kaspth@gmail.com> | 2017-05-23 21:48:05 +0200 |
commit | f50471751942730e3311f8c04ae4d97365ab3243 (patch) | |
tree | 36c0108c1332abc4545221623a658bad59b05648 /railties/lib/rails/commands | |
parent | 845aabbcd3805420090f8b92b50a4562577cf210 (diff) | |
download | rails-f50471751942730e3311f8c04ae4d97365ab3243.tar.gz rails-f50471751942730e3311f8c04ae4d97365ab3243.tar.bz2 rails-f50471751942730e3311f8c04ae4d97365ab3243.zip |
Remove needless waiting message.
Needed back when we attempted to wait for editors, but now we expect
users to pass a -w flag to their $EDITOR.
Diffstat (limited to 'railties/lib/rails/commands')
-rw-r--r-- | railties/lib/rails/commands/secrets/secrets_command.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/railties/lib/rails/commands/secrets/secrets_command.rb b/railties/lib/rails/commands/secrets/secrets_command.rb index 03a640bd65..76e13a6e49 100644 --- a/railties/lib/rails/commands/secrets/secrets_command.rb +++ b/railties/lib/rails/commands/secrets/secrets_command.rb @@ -34,7 +34,6 @@ module Rails require_application_and_environment! Rails::Secrets.read_for_editing do |tmp_path| - say "Waiting for secrets file to be saved. Abort with Ctrl-C." system("\$EDITOR #{tmp_path}") end |