0.0
There's a lot of open issues
No release in over a year
github.com/ruby/rake task to generate Markdown documentation for github.com/ruby-grape/grape + github.com/ruby-grape/grape-entity based APIs
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

>= 0
 Project Readme

grape-apidoc Test

Rake task to generate Markdown documentation for Grape/Grape::Entity-based APIs

Getting started

# Gemfile
group :development do # most common use env is env=development
  gem 'grape-apidoc'
end
# Rakefile
begin
  require 'grape/apidoc'
  Grape::Apidoc::RakeTask.new(:apidoc, root_api_class: Grape::App) # point it to the top-level API class
rescue LoadError
  nil # so it does not fail in non-development environment
end

Examples