Skip to content

Commit 990dd51

Browse files
committed
add bin/analyze entrence
1 parent 099cf2f commit 990dd51

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

bin/analyze

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/usr/bin/env ruby
2+
3+
require_relative '../lib/cocoapods/analyze'
4+
require 'pp'
5+
6+
path = ARGV.shift
7+
raise 'Please pass the path of the podfile directory as the argument' unless path
8+
9+
pp Cocoapods::DependencyAnalyzer.analyze(path)

0 commit comments

Comments
 (0)