cocoapods 1.2.0.beta.3 → 1.2.0.rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -0
- data/lib/cocoapods/command/repo/add.rb +21 -3
- data/lib/cocoapods/command/setup.rb +1 -1
- data/lib/cocoapods/gem_version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 706845641668166c76b602959fd9a7b6e6cce4f5
|
4
|
+
data.tar.gz: 40632ff91358ea162518f6e69ffd31a48cb0ef36
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d55f7ebc3eef9668cd4c949bf5f0a58871188aa9c8b439b58595b194bc52e34a1c3b5d1f45a83ceab5e4a6603ee23602031ab9dac286947cf97ac68a2d0212ed
|
7
|
+
data.tar.gz: abe513b8f86453f0c7cbe82274c7a61082709c4e454bb7524ca498509c3051ed05227a1bd86408b0beaa456f6104eaadd594d4f00ae82b6d2023cbcce99f7701
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,19 @@ To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides
|
|
4
4
|
|
5
5
|
To install release candidates run `[sudo] gem install cocoapods --pre`
|
6
6
|
|
7
|
+
## 1.2.0.rc.1 (2017-01-13)
|
8
|
+
|
9
|
+
##### Enhancements
|
10
|
+
|
11
|
+
* Show git progress when downloading the CocoaPods Specs repo.
|
12
|
+
[Danielle Tomlinson](https://github.com/dantoml)
|
13
|
+
[#5937](https://github.com/CocoaPods/CocoaPods/issues/5937)
|
14
|
+
|
15
|
+
##### Bug Fixes
|
16
|
+
|
17
|
+
* None.
|
18
|
+
|
19
|
+
|
7
20
|
## 1.2.0.beta.3 (2016-12-28)
|
8
21
|
|
9
22
|
##### Enhancements
|
@@ -15,10 +15,17 @@ module Pod
|
|
15
15
|
CLAide::Argument.new('BRANCH', false),
|
16
16
|
]
|
17
17
|
|
18
|
+
def self.options
|
19
|
+
[
|
20
|
+
['--progress', 'Show the progress of cloning the spec repository'],
|
21
|
+
].concat(super)
|
22
|
+
end
|
23
|
+
|
18
24
|
def initialize(argv)
|
19
25
|
@name = argv.shift_argument
|
20
26
|
@url = argv.shift_argument
|
21
27
|
@branch = argv.shift_argument
|
28
|
+
@progress = argv.flag?('progress')
|
22
29
|
super
|
23
30
|
end
|
24
31
|
|
@@ -66,9 +73,20 @@ module Pod
|
|
66
73
|
# @return [void]
|
67
74
|
#
|
68
75
|
def clone_repo
|
69
|
-
|
70
|
-
|
71
|
-
|
76
|
+
changes = if @progress
|
77
|
+
{ :verbose => true }
|
78
|
+
else
|
79
|
+
{}
|
80
|
+
end
|
81
|
+
|
82
|
+
config.with_changes(changes) do
|
83
|
+
Dir.chdir(config.repos_dir) do
|
84
|
+
command = ['clone', @url, @name]
|
85
|
+
if @progress
|
86
|
+
command << '--progress'
|
87
|
+
end
|
88
|
+
git!(command)
|
89
|
+
end
|
72
90
|
end
|
73
91
|
end
|
74
92
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cocoapods
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.0.
|
4
|
+
version: 1.2.0.rc.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eloy Duran
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date:
|
14
|
+
date: 2017-01-13 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: cocoapods-core
|
@@ -19,14 +19,14 @@ dependencies:
|
|
19
19
|
requirements:
|
20
20
|
- - '='
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 1.2.0.
|
22
|
+
version: 1.2.0.rc.1
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
requirements:
|
27
27
|
- - '='
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 1.2.0.
|
29
|
+
version: 1.2.0.rc.1
|
30
30
|
- !ruby/object:Gem::Dependency
|
31
31
|
name: claide
|
32
32
|
requirement: !ruby/object:Gem::Requirement
|
@@ -193,14 +193,14 @@ dependencies:
|
|
193
193
|
requirements:
|
194
194
|
- - "~>"
|
195
195
|
- !ruby/object:Gem::Version
|
196
|
-
version: 0.5.
|
196
|
+
version: 0.5.5
|
197
197
|
type: :runtime
|
198
198
|
prerelease: false
|
199
199
|
version_requirements: !ruby/object:Gem::Requirement
|
200
200
|
requirements:
|
201
201
|
- - "~>"
|
202
202
|
- !ruby/object:Gem::Version
|
203
|
-
version: 0.5.
|
203
|
+
version: 0.5.5
|
204
204
|
- !ruby/object:Gem::Dependency
|
205
205
|
name: xcodeproj
|
206
206
|
requirement: !ruby/object:Gem::Requirement
|