Class: Feedbook::Notifiers::NullNotifier
- Inherits:
-
Object
- Object
- Feedbook::Notifiers::NullNotifier
- Includes:
- Singleton
- Defined in:
- lib/feedbook/notifiers/null_notifier.rb
Instance Method Summary collapse
-
#load_configuration(_) ⇒ NilClass
Load configuration for NullNotifier.
-
#notify(message) ⇒ NilClass
Sends notification to Nil.
Instance Method Details
#load_configuration(_) ⇒ NilClass
Load configuration for NullNotifier
20 21 22 |
# File 'lib/feedbook/notifiers/null_notifier.rb', line 20 def load_configuration(_) puts 'Configuration loaded for NullNotifier' end |
#notify(message) ⇒ NilClass
Sends notification to Nil
12 13 14 |
# File 'lib/feedbook/notifiers/null_notifier.rb', line 12 def notify() puts "New message has been notified: #{}" end |