Class: Aruba::EventBus::NameResolver::SymbolResolver

Inherits:
Object
  • Object
show all
Includes:
ResolveHelpers
Defined in:
lib/aruba/event_bus/name_resolver.rb

Overview

Convert a symbol in to an event class

Class Method Summary collapse

Instance Method Summary collapse

Methods included from ResolveHelpers

#camel_case, #constantize

Class Method Details

.match?(event_id) ⇒ Boolean

Returns:

  • (Boolean)


112
113
114
# File 'lib/aruba/event_bus/name_resolver.rb', line 112

def match?(event_id)
  event_id.is_a? Symbol
end

.supportsObject

Which types are supported



117
118
119
# File 'lib/aruba/event_bus/name_resolver.rb', line 117

def supports
  [Symbol]
end

Instance Method Details

#transform(default_namespace, event_id) ⇒ Object



122
123
124
# File 'lib/aruba/event_bus/name_resolver.rb', line 122

def transform(default_namespace, event_id)
  constantize("#{default_namespace}::#{camel_case(event_id)}")
end