Skip to content

Instantly share code, notes, and snippets.

@rumblex
Created October 30, 2008 13:59
Show Gist options
  • Save rumblex/21007 to your computer and use it in GitHub Desktop.
Save rumblex/21007 to your computer and use it in GitHub Desktop.
>> e = Entry.find(:first, :conditions => {:name => 'MyConf'})
=> #<Entry id: 137, name: "MyConf", ....
>> e.ratings.average(:value)
=> 2.469
>> e.ratings.certified.average(:value)
=> 2.6507
>> e.rating(:as_float => true)
=> 2.6507
>> e.rating(:certified => true, :as_float => true)
=> 2.469
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment