bhalleexample 1.3.30.beta1 → 1.4.0.beta1
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.
- checksums.yaml +4 -4
- data/Makefile +2 -2
- data/README.md +6 -6
- data/bhalleexample.gemspec +1 -1
- data/lib/bhalleexample.rb +1 -1
- data/lib/bhalleexample/api/pets_api.rb +1 -1
- data/lib/bhalleexample/api_client.rb +1 -1
- data/lib/bhalleexample/api_error.rb +1 -1
- data/lib/bhalleexample/configuration.rb +1 -1
- data/lib/bhalleexample/models/error.rb +1 -1
- data/lib/bhalleexample/models/pet.rb +1 -1
- data/lib/bhalleexample/version.rb +2 -2
- data/oa3-config.json +1 -1
- data/spec/api/pets_api_spec.rb +1 -1
- data/spec/api_client_spec.rb +1 -1
- data/spec/configuration_spec.rb +1 -1
- data/spec/models/error_spec.rb +1 -1
- data/spec/models/pet_spec.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f787d7508d66277c18e73973afda534a4f65175f
|
4
|
+
data.tar.gz: 28147d63c0b7bc44c784569ac4482a03f6d83334
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5921338b370fb92bd6446bfa7c6580e3b6bcbf4bac6ee70a7c11c3a051cbc18af301980703765c840d6dc99e8c1bca3b8445f95f63f6dea9b0f33b3cfc2ce919
|
7
|
+
data.tar.gz: 0852c63575c837c82d0c6ddda0a2785266e909c1153b157fde9286f62be624db1d991dae815e313b39fae9b3aa2ad8dbc09f7b53249d18ca3307423387f7c8e1
|
data/Makefile
CHANGED
@@ -5,7 +5,7 @@ help:
|
|
5
5
|
@echo " To dynamically generate the ruby client based on a spec issue the following command."
|
6
6
|
@echo " You can specify the spec by replacing the url parameter"
|
7
7
|
@echo ""
|
8
|
-
@echo "\033[92m make WORKING_SPEC=https://raw.githubusercontent.com/bhalle/spec/master/
|
8
|
+
@echo "\033[92m make WORKING_SPEC=https://raw.githubusercontent.com/bhalle/spec/master/spec/openapi.yaml client \033[0m"
|
9
9
|
@echo ""
|
10
10
|
|
11
11
|
version:
|
@@ -42,7 +42,7 @@ trim:
|
|
42
42
|
|
43
43
|
info:
|
44
44
|
sed -i.bak '1s/.*/# Example Ruby Client/' README.md && rm README.md.bak
|
45
|
-
sed -i.bak '2s/.*/[](https:\/\/opensource.org\/licenses\/Apache-2.0) [](https:\/\/badge.fury.io\/rb\/bhalleexample) [](https:\/\/circleci.com\/gh\/bhalle\/client-python)
|
45
|
+
sed -i.bak '2s/.*/[](https:\/\/opensource.org\/licenses\/Apache-2.0) [](https:\/\/badge.fury.io\/rb\/bhalleexample) [](https:\/\/circleci.com\/gh\/bhalle\/client-python)\\/' README.md && rm README.md.bak
|
46
46
|
|
47
47
|
build_client:
|
48
48
|
#
|
data/README.md
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
# Example Ruby Client
|
2
|
-
[](https://opensource.org/licenses/Apache-2.0) [](https://badge.fury.io/rb/bhalleexample) [](https://circleci.com/gh/bhalle/client-python)
|
2
|
+
[](https://opensource.org/licenses/Apache-2.0) [](https://badge.fury.io/rb/bhalleexample) [](https://circleci.com/gh/bhalle/client-python)\
|
3
3
|
BhalleExample - the Ruby gem for the Swagger Petstore
|
4
4
|
|
5
5
|
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
6
6
|
|
7
7
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
8
8
|
|
9
|
-
- API version: 1.
|
10
|
-
- Package version: 1.
|
9
|
+
- API version: 1.4.0
|
10
|
+
- Package version: 1.4.0
|
11
11
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
12
12
|
|
13
13
|
## Installation
|
@@ -23,16 +23,16 @@ gem build bhalleexample.gemspec
|
|
23
23
|
Then either install the gem locally:
|
24
24
|
|
25
25
|
```shell
|
26
|
-
gem install ./bhalleexample-1.
|
26
|
+
gem install ./bhalleexample-1.4.0.gem
|
27
27
|
```
|
28
28
|
|
29
|
-
(for development, run `gem install --dev ./bhalleexample-1.
|
29
|
+
(for development, run `gem install --dev ./bhalleexample-1.4.0.gem` to install the development dependencies)
|
30
30
|
|
31
31
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
32
32
|
|
33
33
|
Finally add this to the Gemfile:
|
34
34
|
|
35
|
-
gem 'bhalleexample', '~> 1.
|
35
|
+
gem 'bhalleexample', '~> 1.4.0'
|
36
36
|
|
37
37
|
### Install from Git
|
38
38
|
|
data/bhalleexample.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
7
7
|
|
8
|
-
The version of the OpenAPI document: 1.
|
8
|
+
The version of the OpenAPI document: 1.4.0
|
9
9
|
|
10
10
|
Generated by: https://openapi-generator.tech
|
11
11
|
OpenAPI Generator version: 4.2.3-SNAPSHOT
|
data/lib/bhalleexample.rb
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 1.
|
6
|
+
The version of the OpenAPI document: 1.4.0
|
7
7
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
OpenAPI Generator version: 4.2.3-SNAPSHOT
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 1.
|
6
|
+
The version of the OpenAPI document: 1.4.0
|
7
7
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
OpenAPI Generator version: 4.2.3-SNAPSHOT
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 1.
|
6
|
+
The version of the OpenAPI document: 1.4.0
|
7
7
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
OpenAPI Generator version: 4.2.3-SNAPSHOT
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 1.
|
6
|
+
The version of the OpenAPI document: 1.4.0
|
7
7
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
OpenAPI Generator version: 4.2.3-SNAPSHOT
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 1.
|
6
|
+
The version of the OpenAPI document: 1.4.0
|
7
7
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
OpenAPI Generator version: 4.2.3-SNAPSHOT
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 1.
|
6
|
+
The version of the OpenAPI document: 1.4.0
|
7
7
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
OpenAPI Generator version: 4.2.3-SNAPSHOT
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 1.
|
6
|
+
The version of the OpenAPI document: 1.4.0
|
7
7
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
OpenAPI Generator version: 4.2.3-SNAPSHOT
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 1.
|
6
|
+
The version of the OpenAPI document: 1.4.0
|
7
7
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
OpenAPI Generator version: 4.2.3-SNAPSHOT
|
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.2.3-SNAPSHOT
|
|
11
11
|
=end
|
12
12
|
|
13
13
|
module BhalleExample
|
14
|
-
VERSION = '1.
|
14
|
+
VERSION = '1.4.0.beta1'
|
15
15
|
end
|
data/oa3-config.json
CHANGED
data/spec/api/pets_api_spec.rb
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 1.
|
6
|
+
The version of the OpenAPI document: 1.4.0
|
7
7
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
OpenAPI Generator version: 4.2.3-SNAPSHOT
|
data/spec/api_client_spec.rb
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 1.
|
6
|
+
The version of the OpenAPI document: 1.4.0
|
7
7
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
OpenAPI Generator version: 4.2.3-SNAPSHOT
|
data/spec/configuration_spec.rb
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 1.
|
6
|
+
The version of the OpenAPI document: 1.4.0
|
7
7
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
OpenAPI Generator version: 4.2.3-SNAPSHOT
|
data/spec/models/error_spec.rb
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 1.
|
6
|
+
The version of the OpenAPI document: 1.4.0
|
7
7
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
OpenAPI Generator version: 4.2.3-SNAPSHOT
|
data/spec/models/pet_spec.rb
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 1.
|
6
|
+
The version of the OpenAPI document: 1.4.0
|
7
7
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
OpenAPI Generator version: 4.2.3-SNAPSHOT
|
data/spec/spec_helper.rb
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 1.
|
6
|
+
The version of the OpenAPI document: 1.4.0
|
7
7
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
OpenAPI Generator version: 4.2.3-SNAPSHOT
|