module Kernel

Ruby 1.8.5 doesn’t have tap

Public Instance Methods

tap() { |self| ... } click to toggle source
# File lib/puppet/util/monkey_patches.rb, line 225
def tap
  yield(self)
  self
end