Skip to content

Commit 016441d

Browse files
committed
Bump version, update README
1 parent d39103f commit 016441d

File tree

3 files changed

+8
-13
lines changed

3 files changed

+8
-13
lines changed

Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
cocoapods-dependency (0.1.1)
4+
cocoapods-dependency (0.2.0)
55
cocoapods (~> 1.5)
66

77
GEM

README.md

+6-11
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,15 @@ A CocoaPods plugin which analyzes the dependencies of any cocoapods projects. Su
1414
$ gem install cocoapods-dependency
1515

1616
## Usage
17-
18-
$ pod dependency
1917

2018
The command should be executed in directory that contains podfile.
2119

22-
You will get a result like this,
20+
```shell
21+
# put the analyze result to console
22+
$ pod dependency
2323

24-
```ruby
25-
{
26-
'Texture' => ['PINCache', 'PINOperation', 'PINRemoteImage'],
27-
'PINCache' => ['PINOperation'],
28-
'PINRemoteImage' => ['PINCache', 'PINOperation'],
29-
'PINOperation' => [],
30-
}
24+
# write te analyze result to a readable HTML
25+
$ pod dependency --visual
3126
```
3227

3328
## Why this gem?
@@ -49,7 +44,7 @@ It seems like this project has just a single dependency, but behind this pod, it
4944
## TODO
5045

5146
- [X] Lift it to a cocoapods-plugin
52-
- [ ] Pretty printed result
47+
- [X] Pretty printed result
5348

5449
## License
5550

lib/cocoapods-dependency/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# :nocov:
22
module CocoapodsDependency
3-
VERSION = '0.1.1'
3+
VERSION = '0.2.0'
44
end

0 commit comments

Comments
 (0)