.. | ||
docs | ||
lib | ||
spec | ||
.gitignore | ||
Gemfile | ||
Gemfile.lock | ||
git_push.sh | ||
hello.txt | ||
petstore_profiling.output | ||
petstore_profiling.rb | ||
petstore.gemspec | ||
pom.xml | ||
press_anykey_to_continue.sh | ||
Rakefile | ||
README.md |
petstore
Petstore - the Ruby gem for the Swagger Petstore
This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose.
This SDK is automatically generated by the Swagger Codegen project:
- API version: 1.0.0
- Package version: 1.0.0
- Build date: 2016-04-25T22:22:56.750+08:00
- Build package: class io.swagger.codegen.languages.RubyClientCodegen
Installation
Build a gem
To build the Ruby code into a gem:
gem build petstore.gemspec
Then either install the gem locally:
gem install ./petstore-1.0.0.gem
(for development, run gem install --dev ./petstore-1.0.0.gem
to install the development dependencies)
or publish the gem to a gem hosting service, e.g. RubyGems.
Finally add this to the Gemfile:
gem 'petstore', '~> 1.0.0'
Install from Git
If the Ruby gem is hosted at a git repository: https://github.com/YOUR_GIT_USR_ID/YOUR_GIT_REPO_ID, then add the following in the Gemfile:
gem 'petstore', :git => 'https://github.com/YOUR_GIT_USR_ID/YOUR_GIT_REPO_ID.git'
Include the Ruby code directly
Include the Ruby code directly using -I
as follows:
ruby -Ilib script.rb
Getting Started
Please follow the installation procedure and then run the following code:
# Load the gem
require 'petstore'
# Setup authorization
Petstore.configure do |config|
# Configure OAuth2 access token for authorization: petstore_auth
config.access_token = 'YOUR ACCESS TOKEN'
end
api_instance = Petstore::PetApi.new
body = Petstore::Pet.new # Pet | Pet object that needs to be added to the store
begin
#Add a new pet to the store
api_instance.add_pet(body)
rescue Petstore::ApiError => e
puts "Exception when calling PetApi->add_pet: #{e}"
end
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 | 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 | 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 | get_inventory | GET /store/inventory | Returns pet inventories by status |
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
- Petstore::Animal
- Petstore::ApiResponse
- Petstore::Cat
- Petstore::Category
- Petstore::Dog
- Petstore::FormatTest
- Petstore::Model200Response
- Petstore::ModelReturn
- Petstore::Name
- Petstore::Order
- Petstore::Pet
- Petstore::SpecialModelName
- Petstore::Tag
- Petstore::User
Documentation for Authorization
api_key
- Type: API key
- API key parameter name: api_key
- Location: HTTP header
petstore_auth
- Type: OAuth
- Flow: implicit
- Authorization URL: http://petstore.swagger.io/api/oauth/dialog
- Scopes:
- write:pets: modify pets in your account
- read:pets: read your pets