method
run_command!
v4.2.9 -
Show latest stable
- Class:
Rails::CommandsTasks
run_command!(command)public
No documentation available.
# File railties/lib/rails/commands/commands_tasks.rb, line 36
def run_command!(command)
command = parse_command(command)
if COMMAND_WHITELIST.include?(command)
send(command)
else
write_error_message(command)
end
end