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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: df233be13ca433351590bba095550642a861f4154e5ae6180c8b42147b79d34d
4
- data.tar.gz: 4b293d5a6ba54f25e573d4b5d92e509e04d9c4410422b36408c9b95c59ed5300
3
+ metadata.gz: f869d52cbe7e19c2dbce433c2b8d2debc25b5bf65bdbd962ea97bc93fb55abf0
4
+ data.tar.gz: 52806b1acd672e50c9d1d84d2c9d11efe1e419cf1960d11cdaa77560180cd3b9
5
5
  SHA512:
6
- metadata.gz: 2e7182ddcdc569b8b1ddffa179f5465ae6cebc4e98b591a6485e1b5a2233ceaee9a4b45cd9b17bdad383c07c6d1711ec1642f3ebf1375f37d3102e333c990d96
7
- data.tar.gz: '09d38b8d9e69fd9be5124340a6a3c6095ae08d94925fb98a32b5a86ef68cb47ae448da46ef07060fdefa80506533ba63cc78a8651b8368ff5e07271067778b35'
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
- $ gem install cocoapods-remove-duplicates
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
- $ pod spec duplicates POD_NAME
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
+
@@ -1,3 +1,3 @@
1
1
  module CocoapodsRemoveDuplicates
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cocoapods-remove-duplicates
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - GaoYu