I've got an array of hashes, like this:
[
   {"name"=>"Bob Jones", "id"=>"100005913544738"},
   {"name"=>"Jimmy Smith", "id"=>"100005934513815"},
   {"name"=>"Abe Lincoln", "id"=>"100005954493955"}
]
I ultimately just want those id's in an array, like this:
[ 100005913544738, 100005934513815, 100005954493955 ]
I'm running Ruby 1.9.3.
 
     
     
    