aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/commands/generate.rb
blob: f6db9659609b30028e1184eb2feb0c816d56f0cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
require "#{RAILS_ROOT}/config/environment"
require 'generators'

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

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