Sha256: 0e1229ae7a8344f4e096fc81d1c36af4263df75162d2a21f438921e6a9c96528
Contents?: true
Size: 378 Bytes
Versions: 125
Compression:
Stored size: 378 Bytes
Contents
# frozen_string_literal: true module Spree module Gallery class ProductGallery def initialize(product) @product = product end # A list of all images associated with this gallery # # @return [Enumerable<Spree::Image>] all images in the gallery def images @images ||= @product.variant_images end end end end
Version data entries
125 entries across 125 versions & 2 rubygems