I’m using the act_as_followers gem and one of the methods returns an
array of all the users that are following a specific user, example:
followers = user.all_following
What would be the clean way of extracting just the followers.id and
placing the results in an array?
Have a look through the documentation for the Array class, map or
collect may well be useful.
Probably working through a ruby book would also be a good idea, have a
look at the Pickaxe book. You cannot use rails without a good
knowledge of Ruby.