Sha256: 38aaba56c2f1891ea273d69a2b82d4cb98cb456dd99d28bb0014a97ce36b75bf
Contents?: true
Size: 404 Bytes
Versions: 25
Compression:
Stored size: 404 Bytes
Contents
module Plurimath module XmlEngine class Oga # Create API compatible with Ox, per Plurimath usage class Wrapper def initialize(value) @wrapped = value end def unwrap @wrapped end def ==(other) self.class == other.class && @wrapped.inspect == other.unwrap.inspect end end end end end
Version data entries
25 entries across 25 versions & 1 rubygems