Sha256: 97504968e4cdae28ae223f9c9aa8431228294e392135e9ba3982c85a73e38acd
Contents?: true
Size: 424 Bytes
Versions: 29
Compression:
Stored size: 424 Bytes
Contents
# frozen_string_literal: true 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
29 entries across 29 versions & 1 rubygems