I manage to retrieve Facebook friendlist and display it by using Koala gem:
In controller:
@api = Koala::Facebook::API.new(access_token)
@friends = @api.get_connections("me", "friends")
In view:
<% @friends.each do |fb| %>
<%= fb['name'] %>
But how can I manipulate the returned friendlist, ie. identify if a friend is already a registered user of my app and sort them in top list?
Thank you.