Flowdock
method

parse_command

Importance_0
v4.2.1 - Show latest stable - 0 notes - Class: CommandsTasks
parse_command(command) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File railties/lib/rails/commands/commands_tasks.rb, line 158
      def parse_command(command)
        case command
        when '--version', '-v'
          'version'
        when '--help', '-h'
          'help'
        else
          command
        end
      end
Register or log in to add new notes.