mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
95a8f252c0
Signed-off-by: José Valim <jose.valim@gmail.com>
10 lines
260 B
Ruby
10 lines
260 B
Ruby
require 'rails/generators'
|
|
Rails::Generators.configure!
|
|
|
|
if [nil, "-h", "--help"].include?(ARGV.first)
|
|
Rails::Generators.help 'generate'
|
|
exit
|
|
end
|
|
|
|
name = ARGV.shift
|
|
Rails::Generators.invoke name, ARGV, :behavior => :invoke, :destination_root => Rails.root
|