Sha256: 4ad32cb438e4145efe58b2dcefe51aaa7b7417c67b9cf10095a237a9838097f1
Contents?: true
Size: 540 Bytes
Versions: 85
Compression:
Stored size: 540 Bytes
Contents
# encoding: utf-8 module FIR module Parser module Common # when type is ipa, the icon data is a png file. # when type is apk, the icon data is a binary data. def generate_tmp_icon data, type tmp_icon_path = "#{Dir.tmpdir}/icon-#{SecureRandom.hex[4..9]}.png" if type == :ipa FileUtils.cp(data, tmp_icon_path) elsif type == :apk File.open(tmp_icon_path, 'w+') { |f| f << data } else return end tmp_icon_path end end end end
Version data entries
85 entries across 85 versions & 4 rubygems