Sha256: 421a237c03758d694c096677e994fa2a1d57ceaf44866b497921fc39003c41ea
Contents?: true
Size: 341 Bytes
Versions: 27
Compression:
Stored size: 341 Bytes
Contents
# frozen_string_literal: true # encoding: utf-8 class Movie include Mongoid::Document include Mongoid::Attributes::Dynamic field :title, type: String field :poster, type: Image field :poster_thumb, type: Thumbnail has_many :ratings, as: :ratable, dependent: :nullify has_many :comments def global_set Set.new end end
Version data entries
27 entries across 27 versions & 2 rubygems