dep_check 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2dfae36246fb3711d7b53c99280fd6917b923244
4
- data.tar.gz: 2029685901f3de4e2950c7230864e34e459d54a2
3
+ metadata.gz: 0644e89b4958fe7e845e1d946639e61fddf30ca9
4
+ data.tar.gz: bc08a38785d8d9fa3816d47b962060d45e9e7514
5
5
  SHA512:
6
- metadata.gz: a1333b140a1b0dd1bd7928eee5c87311f4c158c74cea5edb76d49d7d9075c82b5aa65586697bb2ad85ed0fae29c1f89a287d2622a4e2af702e19b0146cd56f11
7
- data.tar.gz: f280257f0ad8aca6dfbc7de321b6dde620c491d6751962841defcfd947bda99ef81e46d18ddbfb09349b3b60780d859495ff2302396f1214fba6df35e65ae923
6
+ metadata.gz: d9f84ca59ac3c6905bc5af498d839f4ef6c9e11054d6938941ff547b14b2b74a4dc541ac670c2156021a7863adaaea8a7f87a6a4707f0793b4e93b3f37c784e7
7
+ data.tar.gz: 4066222315a7c5f6313350b458951cb54fa756761ea561c9adadfe8c2c70461964c87bbafbf4469f25b8c0a9ce628f6c6e000b5c5845f7bc4ac6d653aa63b8e7
data/README.md CHANGED
@@ -1,8 +1,6 @@
1
1
  # DepCheck
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/dep_check`. To experiment with that code, run `bin/console` for an interactive prompt.
4
-
5
- TODO: Delete this and the text above, and describe your gem
3
+ Cocoapods 依赖关系检测. 循环依赖路径检测、构建可视化依赖关系图.
6
4
 
7
5
  ## Installation
8
6
 
@@ -22,7 +20,24 @@ Or install it yourself as:
22
20
 
23
21
  ## Usage
24
22
 
25
- TODO: Write usage instructions here
23
+ Usage:
24
+
25
+ $ depcheck PODSPEC_NAME [REPO_NAME]
26
+
27
+ cocoapods依赖关系校验. 查找循环依赖路径/构建模块依赖关系图.
28
+
29
+ Options:
30
+
31
+ --repo-update Fetch external podspecs and run `pod repo update` before
32
+ calculating the dependency graph
33
+ --graphviz Outputs the dependency graph in Graphviz format to <podspec
34
+ name>.gv or Podfile.gv
35
+ --image Outputs the dependency graph as an image to <podsepc name>.png or
36
+ Podfile.png
37
+ --version Show the version of the tool
38
+ --verbose Show more debugging information
39
+ --no-ansi Show output without ANSI codes
40
+ --help Show help banner of specified command
26
41
 
27
42
  ## Development
28
43
 
Binary file
@@ -1,3 +1,3 @@
1
1
  module DepCheck
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dep_check
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - 卡迩
@@ -86,7 +86,6 @@ email:
86
86
  - lj94409@alipay.com
87
87
  executables:
88
88
  - depcheck
89
- - setup
90
89
  extensions: []
91
90
  extra_rdoc_files: []
92
91
  files:
@@ -98,7 +97,7 @@ files:
98
97
  - README.md
99
98
  - Rakefile
100
99
  - bin/depcheck
101
- - bin/setup
100
+ - dep_check-0.2.0.gem
102
101
  - dep_check.gemspec
103
102
  - lib/dep_check.rb
104
103
  - lib/dep_check/CircularDependencyError.rb
data/bin/setup DELETED
@@ -1,9 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here
9
- brew install graphviz