Class: Hanami::RSpec::Generators::Action Private
- Inherits:
-
Object
- Object
- Hanami::RSpec::Generators::Action
- Defined in:
- lib/hanami/rspec/generators/action.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(key:, namespace:, base_path:) ⇒ Object private
-
#initialize(fs:, inflector:) ⇒ Action
constructor
private
A new instance of Action.
Constructor Details
#initialize(fs:, inflector:) ⇒ Action
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 Action.
13 14 15 16 |
# File 'lib/hanami/rspec/generators/action.rb', line 13 def initialize(fs:, inflector:) @fs = fs @inflector = inflector end |
Instance Method Details
#call(key:, namespace:, base_path:) ⇒ 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/action.rb', line 20 def call(key:, namespace:, base_path:) ruby_class_file = action_ruby_class_file(key: key, namespace: namespace, base_path: base_path) spec_file_path = ruby_class_file.path.gsub(/\.rb$/, "_spec.rb") action_class_name = ruby_class_file.fully_qualified_name fs.write(spec_file_path, spec_content(action_class_name)) end |