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

      def help(*)
        puts self.class.desc

        Rails::Command.print_commands
      end
    end
  end
end