Class: Aruba::EventBus::NameResolver::StringResolver
- Inherits:
-
Object
- Object
- Aruba::EventBus::NameResolver::StringResolver
- Includes:
- ResolveHelpers
- Defined in:
- lib/aruba/event_bus/name_resolver.rb
Overview
Convert a string 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
79 80 81 |
# File 'lib/aruba/event_bus/name_resolver.rb', line 79 def match?(event_id) event_id.is_a? String end |
.supports ⇒ Object
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 |