lib/backports/1.8.7/kernel/tap.rb



unless Kernel.method_defined? :tap
  module Kernel
    def tap
      yield self
      self
    end
  end
end