Sha256: 2216b0226d639b6e49dbe72e58628d881f6029b4e753a0acebb32b8d05417998
Contents?: true
Size: 312 Bytes
Versions: 17
Compression:
Stored size: 312 Bytes
Contents
class Book include Mongoid::Document include Mongoid::Attributes::Dynamic 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 end
Version data entries
17 entries across 17 versions & 5 rubygems