Sha256: b5550d88bf9ed01d67121c8ac76aaa6508eb753f0252c04d7c87097c64f0ce22
Contents?: true
Size: 486 Bytes
Versions: 16
Compression:
Stored size: 486 Bytes
Contents
# frozen_string_literal: true module RubyGPG2 module StatusLines class Unimplemented def self.parse(line) new(raw: line) end attr_reader( :raw ) def initialize(opts) @raw = opts[:raw] end def type :unknown end def ==(other) other.class == self.class && other.state == state end protected def state [ @raw ] end end end end
Version data entries
16 entries across 16 versions & 1 rubygems