blob: 9df34e9b79bb09bdce6c957d5276fa5b15eb5830 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# frozen_string_literal: true
module Rails
module Command
class HelpCommand < Base # :nodoc:
hide_command!
def help(*)
say self.class.desc
Rails::Command.print_commands
end
end
end
end
|