Sha256: b44794d77035c846de8701c307bd3ea56399ae8629444e3d3aab3563cc928dbf
Contents?: true
Size: 203 Bytes
Versions: 3
Compression:
Stored size: 203 Bytes
Contents
module Basic101 module Identity def ==(other) return false unless other.is_a?(self.class) self.state == other.state end protected def state [] end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
basic101-0.4.0 | lib/basic101/identity.rb |
basic101-0.2.0 | lib/basic101/identity.rb |
basic101-0.1.0 | lib/basic101/identity.rb |