Class: Pu::Saas::SetupGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- Pu::Saas::SetupGenerator
- Includes:
- PlutoniumGenerators::Generator
- Defined in:
- lib/generators/pu/saas/setup_generator.rb
Instance Method Summary collapse
Methods included from PlutoniumGenerators::Generator
Methods included from PlutoniumGenerators::Concerns::Logger
#debug, #error, #exception, #info, #success, #warn
Methods included from PlutoniumGenerators::Concerns::Config
Instance Method Details
#start ⇒ Object
42 43 44 45 46 47 48 |
# File 'lib/generators/pu/saas/setup_generator.rb', line 42 def start generate_user generate_entity unless [:skip_entity] generate_membership unless [:skip_membership] rescue => e exception "#{self.class} failed:", e end |