Martin Slemr f0bcaaf45d Ruby client nullable (#4391)
* Ruby Client: implementation of nullable

* Ruby samples with nullable implementation

* [Ruby] openapi_nullable as a Set and skipping attrs fix
2019-11-07 16:15:00 +08:00

38 lines
2.5 KiB
Ruby

=begin
OpenAPI Petstore
This is a sample server Petstore server. For this sample, you can use the api key `special-key` to test the authorization filters.
The version of the OpenAPI document: 1.0.0
Generated by: https://github.com/openapitools/openapi-generator.git
=end
Rails.application.routes.draw do
def add_openapi_route http_method, path, opts = {}
full_path = path.gsub(/{(.*?)}/, ':\1')
match full_path, to: "#{opts.fetch(:controller_name)}##{opts[:action_name]}", via: http_method
end
add_openapi_route 'POST', '/v2/pet', controller_name: 'pet', action_name: 'create'
add_openapi_route 'DELETE', '/v2/pet/{petId}', controller_name: 'pet', action_name: 'destroy'
add_openapi_route 'GET', '/v2/pet/findByStatus', controller_name: 'pet', action_name: 'find_pets_by_status'
add_openapi_route 'GET', '/v2/pet/findByTags', controller_name: 'pet', action_name: 'find_pets_by_tags'
add_openapi_route 'GET', '/v2/pet/{petId}', controller_name: 'pet', action_name: 'show'
add_openapi_route 'PUT', '/v2/pet', controller_name: 'pet', action_name: 'update_pet'
add_openapi_route 'POST', '/v2/pet/{petId}', controller_name: 'pet', action_name: 'update_pet_with_form'
add_openapi_route 'POST', '/v2/pet/{petId}/uploadImage', controller_name: 'pet', action_name: 'upload_file'
add_openapi_route 'DELETE', '/v2/store/order/{orderId}', controller_name: 'store', action_name: 'delete_order'
add_openapi_route 'GET', '/v2/store/inventory', controller_name: 'store', action_name: 'get_inventory'
add_openapi_route 'GET', '/v2/store/order/{orderId}', controller_name: 'store', action_name: 'get_order_by_id'
add_openapi_route 'POST', '/v2/store/order', controller_name: 'store', action_name: 'place_order'
add_openapi_route 'POST', '/v2/user', controller_name: 'user', action_name: 'create'
add_openapi_route 'POST', '/v2/user/createWithArray', controller_name: 'user', action_name: 'create_users_with_array_input'
add_openapi_route 'POST', '/v2/user/createWithList', controller_name: 'user', action_name: 'create_users_with_list_input'
add_openapi_route 'DELETE', '/v2/user/{username}', controller_name: 'user', action_name: 'destroy'
add_openapi_route 'GET', '/v2/user/{username}', controller_name: 'user', action_name: 'show'
add_openapi_route 'GET', '/v2/user/login', controller_name: 'user', action_name: 'login_user'
add_openapi_route 'GET', '/v2/user/logout', controller_name: 'user', action_name: 'logout_user'
add_openapi_route 'PUT', '/v2/user/{username}', controller_name: 'user', action_name: 'update'
end