Cocoapods Dependency
A CocoaPods plugin which analyzes the dependencies of any cocoapods projects. Subspecs are properly handled.
中文说明
Installation
$ gem install cocoapods-dependency
Usage
The command should be executed in directory that contains podfile.
# put the analyze result to console
$ pod dependency
# write te analyze result to a readable HTML
$ pod dependency --visual
Why this gem?
Suppose you have a project with a simple dependency,
```ruby podfile target 'Test' do pod 'Texture', '2.7' end
It seems like this project has just a single dependency, but behind this pod, it may depend on several other pods and these other pods may also depend on some other pods as well