Class: Pod::Downloader::Http

Inherits:
Object
  • Object
show all
Defined in:
lib/cocoapods_plugin.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.optionsObject

Force flattening of index downloads with :indexDownload => true



46
47
48
# File 'lib/cocoapods_plugin.rb', line 46

def self.options
  [:type, :flatten, :sha1, :sha256, :indexDownload]
end

Instance Method Details

#download_file(full_filename) ⇒ Object



53
54
55
56
57
58
59
60
# File 'lib/cocoapods_plugin.rb', line 53

def download_file(full_filename)
  curl_options = ["-f", "-L", "-o", full_filename, url, "--create-dirs", "--netrc-optional"]

  netrc_path = ENV["COCOAPODS_ART_NETRC_PATH"]
  curl_options.concat(["--netrc-file", Pathname.new(netrc_path).expand_path]) if netrc_path

  curl! curl_options
end

#orig_download_fileObject



50
# File 'lib/cocoapods_plugin.rb', line 50

alias_method :orig_download_file, :download_file

#orig_should_flatten?Object



51
# File 'lib/cocoapods_plugin.rb', line 51

alias_method :orig_should_flatten?, :should_flatten?

#should_flatten?Boolean

Note that we disabled flattening here for the ENTIRE client to deal with default flattening for non zip archives messing up tarballs incoming

Returns:

  • (Boolean)


64
65
66
67
68
69
70
71
72
73
74
75
76
# File 'lib/cocoapods_plugin.rb', line 64

def should_flatten?
  # TODO uncomment when Artifactory stops sending the :flatten flag
  # if options.key?(:flatten)
  #   true
  # else
  #   false
  # end
  if options.key?(:indexDownload)
    true
  else
    orig_should_flatten?
  end
end