Sha256: c76f7c74823cb9b55d25b6de4596696ede6cbfe11ea10f184ec199995b49cdfe
Contents?: true
Size: 323 Bytes
Versions: 29
Compression:
Stored size: 323 Bytes
Contents
# frozen_string_literal: true 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
29 entries across 29 versions & 1 rubygems