TODO/WIP: Write a gem description
Integrates swagger-ui with your "grapified" Rails3 application.
- The property for specifying your Swagger endpoint on SwaggerUi has been renamed from 'discoveryUrl' to just 'url'. This has been updated in the index page template 'swagger.html.erb' but you will need to either regenerate or manually edit your existing page.
Add swagger compliant documentation to your grape API
An opinionated micro-framework for creating REST-like APIs in Ruby
Add this line to your application's Gemfile:
gem 'grape-swagger-ui'
And then execute:
$ bundle
Or install it yourself as:
$ gem install grape-swagger-ui
# class YourAPI < Grape::API
add_swagger_documentation :format => :json,
:api_version => 'v1',
:base_path => "http://#{Rails.configuration.default_host}/api/",
:hide_documentation_path => true
If your api path is "api/v1" just go to
http://host:port/api/swagger
else
Generate the main layout for customizations
rails generate swagger:layout
and change the initializer.
Since this is a seperate layout and if you want to use this in your staging environment you need to precompile it.
#staging.rb
config.assets.precompile += ["swagger_ui.css", "swagger_ui.js"]
0.0.9
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
MIT License, full text of license see here
Free Software, Fuck Yeah!