cocoapods-dependency-html 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/Gemfile.lock +1 -1
- data/README.md +26 -3
- data/cocoapods-dependency-html.gemspec +1 -1
- data/lib/cocoapods-dependency-html/gem_version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 315b09b18437dca0732929ee2c74894916c7f58225cd38f42eee8a785f551a9f
|
|
4
|
+
data.tar.gz: a4c603c37d6efa706aac57bf8d8ab44a5aa4eb784ecc1a66814a2c96f1888258
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7ebe133c7a0562004902e4648bb9ba781ce3579ddac72723935e93e57789e30f6144c949a69f2e9e7d6f954b34bc79a0a6aaf84469f1205fb2ef19794b2dfe9d
|
|
7
|
+
data.tar.gz: f17c3d6b7e8d0cf63f6efec118af5d63faddd4191443c2739e46bf62c6d78b0478715a6ddc8cf2704a7c81fa6824a021dc6b912f65ffdbd6235a68236bf8d885
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -1,11 +1,34 @@
|
|
|
1
1
|
# cocoapods-dependency-html
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://travis-ci.org/sfmdev/cocoapods-dependency-html)
|
|
4
|
+
[](https://coveralls.io/github/sfmdev/cocoapods-dependency-html?branch=master)
|
|
5
|
+
[](https://badge.fury.io/rb/cocoapods-dependency-html)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
A CocoaPods plugin which can show the dependencies of a project manager by Cocoapods.
|
|
4
9
|
|
|
5
10
|
## Installation
|
|
6
11
|
|
|
7
12
|
$ gem install cocoapods-dependency-html
|
|
8
|
-
|
|
13
|
+
## Config Setting
|
|
14
|
+
Ths plugin need to new a file named `dependency_config` in project root path.</br>
|
|
15
|
+
The file named `dependency_config` is a json file, the key is level name, the value is a regular Expression.
|
|
16
|
+
Here is an example file.
|
|
17
|
+
```json
|
|
18
|
+
{
|
|
19
|
+
"first": "^LPD.*?Module",
|
|
20
|
+
"second": "^LPD",
|
|
21
|
+
"third": "\\||^ELM|^APF|^TB|^Ali"
|
|
22
|
+
}
|
|
23
|
+
```
|
|
9
24
|
## Usage
|
|
25
|
+
```shell
|
|
26
|
+
# show the dependency with levels in config file.
|
|
27
|
+
$ pod dependency
|
|
28
|
+
|
|
29
|
+
# show tree to show every level dependency.
|
|
30
|
+
$ pod dependency --use-tree
|
|
31
|
+
```
|
|
32
|
+
## License
|
|
10
33
|
|
|
11
|
-
|
|
34
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.email = ['sfmdeveloper@icloud.com']
|
|
11
11
|
spec.description = %q{Show project dependencies with HTML file.}
|
|
12
12
|
spec.summary = %q{Show project dependencies with HTML file.}
|
|
13
|
-
spec.homepage = 'https://github.com/
|
|
13
|
+
spec.homepage = 'https://github.com/sfmDev/cocoapods-dependency-html'
|
|
14
14
|
spec.license = 'MIT'
|
|
15
15
|
|
|
16
16
|
spec.files = `git ls-files`.split($/)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cocoapods-dependency-html
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- sfmDev
|
|
@@ -2089,7 +2089,7 @@ files:
|
|
|
2089
2089
|
- vendor/bundle/specifications/thread_safe-0.3.6.gemspec
|
|
2090
2090
|
- vendor/bundle/specifications/tzinfo-1.2.5.gemspec
|
|
2091
2091
|
- vendor/bundle/specifications/xcodeproj-1.9.0.gemspec
|
|
2092
|
-
homepage: https://github.com/
|
|
2092
|
+
homepage: https://github.com/sfmDev/cocoapods-dependency-html
|
|
2093
2093
|
licenses:
|
|
2094
2094
|
- MIT
|
|
2095
2095
|
metadata: {}
|