rose-nielsen-sdk 0.0.3 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +19 -19
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 213bf3b7f8ef26e7acdb1cab8d7ed903a2570b476b60809b611cb03cf5be125b
4
- data.tar.gz: 26fdaf45ce261cee58649cfddab4c8b3646e009d2b935197bc701fecfe0b2cb0
3
+ metadata.gz: 2e123192c3afd15141ae2ec520c65796cf9ada7dcf919dd830a6074fac11c2fd
4
+ data.tar.gz: f9c60d819cbb7bc1c3207d8f27cb5d54895f3ecc462af0cbde5d8e755ea5af2a
5
5
  SHA512:
6
- metadata.gz: c6c7a9a98b27020c3fcdf09e6812e503416f024d8fd44a649a765e7fdf0aac9fa12aa93788a4f148366719e1b746220c15589b365231f561d58ce835a21ce6f4
7
- data.tar.gz: 5fe28102ce0841d4d57c73ab6ee6154c7a56d851afb71dc32b68febe7089dd2bb364c752645a9fcb0147cd6b5f52af52b7814b46ca18d01a548f8c970db3a365
6
+ metadata.gz: c07aba45b1e0941fd0686fc829b498d2489e5bd50773ce35e17bc1e074986bab3ecb7ad88b34b2fbd7e4a6fe5631cec2f0a76b595e5bc4b50f78825014a06925
7
+ data.tar.gz: 223d37a5cda9a8a367e30242c36e78801d758aa77aa5176b3041eb711d0f3b78126b28478cc799e4a0c63751a933fef677c6765f292eed7be494ea4f97b1dc89
data/README.md CHANGED
@@ -12,16 +12,16 @@ Find out more about Swagger: [http://swagger.io](http://swagger.io)
12
12
  Install the gem from the command line:
13
13
 
14
14
  ```bash
15
- gem install rose-nielsen-sdk -v 0.0.3
15
+ gem install rose-nielsen-sdk -v 0.0.6
16
16
  ```
17
17
 
18
18
  Or add the gem to your Gemfile and run `bundle`:
19
19
 
20
20
  ```ruby
21
- gem 'rose-nielsen-sdk', '0.0.3'
21
+ gem 'rose-nielsen-sdk', '0.0.6'
22
22
  ```
23
23
 
24
- For additional gem details, see the [RubyGems page for the rose-nielsen-sdk gem](https://rubygems.org/gems/rose-nielsen-sdk/versions/0.0.3).
24
+ For additional gem details, see the [RubyGems page for the rose-nielsen-sdk gem](https://rubygems.org/gems/rose-nielsen-sdk/versions/0.0.6).
25
25
 
26
26
  ## Test the SDK
27
27
 
@@ -33,7 +33,7 @@ rake
33
33
 
34
34
  ## Initialize the API Client
35
35
 
36
- **_Note:_** Documentation for the client can be found [here.](https://www.github.com/ZahraN444/rose-nielsen-ruby-sdk/tree/0.0.3/doc/client.md)
36
+ **_Note:_** Documentation for the client can be found [here.](https://www.github.com/ZahraN444/rose-nielsen-ruby-sdk/tree/0.0.6/doc/client.md)
37
37
 
38
38
  The following parameters are configurable for the API Client:
39
39
 
@@ -50,10 +50,10 @@ The following parameters are configurable for the API Client:
50
50
  | retry_statuses | `Array` | A list of HTTP statuses to retry. <br> **Default: [408, 413, 429, 500, 502, 503, 504, 521, 522, 524]** |
51
51
  | retry_methods | `Array` | A list of HTTP methods to retry. <br> **Default: %i[get put]** |
52
52
  | http_callback | `HttpCallBack` | The Http CallBack allows defining callables for pre and post API calls. |
53
- | proxy_settings | [`ProxySettings`](https://www.github.com/ZahraN444/rose-nielsen-ruby-sdk/tree/0.0.3/doc/proxy-settings.md) | Optional proxy configuration to route HTTP requests through a proxy server. |
54
- | api_key_credentials | [`ApiKeyCredentials`](https://www.github.com/ZahraN444/rose-nielsen-ruby-sdk/tree/0.0.3/doc/auth/custom-header-signature.md) | The credential object for Custom Header Signature |
55
- | http_basic_credentials | [`HttpBasicCredentials`](https://www.github.com/ZahraN444/rose-nielsen-ruby-sdk/tree/0.0.3/doc/auth/basic-authentication.md) | The credential object for Basic Authentication |
56
- | petstore_auth_credentials | [`PetstoreAuthCredentials`](https://www.github.com/ZahraN444/rose-nielsen-ruby-sdk/tree/0.0.3/doc/auth/oauth-2-implicit-grant.md) | The credential object for OAuth 2 Implicit Grant |
53
+ | proxy_settings | [`ProxySettings`](https://www.github.com/ZahraN444/rose-nielsen-ruby-sdk/tree/0.0.6/doc/proxy-settings.md) | Optional proxy configuration to route HTTP requests through a proxy server. |
54
+ | api_key_credentials | [`ApiKeyCredentials`](https://www.github.com/ZahraN444/rose-nielsen-ruby-sdk/tree/0.0.6/doc/auth/custom-header-signature.md) | The credential object for Custom Header Signature |
55
+ | http_basic_credentials | [`HttpBasicCredentials`](https://www.github.com/ZahraN444/rose-nielsen-ruby-sdk/tree/0.0.6/doc/auth/basic-authentication.md) | The credential object for Basic Authentication |
56
+ | petstore_auth_credentials | [`PetstoreAuthCredentials`](https://www.github.com/ZahraN444/rose-nielsen-ruby-sdk/tree/0.0.6/doc/auth/oauth-2-implicit-grant.md) | The credential object for OAuth 2 Implicit Grant |
57
57
 
58
58
  The API client can be initialized as follows:
59
59
 
@@ -98,29 +98,29 @@ The SDK can be configured to use a different environment for making API calls. A
98
98
 
99
99
  This API uses the following authentication schemes.
100
100
 
101
- * [`api_key (Custom Header Signature)`](https://www.github.com/ZahraN444/rose-nielsen-ruby-sdk/tree/0.0.3/doc/auth/custom-header-signature.md)
102
- * [`httpBasic (Basic Authentication)`](https://www.github.com/ZahraN444/rose-nielsen-ruby-sdk/tree/0.0.3/doc/auth/basic-authentication.md)
103
- * [`petstore_auth (OAuth 2 Implicit Grant)`](https://www.github.com/ZahraN444/rose-nielsen-ruby-sdk/tree/0.0.3/doc/auth/oauth-2-implicit-grant.md)
101
+ * [`api_key (Custom Header Signature)`](https://www.github.com/ZahraN444/rose-nielsen-ruby-sdk/tree/0.0.6/doc/auth/custom-header-signature.md)
102
+ * [`httpBasic (Basic Authentication)`](https://www.github.com/ZahraN444/rose-nielsen-ruby-sdk/tree/0.0.6/doc/auth/basic-authentication.md)
103
+ * [`petstore_auth (OAuth 2 Implicit Grant)`](https://www.github.com/ZahraN444/rose-nielsen-ruby-sdk/tree/0.0.6/doc/auth/oauth-2-implicit-grant.md)
104
104
 
105
105
  ## List of APIs
106
106
 
107
- * [Pet](https://www.github.com/ZahraN444/rose-nielsen-ruby-sdk/tree/0.0.3/doc/controllers/pet.md)
108
- * [Store](https://www.github.com/ZahraN444/rose-nielsen-ruby-sdk/tree/0.0.3/doc/controllers/store.md)
109
- * [User](https://www.github.com/ZahraN444/rose-nielsen-ruby-sdk/tree/0.0.3/doc/controllers/user.md)
107
+ * [Pet](https://www.github.com/ZahraN444/rose-nielsen-ruby-sdk/tree/0.0.6/doc/controllers/pet.md)
108
+ * [Store](https://www.github.com/ZahraN444/rose-nielsen-ruby-sdk/tree/0.0.6/doc/controllers/store.md)
109
+ * [User](https://www.github.com/ZahraN444/rose-nielsen-ruby-sdk/tree/0.0.6/doc/controllers/user.md)
110
110
 
111
111
  ## SDK Infrastructure
112
112
 
113
113
  ### Configuration
114
114
 
115
- * [ProxySettings](https://www.github.com/ZahraN444/rose-nielsen-ruby-sdk/tree/0.0.3/doc/proxy-settings.md)
115
+ * [ProxySettings](https://www.github.com/ZahraN444/rose-nielsen-ruby-sdk/tree/0.0.6/doc/proxy-settings.md)
116
116
 
117
117
  ### HTTP
118
118
 
119
- * [HttpResponse](https://www.github.com/ZahraN444/rose-nielsen-ruby-sdk/tree/0.0.3/doc/http-response.md)
120
- * [HttpRequest](https://www.github.com/ZahraN444/rose-nielsen-ruby-sdk/tree/0.0.3/doc/http-request.md)
119
+ * [HttpResponse](https://www.github.com/ZahraN444/rose-nielsen-ruby-sdk/tree/0.0.6/doc/http-response.md)
120
+ * [HttpRequest](https://www.github.com/ZahraN444/rose-nielsen-ruby-sdk/tree/0.0.6/doc/http-request.md)
121
121
 
122
122
  ### Utilities
123
123
 
124
- * [ApiHelper](https://www.github.com/ZahraN444/rose-nielsen-ruby-sdk/tree/0.0.3/doc/api-helper.md)
125
- * [DateTimeHelper](https://www.github.com/ZahraN444/rose-nielsen-ruby-sdk/tree/0.0.3/doc/date-time-helper.md)
124
+ * [ApiHelper](https://www.github.com/ZahraN444/rose-nielsen-ruby-sdk/tree/0.0.6/doc/api-helper.md)
125
+ * [DateTimeHelper](https://www.github.com/ZahraN444/rose-nielsen-ruby-sdk/tree/0.0.6/doc/date-time-helper.md)
126
126
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rose-nielsen-sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Zahra Naseem