module Clamour::Configuration::Base
Public Instance Methods
eql?(other)
click to toggle source
@return [Boolean]
# File lib/clamour/configuration/base.rb, line 7 def eql?(other) other.respond_to?(:attributes) && attributes.eql?(other.attributes) end
hash()
click to toggle source
@return [Fixnum]
# File lib/clamour/configuration/base.rb, line 12 def hash attributes.hash end