Class: Miteru::Notifiers::Base
- Defined in:
- lib/miteru/notifiers/base.rb
Class Method Summary collapse
Instance Method Summary collapse
Methods inherited from Service
Class Method Details
Instance Method Details
#call(kit) ⇒ Object
6 7 8 |
# File 'lib/miteru/notifiers/base.rb', line 6 def call(kit) raise NotImplementedError end |
#callable? ⇒ Boolean
10 11 12 |
# File 'lib/miteru/notifiers/base.rb', line 10 def callable? raise NotImplementedError end |
#name ⇒ Object
14 15 16 |
# File 'lib/miteru/notifiers/base.rb', line 14 def name @name ||= self.class.to_s.split("::").last end |