aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/commands/help/help_command.rb
diff options
context:
space:
mode:
Diffstat (limited to 'railties/lib/rails/commands/help/help_command.rb')
-rw-r--r--railties/lib/rails/commands/help/help_command.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/railties/lib/rails/commands/help/help_command.rb b/railties/lib/rails/commands/help/help_command.rb
index 90d37217fc..9df34e9b79 100644
--- a/railties/lib/rails/commands/help/help_command.rb
+++ b/railties/lib/rails/commands/help/help_command.rb
@@ -1,10 +1,12 @@
+# frozen_string_literal: true
+
module Rails
module Command
class HelpCommand < Base # :nodoc:
hide_command!
def help(*)
- puts self.class.desc
+ say self.class.desc
Rails::Command.print_commands
end