1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
# Appraiser = a simple rubygems subcommand for Gemfile
[](https://travis-ci.org/juno/appraiser)
`appraiser` displays gem information from `./Gemfile`.
Like this:

## Install
appraiser installed as a rubygems subcommand.
$ gem install appraiser
$ gem help commands | grep appraiser
appraiser Display gem information in ./Gemfile
## Usage
Normally displays runtime dependencies.
$ cd /path/to/project_with_Gemfile/
$ gem appraiser
or, displays other dependencies with `-g GROUP`.
$ gem appraiser -g development
## Contributing
Once you've made your great commits: Fork, fix, then send me a pull request.
## Copyright
Copyright (c) 2011-2013 Junya Ogura. See LICENSE.txt for further details.
|