Class: IRB::Notifier::NoMsgNotifier

Inherits:
LeveledNotifier show all
Defined in:
lib/irb/notifier.rb

Instance Attribute Summary

Attributes inherited from LeveledNotifier

#level

Attributes inherited from AbstractNotifier

#prefix

Instance Method Summary collapse

Methods inherited from LeveledNotifier

#<=>

Methods inherited from AbstractNotifier

#exec_if, #pp, #ppx, #print, #printf, #printn, #puts

Constructor Details

#initializeNoMsgNotifier

Returns a new instance of NoMsgNotifier.



131
132
133
134
135
# File 'lib/irb/notifier.rb', line 131

def initialize
	@base_notifier = nil
	@level = 0
	@prefix = ""
end

Instance Method Details

#notify?Boolean

Returns:

  • (Boolean)


137
138
139
# File 'lib/irb/notifier.rb', line 137

def notify?
	false
end