I have a object with id's and children, each child has a id.
Here is a example output, to my knowledge its a standard activeresource object.
RestApi::Mainbook::Eventpath 0x3fff8ec8a8e8
name: "MMA/Boxing"
id: 238
children: [
0:
name: "World"
id: 185424
children: [
0:
name: "Bellator"
id: 190490
children: [
]
sport_code: "BOXI"
market_types: [
]
open_market_count: 2
So far the best I can get is the top level using @obj.map(&:id), How do I get all the nested id's as well?