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

      def help(*)
        puts self.class.desc

        Rails::Command.print_commands
      end
    end
  end
end