mustmodify / valuable

quick ruby modeling -- basically attr_accessor with default values, light-weight casting, and a constructor
http://valuable.mustmodify.com/
MIT License
72 stars 3 forks source link

replace 'Class' with actual class name in this error #13

Open mustmodify opened 9 years ago

mustmodify commented 9 years ago
class ConfirmationAide < Valuable
  has_value :confirmation, :klass => Confirmation
end

results in:

An exception occurred running at_exit handlers
    Class doesn't know how to format confirmation with :klass => "Confirmation" (ArgumentError)

but should be

ConfirmationAide doesn't know ...