Class: ROM::AutoRegistration

Inherits:
Object
  • Object
show all
Extended by:
Initializer
Defined in:
core/lib/rom/setup/auto_registration.rb

Overview

AutoRegistration is used to load component files automatically from the provided directory path

Constant Summary collapse

NamespaceType =
Types::Strict::Bool | Types::Strict::String
PathnameType =
Types.Constructor(Pathname, &Kernel.method(:Pathname))
DEFAULT_MAPPING =
{
  relations: :relations,
  mappers: :mappers,
  commands: :commands
}.freeze

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#component_dirsHash (readonly)

Returns component => dir-name map.

Returns:

  • (Hash)

    component => dir-name map



42
# File 'core/lib/rom/setup/auto_registration.rb', line 42

option :component_dirs, type: Types::Strict::Hash, default: -> { DEFAULT_MAPPING }

#directoryPathname (readonly)

Returns The root path.

Returns:

  • (Pathname)

    The root path



32
# File 'core/lib/rom/setup/auto_registration.rb', line 32

param :directory, type: PathnameType

#globsHash (readonly)

Returns File globbing functions for each component dir.

Returns:

  • (Hash)

    File globbing functions for each component dir



46
47
48
49
50
51
52
# File 'core/lib/rom/setup/auto_registration.rb', line 46

option :globs, default: lambda {
  Hash[
    component_dirs.map { |component, path|
      [component, directory.join("#{path}/**/*.rb")]
    }
  ]
}

#namespaceBoolean, String (readonly)

Returns The name of the top level namespace or true/false which enables/disables default top level namespace inferred from the dir name.

Returns:

  • (Boolean, String)

    The name of the top level namespace or true/false which enables/disables default top level namespace inferred from the dir name



38
# File 'core/lib/rom/setup/auto_registration.rb', line 38

option :namespace, type: NamespaceType, default: -> { true }

Instance Method Details

#commandsObject

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 command files



64
65
66
# File 'core/lib/rom/setup/auto_registration.rb', line 64

def commands
  load_entities(:commands)
end

#mappersObject

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 mapper files



71
72
73
# File 'core/lib/rom/setup/auto_registration.rb', line 71

def mappers
  load_entities(:mappers)
end

#relationsObject

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 relation files



57
58
59
# File 'core/lib/rom/setup/auto_registration.rb', line 57

def relations
  load_entities(:relations)
end