In Files
- irb/notifier.rb
Class/Module Index
![show/hide quicksearch [+]](../../images/find.png)
- IRB::Abort
- IRB::Context
- IRB::ContextExtender
- IRB::ExtendCommandBundle
- IRB::FileInputMethod
- IRB::Frame
- IRB::InputMethod
- IRB::Inspector
- IRB::Irb
- IRB::IrbLoader
- IRB::JobManager
- IRB::LoadAbort
- IRB::MethodExtender
- IRB::Notifier
- IRB::Notifier::AbstractNotifier
- IRB::Notifier::CompositeNotifier
- IRB::Notifier::LeveledNotifier
- IRB::Notifier::NoMsgNotifier
- IRB::OutputMethod
- IRB::ReadlineInputMethod
- IRB::StdioInputMethod
- IRB::StdioOutputMethod
- IRB::WorkSpace
- Object
- XMP
- XMP::StringInputMethod
IRB::Notifier::AbstractNotifier
An abstract class, or superclass, for CompositeNotifier and LeveledNotifier to inherit. It provides several wrapper methods for the OutputMethod object used by the Notifier.
Attributes
The prefix for this Notifier,
which is appended to all objects being inspected during output.
Public Class Methods
Creates a new Notifier object
# File irb/notifier.rb, line 43
def initialize(prefix, base_notifier)
@prefix = prefix
@base_notifier = base_notifier
end
Public Instance Methods
Execute the given block if notifications are enabled.
# File irb/notifier.rb, line 101
def exec_if
yield(@base_notifier) if notify?
end
A wrapper method used to determine whether notifications are enabled.
Defaults to true.
# File irb/notifier.rb, line 55
def notify?
true
end
Same as ppx, except it uses the prefix given during object initialization. See IRB::OutputMethod#ppx for more detail.
# File irb/notifier.rb, line 84
def pp(*objs)
if notify?
@base_notifier.ppx @prefix, *objs
end
end
Same as pp, except it
concatenates the given prefix with the prefix given during
object initialization.
See IRB::OutputMethod#ppx for more detail.
# File irb/notifier.rb, line 94
def ppx(prefix, *objs)
if notify?
@base_notifier.ppx @prefix+prefix, *objs
end
end
See IRB::OutputMethod#print for more detail.
# File irb/notifier.rb, line 60
def print(*opts)
@base_notifier.print prefix, *opts if notify?
end
See IRB::OutputMethod#printf for more detail.
# File irb/notifier.rb, line 70
def printf(format, *opts)
@base_notifier.printf(prefix + format, *opts) if notify?
end
See IRB::OutputMethod#printn for more detail.
# File irb/notifier.rb, line 65
def printn(*opts)
@base_notifier.printn prefix, *opts if notify?
end
See IRB::OutputMethod#puts for more detail.
# File irb/notifier.rb, line 75
def puts(*objs)
if notify?
@base_notifier.puts(*objs.collect{|obj| prefix + obj.to_s})
end
end