1
0
Fork 0
mirror of https://github.com/ms-ati/docile synced 2023-03-27 23:21:52 -04:00

Merge pull request #3 from ms-tg/simplify-and-clarify-proxy-class

Simplify and clarify proxy class
This commit is contained in:
Marc Siegel 2013-07-25 08:09:55 -07:00
commit 2783ff283c

View file

@ -2,16 +2,15 @@ require 'set'
module Docile
class FallbackContextProxy
NON_PROXIED_METHODS = Set[:object_id, :__send__, :__id__, :==, :equal?, :"!", :"!=", :instance_exec,
:instance_variables, :instance_variable_get, :instance_variable_set,
NON_PROXIED_METHODS = Set[:__send__, :object_id, :__id__, :==, :equal?,
:"!", :"!=", :instance_exec, :instance_variables,
:instance_variable_get, :instance_variable_set,
:remove_instance_variable]
NON_PROXIED_INSTANCE_VARIABLES = Set[:@__receiver__, :@__fallback__]
instance_methods.each do |method|
unless NON_PROXIED_METHODS.include?(method.to_sym)
undef_method(method)
end
undef_method(method) unless NON_PROXIED_METHODS.include?(method.to_sym)
end
def initialize(receiver, fallback)
@ -19,22 +18,15 @@ module Docile
@__fallback__ = fallback
end
# Special case to allow proxy instance variables
def instance_variables
# Ruby 1.8.x returns string names, convert to symbols for compatibility
super.select { |v| !NON_PROXIED_INSTANCE_VARIABLES.include?(v.to_sym) }
end
def method_missing(method, *args, &block)
__proxy_method__(method, *args, &block)
end
def __proxy_method__(method, *args, &block)
begin
@__receiver__.__send__(method.to_sym, *args, &block)
rescue ::NoMethodError => e
@__fallback__.__send__(method.to_sym, *args, &block)
end
@__receiver__.__send__(method.to_sym, *args, &block)
rescue ::NoMethodError => e
@__fallback__.__send__(method.to_sym, *args, &block)
end
end
end