Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. #Gemfile
  2. gem 'rswag-api'
  3. gem 'rswag-ui'
  4.  
  5. group :development, :test do
  6. gem 'rspec-rails', '~> 3.8.1'
  7. gem 'rspec-rails-swagger', '~> 0.1.5'
  8. ...
  9. end
  10.  
  11. #../config/routes.rb
  12.  
  13. Rails.application.routes.draw do
  14. mount Rswag::Ui::Engine => '/api-docs'
  15. mount Rswag::Api::Engine => '/api-docs'
  16. ...#other routes come here
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement