cocoapods 1.10.0 → 1.16.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 +571 -7
- data/README.md +10 -11
- data/bin/sandbox-pod +1 -1
- data/lib/cocoapods/command/lib/lint.rb +4 -1
- data/lib/cocoapods/command/outdated.rb +12 -1
- data/lib/cocoapods/command/repo/push.rb +20 -0
- data/lib/cocoapods/command/setup.rb +2 -2
- data/lib/cocoapods/command/spec/cat.rb +3 -1
- data/lib/cocoapods/command/spec/create.rb +1 -0
- data/lib/cocoapods/command/spec/lint.rb +4 -1
- data/lib/cocoapods/command/spec/which.rb +3 -1
- data/lib/cocoapods/command/spec.rb +18 -9
- data/lib/cocoapods/config.rb +8 -7
- data/lib/cocoapods/downloader/cache.rb +98 -6
- data/lib/cocoapods/downloader.rb +4 -2
- data/lib/cocoapods/executable.rb +1 -1
- data/lib/cocoapods/external_sources/abstract_external_source.rb +1 -1
- data/lib/cocoapods/external_sources/path_source.rb +1 -1
- data/lib/cocoapods/external_sources/podspec_source.rb +1 -1
- data/lib/cocoapods/gem_version.rb +1 -1
- data/lib/cocoapods/generator/acknowledgements.rb +13 -1
- data/lib/cocoapods/generator/app_target_helper.rb +8 -4
- data/lib/cocoapods/generator/copy_dsyms_script.rb +4 -4
- data/lib/cocoapods/generator/copy_resources_script.rb +2 -1
- data/lib/cocoapods/generator/copy_xcframework_script.rb +52 -70
- data/lib/cocoapods/generator/embed_frameworks_script.rb +4 -3
- data/lib/cocoapods/generator/info_plist_file.rb +1 -1
- data/lib/cocoapods/generator/script_phase_constants.rb +1 -0
- data/lib/cocoapods/installer/analyzer/analysis_result.rb +3 -3
- data/lib/cocoapods/installer/analyzer/pod_variant.rb +1 -1
- data/lib/cocoapods/installer/analyzer/sandbox_analyzer.rb +38 -10
- data/lib/cocoapods/installer/analyzer.rb +21 -13
- data/lib/cocoapods/installer/base_install_hooks_context.rb +19 -4
- data/lib/cocoapods/installer/installation_options.rb +11 -0
- data/lib/cocoapods/installer/pod_source_downloader.rb +159 -0
- data/lib/cocoapods/installer/pod_source_installer.rb +10 -36
- data/lib/cocoapods/installer/podfile_validator.rb +2 -2
- data/lib/cocoapods/installer/pre_integrate_hooks_context.rb +9 -0
- data/lib/cocoapods/installer/project_cache/project_cache_analyzer.rb +14 -7
- data/lib/cocoapods/installer/project_cache/project_installation_cache.rb +15 -2
- data/lib/cocoapods/installer/project_cache/target_cache_key.rb +48 -7
- data/lib/cocoapods/installer/user_project_integrator/target_integrator.rb +150 -9
- data/lib/cocoapods/installer/xcode/pods_project_generator/app_host_installer.rb +11 -3
- data/lib/cocoapods/installer/xcode/pods_project_generator/file_references_installer.rb +62 -9
- data/lib/cocoapods/installer/xcode/pods_project_generator/pod_target_dependency_installer.rb +6 -19
- data/lib/cocoapods/installer/xcode/pods_project_generator/pod_target_installer.rb +86 -59
- data/lib/cocoapods/installer/xcode/pods_project_generator/pod_target_integrator.rb +48 -6
- data/lib/cocoapods/installer/xcode/pods_project_generator/project_generator.rb +3 -1
- data/lib/cocoapods/installer/xcode/pods_project_generator/target_installation_result.rb +2 -2
- data/lib/cocoapods/installer/xcode/pods_project_generator/target_installer.rb +8 -5
- data/lib/cocoapods/installer/xcode/pods_project_generator/target_installer_helper.rb +9 -3
- data/lib/cocoapods/installer/xcode/pods_project_generator.rb +37 -2
- data/lib/cocoapods/installer/xcode/target_validator.rb +1 -1
- data/lib/cocoapods/installer.rb +150 -34
- data/lib/cocoapods/native_target_extension.rb +1 -1
- data/lib/cocoapods/open-uri.rb +1 -1
- data/lib/cocoapods/project.rb +8 -8
- data/lib/cocoapods/resolver/resolver_specification.rb +1 -1
- data/lib/cocoapods/resolver.rb +7 -7
- data/lib/cocoapods/sandbox/file_accessor.rb +67 -11
- data/lib/cocoapods/sandbox/headers_store.rb +3 -1
- data/lib/cocoapods/sandbox/path_list.rb +2 -2
- data/lib/cocoapods/sandbox/pod_dir_cleaner.rb +1 -1
- data/lib/cocoapods/sandbox.rb +48 -12
- data/lib/cocoapods/sources_manager.rb +18 -9
- data/lib/cocoapods/target/aggregate_target.rb +23 -1
- data/lib/cocoapods/target/build_settings.rb +67 -22
- data/lib/cocoapods/target/pod_target.rb +49 -24
- data/lib/cocoapods/target.rb +1 -1
- data/lib/cocoapods/user_interface.rb +6 -2
- data/lib/cocoapods/validator.rb +58 -22
- data/lib/cocoapods/version_metadata.rb +1 -1
- data/lib/cocoapods/xcode/xcframework/xcframework_slice.rb +22 -7
- data/lib/cocoapods/xcode/xcframework.rb +9 -4
- data/lib/cocoapods.rb +2 -0
- metadata +35 -27
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c196e690e3190c21dc7ec7355169332ecdf6a88379cf8743394b618a3e477ecc
|
|
4
|
+
data.tar.gz: 86ba050b8fbf1300f0c7debd1e454f65687429df67e7d57f005300af7879668d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 20d4c854b06ccebca73060b3f393a0d53eff4799f755a5357c516e23b02db225fe60c75be5c67af3db4bf8f6108e1c76291995fe530264cdc644e2bf1d891a71
|
|
7
|
+
data.tar.gz: 7a9f0b071c3737d0dbff38a74e512ca0e9a4f11d5ca5774edebe5e65c34e32084ab38d5e1d2ac7e36836570b21cd5214ef1038f95672c74868a733148bd4cb29
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,571 @@ To install or update CocoaPods see this [guide](https://guides.cocoapods.org/usi
|
|
|
4
4
|
|
|
5
5
|
To install release candidates run `[sudo] gem install cocoapods --pre`
|
|
6
6
|
|
|
7
|
+
## 1.16.0 (2024-10-29)
|
|
8
|
+
|
|
9
|
+
##### Enhancements
|
|
10
|
+
|
|
11
|
+
* Add Support for Xcode 14.3's ENABLE_MODULE_VERIFIER.
|
|
12
|
+
[sharplet](https://github.com/sharplet)
|
|
13
|
+
[#12390](https://github.com/CocoaPods/CocoaPods/pull/12390)
|
|
14
|
+
|
|
15
|
+
* Xcode 16 support.
|
|
16
|
+
* Bump minimum `xcodeproj` to `1.26.0`
|
|
17
|
+
* Update project generator to set `GENERATE_INFOPLIST_FILE = NO` on pod targets
|
|
18
|
+
* Update project generator to set `ENABLE_USER_SCRIPT_SANDBOXING = NO` = NO` on pod targets to fix build failures with vendored frameworks.
|
|
19
|
+
* Update project geneerator to set `SWIFT_INSTALL_OBJC_HEADER = YES` on pod targets to enable consuming Swift pods from Objective-C.
|
|
20
|
+
|
|
21
|
+
[Eric Amorde](https://github.com/amorde)
|
|
22
|
+
[#12656](https://github.com/CocoaPods/CocoaPods/pull/12656)
|
|
23
|
+
|
|
24
|
+
##### Bug Fixes
|
|
25
|
+
|
|
26
|
+
* Fix pod install issue when git's `core.fsmonitor` feature is enabled (again)
|
|
27
|
+
[Justin Martin](https://github.com/justinseanmartin)
|
|
28
|
+
[#12349](https://github.com/CocoaPods/CocoaPods/issues/12349)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
## 1.15.2 (2024-02-06)
|
|
32
|
+
|
|
33
|
+
##### Enhancements
|
|
34
|
+
|
|
35
|
+
* None.
|
|
36
|
+
|
|
37
|
+
##### Bug Fixes
|
|
38
|
+
|
|
39
|
+
* Revert #12154, #12165, and #12158 to fix regressions in 1.15.0 and 1.15.1.
|
|
40
|
+
[Paul Beusterien](https://github.com/paulb777)
|
|
41
|
+
[#12226](https://github.com/CocoaPods/CocoaPods/issues/12226)
|
|
42
|
+
|
|
43
|
+
## 1.15.1 (2024-02-06)
|
|
44
|
+
|
|
45
|
+
##### Enhancements
|
|
46
|
+
|
|
47
|
+
* None.
|
|
48
|
+
|
|
49
|
+
##### Bug Fixes
|
|
50
|
+
|
|
51
|
+
* Fix an issue when caching downloads of certain Pods.
|
|
52
|
+
[Eric Amorde](https://github.com/amorde)
|
|
53
|
+
[#12226](https://github.com/CocoaPods/CocoaPods/issues/12226)
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
## 1.15.0 (2024-01-28)
|
|
57
|
+
|
|
58
|
+
##### Enhancements
|
|
59
|
+
|
|
60
|
+
* Optimize performance during uncached pod installation.
|
|
61
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
62
|
+
[#12154](https://github.com/CocoaPods/CocoaPods/pull/12154)
|
|
63
|
+
|
|
64
|
+
##### Bug Fixes
|
|
65
|
+
|
|
66
|
+
* Fix pod install issue when git's `core.fsmonitor` feature is enabled
|
|
67
|
+
[Justin Martin](https://github.com/justinseanmartin)
|
|
68
|
+
[#11640](https://github.com/CocoaPods/CocoaPods/issues/11640)
|
|
69
|
+
|
|
70
|
+
* Don't use the `remove_destination` parameter in FileUtils.cp_r
|
|
71
|
+
[Justin Martin](https://github.com/justinseanmartin)
|
|
72
|
+
[#12165](https://github.com/CocoaPods/CocoaPods/pull/12165)
|
|
73
|
+
|
|
74
|
+
* Support `visionos` in `pod lib lint --platforms=` and use `xros` for `Fourflusher`
|
|
75
|
+
[MagnificentMiles](https://github.com/MagnificentMiles)
|
|
76
|
+
[#12159](https://github.com/CocoaPods/CocoaPods/pull/12159)
|
|
77
|
+
|
|
78
|
+
## 1.14.3 (2023-11-19)
|
|
79
|
+
|
|
80
|
+
##### Enhancements
|
|
81
|
+
|
|
82
|
+
* None.
|
|
83
|
+
|
|
84
|
+
##### Bug Fixes
|
|
85
|
+
|
|
86
|
+
* Revert minimum required Ruby version to 2.6 to support macOS system Ruby
|
|
87
|
+
[Eric Amorde](https://github.com/amorde)
|
|
88
|
+
[#12122](https://github.com/CocoaPods/CocoaPods/issues/12122)
|
|
89
|
+
|
|
90
|
+
## 1.14.2 (2023-10-27)
|
|
91
|
+
|
|
92
|
+
##### Enhancements
|
|
93
|
+
|
|
94
|
+
* None.
|
|
95
|
+
|
|
96
|
+
##### Bug Fixes
|
|
97
|
+
|
|
98
|
+
* None.
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
## 1.14.1 (2023-10-26)
|
|
102
|
+
|
|
103
|
+
##### Enhancements
|
|
104
|
+
|
|
105
|
+
* None.
|
|
106
|
+
|
|
107
|
+
##### Bug Fixes
|
|
108
|
+
|
|
109
|
+
* None.
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
## 1.14.0 (2023-10-26)
|
|
113
|
+
|
|
114
|
+
##### Enhancements
|
|
115
|
+
|
|
116
|
+
* None.
|
|
117
|
+
|
|
118
|
+
##### Bug Fixes
|
|
119
|
+
|
|
120
|
+
* Fix a crash when running with activesupport 7.1.0.
|
|
121
|
+
[MCanhisares](https://github.com/MCanhisares)
|
|
122
|
+
[#12081](https://github.com/CocoaPods/CocoaPods/issues/12081)
|
|
123
|
+
|
|
124
|
+
* Fix another crash when running with activesupport 7.1.0.
|
|
125
|
+
[movila](https://github.com/movila)
|
|
126
|
+
[#12089](https://github.com/CocoaPods/CocoaPods/issues/12089)
|
|
127
|
+
|
|
128
|
+
##### Other
|
|
129
|
+
|
|
130
|
+
* Drop support for `bazaar` SCM
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
## 1.13.0 (2023-09-22)
|
|
134
|
+
|
|
135
|
+
##### Enhancements
|
|
136
|
+
|
|
137
|
+
* Add `visionOS` as a new platform.
|
|
138
|
+
[Gabriel Donadel](https://github.com/gabrieldonadel)
|
|
139
|
+
[#11965](https://github.com/CocoaPods/CocoaPods/pull/11965)
|
|
140
|
+
|
|
141
|
+
* Extend `script_phase` DSL to support `always_out_of_date` attribute.
|
|
142
|
+
[Alvar Hansen](https://github.com/alvarhansen)
|
|
143
|
+
[#12055](https://github.com/CocoaPods/CocoaPods/pull/12055)
|
|
144
|
+
|
|
145
|
+
##### Bug Fixes
|
|
146
|
+
|
|
147
|
+
* Use `safe_load` during custom YAML config loading.
|
|
148
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
149
|
+
[#11974](https://github.com/CocoaPods/CocoaPods/pull/11974)
|
|
150
|
+
|
|
151
|
+
* Xcode 15 fix: Replace `DT_TOOLCHAIN_DIR` with `TOOLCHAIN_DIR` when generating script.
|
|
152
|
+
[Marcus Wu](https://github.com/marcuswu0814)
|
|
153
|
+
[#12009](https://github.com/CocoaPods/CocoaPods/pull/12009)
|
|
154
|
+
|
|
155
|
+
## 1.12.1 (2023-04-18)
|
|
156
|
+
|
|
157
|
+
##### Enhancements
|
|
158
|
+
|
|
159
|
+
* None.
|
|
160
|
+
|
|
161
|
+
##### Bug Fixes
|
|
162
|
+
|
|
163
|
+
* Xcode 14.3 fix: Pass the -f option when resolving the path to the symlinked source.
|
|
164
|
+
[Chris Vasselli](https://github.com/chrisvasselli)
|
|
165
|
+
[#11828](https://github.com/CocoaPods/CocoaPods/pull/11828)
|
|
166
|
+
[#11808](https://github.com/CocoaPods/CocoaPods/issues/11808)
|
|
167
|
+
|
|
168
|
+
* Fix typo in validation for `--validation-dir` help message
|
|
169
|
+
[Austin Evans](https://github.com/ajevans99)
|
|
170
|
+
[#11857](https://github.com/CocoaPods/CocoaPods/issues/11857)
|
|
171
|
+
|
|
172
|
+
* Xcode 14.3 fix: `pod lib lint` warning generation from main.m.
|
|
173
|
+
[Paul Beusterien](https://github.com/paulb777)
|
|
174
|
+
[#11846](https://github.com/CocoaPods/CocoaPods/issues/11846)
|
|
175
|
+
|
|
176
|
+
## 1.12.0 (2023-02-27)
|
|
177
|
+
|
|
178
|
+
##### Enhancements
|
|
179
|
+
|
|
180
|
+
* Add ability to specify the `validation-dir` during `lint`.
|
|
181
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
182
|
+
[#11773](https://github.com/CocoaPods/CocoaPods/pull/11773)
|
|
183
|
+
|
|
184
|
+
* Correctly handle `.docc` documentation in source_files.
|
|
185
|
+
[haifengkao](https://github.com/haifengkao)
|
|
186
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
187
|
+
[#11438](https://github.com/CocoaPods/CocoaPods/pull/11438)
|
|
188
|
+
[#10885](https://github.com/CocoaPods/CocoaPods/issues/10885)
|
|
189
|
+
|
|
190
|
+
* Re-use the same path lists for pods that share the same root.
|
|
191
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
192
|
+
[#11417](https://github.com/CocoaPods/CocoaPods/pull/11417)
|
|
193
|
+
|
|
194
|
+
* Integrate `parallelizable` scheme DSL option.
|
|
195
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
196
|
+
[#11399](https://github.com/CocoaPods/CocoaPods/pull/11399)
|
|
197
|
+
|
|
198
|
+
* Use `${DEVELOPMENT_LANGUAGE}` as the default `CFBundleDevelopmentRegion` value in any generated `Info.plist`.
|
|
199
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
200
|
+
[#10950](https://github.com/CocoaPods/CocoaPods/pull/10950)
|
|
201
|
+
|
|
202
|
+
* Fix setting `LD_RUNTIME_SEARCH_PATHS` for aggregate targets that include dynamic xcframeworks.
|
|
203
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
204
|
+
[#11158](https://github.com/CocoaPods/CocoaPods/pull/11158)
|
|
205
|
+
|
|
206
|
+
* Add method for formatting licenses for acknowledgements generation.
|
|
207
|
+
[Raihaan Shouhell](https://github.com/res0nance)
|
|
208
|
+
[#10940](https://github.com/CocoaPods/CocoaPods/pull/10940)
|
|
209
|
+
|
|
210
|
+
* Add the ability to download pods in parallel
|
|
211
|
+
[Seth Friedman](https://github.com/sethfri)
|
|
212
|
+
[#11232](https://github.com/CocoaPods/CocoaPods/pull/11232)
|
|
213
|
+
|
|
214
|
+
* Include subprojects in the plugin post-install hook context
|
|
215
|
+
[Eric Amorde](https://github.com/amorde)
|
|
216
|
+
[#11224](https://github.com/CocoaPods/CocoaPods/pull/11224)
|
|
217
|
+
|
|
218
|
+
* Ensure the order of slices passed to the `install_xcframework` script (in the "Copy XCFrameworks" script build phase) is stable.
|
|
219
|
+
[Olivier Halligon](https://github.com/AliSoftware)
|
|
220
|
+
[#11707](https://github.com/CocoaPods/CocoaPods/pull/11707)
|
|
221
|
+
|
|
222
|
+
##### Bug Fixes
|
|
223
|
+
|
|
224
|
+
* Fix incremental installation when a development pod is deleted.
|
|
225
|
+
[John Szumski](https://github.com/jszumski)
|
|
226
|
+
[#11438](https://github.com/CocoaPods/CocoaPods/pull/11681)
|
|
227
|
+
|
|
228
|
+
* Clean sandbox when a pod switches from remote to local.
|
|
229
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
230
|
+
[#11213](https://github.com/CocoaPods/CocoaPods/pull/11213)
|
|
231
|
+
|
|
232
|
+
* Run post install hooks when "skip Pods.xcodeproj generation" option is set
|
|
233
|
+
[Elton Gao](https://github.com/gyfelton)
|
|
234
|
+
[#11073](https://github.com/CocoaPods/CocoaPods/pull/11073)
|
|
235
|
+
|
|
236
|
+
* Change minimal required version of ruby-macho to 2.3.0.
|
|
237
|
+
[xuzhongping](https://github.com/xuzhongping)
|
|
238
|
+
[#10390](https://github.com/CocoaPods/CocoaPods/issues/10390)
|
|
239
|
+
|
|
240
|
+
* Add .gitignores to the banana and snake fixtures
|
|
241
|
+
[Seth Friedman](https://github.com/sethfri)
|
|
242
|
+
[#11235](https://github.com/CocoaPods/CocoaPods/pull/11235)
|
|
243
|
+
|
|
244
|
+
* Fix publishing podspecs with watchOS support on Xcode 14
|
|
245
|
+
[Justin Martin](https://github.com/justinseanmartin)
|
|
246
|
+
[#11660](https://github.com/CocoaPods/CocoaPods/pull/11660)
|
|
247
|
+
|
|
248
|
+
## 1.11.3 (2022-03-16)
|
|
249
|
+
|
|
250
|
+
##### Enhancements
|
|
251
|
+
|
|
252
|
+
* None.
|
|
253
|
+
|
|
254
|
+
##### Bug Fixes
|
|
255
|
+
|
|
256
|
+
* Fix script breaking when attempting to print a warning.
|
|
257
|
+
[Igor Makarov](https://github.com/igor-makarov)
|
|
258
|
+
[#11251](https://github.com/CocoaPods/CocoaPods/issues/11251)
|
|
259
|
+
|
|
260
|
+
* Do not consider podspec_repo when analying sandbox for changes.
|
|
261
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
262
|
+
[#10985](https://github.com/CocoaPods/CocoaPods/pull/10985)
|
|
263
|
+
|
|
264
|
+
* Rewrite XCFramework slice selection using plist metadata.
|
|
265
|
+
[Igor Makarov](https://github.com/igor-makarov)
|
|
266
|
+
[#11229](https://github.com/CocoaPods/CocoaPods/pull/11229)
|
|
267
|
+
|
|
268
|
+
* Fix setting `LD_RUNTIME_SEARCH_PATHS` for aggregate targets that include dynamic xcframeworks.
|
|
269
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
270
|
+
[#11158](https://github.com/CocoaPods/CocoaPods/pull/11158)
|
|
271
|
+
|
|
272
|
+
* Add catch for YAML syntax error to prevent crash in `cdn_url?` check.
|
|
273
|
+
[Kanstantsin Shautsou](https://github.com/KostyaSha)
|
|
274
|
+
[#11010](https://github.com/CocoaPods/CocoaPods/issues/11010)
|
|
275
|
+
|
|
276
|
+
* Fix static Swift XCFramework import paths.
|
|
277
|
+
[Igor Makarov](https://github.com/igor-makarov)
|
|
278
|
+
[#11058](https://github.com/CocoaPods/CocoaPods/issues/10058)
|
|
279
|
+
[#11093](https://github.com/CocoaPods/CocoaPods/pull/11093)
|
|
280
|
+
|
|
281
|
+
## 1.11.2 (2021-09-13)
|
|
282
|
+
|
|
283
|
+
##### Enhancements
|
|
284
|
+
|
|
285
|
+
* None.
|
|
286
|
+
|
|
287
|
+
##### Bug Fixes
|
|
288
|
+
|
|
289
|
+
* Do not validate modular header dependencies for pre-built Swift pods.
|
|
290
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
291
|
+
[#10912](https://github.com/CocoaPods/CocoaPods/issues/10912)
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
## 1.11.1 (2021-09-12)
|
|
295
|
+
|
|
296
|
+
##### Enhancements
|
|
297
|
+
|
|
298
|
+
* None.
|
|
299
|
+
|
|
300
|
+
##### Bug Fixes
|
|
301
|
+
|
|
302
|
+
* Handle spec repo urls with user info when determining if they are CDN.
|
|
303
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
304
|
+
[#10941](https://github.com/CocoaPods/CocoaPods/issues/10941)
|
|
305
|
+
|
|
306
|
+
* Set `INFOPLIST_FILE` build setting to `$(SRCROOT)/App/App-Info.plist` during lint.
|
|
307
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
308
|
+
[#10927](https://github.com/CocoaPods/CocoaPods/issues/10927)
|
|
309
|
+
|
|
310
|
+
* Set `PRODUCT_BUNDLE_IDENTIFIER` for generated app during lint.
|
|
311
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
312
|
+
[#10933](https://github.com/CocoaPods/CocoaPods/issues/10933)
|
|
313
|
+
|
|
314
|
+
|
|
315
|
+
## 1.11.0 (2021-09-01)
|
|
316
|
+
|
|
317
|
+
##### Enhancements
|
|
318
|
+
|
|
319
|
+
* None.
|
|
320
|
+
|
|
321
|
+
##### Bug Fixes
|
|
322
|
+
|
|
323
|
+
* None.
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
## 1.11.0.rc.1 (2021-08-25)
|
|
327
|
+
|
|
328
|
+
##### Enhancements
|
|
329
|
+
|
|
330
|
+
* None.
|
|
331
|
+
|
|
332
|
+
##### Bug Fixes
|
|
333
|
+
|
|
334
|
+
* Correctly process multiple `xcframeworks` a pod provides.
|
|
335
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
336
|
+
[#10378](https://github.com/CocoaPods/CocoaPods/issues/10378)
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
## 1.11.0.beta.2 (2021-08-11)
|
|
340
|
+
|
|
341
|
+
##### Enhancements
|
|
342
|
+
|
|
343
|
+
* Integrate ODR categories into projects.
|
|
344
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
345
|
+
[#10855](https://github.com/CocoaPods/CocoaPods/pull/10855)
|
|
346
|
+
|
|
347
|
+
##### Bug Fixes
|
|
348
|
+
|
|
349
|
+
* Pass correct paths for `select_slice` method.
|
|
350
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
351
|
+
[#10430](https://github.com/CocoaPods/CocoaPods/issues/10430)
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
## 1.11.0.beta.1 (2021-08-09)
|
|
355
|
+
|
|
356
|
+
##### Enhancements
|
|
357
|
+
|
|
358
|
+
* Add support for integrating on demand resources.
|
|
359
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
360
|
+
[JunyiXie](https://github.com/JunyiXie)
|
|
361
|
+
[#9606](https://github.com/CocoaPods/CocoaPods/issues/9606)
|
|
362
|
+
[#10845](https://github.com/CocoaPods/CocoaPods/pull/10845)
|
|
363
|
+
|
|
364
|
+
* Integrate `project_header_files` specified by specs.
|
|
365
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
366
|
+
[#9820](https://github.com/CocoaPods/CocoaPods/issues/9820)
|
|
367
|
+
|
|
368
|
+
* Mark RealityComposer-projects (`.rcproject`) files defined in resources for compilation.
|
|
369
|
+
[Hendrik von Prince](https://github.com/parallaxe)
|
|
370
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
371
|
+
[#10793](https://github.com/CocoaPods/CocoaPods/pull/10793)
|
|
372
|
+
|
|
373
|
+
* Integrate test specs and app specs of pre-built pods.
|
|
374
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
375
|
+
[#10795](https://github.com/CocoaPods/CocoaPods/pull/10795)
|
|
376
|
+
|
|
377
|
+
* Add support for `before_headers` and `after_headers` script phase DSL.
|
|
378
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
379
|
+
[#10770](https://github.com/CocoaPods/CocoaPods/issues/10770)
|
|
380
|
+
|
|
381
|
+
* Fix touch on a missing directory for dSYM copy phase script.
|
|
382
|
+
[alvarollmenezes](https://github.com/alvarollmenezes)
|
|
383
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
384
|
+
[#10488](https://github.com/CocoaPods/CocoaPods/issues/10488)
|
|
385
|
+
|
|
386
|
+
* Check the podfile sources and plugin sources when printing warnings without explicitly using the master source.
|
|
387
|
+
[gonghonglou](https://github.com/gonghonglou)
|
|
388
|
+
[#10764](https://github.com/CocoaPods/CocoaPods/pull/10764)
|
|
389
|
+
|
|
390
|
+
* Use relative paths in copy dsyms script.
|
|
391
|
+
[Mickey Knox](https://github.com/knox)
|
|
392
|
+
[#10583](https://github.com/CocoaPods/CocoaPods/pull/10583)
|
|
393
|
+
|
|
394
|
+
* Use `OpenURI.open_uri` instead.
|
|
395
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
396
|
+
[#10597](https://github.com/CocoaPods/CocoaPods/issues/10597)
|
|
397
|
+
|
|
398
|
+
* Set minimum supported Ruby version to 2.6.
|
|
399
|
+
[Igor Makarov](https://github.com/igor-makarov)
|
|
400
|
+
[#10412](https://github.com/CocoaPods/CocoaPods/pull/10412)
|
|
401
|
+
|
|
402
|
+
* Improve compatibility with ActiveSupport 6
|
|
403
|
+
[Jun Jiang](https://github.com/jasl)
|
|
404
|
+
[#10364](https://github.com/CocoaPods/CocoaPods/pull/10364)
|
|
405
|
+
|
|
406
|
+
* Add a `pre_integrate_hook` API
|
|
407
|
+
[dcvz](https://github.com/dcvz)
|
|
408
|
+
[#9935](https://github.com/CocoaPods/CocoaPods/pull/9935)
|
|
409
|
+
|
|
410
|
+
* Rewrite the only place dependent on `typhoeus`.
|
|
411
|
+
[Jun Jiang](https://github.com/jasl), [Igor Makarov](https://github.com/igor-makarov)
|
|
412
|
+
[#10346](https://github.com/CocoaPods/CocoaPods/pull/10346)
|
|
413
|
+
|
|
414
|
+
* Add a `--update-sources` option to `pod repo push` so one can ensure sources are up-to-date.
|
|
415
|
+
[Elton Gao](https://github.com/gyfelton)
|
|
416
|
+
[Justin Martin](https://github.com/justinseanmartin)
|
|
417
|
+
|
|
418
|
+
* Installing a local (`:path`) pod that defines script phases will no longer
|
|
419
|
+
produce warnings.
|
|
420
|
+
[Samuel Giddins](https://github.com/segiddins)
|
|
421
|
+
|
|
422
|
+
* Allow building app & test spec targets that depend on a library that uses
|
|
423
|
+
Swift without requiring an empty Swift file be present.
|
|
424
|
+
[Samuel Giddins](https://github.com/segiddins)
|
|
425
|
+
|
|
426
|
+
* Add flag to ignore prerelease versions when reporting latest version for outdated pods.
|
|
427
|
+
[cltnschlosser](https://github.com/cltnschlosser)
|
|
428
|
+
[#9916](https://github.com/CocoaPods/CocoaPods/pull/9916)
|
|
429
|
+
|
|
430
|
+
* Add possibility to skip modulemap generation
|
|
431
|
+
[till0xff](https://github.com/till0xff)
|
|
432
|
+
[#10235](https://github.com/CocoaPods/CocoaPods/issues/10235)
|
|
433
|
+
|
|
434
|
+
* Add a `--version` option to `pod spec cat` and `pod spec which` for listing the podspec of a specific version
|
|
435
|
+
[pietbrauer](https://github.com/pietbrauer)
|
|
436
|
+
[#10609](https://github.com/CocoaPods/CocoaPods/pull/10609)
|
|
437
|
+
|
|
438
|
+
##### Bug Fixes
|
|
439
|
+
|
|
440
|
+
* Fix resource variant groups in static frameworks
|
|
441
|
+
[Igor Makarov](https://github.com/igor-makarov)
|
|
442
|
+
[#10834](https://github.com/CocoaPods/CocoaPods/pull/10834)
|
|
443
|
+
[#10605](https://github.com/CocoaPods/CocoaPods/issues/10605)
|
|
444
|
+
|
|
445
|
+
* Fix adding embed frameworks script phase to unit test targets if xcframeworks are present.
|
|
446
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
447
|
+
[#10652](https://github.com/CocoaPods/CocoaPods/issues/10652)
|
|
448
|
+
|
|
449
|
+
* Remove unused `install_xcframework_library` code.
|
|
450
|
+
[Gio Lodi](https://github.com/mokagio)
|
|
451
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
452
|
+
[#10831](https://github.com/CocoaPods/CocoaPods/pull/10831)
|
|
453
|
+
|
|
454
|
+
* Validate vendored library names after they have been expanded.
|
|
455
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
456
|
+
[#10832](https://github.com/CocoaPods/CocoaPods/pull/10832)
|
|
457
|
+
|
|
458
|
+
* Place frameworks from xcframeworks into a unique folder name to avoid duplicate outputs.
|
|
459
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
460
|
+
[#10106](https://github.com/CocoaPods/CocoaPods/issues/10106)
|
|
461
|
+
|
|
462
|
+
* Update pod in Pods folder when changing the pod from branch to version in Podfie.
|
|
463
|
+
[gonghonglou](https://github.com/gonghonglou)
|
|
464
|
+
[#10825](https://github.com/CocoaPods/CocoaPods/pull/10825)
|
|
465
|
+
|
|
466
|
+
* Bump addressable dependency to 2.8.
|
|
467
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
468
|
+
[#10802](https://github.com/CocoaPods/CocoaPods/issues/10802)
|
|
469
|
+
|
|
470
|
+
* Dedup bcsymbolmap paths found from multiple vendored frameworks.
|
|
471
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
472
|
+
[#10373](https://github.com/CocoaPods/CocoaPods/issues/10373)
|
|
473
|
+
|
|
474
|
+
* Correctly filter dependencies for pod variants across different platforms.
|
|
475
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
476
|
+
[#10777](https://github.com/CocoaPods/CocoaPods/issues/10777)
|
|
477
|
+
|
|
478
|
+
* Generate default `Info.plist` for consumer app during validation.
|
|
479
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
480
|
+
[#8570](https://github.com/CocoaPods/CocoaPods/issues/8570)
|
|
481
|
+
|
|
482
|
+
* Fix lint subspec error when the name of subspec start with the pod name.
|
|
483
|
+
[XianpuMeng](https://github.com/XianpuMeng)
|
|
484
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
485
|
+
[#9906](https://github.com/CocoaPods/CocoaPods/issues/9906)
|
|
486
|
+
|
|
487
|
+
* Update `ruby-macho` gem version to support 1.x and 2.x.
|
|
488
|
+
[Eric Chamberlain](https://github.com/PeqNP)
|
|
489
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
490
|
+
[#10390](https://github.com/CocoaPods/CocoaPods/issues/10390)
|
|
491
|
+
|
|
492
|
+
* Respect `--configuration` option when analyzing via `pod lib lint --analyze`.
|
|
493
|
+
[Jenn Magder](https://github.com/jmagman)
|
|
494
|
+
[#10476](https://github.com/CocoaPods/CocoaPods/issues/10476)
|
|
495
|
+
|
|
496
|
+
* Do not add dependencies to 'Link Binary With Libraries' phase.
|
|
497
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
498
|
+
[#10133](https://github.com/CocoaPods/CocoaPods/pull/10133)
|
|
499
|
+
|
|
500
|
+
* Ensure cache integrity on concurrent installations.
|
|
501
|
+
[Erik Blomqvist](https://github.com/codiophile)
|
|
502
|
+
[#10013](https://github.com/CocoaPods/CocoaPods/issues/10013)
|
|
503
|
+
|
|
504
|
+
* Force a clean install if installation options change.
|
|
505
|
+
[Sebastian Shanus](https://github.com/sebastianv1)
|
|
506
|
+
[#10016](https://github.com/CocoaPods/CocoaPods/pull/10016)
|
|
507
|
+
|
|
508
|
+
* Correctly detect that a prebuilt pod uses Swift.
|
|
509
|
+
[Elton Gao](https://github.com/gyfelton)
|
|
510
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
511
|
+
[#8649](https://github.com/CocoaPods/CocoaPods/issues/8649)
|
|
512
|
+
|
|
513
|
+
* fix: ensure cached spec path uniq
|
|
514
|
+
[SolaWing](https://github.com/SolaWing)
|
|
515
|
+
[#10231](https://github.com/CocoaPods/CocoaPods/issues/10231)
|
|
516
|
+
|
|
517
|
+
* Set `knownRegions` on generated projects with localized resources to prevent Xcode from re-saving projects to disk.
|
|
518
|
+
[Eric Amorde](https://github.com/amorde)
|
|
519
|
+
[#10290](https://github.com/CocoaPods/CocoaPods/pull/10290)
|
|
520
|
+
|
|
521
|
+
* Serialize schemes that do not need to be rewritten by Xcode.
|
|
522
|
+
[Samuel Giddins](https://github.com/segiddins)
|
|
523
|
+
|
|
524
|
+
|
|
525
|
+
## 1.10.2 (2021-07-28)
|
|
526
|
+
|
|
527
|
+
##### Enhancements
|
|
528
|
+
|
|
529
|
+
* None.
|
|
530
|
+
|
|
531
|
+
##### Bug Fixes
|
|
532
|
+
|
|
533
|
+
* Fix errors when archiving a Catalyst app which depends on a pod which uses `header_mappings_dir`.
|
|
534
|
+
[Thomas Goyne](https://github.com/tgoyne)
|
|
535
|
+
[#10224](https://github.com/CocoaPods/CocoaPods/pull/10224)
|
|
536
|
+
|
|
537
|
+
* Fix missing `-ObjC` for static XCFrameworks - take 2
|
|
538
|
+
[Paul Beusterien](https://github.com/paulb777)
|
|
539
|
+
[#10459](https://github.com/CocoaPods/CocoaPods/issuess/10459)
|
|
540
|
+
|
|
541
|
+
* Change URL validation failure to a note
|
|
542
|
+
[Paul Beusterien](https://github.com/paulb777)
|
|
543
|
+
[#10291](https://github.com/CocoaPods/CocoaPods/issues/10291)
|
|
544
|
+
|
|
545
|
+
|
|
546
|
+
## 1.10.1 (2021-01-07)
|
|
547
|
+
|
|
548
|
+
##### Enhancements
|
|
549
|
+
|
|
550
|
+
* None.
|
|
551
|
+
|
|
552
|
+
##### Bug Fixes
|
|
553
|
+
|
|
554
|
+
* Fix library name in LD `-l` flags for XCFrameworks containing libraries
|
|
555
|
+
[Wes Campaigne](https://github.com/Westacular)
|
|
556
|
+
[#10165](https://github.com/CocoaPods/CocoaPods/issues/10165)
|
|
557
|
+
|
|
558
|
+
* Fix file extension replacement for resource paths when using static frameworks.
|
|
559
|
+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
|
|
560
|
+
[#10206](https://github.com/CocoaPods/CocoaPods/issues/10206)
|
|
561
|
+
|
|
562
|
+
* Fix processing of xcassets resources when pod target is static framework
|
|
563
|
+
[Federico Trimboli](https://github.com/fedetrim)
|
|
564
|
+
[#10175](https://github.com/CocoaPods/CocoaPods/pull/10175)
|
|
565
|
+
[#10170](https://github.com/CocoaPods/CocoaPods/issues/10170)
|
|
566
|
+
|
|
567
|
+
* Fix missing `-ObjC` for static XCFrameworks
|
|
568
|
+
[Paul Beusterien](https://github.com/paulb777)
|
|
569
|
+
[#10234](https://github.com/CocoaPods/CocoaPods/pull/10234)
|
|
570
|
+
|
|
571
|
+
|
|
7
572
|
## 1.10.0 (2020-10-20)
|
|
8
573
|
|
|
9
574
|
##### Enhancements
|
|
@@ -16,7 +581,7 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
|
|
|
16
581
|
[Wes Campaigne](https://github.com/Westacular)
|
|
17
582
|
[#10071](https://github.com/CocoaPods/CocoaPods/issues/10071)
|
|
18
583
|
|
|
19
|
-
* Add support for automatically
|
|
584
|
+
* Add support for automatically embedding XCFramework debug symbols for XCFrameworks generated with Xcode 12
|
|
20
585
|
[johntmcintosh](https://github.com/johntmcintosh)
|
|
21
586
|
[#10111](https://github.com/CocoaPods/CocoaPods/issues/10111)
|
|
22
587
|
|
|
@@ -91,12 +656,11 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
|
|
|
91
656
|
[Gereon Steffens](https://github.com/gereons)
|
|
92
657
|
[#9686](https://github.com/CocoaPods/CocoaPods/issues/9686)
|
|
93
658
|
|
|
94
|
-
* Add a post_integrate_hook API
|
|
659
|
+
* Add a `post_integrate_hook` API
|
|
95
660
|
[lucasmpaim](https://github.com/lucasmpaim)
|
|
96
661
|
[#7432](https://github.com/CocoaPods/CocoaPods/issues/7432)
|
|
97
662
|
|
|
98
|
-
* Set the `BUILD_LIBRARY_FOR_DISTRIBUTION` build setting if integrating with
|
|
99
|
-
a target that has the setting set to `YES` (directly or in an .xcconfig).
|
|
663
|
+
* Set the `BUILD_LIBRARY_FOR_DISTRIBUTION` build setting if integrating with a target that has the setting set to `YES`.
|
|
100
664
|
[Juanjo López](https://github.com/juanjonol)
|
|
101
665
|
[#9232](https://github.com/CocoaPods/CocoaPods/issues/9232)
|
|
102
666
|
|
|
@@ -104,7 +668,7 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
|
|
|
104
668
|
[Paul Beusterien](https://github.com/paulb777)
|
|
105
669
|
[#9392](https://github.com/CocoaPods/CocoaPods/pull/9392)
|
|
106
670
|
|
|
107
|
-
* Add
|
|
671
|
+
* Add `--use-static-frameworks` lint option
|
|
108
672
|
[Paul Beusterien](https://github.com/paulb777)
|
|
109
673
|
[#9632](https://github.com/CocoaPods/CocoaPods/pull/9632)
|
|
110
674
|
|
|
@@ -7241,7 +7805,7 @@ that can be added to a settings bundle for an iOS application.
|
|
|
7241
7805
|
You don't need to do anything for this to happen, it should just work.
|
|
7242
7806
|
|
|
7243
7807
|
If you're not happy with the default boilerplate text generated for the title, header
|
|
7244
|
-
and footnotes in the files, it's possible to
|
|
7808
|
+
and footnotes in the files, it's possible to customize these by overriding the methods
|
|
7245
7809
|
that generate the text in your `Podfile` like this:
|
|
7246
7810
|
|
|
7247
7811
|
```ruby
|
|
@@ -7252,7 +7816,7 @@ class ::Pod::Generator::Acknowledgements
|
|
|
7252
7816
|
end
|
|
7253
7817
|
```
|
|
7254
7818
|
|
|
7255
|
-
You can even go one step further and
|
|
7819
|
+
You can even go one step further and customize the text on a per target basis by
|
|
7256
7820
|
checking against the target name, like this:
|
|
7257
7821
|
|
|
7258
7822
|
```ruby
|
data/README.md
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
### CocoaPods: The Cocoa dependency manager
|
|
4
4
|
|
|
5
|
-
[](https://github.com/CocoaPods/CocoaPods/actions/workflows/Specs.yml)
|
|
6
|
+
[](https://rubygems.org/gems/cocoapods)
|
|
7
7
|
[](https://codeclimate.com/github/CocoaPods/CocoaPods/maintainability)
|
|
8
8
|
[](https://codeclimate.com/github/CocoaPods/CocoaPods/test_coverage)
|
|
9
9
|
|
|
@@ -70,13 +70,12 @@ contributor [code of conduct](CODE_OF_CONDUCT.md).
|
|
|
70
70
|
|
|
71
71
|
CocoaPods is composed of the following projects:
|
|
72
72
|
|
|
73
|
-
| Status
|
|
74
|
-
|
|
|
75
|
-
| [](https://travis-ci.org/CocoaPods/CocoaPods-app) | [CocoaPods.app](https://github.com/CocoaPods/CocoaPods-app) | A full-featured and standalone installation of CocoaPods. | [info](https://cocoapods.org/app)
|
|
73
|
+
| Status | Project | Description | Info |
|
|
74
|
+
| :-------- | :------ | :--- | :--- |
|
|
75
|
+
| [](https://github.com/CocoaPods/CocoaPods/actions/workflows/Specs.yml) | [CocoaPods](https://github.com/CocoaPods/CocoaPods) | The CocoaPods command line tool. | [guides](https://guides.cocoapods.org)
|
|
76
|
+
| [](https://github.com/CocoaPods/Core/actions/workflows/Specs.yml) | [CocoaPods Core](https://github.com/CocoaPods/Core) | Support for working with specifications and podfiles. | [docs](https://guides.cocoapods.org/contributing/components.html)
|
|
77
|
+
| [](https://github.com/CocoaPods/cocoapods-downloader/actions/workflows/Specs.yml) |[CocoaPods Downloader](https://github.com/CocoaPods/cocoapods-downloader) | Downloaders for various source types. | [docs](https://www.rubydoc.info/gems/cocoapods-downloader)
|
|
78
|
+
| [](https://github.com/CocoaPods/Xcodeproj/actions/workflows/Specs.yml) | [Xcodeproj](https://github.com/CocoaPods/Xcodeproj) | Create and modify Xcode projects from Ruby. | [docs](https://www.rubydoc.info/gems/xcodeproj)
|
|
79
|
+
| [](https://github.com/CocoaPods/CLAide/actions/workflows/ci.yml) | [CLAide](https://github.com/CocoaPods/CLAide) | A small command-line interface framework. | [docs](https://www.rubydoc.info/gems/claide)
|
|
80
|
+
| [](https://github.com/CocoaPods/Molinillo/actions/workflows/test.yml) | [Molinillo](https://github.com/CocoaPods/Molinillo) | A powerful generic dependency resolver. | [docs](https://www.rubydoc.info/gems/molinillo)
|
|
82
81
|
| | [Master Repo ](https://github.com/CocoaPods/Specs) | Master repository of specifications. | [guides](https://guides.cocoapods.org/making/specs-and-specs-repo.html)
|