エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
Extend modules instead of defining methods on a metaclass
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Extend modules instead of defining methods on a metaclass
In the entry Replace method_missing with dynamic method definitions I have the following example ... In the entry Replace method_missing with dynamic method definitions I have the following example code. class Decorator def initialize(subject) subject.public_methods(false).each do |meth| (class << self; self; end).class_eval do define_method meth do |*args| subject.send meth, *args end end end end end The context of the example can be summarized as, you want to delegate from the instance all the