You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+23-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,15 @@
1
1
Forked from https://github.com/muukii/cocoapods-binary
2
2
3
-
add `forbidden_dependency_binary!`, Prevent the automatic compilation of dependent libraries into binary as well.
3
+
## Change log
4
+
5
+
6
+
2012/09/11
7
+
* Support to configure the `cocoapods-binary` plug-in separately through `BinPodfile`. [more >>](#BinPodfile)
8
+
* Add `all_not_prebuild!` for prebuild. [more >>](#all_not_probuild)
9
+
* Add a `test.rb` script to help you test quickly.
10
+
11
+
2021/03/15
12
+
* add `forbidden_dependency_binary!`, Prevent the automatic compilation of dependent libraries into binary as well.
4
13
5
14
---
6
15
@@ -90,7 +99,20 @@ If your `Pods` folder is excluded from git, you may add `keep_source_code_for_pr
90
99
91
100
If bitcode is needed, add a `enable_bitcode_for_prebuilt_frameworks!` before all targets in Podfile
92
101
102
+
<spanid='all_not_probuild'>`all_not_probuild`: </span>If you want to disable binary for all pods, you can use `all_not_prebuild!`, it has high priority to other binary settings.
103
+
104
+
<spanid="BinPodfile">BinPodfie: </span>If you need to frequently modify the configuration of `cocoapods-binary`, but do not want to synchronize to the git repository, you can use `BinPodfile`, add `BinPodfile` to your `.gitignor`file.
93
105
106
+
```ruby
107
+
108
+
# You can write the `cocoapods-binary` plugin configuration in this file.
109
+
# Prevent frequent modification of `Podfile` on CI machines.
0 commit comments