openapi-generator/samples/client/petstore/ruby
2016-03-15 11:41:47 +08:00
..
docs update user-agent for Ruby 2016-03-15 11:41:47 +08:00
lib update user-agent for Ruby 2016-03-15 11:41:47 +08:00
spec update user-agent for Ruby 2016-03-15 11:41:47 +08:00
.gitignore Ruby: add auto-generated documentation in Markdown 2016-03-09 17:18:15 +08:00
Gemfile added ruby sample 2012-09-26 13:02:27 -07:00
Gemfile.lock Minimal update for Ruby testing on El Capitan. 2016-01-07 18:17:07 -05:00
git_push.sh Ruby docs: add require and print statements 2016-03-14 15:42:59 +08:00
hello.txt Add file used in test: hello.txt 2015-08-20 11:18:05 +08:00
petstore_profiling.output Add profiling script and results for Ruby Petstore sample 2015-12-11 23:24:19 +08:00
petstore_profiling.rb Add profiling script and results for Ruby Petstore sample 2015-12-11 23:24:19 +08:00
petstore.gemspec Ruby: IO improvements on file downloading 2016-01-12 11:59:41 +08:00
pom.xml Code reformatting 2015-06-07 11:56:08 -04:00
press_anykey_to_continue.sh add delay script, update CI test to run ruby test first 2016-02-12 18:46:19 +08:00
Rakefile added ruby sample 2012-09-26 13:02:27 -07:00
README.md update user-agent for Ruby 2016-03-15 11:41:47 +08:00

petstore

Petstore - the Ruby gem for the Swagger Petstore

Version: 1.0.0

Automatically generated by the Ruby Swagger Codegen project:

  • Build date: 2016-03-14T21:56:19.858+08:00
  • Build package: class io.swagger.codegen.languages.RubyClientCodegen

Installation

Build a gem

You can build the generated client into a gem:

gem build petstore.gemspec

Then you can either install the gem:

gem install ./petstore-1.0.0.gem

or publish the gem to a gem server like RubyGems.

Finally add this to your Gemfile:

gem 'petstore', '~> 1.0.0'

Host as a git repository

You can also choose to host the generated client as a git repository, e.g. on github: https://github.com/YOUR_USERNAME/YOUR_REPO

Then you can reference it in Gemfile:

gem 'petstore', :git => 'https://github.com/YOUR_USERNAME/YOUR_REPO.git'

Use without installation

You can also use the client directly like this:

ruby -Ilib script.rb

Getting Started

require 'petstore'

Petstore.configure do |config|
  # Use the line below to configure API key authorization if needed:
  #config.api_key['api_key'] = 'your api key'

  config.host = 'petstore.swagger.io'
  config.base_path = '/v2'
  # Enable debugging (default is disabled).
  config.debugging = true
end

# Assuming there's a `PetApi` containing a `get_pet_by_id` method
# which returns a model object:
pet_api = Petstore::PetApi.new
pet = pet_api.get_pet_by_id(5)
puts pet.to_body

Documentation for API Endpoints

All URIs are relative to http://petstore.swagger.io/v2

Class Method HTTP request Description
Petstore::PetApi add_pet POST /pet Add a new pet to the store
Petstore::PetApi add_pet_using_byte_array POST /pet?testing_byte_array=true Fake endpoint to test byte array in body parameter for adding a new pet to the store
Petstore::PetApi delete_pet DELETE /pet/{petId} Deletes a pet
Petstore::PetApi find_pets_by_status GET /pet/findByStatus Finds Pets by status
Petstore::PetApi find_pets_by_tags GET /pet/findByTags Finds Pets by tags
Petstore::PetApi get_pet_by_id GET /pet/{petId} Find pet by ID
Petstore::PetApi get_pet_by_id_in_object GET /pet/{petId}?response=inline_arbitrary_object Fake endpoint to test inline arbitrary object return by 'Find pet by ID'
Petstore::PetApi pet_pet_idtesting_byte_arraytrue_get GET /pet/{petId}?testing_byte_array=true Fake endpoint to test byte array return by 'Find pet by ID'
Petstore::PetApi update_pet PUT /pet Update an existing pet
Petstore::PetApi update_pet_with_form POST /pet/{petId} Updates a pet in the store with form data
Petstore::PetApi upload_file POST /pet/{petId}/uploadImage uploads an image
Petstore::StoreApi delete_order DELETE /store/order/{orderId} Delete purchase order by ID
Petstore::StoreApi find_orders_by_status GET /store/findByStatus Finds orders by status
Petstore::StoreApi get_inventory GET /store/inventory Returns pet inventories by status
Petstore::StoreApi get_inventory_in_object GET /store/inventory?response=arbitrary_object Fake endpoint to test arbitrary object return by 'Get inventory'
Petstore::StoreApi get_order_by_id GET /store/order/{orderId} Find purchase order by ID
Petstore::StoreApi place_order POST /store/order Place an order for a pet
Petstore::UserApi create_user POST /user Create user
Petstore::UserApi create_users_with_array_input POST /user/createWithArray Creates list of users with given input array
Petstore::UserApi create_users_with_list_input POST /user/createWithList Creates list of users with given input array
Petstore::UserApi delete_user DELETE /user/{username} Delete user
Petstore::UserApi get_user_by_name GET /user/{username} Get user by user name
Petstore::UserApi login_user GET /user/login Logs user into the system
Petstore::UserApi logout_user GET /user/logout Logs out current logged in user session
Petstore::UserApi update_user PUT /user/{username} Updated user

Documentation for Models

Documentation for Authorization

test_api_key_header

  • Type: API key
  • API key parameter name: test_api_key_header
  • Location: HTTP header

api_key

  • Type: API key
  • API key parameter name: api_key
  • Location: HTTP header

test_http_basic

  • Type: HTTP basic authentication

test_api_client_secret

  • Type: API key
  • API key parameter name: x-test_api_client_secret
  • Location: HTTP header

test_api_client_id

  • Type: API key
  • API key parameter name: x-test_api_client_id
  • Location: HTTP header

test_api_key_query

  • Type: API key
  • API key parameter name: test_api_key_query
  • Location: URL query string

petstore_auth