mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
13 lines
379 B
Ruby
13 lines
379 B
Ruby
require 'rails/generators'
|
|
|
|
#if no argument/-h/--help is passed to rails generate command, then
|
|
#it generates the help associated.
|
|
if [nil, "-h", "--help"].include?(ARGV.first)
|
|
Rails::Generators.help 'generate'
|
|
exit
|
|
end
|
|
|
|
name = ARGV.shift
|
|
|
|
root = defined?(ENGINE_ROOT) ? ENGINE_ROOT : Rails.root
|
|
Rails::Generators.invoke name, ARGV, behavior: :invoke, destination_root: root
|