Sha256: e97547a94fdbb1ac3d2e5a42c3b249652aaf917b196c6b9a44a98f0e2a8060cf
Contents?: true
Size: 353 Bytes
Versions: 27
Compression:
Stored size: 353 Bytes
Contents
# frozen_string_literal: true # encoding: utf-8 class Preference include Mongoid::Document field :name, type: String field :value, type: String field :ranking, type: Integer has_and_belongs_to_many :people, validate: false validates_length_of :name, minimum: 2, allow_nil: true scope :posting, ->{ where(:value.in => [ "Posting" ]) } end
Version data entries
27 entries across 27 versions & 2 rubygems