Sha256: 53b3738f639fc0e0edcd7924dc3662e9ca896740b6ff25e61bbfff32ec2e13ec
Contents?: true
Size: 1.15 KB
Versions: 1
Compression:
Stored size: 1.15 KB
Contents
[![Gem Version](https://badge.fury.io/rb/guard-yardstick.svg)](http://badge.fury.io/rb/guard-yardstick) # guard-yardstick guard-yardstick will automatically check your code for missing yardocs ## Installation Add `guard-yardstick` to your `Gemfile`: ```ruby group :development do gem 'guard-yardstick', require: false end ``` And then execute: ```sh $ bundle ``` Or install it yourself as: ```sh $ gem install guard-yardstick ``` ## Usage After correctly installing the gem initialize your Guardfile as follows. ```sh $ bundle exec guard init yardstick ``` Please read the [Guard usage documentation](https://github.com/guard/guard#readme) for further details. ## Options *all_on_start:* Same as on any other Guard plugin. Run yardstick on all files on start or not. *config:* Tells yardstick where to find yardsticks configuration file if present. ```ruby guard :yardstick, config: './.yardstick.yml' do # ... end ``` ## 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
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
guard-yardstick-1.0.0 | README.md |