Skip to content
Snippets Groups Projects
Commit d9ce3992 authored by DJ Mountney's avatar DJ Mountney
Browse files

Fix issue with missing return

parent 4da1a7b0
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,5 @@
# limitations under the License.
#
require 'chef/mixin/deprecation'
module Gitlab
# Inspired by DeprecatedInstanceVariable in https://github.com/chef/chef/blob/master/lib/chef/mixin/deprecation.rb
......@@ -20,9 +18,14 @@
module Gitlab
# Inspired by DeprecatedInstanceVariable in https://github.com/chef/chef/blob/master/lib/chef/mixin/deprecation.rb
class ObjectProxy < ::Chef::Mixin::Deprecation::DeprecatedObjectProxyBase
class ObjectProxyBase
KEEPERS ||= %w{__id__ __send__ instance_eval == equal? initialize object_id dup is_a? freeze}.freeze
instance_methods.each { |method_name| undef_method(method_name) unless KEEPERS.include?(method_name.to_s) }
end
class ObjectProxy < ObjectProxyBase
def initialize(target)
@target = target
end
def method_missing(method_name, *args, &block)
current_target = target
......@@ -23,10 +26,11 @@
def initialize(target)
@target = target
end
def method_missing(method_name, *args, &block)
current_target = target
current_target.send(method_name, *args, &block) if current_target.respond_to?(method_name, true)
return current_target.send(method_name, *args, &block) if current_target.respond_to?(method_name, true)
super
end
......@@ -34,10 +38,6 @@
target.send(:respond_to_missing?, method_name, include_private) || super
end
def dup
::Object.instance_method(:dup).bind(self).call
end
[:nil?, :inspect].each do |method_name|
define_method(method_name) do |*args, &block|
target.send(method_name, *args, &block)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment