Sha256: a7abde66a10388df5e161b8e3d00a36b6f4b5ae82be65e902ee0452739dc36f6
Contents?: true
Size: 583 Bytes
Versions: 29
Compression:
Stored size: 583 Bytes
Contents
# frozen_string_literal: true class Game include Mongoid::Document field :high_score, type: Integer, default: 500 field :score, type: Integer, default: 0 field :name belongs_to :person, index: true, validate: true belongs_to :parent, class_name: "Game", foreign_key: "parent-id" has_one :video, validate: false has_many :ratings, as: :ratable, dependent: :nullify accepts_nested_attributes_for :person validates_format_of :name, without: /\$\$\$/ set_callback(:initialize, :after) do |document| write_attribute("name", "Testing") unless name end end
Version data entries
29 entries across 29 versions & 1 rubygems