cocoapods-downloader 1.0.0.beta.1 → 1.0.0.beta.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of cocoapods-downloader might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/lib/cocoapods-downloader/api_exposable.rb +1 -1
- data/lib/cocoapods-downloader/base.rb +1 -1
- data/lib/cocoapods-downloader/gem_version.rb +1 -1
- data/lib/cocoapods-downloader/git.rb +1 -1
- data/lib/cocoapods-downloader/http.rb +1 -0
- data/lib/cocoapods-downloader/subversion.rb +6 -6
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 872744a93ffb90fce4694ea173e24cce82407d14
|
4
|
+
data.tar.gz: c9d1632cd5d8904c411b6aeaa277a8fa322fbefc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 65c512d4d8aa6bc6f0668860d6500f1c773a718ea0974f879d42b38ac36cff0b5e623f3d8ac5737bcdad0aca8defafade664e7dce8a256e76f7f28abaffbbe30
|
7
|
+
data.tar.gz: 5e4f969967803e02767f21fcec582ffc7f6b9a106f0e0bfbb625f2b3ea85cfe75c1092c5df22180002268440794f1686d4da297073d31934105ea9006f7318bb
|
@@ -85,7 +85,7 @@ module Pod
|
|
85
85
|
# @return [Array<String>] arguments to pass to `git` to clone the repo.
|
86
86
|
#
|
87
87
|
def clone_arguments(force_head, shallow_clone)
|
88
|
-
command = ['clone', url, target_path]
|
88
|
+
command = ['clone', url, target_path, '--template=']
|
89
89
|
|
90
90
|
if shallow_clone && !options[:commit]
|
91
91
|
command += %w(--single-branch --depth 1)
|
@@ -33,16 +33,16 @@ module Pod
|
|
33
33
|
end
|
34
34
|
|
35
35
|
def store_exported_revision(output)
|
36
|
-
output
|
36
|
+
output =~ /Exported revision ([0-9]+)\./
|
37
37
|
@exported_revision = Regexp.last_match[1] if Regexp.last_match
|
38
38
|
end
|
39
39
|
|
40
40
|
def subcommand
|
41
|
-
if options[:checkout]
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
41
|
+
result = if options[:checkout]
|
42
|
+
%w(checkout)
|
43
|
+
else
|
44
|
+
%w(export)
|
45
|
+
end
|
46
46
|
|
47
47
|
result += %w(--non-interactive --trust-server-cert --force)
|
48
48
|
result << '--ignore-externals' if options[:externals] == false
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cocoapods-downloader
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.beta.
|
4
|
+
version: 1.0.0.beta.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eloy Duran
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2016-03-15 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description:
|
15
15
|
email:
|
@@ -51,7 +51,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
51
51
|
version: '0'
|
52
52
|
requirements: []
|
53
53
|
rubyforge_project:
|
54
|
-
rubygems_version: 2.
|
54
|
+
rubygems_version: 2.6.2
|
55
55
|
signing_key:
|
56
56
|
specification_version: 3
|
57
57
|
summary: A small library for downloading files from remotes in a folder.
|