class Zip::File

Public Instance Methods

exist() → boolean click to toggle source

Returns true if this entry exists.

# File lib/buildr/packaging/zip.rb, line 50
def exist?(entry_name)
  !!find_entry(entry_name)
end