summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2018-02-04 09:33:35 +0100
committerHans de Graaff <graaff@gentoo.org>2018-02-17 09:34:29 +0100
commit1cda4fce639d62d55e7e7ea98f0e1cb0fd2f4548 (patch)
treeabebfc2ad4ea463763fcc5bf60159f39d5316eea /dev-ruby/celluloid
parentdev-ruby/redcloth: remove unused patch (diff)
downloadgentoo-1cda4fce639d62d55e7e7ea98f0e1cb0fd2f4548.tar.gz
gentoo-1cda4fce639d62d55e7e7ea98f0e1cb0fd2f4548.tar.bz2
gentoo-1cda4fce639d62d55e7e7ea98f0e1cb0fd2f4548.zip
dev-ruby/celluluid: remove unused patch
Diffstat (limited to 'dev-ruby/celluloid')
-rw-r--r--dev-ruby/celluloid/files/celluloid-0.16.0-call-private-methods.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/dev-ruby/celluloid/files/celluloid-0.16.0-call-private-methods.patch b/dev-ruby/celluloid/files/celluloid-0.16.0-call-private-methods.patch
deleted file mode 100644
index f503a2334c84..000000000000
--- a/dev-ruby/celluloid/files/celluloid-0.16.0-call-private-methods.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-commit 092ce58aa8713f387ae3d0467b6d8029cf2765cd
-Author: Jonathan <chapmajs@gmail.com>
-Date: Sun Oct 19 22:05:26 2014 -0400
-
- Allowing calls to private_methods
-
-diff --git a/lib/celluloid/proxies/abstract_proxy.rb b/lib/celluloid/proxies/abstract_proxy.rb
-index 6a79acb..2db7a8e 100644
---- a/lib/celluloid/proxies/abstract_proxy.rb
-+++ b/lib/celluloid/proxies/abstract_proxy.rb
-@@ -5,7 +5,7 @@ module Celluloid
- def __class__; AbstractProxy; end
-
- # Needed for storing proxies in data structures
-- needed = [:object_id, :__id__, :hash] - instance_methods
-+ needed = [:object_id, :__id__, :hash, :private_methods] - instance_methods
- if needed.any?
- include ::Kernel.dup.module_eval {
- undef_method(*(instance_methods - needed))