Sha256: a2e7c2d26b90db029b06dc1b42084bdfb3787c3dd5b3f8f1ffdc2269c8a854e1

Contents?: true

Size: 485 Bytes

Versions: 11

Compression:

Stored size: 485 Bytes

Contents

require_relative "executor/fetcher"

module Pod
  class Command
    class Binary < Command
      class Fetch < Binary
        self.arguments = [CLAide::Argument.new("CACHE-BRANCH", false)]
        def initialize(argv)
          super
          @fetcher = PodPrebuild::CacheFetcher.new(
            config: prebuild_config,
            cache_branch: argv.shift_argument || "master"
          )
        end

        def run
          @fetcher.run
        end
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 3 rubygems

Version Path
cocoapods-binary-cache-next-0.1.16 lib/command/fetch.rb
cocoapods-binary-cache-next-0.1.15 lib/command/fetch.rb
cocoapods-binary-ht-1.0.0 lib/command/fetch.rb
cocoapods-binary-cache-0.1.14 lib/command/fetch.rb
cocoapods-binary-cache-0.1.13 lib/command/fetch.rb
cocoapods-binary-cache-0.1.12 lib/command/fetch.rb
cocoapods-binary-cache-0.1.11 lib/command/fetch.rb
cocoapods-binary-cache-0.1.10 lib/command/fetch.rb
cocoapods-binary-cache-0.1.9 lib/command/fetch.rb
cocoapods-binary-cache-0.1.8 lib/command/fetch.rb
cocoapods-binary-cache-0.1.7 lib/command/fetch.rb