0.02
Repository is archived
No commit activity in last 3 years
No release in over 3 years
Auto generates a Slate (https://github.com/tripit/slate) document from the docuementation that is created by your Grape API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.5
~> 0.7
~> 2.4
~> 0.9
~> 10.0
~> 2.14
~> 0.18

Runtime

 Project Readme

GrapeSlate

Code Climate Build Status Coverage Status Dependency Status Gem Version

Auto generates an Slate Document from the docuementation that is created by your Grape API.

NOTE

This is an early implementation that makes some assumptions about your API (follows a standard REST pattern) that works with our implementation of Grape API's. There is a new an unreleased feature in Grape that allows for appending additional documentation. This project is dependent on this feature in order to create example JSON requests and responses.

Installation

Add this line to your application's Gemfile:

gem 'grape', github: 'intridea/grape' # see note above
gem 'grape-slate'

And then execute:

$ bundle

Or install it yourself as:

$ gem install grape-slate

Usage

Add some metadata about your API and then execute the generate method on the GrapeSlate::Blueprint class.

Configuration

Configure details about your api in an initializers or similar:

GrapeSlate.config do |config|
  # the name of your api
  config.name               = 'Awesome API'
  # a description for your api
  config.description        = 'The awesome description'
  # the type to use for generated sample id's (`integer` or `uuid`)
  config.example_id_type    = :uuid
  # resources you do not want documented
  config.resource_exclusion = [:admin, :swagger_doc]
  # whether or not examples should include a root element (default: false)
  config.include_root       = true
end

# request headers you want documented
GrapeSlate.config.request_headers = [
  { 'Accept-Charset' => 'utf-8' },
  { 'Connection'     => 'keep-alive' }
]

# response headers you want documented
GrapeSlate.config.response_headers = [
  { 'Content-Length' => '21685' },
  { 'Connection'     => 'keep-alive' }
]

Generation

# supply the class you'd like to document and generate your blueprint
GrapeSlate::Document.new(AwesomeAPI).generate

TODO

  • Add a rake task to simplify generation
  • Add support for listing all of a resources attributes at the resource level as a markdown table
  • Handle ever changing sample id's (don't want git diff's after every generation)
  • Add option to change or remove the sample id field (eg. _id vs id)
  • What if someone does not use JSON?!?
  • Create sample response for list endpoints (array)
  • Add support for writing the blueprint to disk
  • Add an option to include root in json

Contributing

  1. Fork it ( http://github.com/connexio-labs/grape-slate/fork )
  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