Sha256: 29d7d7ef371c9658efc1ca8f9c6f2753e3d1768847a6bc133f736e81cc6d30e9
Contents?: true
Size: 287 Bytes
Versions: 26
Compression:
Stored size: 287 Bytes
Contents
# frozen_string_literal: true module Glossarist module Designation class GraphicalSymbol < Symbol attr_accessor :text attr_accessor :image def to_h super.merge( "text" => text, "image" => image, ) end end end end
Version data entries
26 entries across 26 versions & 2 rubygems