Sha256: 9d68e163feba5b46eb057db3beca33ab20b664025716997d08069ff0dc264691
Contents?: true
Size: 404 Bytes
Versions: 10
Compression:
Stored size: 404 Bytes
Contents
class Video include Mongoid::Document field :title, type: String field :year, type: Integer field :release_dates, type: Set field :genres, type: Array embedded_in :person belongs_to :post belongs_to :game default_scope asc(:title) attr_accessible :title, as: [ :default, :admin ] attr_accessible :year, as: [ :default ] attr_accessible :person_attributes, as: [ :default ] end
Version data entries
10 entries across 10 versions & 3 rubygems