Sha256: ef3a943682213fb2dae7fcfe0baba93a05365924d1b26eda33984f0ac428e380
Contents?: true
Size: 300 Bytes
Versions: 30
Compression:
Stored size: 300 Bytes
Contents
# frozen_string_literal: true # Released under the MIT License. # Copyright, 2020-2023, by Samuel Williams. module Protocol module HTTP module Header class ETag < String def << value replace(value) end def weak? self.start_with?('W/') end end end end end
Version data entries
30 entries across 30 versions & 1 rubygems