class Aruba::EventBus::NameResolver::StringResolver
Convert a string in to an event class
@private
def match?(event_id)
def match?(event_id) event_id.is_a? String end
def supports
def supports [String] end
def transform(_, event_id)
def transform(_, event_id) constantize(event_id) end