gopad 1.10.1 → 1.12.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/README.md +3 -3
- data/lib/gopad/api_client.rb +2 -2
- data/lib/gopad/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 153ec5fc1324c9944a5bd34ed47a138324d0bce01d6d21c8f9bb77b66644b6f7
|
4
|
+
data.tar.gz: ce56cf72552974bdc47d7f25cb2063bfc54a10fa8c1dbdcf7d58b4fc823a11a2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a5618936e49a800ec2b62e0c671f07aeaf4f3440f2f0c32cd57efaee3d03546a6c3a06bdd503ccf8e1b3935eb32cd17f7022659ad6926b9aa94dab3a21649a01
|
7
|
+
data.tar.gz: af58955c53cdcab19ef970e58a799c8db54f2bcc1ddaf5a39a3ad284995fe65223f053de14a7a790538dc5fe98339401f8ee636f240b80da4c20f617343d74aa
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,20 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [1.12.0](https://github.com/gopad/gopad-ruby/compare/v1.11.0...v1.12.0) (2025-01-27)
|
4
|
+
|
5
|
+
|
6
|
+
### Features
|
7
|
+
|
8
|
+
* **deps:** update dependency rubocop to '~> 1.71.0' ([#90](https://github.com/gopad/gopad-ruby/issues/90)) ([ce38b12](https://github.com/gopad/gopad-ruby/commit/ce38b12a33d69e10068e4ddcc0196b66bef52078))
|
9
|
+
|
10
|
+
## [1.11.0](https://github.com/gopad/gopad-ruby/compare/v1.10.1...v1.11.0) (2025-01-13)
|
11
|
+
|
12
|
+
|
13
|
+
### Features
|
14
|
+
|
15
|
+
* automated openapi client update ([280ac53](https://github.com/gopad/gopad-ruby/commit/280ac536f4f0774bf6231e3c7ed1f749d0afd32c))
|
16
|
+
* **deps:** update dependency rubocop to '~> 1.70.0' ([#88](https://github.com/gopad/gopad-ruby/issues/88)) ([32e71e5](https://github.com/gopad/gopad-ruby/commit/32e71e57f66bd887134d963a9c1450464f2d190b))
|
17
|
+
|
3
18
|
## [1.10.1](https://github.com/gopad/gopad-ruby/compare/v1.10.0...v1.10.1) (2025-01-06)
|
4
19
|
|
5
20
|
|
data/README.md
CHANGED
@@ -6,7 +6,7 @@ This repository provides a client SDK for Ruby. This SDK is automatically
|
|
6
6
|
generated by the [OpenAPI Generator][generator] project:
|
7
7
|
|
8
8
|
- API version: 1.0.0-alpha1
|
9
|
-
- Package version: 1.
|
9
|
+
- Package version: 1.12.0
|
10
10
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
11
11
|
|
12
12
|
For more information, please visit [https://gopad.eu](https://gopad.eu)
|
@@ -21,7 +21,7 @@ the built gem:
|
|
21
21
|
|
22
22
|
```console
|
23
23
|
gem build gopad.gemspec
|
24
|
-
gem install ./gopad-1.
|
24
|
+
gem install ./gopad-1.12.0.gem
|
25
25
|
```
|
26
26
|
|
27
27
|
### Install from Rubygems
|
@@ -30,7 +30,7 @@ If you want to use a a properly released version hosted Rubygems you just need
|
|
30
30
|
to add the following line to your Gemfile:
|
31
31
|
|
32
32
|
```ruby
|
33
|
-
gem 'gopad', '~> 1.
|
33
|
+
gem 'gopad', '~> 1.12.0'
|
34
34
|
```
|
35
35
|
|
36
36
|
### Install from Git
|
data/lib/gopad/api_client.rb
CHANGED
@@ -51,7 +51,7 @@ module Gopad
|
|
51
51
|
begin
|
52
52
|
response = connection(opts).public_send(http_method.to_sym.downcase) do |req|
|
53
53
|
request = build_request(http_method, path, req, opts)
|
54
|
-
stream = download_file(request) if
|
54
|
+
stream = download_file(request) if %w[File Binary].include?(opts[:return_type])
|
55
55
|
end
|
56
56
|
|
57
57
|
if config.debugging
|
@@ -76,7 +76,7 @@ module Gopad
|
|
76
76
|
raise ApiError.new('Connection failed')
|
77
77
|
end
|
78
78
|
|
79
|
-
data = if
|
79
|
+
data = if %w[File Binary].include?(opts[:return_type])
|
80
80
|
deserialize_file(response, stream)
|
81
81
|
elsif opts[:return_type]
|
82
82
|
deserialize(response, opts[:return_type])
|
data/lib/gopad/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gopad
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.12.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Thomas Boerger
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-01-
|
10
|
+
date: 2025-01-27 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: faraday
|