Class: Develoz::Generators::InstallGenerator
- Inherits:
-
Base
- Object
- Rails::Generators::Base
- Base
- Develoz::Generators::InstallGenerator
show all
- Defined in:
- lib/generators/develoz/install/install_generator.rb
Instance Method Summary
collapse
Methods inherited from Base
#add_gem, #app_class, #app_name, #append_env, #apply_template, #ensure_gitignore, #inject_once, #insert_route, #migration_exists?, next_migration_timestamp, source_root
Instance Method Details
#install ⇒ Object
20
21
22
23
24
25
|
# File 'lib/generators/develoz/install/install_generator.rb', line 20
def install
develoz_options = build_options
Develoz::Manifest.for(develoz_options).each do |entry|
invoke_generator(entry.name, develoz_options.to_h)
end
end
|