summaryrefslogtreecommitdiff
path: root/lib/chef/monkey_patches/object.rb
blob: 017a4b7938b14eda6271153482773e2919b60559 (plain)
1
2
3
4
5
6
7
8
9
class Object
  unless new.respond_to?(:tap)
    def tap
      yield self
      return self
    end
  end
end