module Kernel

One nice thing about command-line tools is that nobody cares how much you monkey-patch :-)

Public Instance Methods

whisper(*msgs) click to toggle source
# File lib/monkey_patches.rb, line 5
def whisper(*msgs)
  unless $WHISPER
    puts *msgs
  end
end