diff options
Diffstat (limited to 'lib/chef/monkey_patches/object.rb')
-rw-r--r-- | lib/chef/monkey_patches/object.rb | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/chef/monkey_patches/object.rb b/lib/chef/monkey_patches/object.rb deleted file mode 100644 index 017a4b7938..0000000000 --- a/lib/chef/monkey_patches/object.rb +++ /dev/null @@ -1,9 +0,0 @@ -class Object - unless new.respond_to?(:tap) - def tap - yield self - return self - end - end -end - |