rubyx/lib/support/hash_attributes.rb

26 lines
754 B
Ruby
Raw Normal View History

2014-05-03 21:18:04 +02:00
# Make hash attributes to object attributes
module Support
module HashAttributes
# map any function call to an attribute if possible
def method_missing name , *args , &block
if args.length > 1 or block_given?
puts "NO -#{args.length} BLOCK #{block_given?}"
super
else
name = name.to_s
if args.length == 1 #must be assignemnt for ir attr= val
if name.include? "="
2014-05-05 14:59:29 +02:00
#puts "setting :#{name.chop}:#{args[0]}"
return @attributes[name.chop.to_sym] = args[0]
2014-05-03 21:18:04 +02:00
else
super
end
else
2014-05-05 14:59:29 +02:00
#puts "getting :#{name}:#{@attributes[name.to_sym]}"
return @attributes[name.to_sym]
2014-05-03 21:18:04 +02:00
end
end
end
end
end