module Messaging::Category

Public Class Methods

included(cls) click to toggle source
# File lib/messaging/category.rb, line 3
def self.included(cls)
  cls.extend Macro
end
normalize(category) click to toggle source
# File lib/messaging/category.rb, line 7
def self.normalize(category)
  Casing::Camel.(category, symbol_to_string: true)
end