Flowdock
method

run_command!

Importance_0
v5.0.0.1 - Show latest stable - 0 notes - Class: CommandsTasks
run_command!(command) public

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 45
    def run_command!(command)
      command = parse_command(command)

      if COMMAND_WHITELIST.include?(command)
        send(command)
      else
        run_rake_task(command)
      end
    end
Register or log in to add new notes.