Table A
id
dollar_amount
Table B
id
quantity_on_hand
Table C
id
version
My question is, I want to access attributes from table C like they are
in table A, such as:
@a = a.new
a.version
and NOT
a.c.version
Is my only option to use method_missing?
Anyone got any ideas?
--
Posted via http://www.ruby-forum.com/.