Sha256: e9e6a33f349676f11cf5847bc6945370d33ef2a638b628556b9bdccd78140e6e

Contents?: true

Size: 442 Bytes

Versions: 18

Compression:

Stored size: 442 Bytes

Contents

# frozen_string_literal: true
# encoding: utf-8

class Dictionary
  include Mongoid::Document
  field :name, type: String
  field :publisher, type: String
  field :year, type: Integer

  # This field must be a Time
  field :published, type: Time

  # This field must be a Date
  field :submitted_on, type: Date

  field :description, type: String, localize: true
  field :l, type: String, as: :language
  has_many :words, validate: false
end

Version data entries

18 entries across 18 versions & 2 rubygems

Version Path
mongoid-7.3.5 spec/support/models/dictionary.rb
mongoid-7.3.4 spec/support/models/dictionary.rb
mongoid-7.1.11 spec/app/models/dictionary.rb
mongoid-7.2.6 spec/support/models/dictionary.rb
mongoid-7.3.3 spec/support/models/dictionary.rb
mongoid-7.3.2 spec/support/models/dictionary.rb
mongoid-7.2.5 spec/support/models/dictionary.rb
mongoid-7.1.10 spec/app/models/dictionary.rb
mongoid-7.1.9 spec/app/models/dictionary.rb
mongoid-7.2.4 spec/support/models/dictionary.rb
mongoid-7.3.1 spec/support/models/dictionary.rb
tdiary-5.1.6 vendor/bundle/ruby/2.7.0/gems/mongoid-7.1.7/spec/app/models/dictionary.rb
mongoid-7.3.0 spec/support/models/dictionary.rb
mongoid-7.2.3 spec/support/models/dictionary.rb
mongoid-7.1.8 spec/app/models/dictionary.rb
mongoid-7.2.2 spec/support/models/dictionary.rb
mongoid-7.2.1 spec/support/models/dictionary.rb
mongoid-7.1.7 spec/app/models/dictionary.rb