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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4046f40b104b268eb0dcc90991f868953707d6c4
4
- data.tar.gz: 006fd40b93468988e5cca4c9388e9e00a1b7ca02
3
+ metadata.gz: 8458f14310c1ee86f0eba81e5bb8c74ed9eb9113
4
+ data.tar.gz: aadd96a4104667cc93367759b45f3a6ed97c9325
5
5
  SHA512:
6
- metadata.gz: 6fa144dd19952870b080632f055abb1111dfcdf26e37ba5b16d2f602b77bd56766cb7cf5ed50e2613a299ffd778ddec3b52a3f221d416122e38897f68828c31d
7
- data.tar.gz: 86cfacba4348f91b159e486984b00bdb04493db61ec5bccf50a1a1b8358666a0942c9a3bf0b7212836a2670300c35bc0ea06ef0e192163268a4a3b4431b36fef
6
+ metadata.gz: 1abd852203e0b33679e660bab511ce322f325b31c2075d92b39d5239bf1b3cc807971b161dbb29c90cb539bf09593d2731d755d1da9b3233aaef8639f8096998
7
+ data.tar.gz: a7b9520a07dd88cfd699b9249145fd8d6842efc93d6db3652e11fd8067506a7a5c884e3319716b05d6d4e948f1260affe14f723ea0c7ccb4511804db5dc82aaf
@@ -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
- [#841](https://github.com/CocoaPods/CocoaPods/issues/1080)
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)
@@ -1,6 +1,6 @@
1
1
  module Pod
2
2
  # The version of the cocoapods command line tool.
3
3
  #
4
- VERSION = '0.21.0.rc1' unless defined? Pod::VERSION
4
+ VERSION = '0.21.0' unless defined? Pod::VERSION
5
5
  end
6
6
 
@@ -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.first.pod_targets.first.file_accessors
212
- @file_accessor = file_accessors.find { |accessor| accessor.spec == spec }
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.rc1
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-06-18 00:00:00.000000000 Z
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.rc1
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.rc1
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.0
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.0
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.rc1
240
- [CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.20.2...0.21.0.rc1)
241
- • [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.20.2...0.21.0.rc1)
242
- • [Xcodeproj](https://github.com/CocoaPods/Xcodeproj/compare/0.6.0...0.7.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
- ###### Enhancements
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
- * Reduced external dependencies and deprecation of Rake::FileList.
254
- [#1080](https://github.com/CocoaPods/CocoaPods/issues/1080)
246
+ * Fixed a linter issue related to the dedicated targets change.
247
+ [#1130](https://github.com/CocoaPods/CocoaPods/issues/1130)
255
248
 
256
- ###### Bug fixes
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: []