Sha256: c44f8d85e05f93b8cb7d5fca421b88f7024767155459d904c3179c844b8cf38f
Contents?: true
Size: 1.62 KB
Versions: 1
Compression:
Stored size: 1.62 KB
Contents
require_relative "executor/prebuilder" require_relative "../cocoapods-binary-ht/pod-binary/prebuild_dsl" module Pod class Command class Binary < Command class Prebuild < Binary attr_reader :prebuilder self.arguments = [CLAide::Argument.new("CACHE-BRANCH", false)] def self.options [ ["--config", "Config (Debug, Test...) to prebuild"], ["--repo-update", "Update pod repo before installing"], ["--no-fetch", "Do not perform a cache fetch beforehand"], ["--push", "Push cache to repo upon completion"], ["--all", "Prebuild all binary pods regardless of cache validation"], ["--targets", "Targets to prebuild. Use comma (,) to specify a list of targets"] ].concat(super) end def initialize(argv) super prebuild_all_pods = argv.flag?("all") prebuild_targets = argv.option("targets", "").split(",") update_cli_config( :prebuild_job => true, :prebuild_all_pods => prebuild_all_pods, :prebuild_config => argv.option("config") ) update_cli_config(:prebuild_targets => prebuild_targets) unless prebuild_all_pods @prebuilder = PodPrebuild::CachePrebuilder.new( config: prebuild_config, cache_branch: argv.shift_argument || "master", repo_update: argv.flag?("repo-update"), no_fetch: argv.flag?("fetch") == false, push_cache: argv.flag?("push") ) end def run @prebuilder.run end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cocoapods-binary-ht-1.0.0 | lib/command/prebuild.rb |