Sha256: 4cf9d1b832e526326b1ed4cdad3381fc405d051a851b70082b23a3e41a1f534a
Contents?: true
Size: 304 Bytes
Versions: 76
Compression:
Stored size: 304 Bytes
Contents
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
76 entries across 71 versions & 5 rubygems