saasbook

topmovies.rb

Jul 11th, 2012
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.19 KB | None | 0 0
  1. class MoviegoersController < ApplicationController
  2.   def index
  3.     @movies = Movie.all
  4.     @top_5 = Movie.joins(:reviews).group('movie_id').
  5.       order("AVG(potatoes) DESC").limit(5)
  6.   end
  7. end
Add Comment
Please, Sign In to add comment