Method: Zip::CentralDirectory#==

Defined in:
lib/zip/central_directory.rb

#==(other) ⇒ Object

:nodoc:



126
127
128
129
# File 'lib/zip/central_directory.rb', line 126

def ==(other) #:nodoc:
  return false unless other.kind_of?(CentralDirectory)
  @entry_set.entries.sort == other.entries.sort && comment == other.comment
end