Hello,
first of all, big THANKS for keeping this gem up, it is extremely usefull for me in few projects.
Anyway, i noticed a small problem in my recent app. The situation is that i'm implementing a user following functionaluty where user can 'follow' (flag with :name => 'follow') other users. The problem is that in such situation, i'm not able to retrieve all the followers of certain user because when i'll use user.flaggings (which is the only solution for retrieving flags releated to user) i'm just able to get what this user has flagged.
I managed it by using the following method in User model but i think some solution need's to be added to the core source or something should be rewriten:
def followers
MakeFlaggable::Flagging.where('flaggable_id = ?', self.id)
end