aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/commands/generate.rb
blob: c5e3ae352985f8a8c61c7d21339f644ef8a848c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
require 'rails/generators'
Rails::Generators.configure!

if ARGV.size == 0
  Rails::Generators.help
  exit
end

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