cocoapods 0.16.0.rc2 → 0.16.0.rc3
Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.md
CHANGED
@@ -1,16 +1,32 @@
|
|
1
|
-
##
|
1
|
+
## 0.16.0.rc3
|
2
|
+
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.16.0.rc2...0.16.0.rc3) • [Xcodeproj](https://github.com/CocoaPods/Xcodeproj/compare/0.4.0.rc1...0.4.0.rc6)
|
2
3
|
|
3
|
-
|
4
|
+
###### Enhancements
|
4
5
|
|
5
|
-
|
6
|
+
- Added support for copying frameworks to the app bundle.
|
7
|
+
[#597](https://github.com/CocoaPods/CocoaPods/pull/597)
|
8
|
+
|
9
|
+
###### Bug fixes
|
10
|
+
|
11
|
+
- Ignore PBXReferenceProxy while integrating into user project.
|
12
|
+
[#626](https://github.com/CocoaPods/CocoaPods/issues/626)
|
13
|
+
- Added support for PBXAggregateTarget and PBXLegacyTarget.
|
14
|
+
[#615](https://github.com/CocoaPods/CocoaPods/issues/615)
|
15
|
+
- Added support for PBXReferenceProxy.
|
16
|
+
[#612](https://github.com/CocoaPods/CocoaPods/issues/612)
|
6
17
|
|
18
|
+
## 0.16.0.rc2
|
7
19
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.16.0.rc1...0.16.0.rc2)
|
20
|
+
|
21
|
+
###### Bug fixes
|
22
|
+
|
8
23
|
- Fix for uninitialized constant Xcodeproj::Constants error.
|
9
24
|
|
10
25
|
## 0.16.0.rc1
|
11
|
-
|
12
26
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.15.2...0.16.0.rc1) • [Xcodeproj](https://github.com/CocoaPods/Xcodeproj/compare/0.3.5...0.4.0.rc1)
|
13
27
|
|
28
|
+
###### Enhancements
|
29
|
+
|
14
30
|
- Xcodeproj partial rewrite.
|
15
31
|
[#565](https://github.com/CocoaPods/CocoaPods/issues/565)
|
16
32
|
[#561](https://github.com/CocoaPods/CocoaPods/pull/561)
|
data/lib/cocoapods.rb
CHANGED
@@ -15,6 +15,10 @@ install_resource()
|
|
15
15
|
echo "ibtool --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename $1 .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}"
|
16
16
|
ibtool --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename $1 .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}"
|
17
17
|
;;
|
18
|
+
*.framework)
|
19
|
+
echo "rsync -rp ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
|
20
|
+
rsync -rp "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
|
21
|
+
;;
|
18
22
|
*)
|
19
23
|
echo "cp -R ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
|
20
24
|
cp -R "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
|
@@ -138,7 +138,10 @@ module Pod
|
|
138
138
|
[user_project.targets.first]
|
139
139
|
end.reject do |target|
|
140
140
|
# Reject any target that already has this Pods library in one of its frameworks build phases
|
141
|
-
target.frameworks_build_phase.files.any?
|
141
|
+
target.frameworks_build_phase.files.any? do |build_file|
|
142
|
+
file_ref = build_file.file_ref
|
143
|
+
!file_ref.proxy? && file_ref.name == @target_definition.lib_name
|
144
|
+
end
|
142
145
|
end
|
143
146
|
end
|
144
147
|
end
|
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.16.0.
|
4
|
+
version: 0.16.0.rc3
|
5
5
|
prerelease: 7
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2012-
|
13
|
+
date: 2012-11-02 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: xcodeproj
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
requirements:
|
20
20
|
- - ~>
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 0.4.0.
|
22
|
+
version: 0.4.0.rc6
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -27,7 +27,7 @@ dependencies:
|
|
27
27
|
requirements:
|
28
28
|
- - ~>
|
29
29
|
- !ruby/object:Gem::Version
|
30
|
-
version: 0.4.0.
|
30
|
+
version: 0.4.0.rc6
|
31
31
|
- !ruby/object:Gem::Dependency
|
32
32
|
name: faraday
|
33
33
|
requirement: !ruby/object:Gem::Requirement
|
@@ -254,9 +254,6 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
254
254
|
- - ! '>='
|
255
255
|
- !ruby/object:Gem::Version
|
256
256
|
version: '0'
|
257
|
-
segments:
|
258
|
-
- 0
|
259
|
-
hash: -461875756056681187
|
260
257
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
261
258
|
none: false
|
262
259
|
requirements:
|
@@ -265,7 +262,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
265
262
|
version: '0'
|
266
263
|
requirements: []
|
267
264
|
rubyforge_project:
|
268
|
-
rubygems_version: 1.8.
|
265
|
+
rubygems_version: 1.8.23
|
269
266
|
signing_key:
|
270
267
|
specification_version: 3
|
271
268
|
summary: An Objective-C library package manager.
|