cocoapods 0.21.0.rc1 → 0.21.0
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 +18 -1
- data/lib/cocoapods/gem_version.rb +1 -1
- data/lib/cocoapods/validator.rb +5 -2
- metadata +15 -26
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8458f14310c1ee86f0eba81e5bb8c74ed9eb9113
|
|
4
|
+
data.tar.gz: aadd96a4104667cc93367759b45f3a6ed97c9325
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1abd852203e0b33679e660bab511ce322f325b31c2075d92b39d5239bf1b3cc807971b161dbb29c90cb539bf09593d2731d755d1da9b3233aaef8639f8096998
|
|
7
|
+
data.tar.gz: a7b9520a07dd88cfd699b9249145fd8d6842efc93d6db3652e11fd8067506a7a5c884e3319716b05d6d4e948f1260affe14f723ea0c7ccb4511804db5dc82aaf
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,20 @@
|
|
|
3
3
|
To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides/installing_cocoapods.html).
|
|
4
4
|
|
|
5
5
|
|
|
6
|
+
## 0.21.0
|
|
7
|
+
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.21.0.rc1...0.21.0)
|
|
8
|
+
• [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.21.0.rc1...0.21.0)
|
|
9
|
+
• [Xcodeproj](https://github.com/CocoaPods/Xcodeproj/compare/0.7.0...0.7.1)
|
|
10
|
+
|
|
11
|
+
###### Bug fixes
|
|
12
|
+
|
|
13
|
+
* Fixed a linter issue related to the dedicated targets change.
|
|
14
|
+
[#1130](https://github.com/CocoaPods/CocoaPods/issues/1130)
|
|
15
|
+
|
|
16
|
+
* Fixed xcconfig issues related to Pods including a dot in the name.
|
|
17
|
+
[#1152](https://github.com/CocoaPods/CocoaPods/issues/1152)
|
|
18
|
+
|
|
19
|
+
|
|
6
20
|
## 0.21.0.rc1
|
|
7
21
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.20.2...0.21.0.rc1)
|
|
8
22
|
• [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.20.2...0.21.0.rc1)
|
|
@@ -15,7 +29,9 @@ To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides
|
|
|
15
29
|
introduces an important architectural improvement which lays the foundation
|
|
16
30
|
for the upcoming CocoaPods features. Stay tuned! This feature has been
|
|
17
31
|
implemented by [Jeremy Slater](https://github.com/jasl8r).
|
|
18
|
-
[#
|
|
32
|
+
[#1011](https://github.com/CocoaPods/CocoaPods/issues/1011)
|
|
33
|
+
[#983](https://github.com/CocoaPods/CocoaPods/issues/983)
|
|
34
|
+
[#841](https://github.com/CocoaPods/CocoaPods/issues/841)
|
|
19
35
|
|
|
20
36
|
* Reduced external dependencies and deprecation of Rake::FileList.
|
|
21
37
|
[#1080](https://github.com/CocoaPods/CocoaPods/issues/1080)
|
|
@@ -24,6 +40,7 @@ To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides
|
|
|
24
40
|
|
|
25
41
|
* Fixed crash due to Podfile.lock containing multiple version requirements for
|
|
26
42
|
a Pod. [#1076](https://github.com/CocoaPods/CocoaPods/issues/1076)
|
|
43
|
+
|
|
27
44
|
* Fixed a build error due to the copy resources script using the same temporary
|
|
28
45
|
file for multiple targets.
|
|
29
46
|
[#1099](https://github.com/CocoaPods/CocoaPods/issues/1099)
|
data/lib/cocoapods/validator.rb
CHANGED
|
@@ -208,8 +208,11 @@ module Pod
|
|
|
208
208
|
installer = Installer.new(sandbox, podfile)
|
|
209
209
|
installer.install!
|
|
210
210
|
|
|
211
|
-
file_accessors = installer.aggregate_targets.
|
|
212
|
-
|
|
211
|
+
file_accessors = installer.aggregate_targets.map do |target|
|
|
212
|
+
target.pod_targets.map(&:file_accessors)
|
|
213
|
+
end.flatten
|
|
214
|
+
|
|
215
|
+
@file_accessor = file_accessors.find { |accessor| accessor.spec.root.name == spec.root.name }
|
|
213
216
|
config.silent
|
|
214
217
|
end
|
|
215
218
|
|
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: 0.21.0
|
|
4
|
+
version: 0.21.0
|
|
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: 2013-
|
|
12
|
+
date: 2013-07-01 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: cocoapods-core
|
|
@@ -17,14 +17,14 @@ dependencies:
|
|
|
17
17
|
requirements:
|
|
18
18
|
- - '='
|
|
19
19
|
- !ruby/object:Gem::Version
|
|
20
|
-
version: 0.21.0
|
|
20
|
+
version: 0.21.0
|
|
21
21
|
type: :runtime
|
|
22
22
|
prerelease: false
|
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
|
24
24
|
requirements:
|
|
25
25
|
- - '='
|
|
26
26
|
- !ruby/object:Gem::Version
|
|
27
|
-
version: 0.21.0
|
|
27
|
+
version: 0.21.0
|
|
28
28
|
- !ruby/object:Gem::Dependency
|
|
29
29
|
name: claide
|
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -59,14 +59,14 @@ dependencies:
|
|
|
59
59
|
requirements:
|
|
60
60
|
- - ~>
|
|
61
61
|
- !ruby/object:Gem::Version
|
|
62
|
-
version: 0.7.
|
|
62
|
+
version: 0.7.1
|
|
63
63
|
type: :runtime
|
|
64
64
|
prerelease: false
|
|
65
65
|
version_requirements: !ruby/object:Gem::Requirement
|
|
66
66
|
requirements:
|
|
67
67
|
- - ~>
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: 0.7.
|
|
69
|
+
version: 0.7.1
|
|
70
70
|
- !ruby/object:Gem::Dependency
|
|
71
71
|
name: colored
|
|
72
72
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -236,30 +236,19 @@ post_install_message: |2+
|
|
|
236
236
|
|
|
237
237
|
CHANGELOG:
|
|
238
238
|
|
|
239
|
-
## 0.21.0
|
|
240
|
-
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.
|
|
241
|
-
• [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.
|
|
242
|
-
• [Xcodeproj](https://github.com/CocoaPods/Xcodeproj/compare/0.
|
|
239
|
+
## 0.21.0
|
|
240
|
+
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.21.0.rc1...0.21.0)
|
|
241
|
+
• [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.21.0.rc1...0.21.0)
|
|
242
|
+
• [Xcodeproj](https://github.com/CocoaPods/Xcodeproj/compare/0.7.0...0.7.1)
|
|
243
243
|
|
|
244
|
-
######
|
|
245
|
-
|
|
246
|
-
* Pods are now built in dedicated targets. This enhancement isolates the build
|
|
247
|
-
environment of each Pod from other ones eliminating pollution issues. It also
|
|
248
|
-
introduces an important architectural improvement which lays the foundation
|
|
249
|
-
for the upcoming CocoaPods features. Stay tuned! This feature has been
|
|
250
|
-
implemented by [Jeremy Slater](https://github.com/jasl8r).
|
|
251
|
-
[#841](https://github.com/CocoaPods/CocoaPods/issues/1080)
|
|
244
|
+
###### Bug fixes
|
|
252
245
|
|
|
253
|
-
*
|
|
254
|
-
[#
|
|
246
|
+
* Fixed a linter issue related to the dedicated targets change.
|
|
247
|
+
[#1130](https://github.com/CocoaPods/CocoaPods/issues/1130)
|
|
255
248
|
|
|
256
|
-
|
|
249
|
+
* Fixed xcconfig issues related to Pods including a dot in the name.
|
|
250
|
+
[#1152](https://github.com/CocoaPods/CocoaPods/issues/1152)
|
|
257
251
|
|
|
258
|
-
* Fixed crash due to Podfile.lock containing multiple version requirements for
|
|
259
|
-
a Pod. [#1076](https://github.com/CocoaPods/CocoaPods/issues/1076)
|
|
260
|
-
* Fixed a build error due to the copy resources script using the same temporary
|
|
261
|
-
file for multiple targets.
|
|
262
|
-
[#1099](https://github.com/CocoaPods/CocoaPods/issues/1099)
|
|
263
252
|
|
|
264
253
|
|
|
265
254
|
rdoc_options: []
|