Skip to content

Commit 6e61e6c

Browse files
committed
Release 0.1.0
1 parent 93633c4 commit 6e61e6c

File tree

4 files changed

+17
-16
lines changed

4 files changed

+17
-16
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@
1111

1212
# rspec failure tracking
1313
.rspec_status
14+
15+
*.gem

Gemfile.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,9 @@ PLATFORMS
110110
DEPENDENCIES
111111
bundler (~> 1.16)
112112
cocoapods-dependency!
113-
coveralls
113+
coveralls (~> 0)
114114
rake (~> 10.0)
115115
rspec (~> 3.0)
116116

117117
BUNDLED WITH
118-
1.16.1
118+
1.16.4

README.md

+9-10
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,22 @@
22

33
[![Build Status](https://travis-ci.org/X140Yu/cocoapods-dependency.svg?branch=master)](https://travis-ci.org/X140Yu/cocoapods-dependency)
44
[![Coverage Status](https://coveralls.io/repos/github/X140Yu/cocoapods-dependency/badge.svg?branch=master)](https://coveralls.io/github/X140Yu/cocoapods-dependency?branch=master)
5+
[![Gem Version](https://badge.fury.io/rb/cocoapods-dependency.svg)](https://badge.fury.io/rb/cocoapods-dependency)
56

67

7-
A ruby gem which analyzes the dependencies of any cocoapods projects. Subspecs are properly handled.
8+
A CocoaPods plugin which analyzes the dependencies of any cocoapods projects. Subspecs are properly handled.
89

910
## [中文说明](https://zhaoxinyu.me/2018-08-20-analyze-pods-dependecy/)
1011

11-
## Installation & Usage
12+
## Installation
1213

13-
Clone this repo,
14+
$ gem install cocoapods-dependency
1415

15-
And then execute:
16+
## Usage
17+
18+
$ pod dependency
1619

17-
$ cd cocoapods-dependency
18-
$ bundle
19-
$ bin/analyze /path/to/podfile_dir
20-
21-
Note: the argument has to be a absolute path to the podfile directory.
20+
The command should be executed in directory that contains podfile.
2221

2322
You will get a result like this,
2423

@@ -49,8 +48,8 @@ It seems like this project has just a single dependency, but behind this pod, it
4948

5049
## TODO
5150

51+
- [X] Lift it to a cocoapods-plugin
5252
- [ ] Pretty printed result
53-
- [ ] Lift it to a cocoapods-plugin
5453

5554
## License
5655

cocoapods-dependency.gemspec

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ Gem::Specification.new do |spec|
88
spec.authors = ['Xinyu Zhao']
99
spec.email = ['[email protected]']
1010

11-
spec.summary = 'Analyze cocoapods dependencies'
12-
spec.description = 'Analyze cocoapods dependenciesssss'
13-
spec.homepage = 'https://zhaoxinyu.me'
11+
spec.summary = 'Analyzes the dependencies of any cocoapods projects.'
12+
spec.description = 'Analyzes the dependencies of any cocoapods projects. Subspecs are properly handled.'
13+
spec.homepage = 'https://github.com/X140Yu/cocoapods-dependency'
1414
spec.license = 'MIT'
1515

1616
spec.files = `git ls-files -z`.split("\x0").reject do |f|
@@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
2121
spec.require_paths = ['lib']
2222

2323
spec.add_development_dependency 'bundler', '~> 1.16'
24-
spec.add_development_dependency 'coveralls'
24+
spec.add_development_dependency 'coveralls', '~> 0'
2525
spec.add_development_dependency 'rake', '~> 10.0'
2626
spec.add_development_dependency 'rspec', '~> 3.0'
2727

0 commit comments

Comments
 (0)