0.0
No commit activity in last 3 years
No release in over 3 years
Guard::Yardstick automatically checks your code for missing yardocs when files are modified.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0

Runtime

>= 2.0
>= 0.9
 Project Readme

Gem Version

guard-yardstick

guard-yardstick will automatically check your code for missing yardocs

Installation

Add guard-yardstick to your Gemfile:

group :development do
  gem 'guard-yardstick', require: false
end

And then execute:

$ bundle

Or install it yourself as:

$ gem install guard-yardstick

Usage

After correctly installing the gem initialize your Guardfile as follows.

$ bundle exec guard init yardstick

Please read the Guard usage documentation 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.

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