class Feedbook::Notifiers::NullNotifier

Public Instance Methods

load_configuration(_) click to toggle source

Load configuration for NullNotifier @param configuration = {} [Hash] Configuration hash

@return [NilClass] nil

# File lib/feedbook/notifiers/null_notifier.rb, line 20
def load_configuration(_)
  puts 'Configuration loaded for NullNotifier'
end
notify(message) click to toggle source

Sends notification to Nil @param message [String] message to be displayed in console

@return [NilClass] nil

# File lib/feedbook/notifiers/null_notifier.rb, line 12
def notify(message)
  puts "New message has been notified: #{message}"
end