Sha256: e3cdbfebb0c4be838214271405960a3a17bda859334051b2e604f73ee911fa56
Contents?: true
Size: 692 Bytes
Versions: 32
Compression:
Stored size: 692 Bytes
Contents
# frozen_string_literal: true # This model represents the 'section-testimonials' content type in Contentful. Any linked # entries of the 'section-testimonials' content type will be resolved as instances of this class. # It exposes .find, .find_by, and .find_all methods to query Contentful. class SectionTestimonials < WCC::Contentful::Model::SectionTestimonials # Override functionality or add utilities # # # Example: override equality # def ===(other) # ... # end # # # Example: override "title" attribute to always be titlecase. # # `@title` is populated by the gem in the initializer. # def title # @title_titlecased ||= @title.titlecase # end end
Version data entries
32 entries across 32 versions & 1 rubygems