aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/commands/generate.rb
blob: 82a658e2ed2163b20d68f09bdaccc3c447941f01 (plain) (blame)
1
2
3
4
5
6
7
if ARGV.size == 0
  Rails::Generators.help
  exit
end

name = ARGV.shift
Rails::Generators.invoke name, ARGV, :behavior => :invoke