mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
f1f249d836
This class encapsulates a lot of logic that wasn't very object oriented. Helper methods have been created to try to make things more logical and easy to read.
17 lines
328 B
Ruby
17 lines
328 B
Ruby
ARGV << '--help' if ARGV.empty?
|
|
|
|
aliases = {
|
|
"g" => "generate",
|
|
"d" => "destroy",
|
|
"c" => "console",
|
|
"s" => "server",
|
|
"db" => "dbconsole",
|
|
"r" => "runner"
|
|
}
|
|
|
|
command = ARGV.shift
|
|
command = aliases[command] || command
|
|
|
|
require 'rails/commands/commands_tasks'
|
|
|
|
Rails::CommandsTasks.new(ARGV).run_command!(command)
|