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)


100
101
102
# File 'lib/aruba/event_bus/name_resolver.rb', line 100

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

.supportsObject

Which types are supported



105
106
107
# File 'lib/aruba/event_bus/name_resolver.rb', line 105

def supports
  [Symbol]
end

Instance Method Details

#transform(default_namespace, event_id) ⇒ Object



110
111
112
# File 'lib/aruba/event_bus/name_resolver.rb', line 110

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