BDParseLock 1.1.0 → 2.0.0
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/BDParseLock.gemspec +2 -2
- data/README.md +18 -9
- data/lib/BDParseLock/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 25c72c3994c6c7685470f9f399af3ad9c1c70f8e
|
|
4
|
+
data.tar.gz: 6268c961792911793beba3839f74fb7b855dddf4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6d39fd771256dad199c089b384ed6494c8652e70aa8401b99e52e2d57d635bbb7849749e17d7a733601aeba15bb37f02603a68d28d3e4bf39d718a73e4022352
|
|
7
|
+
data.tar.gz: fa7b88824094b784a47d303297c8f6c77e9987f5a5625337a04254286e5f090a0f8c7d5d192a2d81f463c18e9577f97418c5351e104dc4a20af69d710d822173
|
data/BDParseLock.gemspec
CHANGED
|
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.authors = ["bupterambition"]
|
|
10
10
|
spec.email = ["bupterambition@gmail.com"]
|
|
11
11
|
|
|
12
|
-
spec.summary = %q{
|
|
13
|
-
spec.description = %q{
|
|
12
|
+
spec.summary = %q{一款用于分析Podfile.lock工具}
|
|
13
|
+
spec.description = %q{一款用于分析Podfile.lock工具,可以将Podfile.lock直接转化成Podfile.同时还可以提取当前使用的各个Pods的版本信息}
|
|
14
14
|
spec.homepage = "https://github.com/Bupterambition/LockParse"
|
|
15
15
|
spec.license = "MIT"
|
|
16
16
|
|
data/README.md
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
|
+

|
|
1
2
|
# BDParseLock
|
|
2
3
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
|
4
|
+
BDParseLock是一款用于分析Podfile.lock的工具,可以将Podfile.lock直接转化成Podfile.适用于大型项目的依赖打平
|
|
6
5
|
|
|
7
6
|
## Installation
|
|
8
7
|
|
|
@@ -22,17 +21,25 @@ Or install it yourself as:
|
|
|
22
21
|
|
|
23
22
|
## Usage
|
|
24
23
|
|
|
25
|
-
|
|
24
|
+
```
|
|
25
|
+
➜ ~ BDParseLock
|
|
26
26
|
|
|
27
|
-
|
|
27
|
+
Usage:
|
|
28
|
+
$ BDParseLock COMMAND
|
|
29
|
+
BDParseLock is a tool for Parsing Podfile.lock
|
|
28
30
|
|
|
29
|
-
|
|
31
|
+
Commands:
|
|
30
32
|
|
|
31
|
-
|
|
33
|
+
+ podfile Gerator a new Podfile accounding to Podfile.lock
|
|
34
|
+
+ vjson Generator a JSON file contain all Pod version accounding to Podfile.lock
|
|
35
|
+
```
|
|
36
|
+
BDParseLock的使用十分简单,只需要输入Podfile.lock的绝对路径即可产生依赖完全解析后的新Podfile文件
|
|
32
37
|
|
|
33
|
-
|
|
38
|
+
```
|
|
39
|
+
BDParseLock podfile xxx/Podfile.lock
|
|
34
40
|
|
|
35
|
-
|
|
41
|
+
➜ A new Podfile is generated 👉 Podfile_Temp
|
|
42
|
+
```
|
|
36
43
|
|
|
37
44
|
## License
|
|
38
45
|
|
|
@@ -41,3 +48,5 @@ The gem is available as open source under the terms of the [MIT License](https:/
|
|
|
41
48
|
## Code of Conduct
|
|
42
49
|
|
|
43
50
|
Everyone interacting in the BDParseLock project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/BDParseLock/blob/master/CODE_OF_CONDUCT.md).
|
|
51
|
+
|
|
52
|
+
|
data/lib/BDParseLock/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: BDParseLock
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 2.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- bupterambition
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-09-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -52,7 +52,7 @@ dependencies:
|
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '5.0'
|
|
55
|
-
description:
|
|
55
|
+
description: 一款用于分析Podfile.lock工具,可以将Podfile.lock直接转化成Podfile.同时还可以提取当前使用的各个Pods的版本信息
|
|
56
56
|
email:
|
|
57
57
|
- bupterambition@gmail.com
|
|
58
58
|
executables:
|
|
@@ -98,5 +98,5 @@ rubyforge_project:
|
|
|
98
98
|
rubygems_version: 2.5.2.3
|
|
99
99
|
signing_key:
|
|
100
100
|
specification_version: 4
|
|
101
|
-
summary:
|
|
101
|
+
summary: 一款用于分析Podfile.lock工具
|
|
102
102
|
test_files: []
|