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
112 113 114 |
# File 'lib/aruba/event_bus/name_resolver.rb', line 112 def match?(event_id) event_id.is_a? Symbol end |
.supports ⇒ Object
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 |