Sha256: d50e86c0929def29d940bcb24118bc67a230d65d9294ac76f31c3d8be383cc75
Contents?: true
Size: 1.05 KB
Versions: 3
Compression:
Stored size: 1.05 KB
Contents
# The type of rating that can be assigned. This is an enumeration which # consists of a pre-determined set of possible rating values. Each value has # the following attributes: # * +name+ - The actual name to refer to the value as # * +value+ - The numeric value of the rating (higher is better) # # Values should normally be referred to by name. For example, # # RatingValue['poor'] # => #<RatingValue id: 1, name: "poor", value: 1> # RatingValue['excellent'] # => #<RatingValue id: 5, name: "excellent", value: 5> class RatingValue < ActiveRecord::Base enumerate_by :name has_many :ratings, :foreign_key => 'value_id' validates_presence_of :value # Returns the integer value of the rating def to_i value end # Represent the possible values for ratings bootstrap( {:id => 1, :name => 'poor', :value => 1}, {:id => 2, :name => 'below_average', :value => 2}, {:id => 3, :name => 'average', :value => 3}, {:id => 4, :name => 'above_average', :value => 4}, {:id => 5, :name => 'excellent', :value => 5} ) end
Version data entries
3 entries across 3 versions & 2 rubygems
Version | Path |
---|---|
pluginaweek-has_ratings-0.3.0 | app/models/rating_value.rb |
has_ratings-0.3.1 | app/models/rating_value.rb |
has_ratings-0.3.0 | app/models/rating_value.rb |