Sha256: 6b96e05ec872066528ee5e1eb73d80f137aafa25ab302ebe5580f3c1d805c202

Contents?: true

Size: 594 Bytes

Versions: 27

Compression:

Stored size: 594 Bytes

Contents

# frozen_string_literal: true
# encoding: utf-8

class Product
  include Mongoid::Document
  field :description, localize: true
  field :name, localize: true, default: "no translation"
  field :price, type: Integer
  field :brand_name
  field :stores, type: Array
  field :website, localize: true
  field :sku, as: :stock_keeping_unit
  field :tl, as: :tagline, localize: true
  alias_attribute :cost, :price

  validates :name, presence: true
  validates :website, format: { with: URI.regexp, allow_blank: true }

  embeds_one :seo, as: :seo_tags, cascade_callbacks: true, autobuild: true
end

Version data entries

27 entries across 27 versions & 2 rubygems

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