cocoapods 0.25.0 → 0.26.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +68 -7
- data/README.md +2 -2
- data/lib/cocoapods.rb +0 -1
- data/lib/cocoapods/command/spec.rb +1 -1
- data/lib/cocoapods/gem_version.rb +1 -1
- data/lib/cocoapods/generator/xcconfig/xcconfig_helper.rb +2 -2
- data/lib/cocoapods/installer.rb +2 -1
- data/lib/cocoapods/installer/analyzer.rb +10 -0
- data/lib/cocoapods/installer/file_references_installer.rb +5 -5
- data/lib/cocoapods/installer/target_installer.rb +1 -1
- data/lib/cocoapods/installer/target_installer/pod_target_installer.rb +2 -10
- data/lib/cocoapods/installer/user_project_integrator/target_integrator.rb +1 -1
- data/lib/cocoapods/project.rb +43 -38
- metadata +39 -72
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2933e2a1e2470564b492bf06874db7c125869163
|
4
|
+
data.tar.gz: 8e802d212e075d854dd98e4c8df94ccee47118ec
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7adf39411bb44c1d215bcb16cb73407408c9cb2fef80309b1bb4b4a02097c50d28587489ce1de7d48aaed3343af37513c1790d203b0617e972ceb5378db639ab
|
7
|
+
data.tar.gz: f92f71fd022536a66deba4f0658e0766271f5a894c762285a7033433ce17d52f3866248ee621ccedaa84417ff73d01d049df5514dbfe885f0d9e691db0a6ab21
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,65 @@
|
|
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.0
|
6
|
+
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.25.0...0.26.0)
|
7
|
+
• [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.25.0...0.26.0)
|
8
|
+
• [Xcodeproj](https://github.com/CocoaPods/Xcodeproj/compare/0.11.1...0.12.0)
|
9
|
+
|
10
|
+
###### Enhancements
|
11
|
+
|
12
|
+
* CocoaPods now creates and hides the schemes of its targets after every
|
13
|
+
installation. The schemes are not shared because the flag which keeps track
|
14
|
+
whether they should be visible is a user only flag. The schemes are still
|
15
|
+
present and to debug a single Pod it is possible to make its scheme visible
|
16
|
+
in the Schemes manager of Xcode. This is rarely needed though because the
|
17
|
+
user targets trigger the compilation of the Pod targets.
|
18
|
+
[Fabio Pelosin](https://github.com/irrationalfab)
|
19
|
+
[#1185](https://github.com/CocoaPods/CocoaPods/pull/1185)
|
20
|
+
|
21
|
+
* Installations which don't integrate a user target (lint subcommands and
|
22
|
+
`--no-integrate` option) now set the architecture of OS X Pod targets to
|
23
|
+
`$(ARCHS_STANDARD_64_BIT)` (Xcode 4 default value for new targets). This
|
24
|
+
fixes lint issues with Xcode 4.
|
25
|
+
[Fabio Pelosin](https://github.com/irrationalfab)
|
26
|
+
[#1185](https://github.com/CocoaPods/CocoaPods/pull/1185)
|
27
|
+
|
28
|
+
* Further improvements to the organization of the Pods project
|
29
|
+
|
30
|
+
- The project is now is sorted by name with groups at the bottom.
|
31
|
+
- Source files are now stored in the root group of the spec, subspecs are not
|
32
|
+
stored in a `Subspec` group anymore and the products of the Pods all are
|
33
|
+
stored in the products group of the project.
|
34
|
+
- The frameworks are referenced relative to the Developer directory and
|
35
|
+
namespaced per platform.
|
36
|
+
|
37
|
+
[Fabio Pelosin](https://github.com/irrationalfab)
|
38
|
+
[#1389](https://github.com/CocoaPods/CocoaPods/pull/1389)
|
39
|
+
[#1420](https://github.com/CocoaPods/CocoaPods/pull/1420)
|
40
|
+
|
41
|
+
* Added the `documentation_url` DSL attribute to the specifications.
|
42
|
+
[Fabio Pelosin](https://github.com/irrationalfab)
|
43
|
+
[#1273](https://github.com/CocoaPods/CocoaPods/pull/1273)
|
44
|
+
|
45
|
+
###### Bug Fixes
|
46
|
+
|
47
|
+
* The search paths of vendored frameworks and libraries now are always
|
48
|
+
specified relatively.
|
49
|
+
[Fabio Pelosin](https://github.com/irrationalfab)
|
50
|
+
[#1405](https://github.com/CocoaPods/CocoaPods/pull/1405)
|
51
|
+
|
52
|
+
* Fix an issue where CocoaPods would fail to work when used with an older
|
53
|
+
version of the Active Support gem. This fix raises the dependency version to
|
54
|
+
the earliest compatible version of Active Support.
|
55
|
+
[Kyle Fuller](https://github.com/kylef)
|
56
|
+
[#1407](https://github.com/CocoaPods/CocoaPods/issues/1407)
|
57
|
+
|
58
|
+
* CocoaPods will not attempt to load anymore all the version of a specification
|
59
|
+
preventing crashes if those are incompatible.
|
60
|
+
[Fabio Pelosin](https://github.com/irrationalfab)
|
61
|
+
[#1272](https://github.com/CocoaPods/CocoaPods/pull/1272)
|
62
|
+
|
63
|
+
|
5
64
|
## 0.25.0
|
6
65
|
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.24.0...0.25.0)
|
7
66
|
• [cocoapods-core](https://github.com/CocoaPods/Core/compare/0.24.0...0.25.0)
|
@@ -14,13 +73,15 @@ To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides
|
|
14
73
|
The generated Pods Xcode project is now compatible with `arm64` projects and
|
15
74
|
is updated to use Xcode 5’s default settings removing all warnings.
|
16
75
|
|
17
|
-
**NOTE to Xcode 4
|
18
|
-
1.
|
19
|
-
|
20
|
-
|
21
|
-
2.
|
22
|
-
|
23
|
-
|
76
|
+
**NOTE to users migrating projects from Xcode 4, or are still using Xcode 4:**
|
77
|
+
1. The Pods Xcode project now sets the `ONLY_ACTIVE_ARCH` build setting to
|
78
|
+
`YES` in the `Debug` configuration. You _will_ have to set the same on your
|
79
|
+
project/target, otherwise the build _will_ fail.
|
80
|
+
2. Ensure your project/target has an `ARCHS` value set, otherwise the build
|
81
|
+
_will_ fail.
|
82
|
+
3. When building a **iOS** project from the command-line, with the `xcodebuild`
|
83
|
+
tool that comes with Xcode 4, you’ll need to completely disable this setting
|
84
|
+
by appending to your build command: `ONLY_ACTIVE_ARCH=NO`.
|
24
85
|
|
25
86
|
[#1352](https://github.com/CocoaPods/CocoaPods/pull/1352)
|
26
87
|
|
data/README.md
CHANGED
@@ -53,14 +53,14 @@ CocoaPods is composed by the following projects:
|
|
53
53
|
All CocoaPods development happens on GitHub, contributions make good karma and
|
54
54
|
we welcome with joy new contributors.
|
55
55
|
|
56
|
-
#
|
56
|
+
# Sponsors
|
57
57
|
|
58
58
|
- [@fngtps](http://twitter.com/fngtps) is donating time to work on the design
|
59
59
|
of the forthcoming cocoapods.org website and donated the money to hire [Max
|
60
60
|
Steenbergen](http://twitter.com/maxsteenbergen) to design [an
|
61
61
|
icon](http://drbl.in/cpmL) for it.
|
62
62
|
- [@sauspiel](http://twitter.com/Sauspiel) uses CocoaPods for their games and
|
63
|
-
have hired
|
63
|
+
have hired @alloy to add features and specs they needed. These are Nimbus,
|
64
64
|
QuincyKit, and HockeyKit. For the [Nimbus
|
65
65
|
spec](https://github.com/CocoaPods/Specs/blob/master/Nimbus/0.9.0/Nimbus.podspec),
|
66
66
|
the ‘subspecs’ feature was added.
|
data/lib/cocoapods.rb
CHANGED
@@ -518,7 +518,7 @@ Pod::Spec.new do |s|
|
|
518
518
|
|
519
519
|
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
|
520
520
|
#
|
521
|
-
# CocoaPods is smart about how it
|
521
|
+
# CocoaPods is smart about how it includes source code. For source files
|
522
522
|
# giving a folder will include any h, m, mm, c & cpp files. For header
|
523
523
|
# files it will include any header in the folder.
|
524
524
|
# Not including the public_header_files will make all headers public.
|
@@ -60,7 +60,7 @@ module Pod
|
|
60
60
|
#
|
61
61
|
def self.add_framework_build_settings(framework_path, xcconfig, sandbox_root)
|
62
62
|
name = File.basename(framework_path, ".framework")
|
63
|
-
dirname =
|
63
|
+
dirname = '$(PODS_ROOT)/' + framework_path.dirname.relative_path_from(sandbox_root).to_s
|
64
64
|
build_settings = {
|
65
65
|
'OTHER_LDFLAGS' => "-framework #{name}",
|
66
66
|
'FRAMEWORK_SEARCH_PATHS' => quote([dirname])
|
@@ -79,7 +79,7 @@ module Pod
|
|
79
79
|
#
|
80
80
|
def self.add_library_build_settings(library_path, xcconfig, sandbox_root)
|
81
81
|
name = File.basename(library_path, ".a").sub(/\Alib/, '')
|
82
|
-
dirname =
|
82
|
+
dirname = '$(PODS_ROOT)/' + library_path.dirname.relative_path_from(sandbox_root).to_s
|
83
83
|
build_settings = {
|
84
84
|
'OTHER_LDFLAGS' => "-l#{name}",
|
85
85
|
'LIBRARY_SEARCH_PATHS' => quote([dirname])
|
data/lib/cocoapods/installer.rb
CHANGED
@@ -399,7 +399,8 @@ module Pod
|
|
399
399
|
UI.message "- Writing Xcode project file to #{UI.path sandbox.project_path}" do
|
400
400
|
pods_project.pods.remove_from_project if pods_project.pods.empty?
|
401
401
|
pods_project.development_pods.remove_from_project if pods_project.development_pods.empty?
|
402
|
-
pods_project.sort
|
402
|
+
pods_project.sort({:groups_position => :below})
|
403
|
+
pods_project.recreate_user_schemes(false)
|
403
404
|
pods_project.save
|
404
405
|
end
|
405
406
|
end
|
@@ -182,6 +182,9 @@ module Pod
|
|
182
182
|
target.client_root = config.installation_root
|
183
183
|
target.user_target_uuids = []
|
184
184
|
target.user_build_configurations = {}
|
185
|
+
if target_definition.platform.name == :osx
|
186
|
+
target.archs = '$(ARCHS_STANDARD_64_BIT)'
|
187
|
+
end
|
185
188
|
end
|
186
189
|
|
187
190
|
grouped_specs = specs.map do |spec|
|
@@ -190,8 +193,15 @@ module Pod
|
|
190
193
|
|
191
194
|
grouped_specs.each do |pod_specs|
|
192
195
|
pod_target = PodTarget.new(pod_specs, target_definition, sandbox)
|
196
|
+
if config.integrate_targets?
|
193
197
|
pod_target.user_build_configurations = target.user_build_configurations
|
194
198
|
pod_target.archs = @archs_by_target_def[target_definition]
|
199
|
+
else
|
200
|
+
pod_target.user_build_configurations = {}
|
201
|
+
if target_definition.platform.name == :osx
|
202
|
+
pod_target.archs = '$(ARCHS_STANDARD_64_BIT)'
|
203
|
+
end
|
204
|
+
end
|
195
205
|
target.pod_targets << pod_target
|
196
206
|
end
|
197
207
|
end
|
@@ -69,7 +69,7 @@ module Pod
|
|
69
69
|
#
|
70
70
|
def add_source_files_references
|
71
71
|
UI.message "- Adding source files to Pods project" do
|
72
|
-
add_file_accessors_paths_to_pods_group(:source_files
|
72
|
+
add_file_accessors_paths_to_pods_group(:source_files)
|
73
73
|
end
|
74
74
|
end
|
75
75
|
|
@@ -79,7 +79,7 @@ module Pod
|
|
79
79
|
#
|
80
80
|
def add_frameworks_bundles
|
81
81
|
UI.message "- Adding frameworks to Pods project" do
|
82
|
-
add_file_accessors_paths_to_pods_group(:vendored_frameworks, :
|
82
|
+
add_file_accessors_paths_to_pods_group(:vendored_frameworks, :frameworks)
|
83
83
|
end
|
84
84
|
end
|
85
85
|
|
@@ -88,8 +88,8 @@ module Pod
|
|
88
88
|
# @return [void]
|
89
89
|
#
|
90
90
|
def add_vendored_libraries
|
91
|
-
UI.message "- Adding
|
92
|
-
add_file_accessors_paths_to_pods_group(:vendored_libraries, :
|
91
|
+
UI.message "- Adding libraries to Pods project" do
|
92
|
+
add_file_accessors_paths_to_pods_group(:vendored_libraries, :frameworks)
|
93
93
|
end
|
94
94
|
end
|
95
95
|
|
@@ -156,7 +156,7 @@ module Pod
|
|
156
156
|
#
|
157
157
|
# @return [void]
|
158
158
|
#
|
159
|
-
def add_file_accessors_paths_to_pods_group(file_accessor_key, group_key)
|
159
|
+
def add_file_accessors_paths_to_pods_group(file_accessor_key, group_key = nil)
|
160
160
|
file_accessors.each do |file_accessor|
|
161
161
|
paths = file_accessor.send(file_accessor_key)
|
162
162
|
paths.each do |path|
|
@@ -13,7 +13,6 @@ module Pod
|
|
13
13
|
def install!
|
14
14
|
UI.message "- Installing target `#{library.name}` #{library.platform}" do
|
15
15
|
add_target
|
16
|
-
move_target_product_file_reference
|
17
16
|
add_files_to_build_phases
|
18
17
|
add_resources_bundle_targets
|
19
18
|
# create_suport_files_group
|
@@ -48,12 +47,6 @@ module Pod
|
|
48
47
|
end
|
49
48
|
end
|
50
49
|
|
51
|
-
def move_target_product_file_reference
|
52
|
-
pod_name = library.pod_name
|
53
|
-
group = project.group_for_spec(pod_name, :products)
|
54
|
-
target.product_reference.move(group)
|
55
|
-
end
|
56
|
-
|
57
50
|
# Adds the resources of the Pods to the Pods project.
|
58
51
|
#
|
59
52
|
# @note The source files are grouped by Pod and in turn by subspec
|
@@ -72,8 +65,7 @@ module Pod
|
|
72
65
|
end
|
73
66
|
file_references = paths.map { |sf| project.reference_for_path(sf) }
|
74
67
|
group = project.group_for_spec(file_accessor.spec.name, :products)
|
75
|
-
|
76
|
-
bundle_target = project.new_resources_bundle(bundle_name, file_accessor.spec_consumer.platform_name, product_group)
|
68
|
+
bundle_target = project.new_resources_bundle(bundle_name, file_accessor.spec_consumer.platform_name)
|
77
69
|
bundle_target.add_resources(file_references)
|
78
70
|
|
79
71
|
library.user_build_configurations.each do |bc_name, type|
|
@@ -201,7 +193,7 @@ module Pod
|
|
201
193
|
#
|
202
194
|
def add_file_to_support_group(path)
|
203
195
|
pod_name = library.pod_name
|
204
|
-
group = project.
|
196
|
+
group = project.pod_support_files_group(pod_name)
|
205
197
|
group.new_file(path)
|
206
198
|
end
|
207
199
|
|
@@ -129,7 +129,7 @@ module Pod
|
|
129
129
|
frameworks = user_project.frameworks_group
|
130
130
|
native_targets.each do |native_target|
|
131
131
|
library = frameworks.files.select { |f| f.path == target.product_name }.first ||
|
132
|
-
frameworks.
|
132
|
+
frameworks.new_product_ref_for_target(target.name, :static_library)
|
133
133
|
unless native_target.frameworks_build_phase.files_references.include?(library)
|
134
134
|
native_target.frameworks_build_phase.add_file_reference(library)
|
135
135
|
end
|
data/lib/cocoapods/project.rb
CHANGED
@@ -19,6 +19,16 @@ 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
|
22
32
|
end
|
23
33
|
|
24
34
|
# @return [PBXGroup] The group for the support files of the aggregate
|
@@ -63,8 +73,6 @@ module Pod
|
|
63
73
|
parent_group = development ? development_pods : pods
|
64
74
|
source_tree = absolute ? :absolute : :group
|
65
75
|
group = parent_group.new_group(pod_name, path, source_tree)
|
66
|
-
support_files_group = group.new_group(SPEC_SUBGROUPS[:support_files])
|
67
|
-
support_files_group.source_tree = 'SOURCE_ROOT'
|
68
76
|
group
|
69
77
|
end
|
70
78
|
|
@@ -88,12 +96,8 @@ module Pod
|
|
88
96
|
# @return [Hash] The names of the specification subgroups by key.
|
89
97
|
#
|
90
98
|
SPEC_SUBGROUPS = {
|
91
|
-
:
|
92
|
-
:
|
93
|
-
:frameworks_and_libraries => 'Frameworks & Libraries',
|
94
|
-
:support_files => 'Support Files',
|
95
|
-
:subspecs => 'Subspecs',
|
96
|
-
:products => 'Products',
|
99
|
+
:resources => 'Resources',
|
100
|
+
:frameworks => 'Frameworks',
|
97
101
|
}
|
98
102
|
|
99
103
|
# Returns the group for the specification with the give name creating it if
|
@@ -102,22 +106,44 @@ module Pod
|
|
102
106
|
# @param [String] spec_name
|
103
107
|
# The full name of the specification.
|
104
108
|
#
|
105
|
-
# @param [Symbol] subgroup_key
|
106
|
-
# The optional key of the subgroup (@see #{SPEC_SUBGROUPS})
|
107
|
-
#
|
108
109
|
# @return [PBXGroup] The group.
|
109
110
|
#
|
110
111
|
def group_for_spec(spec_name, subgroup_key = nil)
|
111
|
-
|
112
|
+
pod_name = Specification.root_name(spec_name)
|
113
|
+
group = pod_group(pod_name)
|
114
|
+
raise "[Bug] Unable to locate group for Pod named `#{pod_name}`" unless group
|
115
|
+
if spec_name != pod_name
|
116
|
+
subspecs_names = spec_name.gsub(pod_name + '/', '').split('/')
|
117
|
+
subspecs_names.each do |name|
|
118
|
+
group = group[name] || group.new_group(name)
|
119
|
+
end
|
120
|
+
end
|
121
|
+
|
112
122
|
if subgroup_key
|
113
|
-
|
114
|
-
raise ArgumentError, "Unrecognized subgroup `#{subgroup_key}`" unless
|
115
|
-
|
116
|
-
else
|
117
|
-
spec_group
|
123
|
+
subgroup_name = SPEC_SUBGROUPS[subgroup_key]
|
124
|
+
raise ArgumentError, "Unrecognized subgroup key `#{subgroup_key}`" unless subgroup_name
|
125
|
+
group = group[subgroup_name] || group.new_group(subgroup_name)
|
118
126
|
end
|
127
|
+
|
128
|
+
group
|
119
129
|
end
|
120
130
|
|
131
|
+
# Returns the support files group for the Pod with the given name.
|
132
|
+
#
|
133
|
+
# @param [String] pod_name
|
134
|
+
# The name of the Pod.
|
135
|
+
#
|
136
|
+
# @return [PBXGroup] The group.
|
137
|
+
#
|
138
|
+
def pod_support_files_group(pod_name)
|
139
|
+
group = pod_group(pod_name)
|
140
|
+
support_files_group = group['Support Files']
|
141
|
+
unless support_files_group
|
142
|
+
support_files_group = group.new_group('Support Files')
|
143
|
+
support_files_group.source_tree = 'SOURCE_ROOT'
|
144
|
+
end
|
145
|
+
support_files_group
|
146
|
+
end
|
121
147
|
|
122
148
|
public
|
123
149
|
|
@@ -188,27 +214,6 @@ module Pod
|
|
188
214
|
#
|
189
215
|
attr_reader :refs_by_absolute_path
|
190
216
|
|
191
|
-
# Returns the group for the given specification creating it if needed.
|
192
|
-
#
|
193
|
-
# @param [String] spec_name
|
194
|
-
# The full name of the specification.
|
195
|
-
#
|
196
|
-
# @return [PBXGroup] The group for the spec with the given name.
|
197
|
-
#
|
198
|
-
def spec_group(spec_name)
|
199
|
-
pod_name = Specification.root_name(spec_name)
|
200
|
-
group = pod_group(pod_name)
|
201
|
-
raise "[Bug] Unable to locate group for Pod named `#{pod_name}`" unless group
|
202
|
-
if spec_name != pod_name
|
203
|
-
subspecs_names = spec_name.gsub(pod_name + '/', '').split('/')
|
204
|
-
subspecs_names.each do |name|
|
205
|
-
subspecs_group = group[SPEC_SUBGROUPS[:subspecs]] || group.new_group(SPEC_SUBGROUPS[:subspecs])
|
206
|
-
group = subspecs_group[name] || subspecs_group.new_group(name)
|
207
|
-
end
|
208
|
-
end
|
209
|
-
group
|
210
|
-
end
|
211
|
-
|
212
217
|
#-------------------------------------------------------------------------#
|
213
218
|
|
214
219
|
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.
|
4
|
+
version: 0.26.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-10-08 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.
|
20
|
+
version: 0.26.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.
|
27
|
+
version: 0.26.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.
|
62
|
+
version: 0.12.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.12.0
|
70
70
|
- !ruby/object:Gem::Dependency
|
71
71
|
name: colored
|
72
72
|
requirement: !ruby/object:Gem::Requirement
|
@@ -129,14 +129,14 @@ dependencies:
|
|
129
129
|
requirements:
|
130
130
|
- - ~>
|
131
131
|
- !ruby/object:Gem::Version
|
132
|
-
version: '3.
|
132
|
+
version: '3.2'
|
133
133
|
type: :runtime
|
134
134
|
prerelease: false
|
135
135
|
version_requirements: !ruby/object:Gem::Requirement
|
136
136
|
requirements:
|
137
137
|
- - ~>
|
138
138
|
- !ruby/object:Gem::Version
|
139
|
-
version: '3.
|
139
|
+
version: '3.2'
|
140
140
|
- !ruby/object:Gem::Dependency
|
141
141
|
name: bacon
|
142
142
|
requirement: !ruby/object:Gem::Requirement
|
@@ -235,70 +235,37 @@ homepage: https://github.com/CocoaPods/CocoaPods
|
|
235
235
|
licenses:
|
236
236
|
- MIT
|
237
237
|
metadata: {}
|
238
|
-
post_install_message:
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
###### Bug Fixes
|
270
|
-
|
271
|
-
* Only create a single resource bundle for all targets. Prior to this change a
|
272
|
-
resource bundle included into multiple targets within the project would create
|
273
|
-
duplicately named targets in the Pods Xcode project, causing duplicately named
|
274
|
-
Schemes to be created on each invocation of `pod install`. All targets that
|
275
|
-
reference a given resource bundle now have dependencies on a single common
|
276
|
-
target.
|
277
|
-
|
278
|
-
[Blake Watters](https://github.com/blakewatters)
|
279
|
-
[#1338](https://github.com/CocoaPods/CocoaPods/issues/1338)
|
280
|
-
|
281
|
-
* Solved outstanding issues with CocoaPods resource bundles and Archive builds:
|
282
|
-
1. The rsync task copies symlinks into the App Bundle, producing an invalid
|
283
|
-
app. This change add `--copy-links` to the rsync invocation to ensure the
|
284
|
-
target files are copied rather than the symlink.
|
285
|
-
2. The Copy Resources script uses `TARGET_BUILD_DIR` which points to the App
|
286
|
-
Archiving folder during an Archive action. Switching to
|
287
|
-
`BUILT_PRODUCTS_DIR` instead ensures that the path is correct for all
|
288
|
-
actions and configurations.
|
289
|
-
|
290
|
-
[Blake Watters](https://github.com/blakewatters)
|
291
|
-
[#1309](https://github.com/CocoaPods/CocoaPods/issues/1309)
|
292
|
-
[#1329](https://github.com/CocoaPods/CocoaPods/issues/1329)
|
293
|
-
|
294
|
-
* Ensure resource bundles are copied to installation location on install actions
|
295
|
-
[Chris Gummer](https://github.com/chrisgummer)
|
296
|
-
[#1364](https://github.com/CocoaPods/CocoaPods/issues/1364)
|
297
|
-
|
298
|
-
* Various bugfixes in Xcodeproj, refer to its [CHANGELOG](https://github.com/CocoaPods/Xcodeproj/blob/0.11.0/CHANGELOG.md)
|
299
|
-
for details.
|
300
|
-
|
301
|
-
|
238
|
+
post_install_message: "\nCHANGELOG:\n\n## 0.26.0\n[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.25.0...0.26.0)\n•
|
239
|
+
[cocoapods-core](https://github.com/CocoaPods/Core/compare/0.25.0...0.26.0)\n• [Xcodeproj](https://github.com/CocoaPods/Xcodeproj/compare/0.11.1...0.12.0)\n\n######
|
240
|
+
Enhancements\n\n* CocoaPods now creates and hides the schemes of its targets after
|
241
|
+
every\n installation. The schemes are not shared because the flag which keeps track\n
|
242
|
+
\ whether they should be visible is a user only flag. The schemes are still\n present
|
243
|
+
and to debug a single Pod it is possible to make its scheme visible\n in the Schemes
|
244
|
+
manager of Xcode. This is rarely needed though because the\n user targets trigger
|
245
|
+
the compilation of the Pod targets. \n [Fabio Pelosin](https://github.com/irrationalfab)\n
|
246
|
+
\ [#1185](https://github.com/CocoaPods/CocoaPods/pull/1185)\n\n* Installations which
|
247
|
+
don't integrate a user target (lint subcommands and\n `--no-integrate` option)
|
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"
|
302
269
|
rdoc_options: []
|
303
270
|
require_paths:
|
304
271
|
- lib
|