class Person < ActiveRecord::Base
attr_accessor :age
end
or
class Person < ActiveRecord::Base
def age
#calculate the age here
.....
end
end
When sending this objet to flex, I need that the the "age" value goes too.
.
2008/11/11 Mike <msumm...@gmail.com>: