blob: d64b355aeca9a86e7a693794294dae46c6a98af8 (
plain) (
tree)
|
|
ARGV << "--help" if ARGV.empty?
aliases = {
"g" => "generate",
"d" => "destroy",
"c" => "console",
"s" => "server",
"db" => "dbconsole",
"r" => "runner",
"t" => "test"
}
command = ARGV.shift
command = aliases[command] || command
require "rails/commands/commands_tasks"
Rails::CommandsTasks.new(ARGV).run_command!(command)
|