2009年11月12日木曜日

rubyによるincludeを用いたクラス拡張のイディオム

rubyでよく使うincludeを用いたクラス拡張のイディオムについてのメモというかサンプル。


サンプルはTextMateのbundleを参考にしました。


  1. module IncExt  
  2.   module ClassMethods  
  3.     def foo  
  4.       puts "foo"  
  5.     end  
  6.   end  
  7.     
  8.   module InstanceMethods  
  9.     def bar  
  10.       puts "bar"  
  11.     end  
  12.   end  
  13.     
  14.   def self.included(receiver)  
  15.     receiver.extend         ClassMethods  
  16.     receiver.send :include, InstanceMethods  
  17.   end  
  18. end  
  19.   
  20. class Buz  
  21.   include IncExt  
  22. end  
  23.   
  24. Buz.foo # => "foo"  
  25. Buz.new.bar # => "bar"