module PIM::Services::ZipService
Public Instance Methods
add_to_zip(asset_or_url, zip_file, target_path = nil)
click to toggle source
# File services.rb, line 4329 def add_to_zip asset_or_url, zip_file, target_path = nil if asset_or_url.is_a? String __zip_service.addGatheringByUrlToZip(asset_or_url, zip_file, target_path) elsif asset_or_url.is_a? com.lansa.lax.pim.DigitalAsset __zip_service.addGatheringToZip(asset_or_url, zip_file, target_path) end end
create_zip(out)
click to toggle source
# File services.rb, line 4325 def create_zip out __zip_service.createZip(out) end
zip_gathering(gathering_key, out)
click to toggle source
# File services.rb, line 4337 def zip_gathering gathering_key, out __zip_service.zipGathering(gathering_key, out) end