我有一个看起来像这样的Ruby对象:
- !ruby/object:Foo
attributes:
updated: 2013-07-30 13:30:21.589221000 Z
bar: 3
- !ruby/object:Statistic
attributes:
updated: 2013-07-30 13:30:28.017951000 Z
bar: 8
- !ruby/object:Statistic
attributes:
updated: 2013-07-30 13:30:39.514180000 Z
bar: 1
该对象来自ActiveRecord查询。
我想得到这个对象中所有bar
的数组,即
[3, 8, 1]
在Ruby中有这种方式吗?