podfileDep 2.1.2 → 2.1.3
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 +5 -1
- data/lib/podfileDep/version.rb +1 -1
- data/lib/podfileDep/yaml/yaml_dep.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b479368822acf20f1da58121068b5c6208414bbe3158bc582e437892319c44d8
|
|
4
|
+
data.tar.gz: 0504f3e3173a327cc8d87b3832cbcced33dddcd1a378678a065e5f2284c7cfda
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e1a08af8494a82cbd4dbfd51e81bddf386d4b0299392e6122ceefa8772d645c90139bc9f0ea6703badb30dfe42a4c44cd21ddca81ce5a1110f2e520093e74a31
|
|
7
|
+
data.tar.gz: 2b03e7f3f5ae2aeb178f03726cdba9d2c5f24d806cce25d544c453ad53d62e84ccc845c09a49f4b06708ee8e0294495854b11aa9c87781af2647c38725604546
|
data/CHANGELOG.md
CHANGED
data/lib/podfileDep/version.rb
CHANGED
|
@@ -217,7 +217,7 @@ module Pod
|
|
|
217
217
|
available_keys = %w[module pod subspecs path podspec version git tag branch configurations inhibit_warnings source binary]
|
|
218
218
|
dependency.each_key { |key|
|
|
219
219
|
unless available_keys.include?(key)
|
|
220
|
-
gem_name = "
|
|
220
|
+
gem_name = "podfileDep"
|
|
221
221
|
puts "❌ #{yaml_name}: 当前#{gem_name}版本(#{PodfileDep::VERSION})不支持字段#{key}"
|
|
222
222
|
puts "请检查对应字段或尝试执行如下命令升级"
|
|
223
223
|
puts "gem uninstall #{gem_name} && gem install #{gem_name}"
|
|
@@ -401,7 +401,7 @@ module Pod
|
|
|
401
401
|
|
|
402
402
|
content = ""
|
|
403
403
|
content = content + "# 1、本依赖配置文件优先级最高, 用来覆盖其他两个依赖的yaml文件中的组件。 尝试打开以下注释, 修改对应字段, 然后执行pod install\n"
|
|
404
|
-
content = content + "# 2、PODS下边的配置是数组形式,
|
|
404
|
+
content = content + "# 2、PODS下边的配置是数组形式, 如果有多个就写多个(subspecs需要数组)\n"
|
|
405
405
|
content = content + "# 3、本文件加入到忽略文件中\n\n"
|
|
406
406
|
|
|
407
407
|
# content = content + "# QUICKBUILD字段如果为true, 则表示会自动解析所有组件的依赖, 并删除不被使用的依赖库, 以达到开发时快速编译的目的\n"
|