Sha256: a81139c0e5bcc1e2f5b2c3b2382daf304b8a3655b726bb5b67e1406f48e93e33
Contents?: true
Size: 278 Bytes
Versions: 24
Compression:
Stored size: 278 Bytes
Contents
# frozen_string_literal: true # (c) Copyright 2021 Ribose Inc. # module Glossarist class Asset attr_accessor :path def initialize(path) @path = path end def eql?(asset) path == asset.path end def hash path.hash end end end
Version data entries
24 entries across 24 versions & 2 rubygems