I would recommend doing this with a named scope.
Your SQL query would be something like:
SELECT post_id, count(post_id) as count FROM "likes"
GROUP BY post_id ORDER BY count desc LIMIT 3
You could get this in your Like class with the following:
scope :popular, select("post_id, count(post_id) as count").group(:post_id).order("count desc").limit(3)
Then, when you want the most popular posts, you would do
@popular = Like.popular
@popular[0].post_id # this will be the id of the Post
@popular[0].count # this will be the count of likes for that Post
An advantage of this is that it will show the most popular posts over all time. If you wanted to limit the likes to those given within the last week, you would put the select statement above into a lambda {} and use a where("created_at < ?", DateTime.now - 1.week) before the select. You could even pass in an argument to control how far back to filter. More details see the ActiveRecord guide details on passing arguments