Sage/grape_documenter

View on GitHub
README.md

Summary

Maintainability
Test Coverage
# GrapeDocumenter

[![Build Status](https://travis-ci.org/Sage/grape_documenter.svg?branch=master)](https://travis-ci.org/Sage/grape_documenter)
[![Maintainability](https://api.codeclimate.com/v1/badges/f44a0ac3bf88a4bd2b8b/maintainability)](https://codeclimate.com/github/Sage/grape_documenter/maintainability)
[![Test Coverage](https://api.codeclimate.com/v1/badges/f44a0ac3bf88a4bd2b8b/test_coverage)](https://codeclimate.com/github/Sage/grape_documenter/test_coverage)
[![Gem Version](https://badge.fury.io/rb/grape_documenter.svg)](https://badge.fury.io/rb/grape_documenter)

This adds a task to Rails Applications to generate documentation for [Grape](https://github.com/intridea/grape) APIs.

## Installation

Add this line to your application's Gemfile:

    gem 'grape_documenter'

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install grape_documenter

## Usage

Within the root of you Rails Application run the following rake task...

    $ bundle exec grape_documenter 'MyApp::Api' '/path/to/docs' --format='html' --mounted-path='/api'

The first argument is the a string of the class of Grape::API. If you have multiple APIs within the same application you can run the task as many times as you like with different output paths.

### Specifying output format

Currently 2 formats are supported: 'html'; 'textile'. The default is html. You can change the format as shown above.

## Contributing

1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Added some feature'`)
4. Verify that all tests pass (`bundle exec fudge build`)
5. Push to the branch (`git push origin my-new-feature`)
6. Create new Pull Request

## License

This gem is available as open source under the terms of the
[MIT licence](LICENSE).

Copyright (c) 2012-2018 Sage Group Plc. All rights reserved.