README.md in depcheck-0.2.0 vs README.md in depcheck-0.3.0
- old
+ new
@@ -1,11 +1,13 @@
# Depcheck
-`Depcheck` is a dependency analyzer tool for Swift projects. `Depcheck` reports dependencies per class, allowing you to easily detect classes that have too many dependencies. `Depcheck` can also report how many dependants a class have. Therefore you can spot the most used and unused classes.
+`Depcheck` is a dependency analyzer tool for Swift projects. `Depcheck` reports dependencies per class, allowing you to easily detect classes that have too many dependencies. `Depcheck` can also report how many dependants a class have. Therefore you can spot the most used and unused classes. Additionaly you can generate *dependency graph* of your project.
-<img src="https://github.com/wojteklu/depcheck/blob/master/example/analyze.png?raw=true">
+<img src="https://github.com/wojteklu/depcheck/blob/master/example/analyze.png?raw=true" width="600px">
+<img src="https://github.com/wojteklu/depcheck/blob/master/example/graph.png?raw=true" height="360px">
+
## Installation
Add this line to your application's Gemfile:
```ruby
@@ -24,11 +26,11 @@
gem install depcheck
```
## Usage
-`Analyze` command reports dependencies per classes. `Usage` command reports how many dependants a class have.
+`Analyze` command reports dependencies per classes. `Usage` command reports how many dependants a class have. `Graph` command generates dependency graph.
Build your project, and then run:
```sh
$ depcheck analyze --project path/to/project.xcodeproj
@@ -42,9 +44,13 @@
```
## Contributing
I’d love to see your ideas for improving this library! The best way to contribute is by submitting a pull request. I’ll do my best to respond to your patch as soon as possible. You can also submit a [new GitHub issue](https://github.com/wojteklu/depcheck/issues/new) if you find bugs or have questions.
+
+## Author
+
+Wojtek Lukaszuk [@wojteklu](http://twitter.com/wojteklu)
## License
This project is licensed under the terms of the MIT license. See the LICENSE file.