Sha256: 3d58b697e87564d35df1cb0248b945b32b4ca33d21bc92a129946dedada35150
Contents?: true
Size: 438 Bytes
Versions: 27
Compression:
Stored size: 438 Bytes
Contents
# frozen_string_literal: true # encoding: utf-8 class Book include Mongoid::Document include Mongoid::Attributes::Dynamic include Mongoid::Timestamps field :title, type: String field :chapters, type: Integer belongs_to :series belongs_to :person, autobuild: true has_one :rating, as: :ratable, dependent: :nullify after_initialize do |doc| doc.chapters = 5 end embeds_many :pages, cascade_callbacks: true end
Version data entries
27 entries across 27 versions & 2 rubygems