Sha256: 0e664f2a25582aa44b64d07de54641d9836358c5537ff2d631eb85c146f00854
Contents?: true
Size: 293 Bytes
Versions: 27
Compression:
Stored size: 293 Bytes
Contents
# frozen_string_literal: true # encoding: utf-8 class Rating include Mongoid::Document field :value, type: Integer belongs_to :ratable, polymorphic: true has_many :comments validates_numericality_of :value, less_than: 100, allow_nil: true validates :ratable, associated: true end
Version data entries
27 entries across 27 versions & 2 rubygems