No commit activity in last 3 years
No release in over 3 years
After you mount Grape API routes into Rails, Grape API routes would normally not be printed via `rake routes` or `/rails/info/routes`. This gem adds routes printing for Grape with Rails.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Runtime

>= 4.1.4
 Project Readme

grape-rails-routes

After you mount Grape API routes into Rails, Grape API routes would normally not be printed in rake routes or /rails/info/routes.

This gem adds routes printing functionalities for Grape into Rails.

Usage

Add this line to your Gemfile

    gem 'grape-rails-routes'

Then review your routes via

    rake routes_with_grape

Or (recommended) access

http://localhost:3000/rails/info/routes_with_grape

to get a HTML table view of all your routes.

Enjoy :P