Class: Aruba::EventBus::NameResolver::StringResolver

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

Overview

Convert a string 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)


79
80
81
# File 'lib/aruba/event_bus/name_resolver.rb', line 79

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

.supportsObject

Which types are supported



84
85
86
# File 'lib/aruba/event_bus/name_resolver.rb', line 84

def supports
  [String]
end

Instance Method Details

#transform(_, event_id) ⇒ Object



89
90
91
# File 'lib/aruba/event_bus/name_resolver.rb', line 89

def transform(_, event_id)
  constantize(event_id)
end