aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/commands.rb
blob: b9c4e02ca0b837cecde838c4fc350a172078eb6b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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)