RoadMovie

write down memos or something I found about tech things

2013-11-16から1日間の記事一覧

メタプログラミングRubyメモ

Object#extend module MyModule def my_method; 'hello'; end end を使いたいときに class MyClass class << self include MyModule …. end end ↓ class MyClass extend MyModule …. end これでもMyClassの特異メソッドとしてmy_methodを呼べる。 ( MyClass.…