Sha256: 15ccba9ea0cfc0905007b7988264e216c381b54b5351c8eb97dab256bd285edf
Contents?: true
Size: 387 Bytes
Versions: 30
Compression:
Stored size: 387 Bytes
Contents
module Gummi module EntityLayer module Entity extend ActiveSupport::Concern included do include Repobahn::Entity end attr_accessor :id attr_accessor :version def ==(other) other && self.id == other.id && self.version == other.version && self.attributes == other.attributes end end end end
Version data entries
30 entries across 30 versions & 1 rubygems