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