https://github.com/agilecreativity/dependency_analyser
https://github.com/agilecreativity/dependency_analyser
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/agilecreativity/dependency_analyser
- Owner: agilecreativity
- License: mit
- Created: 2014-09-16T20:38:05.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-09-16T20:38:26.000Z (almost 12 years ago)
- Last Synced: 2025-03-30T05:01:56.877Z (over 1 year ago)
- Language: Ruby
- Size: 102 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOGS.md
- License: LICENSE
Awesome Lists containing this project
README
## Dependency Analyser
Solution to the [codekata - transitive_dependencies][] problem as ruby gem
### Installation
Add this line to your application's Gemfile:
gem 'dependency_analyser'
And then execute:
$ bundle
Or install it yourself as:
$ gem install dependency_analyser
### Usage
Use as library try
```ruby
require 'dependency_analyser'
include DependencyAnalyser
# then call the appropriate functions
```
List of available Rake target
```shell
rake build # Build dependency_analyser-0.1.0.gem into the pkg directory
rake install # Build and install dependency_analyser-0.1.0.gem into system gems
rake test # Run tests
```
### Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request
[Thor]: https://github.com/erikhuda/thor
[Minitest]: https://github.com/seattlerb/minitest
[RSpec]: https://github.com/rspec
[Guard]: https://github.com/guard/guard
[Yard]: https://github.com/lsegal/yard
[Pry]: https://github.com/pry/pry
[Rubocop]: https://github.com/bbatsov/rubocop
[Grit]: https://github.com/mojombo/grit
[codekata - transitive_dependencies]: http://codekata.com/kata/kata18-transitive-dependencies/