yardstick
yardstick copied to clipboard
A tool for verifying YARD documentation coverage
This pull request fixes issue #24. The pull request: * adds support for loading default config overrides from a `.yardstick.yml` file * makes providing a path to `yardstick` no longer...
I have encountered an issue with the `Yardstick::Rake::Verify`. When I run my rake task, the output is as follows: ``` $ bundle exec rake yard:verify YARD-Coverage: 82.3% (threshold: 100%) rake...
Is there a way to make the measurement Rake tasks output results to stdout instead of a file, just as the CLI does? It looks like `Yardstick::Config#output` is coerced into...
Given a module: ```ruby module Foo module_function def some_public_method 'foo' end class
It would be great to have yardstick as a Code Climate Engine. https://github.com/codeclimate/spec http://blog.codeclimate.com/blog/2015/07/07/build-your-own-codeclimate-engine/
I have a method: ``` rb def log_status_change logger %( foo #{bar} ) end ``` and when running `yardstick 'app/**/*rb'` from the command line, it returns: ``` ruby-2.3.1/gems/yardstick-0.9.9/lib/yardstick/parser.rb:53:in `select': undefined...
A valid syntax for later versions of ruby and private class methods is: ``` rb private_class_method def foo puts 'bar' end ``` That raises an error with yardstick: ``` NameError:...
Thanks for trying out [GitMagic](https://gitmagic.io/). Use this pull request to discuss and define what contribution guidelines you want to enforce in this repository. [Here's a list](https://gitmagic.io/rules) of all available rules....
YARD provides a stats feature which overlaps with yardstick: ``` sh (transproc) $ yard stats --quiet --list-undoc Files: 16 Modules: 12 ( 2 undocumented) Classes: 6 ( 3 undocumented) Constants:...
From #32 > @backus should the rule output be ordered according to where the @ tag typically appears within the output? For example, the method summary stuff should be first,...