aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/commands/help/help_command.rb
blob: 5bcc4c8eee72c8761128df6b71e23eee9bd03250 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
module Rails
  module Command
    class HelpCommand < Base
      hide_command!

      def help(*)
        puts self.class.desc

        Rails::Command.print_commands
      end
    end
  end
end