mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
6a728491b6
This basically reverts 618268b4b9
18 lines
311 B
Ruby
18 lines
311 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "rails/command"
|
|
|
|
aliases = {
|
|
"g" => "generate",
|
|
"d" => "destroy",
|
|
"c" => "console",
|
|
"s" => "server",
|
|
"db" => "dbconsole",
|
|
"r" => "runner",
|
|
"t" => "test"
|
|
}
|
|
|
|
command = ARGV.shift
|
|
command = aliases[command] || command
|
|
|
|
Rails::Command.invoke command, ARGV
|