Entries from 2011-05-08 to 1 day

DDD読んでて、ちょっと練習。 module Feature AAA = :AAA BBB = :BBB NOMAL = :NOMAL end class Container attr_accessor :drums, :features def initialize(&block) @drums = [] @features = [] instance_eval(&block) self end def safely_pack? @drums.ea…