Class: ROM::AutoRegistrationStrategies::WithNamespace Private
- Defined in:
- core/lib/rom/setup/auto_registration_strategies/with_namespace.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.
WithNamespace strategy assumes components are defined within a namespace that matches top-level directory name.
Instance Attribute Summary collapse
-
#directory ⇒ Pathname
readonly
The path to dir with components.
Instance Method Summary collapse
-
#call ⇒ Object
private
Load components.
Instance Attribute Details
#directory ⇒ Pathname (readonly)
Returns The path to dir with components.
17 |
# File 'core/lib/rom/setup/auto_registration_strategies/with_namespace.rb', line 17 option :directory, type: PathnameType |
Instance Method Details
#call ⇒ 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.
Load components
22 23 24 25 26 |
# File 'core/lib/rom/setup/auto_registration_strategies/with_namespace.rb', line 22 def call Inflector.camelize( file.sub(%r{^#{directory.dirname}/}, '').sub(EXTENSION_REGEX, '') ) end |