blob: 7627fcf5a00fd9b1470e9ecf0aa376a71d6ae0bb (
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/command'
require 'rails/commands/dev_cache'
Rails::Command.run(command, ARGV)
|