module Xar

Public Class Methods

open(path, flag) click to toggle source
# File lib/xar.rb, line 5
def self.open(path, flag)
  xar_t = Xar::Native.xar_open(path, flag)

  Xar::Archive.new(xar_t)
end