summaryrefslogtreecommitdiff
path: root/lib/chef/monkey_patches/object.rb
diff options
context:
space:
mode:
authorClaire McQuin <claire@getchef.com>2014-12-08 16:18:26 -0800
committerClaire McQuin <claire@getchef.com>2014-12-08 16:18:26 -0800
commit0c285f221e2139c98a7ad5ef0fa95005305df430 (patch)
tree2b3a33913265a672813966f0a2708793901a960f /lib/chef/monkey_patches/object.rb
parentac166598eb9a96b61e5a997b3a1c267579d174af (diff)
parentc6e5654a18f236dd75bb59472e80887c27310d99 (diff)
downloadchef-mcquin/audit_event_proxy_spec.tar.gz
Merge branch 'audit-mode' of github.com:opscode/chef into mcquin/audit_event_proxy_specmcquin/audit_event_proxy_spec
Diffstat (limited to 'lib/chef/monkey_patches/object.rb')
-rw-r--r--lib/chef/monkey_patches/object.rb9
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
-