24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# File 'lib/modis/attributes.rb', line 24
def attribute(name, type = :string, options = {})
name = name.to_s
return if attributes.keys.include?(name)
raise UnsupportedAttributeType.new(type) unless TYPES.include?(type)
attributes[name] = options.update({ :type => type })
define_attribute_methods [name]
class_eval " def \#{name}\n attributes['\#{name}']\n end\n\n def \#{name}=(value)\n value = coerce_to_type('\#{name}', value)\n \#{name}_will_change! unless value == attributes['\#{name}']\n attributes['\#{name}'] = value\n end\n EOS\nend\n", __FILE__, __LINE__
|