dep_check 0.2.5 → 0.2.6

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: 27d5b99e073cb81244b65916f7595bb5a22d6231
4
- data.tar.gz: 876c563e0109b8b2781c55b627aced9dbbaf89df
3
+ metadata.gz: 0ad82a84884201a8ea9f340333b63910fde0214f
4
+ data.tar.gz: b91acf949a274cab3b0489443b68f4adb0abc4ff
5
5
  SHA512:
6
- metadata.gz: a0a86aefe285f94bc4b4e96e48f6472d7f8d90d96c20f7468c6a4fdaff26f342c619cbe58645074c85c30517096013653f5234ae80866198587bdf9a24932075
7
- data.tar.gz: b2f065c45252f11fe3916a83a87051c5c808501428e663488491fec0a9c01d46f5c56cc34bf9ab512e37631f38e26a0cb9af9f1ad79535db6238356ed543350c
6
+ metadata.gz: e6fc7dfbaabebc42f773a6ba6c03dfbb5a0b80aab20fc8766bd9f63e515d9f8d54b49c8fb4d03e7e13a6508dc6dcbc78491038377aa5e39a3e193eeb78e566b5
7
+ data.tar.gz: c21358d13e18c59c04c5965d21c38a67040e8f56d270fbc8312672f1154524d66730d585ad037b7d0ed96ecc03d2937a02ee6ed8bf2141ac52da90b91714e419
data/README.md CHANGED
@@ -35,9 +35,6 @@ Options:
35
35
  --image Outputs the dependency graph as an image to <podsepc name>.png or
36
36
  Podfile.png
37
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
41
38
 
42
39
  ## Development
43
40
 
Binary file
@@ -5,7 +5,6 @@
5
5
  require "dep_check/CircularDependencyError"
6
6
  require "dep_check/Node"
7
7
  require 'claide'
8
- require 'colored'
9
8
 
10
9
  module DepCheck
11
10
  class DepChecker < CLAide::Command
@@ -35,7 +34,6 @@ module DepCheck
35
34
  end
36
35
 
37
36
  def initialize(argv)
38
- puts "initialize in checker"
39
37
  @podspec_name = argv.shift_argument
40
38
  @repo_name = argv.shift_argument
41
39
  @repo_update = argv.flag?('repo-update', false)
@@ -72,7 +70,6 @@ module DepCheck
72
70
 
73
71
 
74
72
  def run
75
- puts "run in checker"
76
73
  builded = []
77
74
  Pod::UI.puts "1. Buiding dependency graph for #{@podspec_name}... \n ".green
78
75
  Pod::UI.puts "All dependencies : \n".blue
@@ -223,5 +220,5 @@ module DepCheck
223
220
  end
224
221
  end
225
222
 
226
- # DepCheck::DepChecker.run(['APShareKit','alipay'])
223
+ # DepCheck::DepChecker.run(['APRemoteLogging','alipay'])
227
224
 
@@ -1,3 +1,3 @@
1
1
  module DepCheck
2
- VERSION = "0.2.5"
2
+ VERSION = "0.2.6"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dep_check
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.5
4
+ version: 0.2.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - 卡迩
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-10-08 00:00:00.000000000 Z
11
+ date: 2017-04-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -97,6 +97,7 @@ files:
97
97
  - README.md
98
98
  - Rakefile
99
99
  - bin/depcheck
100
+ - dep_check-0.2.5.gem
100
101
  - dep_check.gemspec
101
102
  - lib/dep_check.rb
102
103
  - lib/dep_check/CircularDependencyError.rb
@@ -123,7 +124,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
123
124
  version: '0'
124
125
  requirements: []
125
126
  rubyforge_project:
126
- rubygems_version: 2.0.14.1
127
+ rubygems_version: 2.6.11
127
128
  signing_key:
128
129
  specification_version: 4
129
130
  summary: Circular depency checker for cocoapods based project.