Class: Aruba::EventBus::NameResolver::SymbolResolver
- Inherits:
-
Object
- Object
- Aruba::EventBus::NameResolver::SymbolResolver
- Includes:
- ResolveHelpers
- Defined in:
- lib/aruba/event_bus/name_resolver.rb
Overview
Convert a symbol in to an event class
Class Method Summary collapse
- .match?(event_id) ⇒ Boolean
-
.supports ⇒ Object
Which types are supported.
Instance Method Summary collapse
Methods included from ResolveHelpers
Class Method Details
.match?(event_id) ⇒ Boolean
100 101 102 |
# File 'lib/aruba/event_bus/name_resolver.rb', line 100 def match?(event_id) event_id.is_a? Symbol end |
.supports ⇒ Object
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 |