Sha256: 36a64af91b474b8d643c868d0eb0be5ca1a44810f99ac22d90ccbb1c5748b904
Contents?: true
Size: 1.84 KB
Versions: 1
Compression:
Stored size: 1.84 KB
Contents
require 'cocoapods-tdfire-binary/binary_config' module Pod module Tdfire class BinaryUrlManager def self.pull_url_for_pod_version(pod, version) host + "/frameworks/#{pod}/#{version}/zip" end def self.get_pull_url_for_pod_version(pod, version) command = "curl #{pull_url_for_pod_version(pod, version)} > #{pod}.framework.zip" run_curl command end def self.post_push_url(name, version, path, commit = nil, commit_hash = nil) param = %Q[-F "name=#{name}" -F "version=#{version}" -F "annotate=#{commit}" -F "file=@#{path}" -F "sha=#{commit_hash}"] command = "curl #{host}/frameworks #{param}" run_curl command end def self.delete_binary(name, version) command = "curl -X 'DELETE' #{host}/frameworks/#{name}/#{version} -O -J" run_curl command end def self.list_binary() command = "curl #{host}/frameworks" run_curl command end def self.search_binary(name) command = "curl #{host}/frameworks/#{name}" run_curl command end def self.run_curl(command) Pod::UI.message "CURL: \n" + command + "\n" result = `#{command} -f -s -m 5` raise Pod::Informative, "执行 #{command} 失败,查看网络或者 binary_config.yml 配置." if $?.exitstatus != 0 result end def self.host BinaryConfig.instance.server_host end def self.private_cocoapods_url BinaryConfig.instance.repo_url end def self.template_lib_url BinaryConfig.instance.template_url end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cocoapods-tdfire-binary-1.3.8 | lib/cocoapods-tdfire-binary/binary_url_manager.rb |