项目作者: jmhooper

项目描述 :
Serves README badges showing the number of open documentation issues on a GitHub repo
高级语言: Ruby
项目地址: git://github.com/jmhooper/documentation_badge.git
创建时间: 2017-06-18T00:31:59Z
项目社区:https://github.com/jmhooper/documentation_badge

开源协议:MIT License

下载


Documentation Badge

Documentation badge

This app provides GitHub README badges that display the number of open issues in a repo that have the label “documentation”. The goal of this is to help maintainers keep an eye on doc rot in their repos.

A badge for a repo is made available at the /:ower/:repo/badge.svg path.

Getting Started

This repo contains 3 major components:

  • The code the generate and fetch documentation badges
  • A web server to serve generated badges
  • A frontend describing the site and for generating markdown to add badges to READMEs

This project has a few dependencies

To get the whole thing running, do that folowing:

  1. Clone the repo: git clone git@github.com:jmhooper/documentation_badge.git
  2. Install dependencies with Yarn and Bundler: bin/setup
  3. Build the frontend assets: bin/build
  4. Start the app: bin/start

The application should be available at localhost:9292.

Note that npm run watch will run webpack in with the --watch which will regenerate frontend files as they are modified.

Running Tests

The test suites is powered by rspec. To run the tests, run the following:

  1. bundle exec rspec