cocoapods-remove-duplicates 0.0.1 → 0.0.2
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 +41 -2
- data/lib/cocoapods-remove-duplicates/gem_version.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: f869d52cbe7e19c2dbce433c2b8d2debc25b5bf65bdbd962ea97bc93fb55abf0
|
4
|
+
data.tar.gz: 52806b1acd672e50c9d1d84d2c9d11efe1e419cf1960d11cdaa77560180cd3b9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5b6b1ea2c2ecfb8c9d36e61f7b4c169520c68c54ea98381f230849c4eb3a66a693fb4000ac78e1f50b9375ec9299880d3700148b1d66d1811fd7d69dba3d80b3
|
7
|
+
data.tar.gz: 0e2ada5ec256ba8e0736c63f7f4782d470c72fdb2e98eb1cfe7cb74e88f1b3b077138c945c42bd0e27e6afb6f94e04d61fb4f909672f8d735deba582f4066178
|
data/README.md
CHANGED
@@ -1,11 +1,50 @@
|
|
1
1
|
# cocoapods-remove-duplicates
|
2
2
|
|
3
3
|
> 该插件会在**pod install**过程中自动移除掉重复的`.a`, `.framework`库
|
4
|
+
>
|
5
|
+
> The plugin will automatically remove the duplicate '. A' and '. Framework' Libraries during the **pod install** process
|
4
6
|
|
5
7
|
## Installation
|
6
8
|
|
7
|
-
|
9
|
+
### Installation first way
|
10
|
+
|
11
|
+
```powershell
|
12
|
+
$ gem install cocoapods-remove-duplicates
|
13
|
+
```
|
14
|
+
|
15
|
+
### Installation second way
|
16
|
+
|
17
|
+
use **Gemfile**
|
18
|
+
|
19
|
+
1. in Gemfile
|
20
|
+
|
21
|
+
```ruby
|
22
|
+
#in Gemfile
|
23
|
+
#source 'https://gems.ruby-china.com'
|
24
|
+
#or
|
25
|
+
#source 'https://rubygems.org'
|
26
|
+
|
27
|
+
gem 'cocoapods-remove-duplicates'
|
28
|
+
```
|
29
|
+
|
30
|
+
2. in Gemfile Dir exec:
|
31
|
+
|
32
|
+
```powershell
|
33
|
+
$ bundle install
|
34
|
+
```
|
35
|
+
|
36
|
+
|
8
37
|
|
9
38
|
## Usage
|
10
39
|
|
11
|
-
|
40
|
+
in Project **Podfile** input:
|
41
|
+
|
42
|
+
#in Podfile
|
43
|
+
plugin 'cocoapods-remove-duplicates'
|
44
|
+
|
45
|
+
then
|
46
|
+
|
47
|
+
```powershell
|
48
|
+
$ pod install
|
49
|
+
```
|
50
|
+
|