Class: Hanami::CLI::Generators::App::Component Private
- Inherits:
-
Object
- Object
- Hanami::CLI::Generators::App::Component
- Defined in:
- lib/hanami/cli/generators/app/component.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Instance Method Summary collapse
- #call(app, key, slice) ⇒ Object private
-
#initialize(fs:, inflector:) ⇒ Component
constructor
private
A new instance of Component.
Constructor Details
#initialize(fs:, inflector:) ⇒ Component
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of Component.
15 16 17 18 |
# File 'lib/hanami/cli/generators/app/component.rb', line 15 def initialize(fs:, inflector:) @fs = fs @inflector = inflector end |
Instance Method Details
#call(app, key, slice) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
22 23 24 25 26 27 28 29 30 |
# File 'lib/hanami/cli/generators/app/component.rb', line 22 def call(app, key, slice) context = ComponentContext.new(inflector, app, slice, key) if slice generate_for_slice(context, slice) else generate_for_app(context) end end |