railties/lib/rails/commands/gem_help/gem_help_command.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Rails
  module Command
    class GemHelpCommand < Base # :nodoc:
      hide_command!

      def perform
        say self.class.class_usage
      end
    end
  end
end