Sha256: 9398b9056d50a82f16deced0ee301670778a0e53b9f7d480d52a8e07fbb0e9b6
Contents?: true
Size: 376 Bytes
Versions: 652
Compression:
Stored size: 376 Bytes
Contents
# frozen_string_literal: true module Files class Image attr_reader :options, :attributes def initialize(attributes = {}, options = {}) @attributes = attributes || {} @options = options || {} end # string - Image name def name @attributes[:name] end # string - Image URI def uri @attributes[:uri] end end end
Version data entries
652 entries across 652 versions & 1 rubygems