sergio-fry/youtube-fetcher

View on GitHub
app/utils/proxy_object.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
class ProxyObject
  def initialize(real_object)
    @real_object = real_object
  end

  def method_missing(name, *args)
    @real_object.send(name, *args)
  end
end