cocoapods-bin 0.1.26 → 0.1.27
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/README.md +6 -2
- data/lib/cocoapods-bin/gem_version.rb +1 -1
- data/lib/cocoapods-bin/source_provider_hook.rb +1 -1
- 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: f82281bd486151f620edd1630c0cfa01bac653349ad986bffbef9245bae9e935
|
4
|
+
data.tar.gz: 8305e298048967f908d1ec1efdeeec762bc97b6b551971d70dd8acc0de5fa37d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e71deae9afb8219ee5fb034d1e92be12480a6fc1697fa0fae6212525c5cdd9d62b60eeaabd7e520a264fc9651d5fe3a04f12448bd2f96c0a8dfd1da8008f4830
|
7
|
+
data.tar.gz: b3941f3a61d71a129d1350a073922b2fb1521d7aa898423cae1d462d0ae8a3e4c201080ba4ca2dddbe2733457dbdbecdab01ad8b5944f9f0977dde3cd3ce0277
|
data/README.md
CHANGED
@@ -8,9 +8,13 @@
|
|
8
8
|
|
9
9
|
## 更新
|
10
10
|
|
11
|
-
#### 0.1.
|
11
|
+
#### 0.1.27
|
12
12
|
|
13
|
-
新增本地组件依赖配置文件 BinPodfile
|
13
|
+
新增本地组件依赖配置文件 BinPodfile ,
|
14
|
+
|
15
|
+
场景: 不希望把本地采用的源码/二进制配置传到远程仓库。
|
16
|
+
|
17
|
+
使用: 在 Podfile 同级目录下创建 BinPodfile ,并将其加入 .gitignore 。BinPodfile 中的配置选项优先级比 Podfile 高,支持和 Podfile 相同的配置语句,如 :
|
14
18
|
|
15
19
|
```ruby
|
16
20
|
# BinPodfile
|
@@ -22,7 +22,7 @@ Pod::HooksManager.register('cocoapods-bin', :pre_install) do |_context, _|
|
|
22
22
|
# rubocop:enable Eval
|
23
23
|
rescue Exception => e
|
24
24
|
message = "Invalid `#{path}` file: #{e.message}"
|
25
|
-
raise DSLError.new(message, path, e, contents)
|
25
|
+
raise Pod::DSLError.new(message, path, e, contents)
|
26
26
|
end
|
27
27
|
# rubocop:disable Lint/RescueException
|
28
28
|
end
|