aboutsummaryrefslogblamecommitdiffstats
path: root/railties/lib/rails/commands.rb
blob: fa47c52b96be7b17e90418246c7eeba03934c99e (plain) (tree)
1
2
3
4
5
6
7
8
9

                               

                     
                    

                    
                      
                   
                

 

                                     
 
                       
 
                                 
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'

Rails::Command.run(command, ARGV)