A Doc[tor] for your Doc[umentation]'s invalid links.
$ gem install doc_doc
Doc Doc strives to find sick links for you to treat. Doc Doc finds links that:
- lead to pages that do not load (http statuses in the 400 or 500 ranges)
- lead to pages without the elements referenced by the link's url fragment
$ doc_doc 'https://github.com/SeleniumHQ/selenium/wiki/Logging' > invalid_links.json
invalid_links.json identifies links that could use a little doctoring:
{
"links": [
{
"page": "https://github.com/SeleniumHQ/selenium/wiki/Logging",
"href": "../DesiredCapabilities",
"error": {
"type": "http",
"status": 404
}
}
]
}$ doc_doc 'https://github.com/SeleniumHQ/selenium/wiki/Logging' --crawl-within 'https://github.com/SeleniumHQ/selenium/wiki' > invalid_links.json
By default, Doc doc only checks links on the starting page.
You can pass the max-spiderings option to crawl outwards from the starting site.
Given a web site that has links like so:
https://www.example.com -> https://www.example.com/page1 -> https://www.example.com/page2 -> https://www.example.com/page3
$ doc_doc 'https://www.example.com' --max-spiderings 1
would also include https://www.example.com/page2, but not https://www.example.com/page3.
$ doc_doc 'https://www.example.com' --max-spiderings 2
would also include https://www.example.com/page3
You can pass the crawl-within option to stop crawling or checking links after you land on a page outside the boundary.
$ doc_doc 'https://www.example.com' --max-spiderings 1 --crawl-within 'https://www.example.com'
would also include https://www.example.com/page2, but not https://www.example.com/page3
There is currently no concept of a "unique page". If https://www.example.com/page1 links back to https://www.example.com and max-spiderings is set to 2 or higher, then sick links on https://www.example.com will be included twice.
setting crawl_within without max-spiderings is undefined behavior.
After checking out the repo, run bin/setup to install dependencies. Then, run rake test to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/doc_doc. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
The gem is available as open source under the terms of the MIT License.
Everyone interacting in the DocDoc project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.