Class: Hanami::RSpec::Generators::Part Private
- Inherits:
-
Object
- Object
- Hanami::RSpec::Generators::Part
- Defined in:
- lib/hanami/rspec/generators/part.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, slice, name, context: Hanami::CLI::Generators::App::PartContext.new(inflector, app, slice, name)) ⇒ Object private
-
#initialize(fs:, inflector:) ⇒ Part
constructor
private
A new instance of Part.
Constructor Details
#initialize(fs:, inflector:) ⇒ Part
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 Part.
13 14 15 16 |
# File 'lib/hanami/rspec/generators/part.rb', line 13 def initialize(fs:, inflector:) @fs = fs @inflector = inflector end |
Instance Method Details
#call(app, slice, name, context: Hanami::CLI::Generators::App::PartContext.new(inflector, app, slice, name)) ⇒ 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.
20 21 22 23 24 25 26 |
# File 'lib/hanami/rspec/generators/part.rb', line 20 def call(app, slice, name, context: Hanami::CLI::Generators::App::PartContext.new(inflector, app, slice, name)) if slice generate_for_slice(slice, context) else generate_for_app(context) end end |