2015-06-22から1日間の記事一覧

Ruby の BasicObject を利用したい場面

Ruby の BasicObject を利用したい場面ですが、公式では Proxy パターンを例にだしています。 class Proxy < BasicObject def initialize target @target = target end def method_missing name, *args @target.__send__ name, *args end end proxy = Proxy.…