├── .github └── workflows │ └── ci.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── cocoapods-graph.gemspec ├── docs ├── Wordpress-Report.html └── Wordpress-Report.png ├── exe └── cocoapods-graph ├── lib ├── cocoapods_graph.rb └── cocoapods_graph │ ├── constants.rb │ ├── generator.rb │ ├── pod_class.rb │ ├── template.html │ └── version.rb └── spec ├── cocoapods_graph_spec.rb └── spec_helper.rb /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erickjung/cocoapods-graph/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erickjung/cocoapods-graph/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erickjung/cocoapods-graph/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erickjung/cocoapods-graph/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erickjung/cocoapods-graph/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erickjung/cocoapods-graph/HEAD/Rakefile -------------------------------------------------------------------------------- /cocoapods-graph.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erickjung/cocoapods-graph/HEAD/cocoapods-graph.gemspec -------------------------------------------------------------------------------- /docs/Wordpress-Report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erickjung/cocoapods-graph/HEAD/docs/Wordpress-Report.html -------------------------------------------------------------------------------- /docs/Wordpress-Report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erickjung/cocoapods-graph/HEAD/docs/Wordpress-Report.png -------------------------------------------------------------------------------- /exe/cocoapods-graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erickjung/cocoapods-graph/HEAD/exe/cocoapods-graph -------------------------------------------------------------------------------- /lib/cocoapods_graph.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erickjung/cocoapods-graph/HEAD/lib/cocoapods_graph.rb -------------------------------------------------------------------------------- /lib/cocoapods_graph/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erickjung/cocoapods-graph/HEAD/lib/cocoapods_graph/constants.rb -------------------------------------------------------------------------------- /lib/cocoapods_graph/generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erickjung/cocoapods-graph/HEAD/lib/cocoapods_graph/generator.rb -------------------------------------------------------------------------------- /lib/cocoapods_graph/pod_class.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erickjung/cocoapods-graph/HEAD/lib/cocoapods_graph/pod_class.rb -------------------------------------------------------------------------------- /lib/cocoapods_graph/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erickjung/cocoapods-graph/HEAD/lib/cocoapods_graph/template.html -------------------------------------------------------------------------------- /lib/cocoapods_graph/version.rb: -------------------------------------------------------------------------------- 1 | module CocoaPodsGraph 2 | VERSION = "1.0.2" 3 | end 4 | -------------------------------------------------------------------------------- /spec/cocoapods_graph_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erickjung/cocoapods-graph/HEAD/spec/cocoapods_graph_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erickjung/cocoapods-graph/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------