cocoapods 0.26.1 → 0.26.2
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 +25 -2
- data/lib/cocoapods/command/lib.rb +1 -0
- data/lib/cocoapods/gem_version.rb +1 -1
- data/lib/cocoapods/installer.rb +1 -0
- data/lib/cocoapods/installer/analyzer.rb +1 -3
- data/lib/cocoapods/project.rb +0 -10
- metadata +16 -37
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 996d7a33badb768a89e98cd030823ac185c27239
|
4
|
+
data.tar.gz: 54e1b62a2a6ed2a99b55dfb239939fef0a45a9a3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 333a04be839fa07e585752ea071867b26132929a6df294726ba35cf36b82bec66da93beb6dd159489ccf0f5b85719d8c106616a1b956c54bc56c39b59f574757
|
7
|
+
data.tar.gz: b30e80e9110d03926c5d38e07a403d20c6ca834764d81f125d59a2745b38b507734251c29a8318c6d19957c414c113ec67795b2686d7ab8b3631de029f799a4d
|
data/CHANGELOG.md
CHANGED
@@ -2,9 +2,32 @@
|
|
2
2
|
|
3
3
|
To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides/installing_cocoapods.html).
|
4
4
|
|
5
|
+
## 0.26.2
|
6
|
+
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.26.1...0.26.2)
|
7
|
+
• [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.26.1...0.26.2)
|
8
|
+
• [Xcodeproj](https://github.com/CocoaPods/Xcodeproj/compare/0.11.1...0.13.0)
|
9
|
+
|
10
|
+
###### Bug Fixes
|
11
|
+
|
12
|
+
* Fixed a crash which was causing a failure in `pod lib create` if the name of
|
13
|
+
the Pod included spaces. As spaces are not supported now this is gracefully
|
14
|
+
handled with an informative message.
|
15
|
+
[Kyle Fuller](https://github.com/kylef)
|
16
|
+
[#1456](https://github.com/CocoaPods/CocoaPods/issues/1456)
|
17
|
+
|
18
|
+
* If an user target doesn't specify an architecture the value specified for the
|
19
|
+
project is used in CocoaPods targets.
|
20
|
+
[Fabio Pelosin](https://github.com/irrationalfab)
|
21
|
+
[#1450](https://github.com/CocoaPods/CocoaPods/issues/1450)
|
22
|
+
|
23
|
+
* The Pods project now properly configures ARC on all build configurations.
|
24
|
+
[Fabio Pelosin](https://github.com/irrationalfab)
|
25
|
+
[#1454](https://github.com/CocoaPods/CocoaPods/issues/1454)
|
26
|
+
|
27
|
+
|
5
28
|
## 0.26.1
|
6
|
-
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.25.0...0.26.
|
7
|
-
• [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.25.0...0.26.
|
29
|
+
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.25.0...0.26.1)
|
30
|
+
• [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.25.0...0.26.1)
|
8
31
|
• [Xcodeproj](https://github.com/CocoaPods/Xcodeproj/compare/0.11.1...0.12.0)
|
9
32
|
|
10
33
|
###### Enhancements
|
data/lib/cocoapods/installer.rb
CHANGED
@@ -310,6 +310,7 @@ module Pod
|
|
310
310
|
build_configuration.build_settings['MACOSX_DEPLOYMENT_TARGET'] = osx_deployment_target.to_s if osx_deployment_target
|
311
311
|
build_configuration.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = ios_deployment_target.to_s if ios_deployment_target
|
312
312
|
build_configuration.build_settings['STRIP_INSTALLED_PRODUCT'] = 'NO'
|
313
|
+
build_configuration.build_settings['CLANG_ENABLE_OBJC_ARC'] = 'NO'
|
313
314
|
end
|
314
315
|
end
|
315
316
|
end
|
@@ -461,9 +461,7 @@ module Pod
|
|
461
461
|
def compute_archs_for_target_definition(target_definition, user_targets)
|
462
462
|
archs = []
|
463
463
|
user_targets.each do |target|
|
464
|
-
target.
|
465
|
-
archs << configuration.build_settings['ARCHS']
|
466
|
-
end
|
464
|
+
archs << target.common_resolved_build_setting('ARCHS')
|
467
465
|
end
|
468
466
|
|
469
467
|
archs = archs.compact.uniq.sort
|
data/lib/cocoapods/project.rb
CHANGED
@@ -19,16 +19,6 @@ module Pod
|
|
19
19
|
@refs_by_absolute_path = {}
|
20
20
|
@pods = new_group('Pods')
|
21
21
|
@development_pods = new_group('Development Pods')
|
22
|
-
set_cocoapods_defaults
|
23
|
-
end
|
24
|
-
|
25
|
-
# @return [void] Prepares the project with the build settings used by
|
26
|
-
# CocoaPods.
|
27
|
-
#
|
28
|
-
def set_cocoapods_defaults
|
29
|
-
build_configurations.each do |configuration|
|
30
|
-
configuration.build_settings['CLANG_ENABLE_OBJC_ARC'] = 'NO'
|
31
|
-
end
|
32
22
|
end
|
33
23
|
|
34
24
|
# @return [PBXGroup] The group for the support files of the aggregate
|
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.26.
|
4
|
+
version: 0.26.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: 2013-10-
|
12
|
+
date: 2013-10-09 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.26.
|
20
|
+
version: 0.26.2
|
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.26.
|
27
|
+
version: 0.26.2
|
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.
|
62
|
+
version: 0.13.0
|
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.
|
69
|
+
version: 0.13.0
|
70
70
|
- !ruby/object:Gem::Dependency
|
71
71
|
name: colored
|
72
72
|
requirement: !ruby/object:Gem::Requirement
|
@@ -235,37 +235,16 @@ homepage: https://github.com/CocoaPods/CocoaPods
|
|
235
235
|
licenses:
|
236
236
|
- MIT
|
237
237
|
metadata: {}
|
238
|
-
post_install_message: "\nCHANGELOG:\n\n## 0.26.
|
239
|
-
[cocoapods-core](https://github.com/CocoaPods/Core/compare/0.
|
240
|
-
|
241
|
-
|
242
|
-
\
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
now set the architecture of OS X Pod targets to\n `$(ARCHS_STANDARD_64_BIT)` (Xcode
|
249
|
-
4 default value for new targets). This\n fixes lint issues with Xcode 4. \n [Fabio
|
250
|
-
Pelosin](https://github.com/irrationalfab)\n [#1185](https://github.com/CocoaPods/CocoaPods/pull/1185)\n\n*
|
251
|
-
Further improvements to the organization of the Pods project \n\n - The project
|
252
|
-
is now is sorted by name with groups at the bottom.\n - Source files are now stored
|
253
|
-
in the root group of the spec, subspecs are not\n stored in a `Subspec` group
|
254
|
-
anymore and the products of the Pods all are\n stored in the products group of
|
255
|
-
the project.\n - The frameworks are referenced relative to the Developer directory
|
256
|
-
and\n namespaced per platform.\n\n [Fabio Pelosin](https://github.com/irrationalfab)\n
|
257
|
-
\ [#1389](https://github.com/CocoaPods/CocoaPods/pull/1389)\n [#1420](https://github.com/CocoaPods/CocoaPods/pull/1420)\n\n*
|
258
|
-
Added the `documentation_url` DSL attribute to the specifications. \n [Fabio Pelosin](https://github.com/irrationalfab)\n
|
259
|
-
\ [#1273](https://github.com/CocoaPods/CocoaPods/pull/1273)\n\n###### Bug Fixes\n\n*
|
260
|
-
The search paths of vendored frameworks and libraries now are always\n specified
|
261
|
-
relatively. \n [Fabio Pelosin](https://github.com/irrationalfab)\n [#1405](https://github.com/CocoaPods/CocoaPods/pull/1405)\n\n*
|
262
|
-
Fix an issue where CocoaPods would fail to work when used with an older\n version
|
263
|
-
of the Active Support gem. This fix raises the dependency version to\n the earliest
|
264
|
-
compatible version of Active Support. \n [Kyle Fuller](https://github.com/kylef)\n
|
265
|
-
\ [#1407](https://github.com/CocoaPods/CocoaPods/issues/1407)\n\n* CocoaPods will
|
266
|
-
not attempt to load anymore all the version of a specification\n preventing crashes
|
267
|
-
if those are incompatible. \n [Fabio Pelosin](https://github.com/irrationalfab)\n
|
268
|
-
\ [#1272](https://github.com/CocoaPods/CocoaPods/pull/1272)\n\n\n"
|
238
|
+
post_install_message: "\nCHANGELOG:\n\n## 0.26.2\n[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.26.1...0.26.2)\n•
|
239
|
+
[cocoapods-core](https://github.com/CocoaPods/Core/compare/0.26.1...0.26.2)\n• [Xcodeproj](https://github.com/CocoaPods/Xcodeproj/compare/0.11.1...0.13.0)\n\n######
|
240
|
+
Bug Fixes\n\n* Fixed a crash which was causing a failure in `pod lib create` if
|
241
|
+
the name of\n the Pod included spaces. As spaces are not supported now this is
|
242
|
+
gracefully\n handled with an informative message. \n [Kyle Fuller](https://github.com/kylef)\n
|
243
|
+
\ [#1456](https://github.com/CocoaPods/CocoaPods/issues/1456)\n\n* If an user target
|
244
|
+
doesn't specify an architecture the value specified for the\n project is used in
|
245
|
+
CocoaPods targets. \n [Fabio Pelosin](https://github.com/irrationalfab)\n [#1450](https://github.com/CocoaPods/CocoaPods/issues/1450)\n\n*
|
246
|
+
The Pods project now properly configures ARC on all build configurations. \n [Fabio
|
247
|
+
Pelosin](https://github.com/irrationalfab)\n [#1454](https://github.com/CocoaPods/CocoaPods/issues/1454)\n\n\n"
|
269
248
|
rdoc_options: []
|
270
249
|
require_paths:
|
271
250
|
- lib
|