Sha256: c23fbb1c65e03c5817d4cb58c97070f182f2ec1e95a9a2b73798205f9d3196d4
Contents?: true
Size: 275 Bytes
Versions: 24
Compression:
Stored size: 275 Bytes
Contents
# frozen_string_literal: true 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
24 entries across 24 versions & 1 rubygems