module Pod class Command class RepoTal < Command class Add < RepoTal self.summary = 'Add a spec repo' self.description = <<-DESC Clones `URL` in the local spec-repos directory at `#{Config.instance.repos_dir}`. The remote can later be referred to by `NAME`. DESC self.arguments = [ CLAide::Argument.new('NAME', true), CLAide::Argument.new('URL', true), CLAide::Argument.new('BRANCH', false), ] def self.options [ ['--progress', 'Show the progress of cloning the spec repository'], ].concat(super) end def initialize(argv) @name = argv.shift_argument @url = argv.shift_argument @branch = argv.shift_argument @progress = argv.flag?('progress') super end def validate! super unless @name && @url help! 'Adding a repo needs a `NAME` and a `URL`.' end if @name == 'master' || @url =~ %r{github.com[:/]+cocoapods/specs}i raise Informative, 'To setup the master specs repo, please run `pod setup`.' end end def run section = "Cloning spec repo `#{@name}` from `#{@url}`" section << " (branch `#{@branch}`)" if @branch UI.section(section) do create_repos_dir clone_repo checkout_branch config.sources_manager.sources([dir.basename.to_s]).each(&:verify_compatibility!) end end private # Creates the repos directory specified in the configuration by # `config.repos_dir`. # # @return [void] # # @raise If the directory cannot be created due to a system error. # def create_repos_dir config.repos_dir.mkpath rescue => e raise Informative, "Could not create '#{config.repos_dir}', the CocoaPods repo cache directory.\n" \ "#{e.class.name}: #{e.message}" end # Clones the git spec-repo according to parameters passed to the # command. # # @return [void] # def clone_repo changes = if @progress { :verbose => true } else {} end config.with_changes(changes) do Dir.chdir(config.repos_dir) do command = ['clone', @url] command << '--progress' if @progress command << '--' << @name git!(command) end end end # Checks out the branch of the git spec-repo if provided. # # @return [void] # def checkout_branch Dir.chdir(dir) { git!('checkout', @branch) } if @branch end end end end end