Release Name: 0.1.8
Notes:
Doodle is a gem for simplifying the definition of Ruby classes by
making attributes and their properties more declarative. Doodle is
eco-friendly: it does not globally modify Object, Class or Module.
Changes:
== 0.1.8 / 2008-05-13
- Features:
- now applies instance level conversions (class level #from) to
attribute values, e.g.
class Name < String
include Doodle::Core
from String do |s|
Name.new(s)
end
end
|