gopad 3.8.1 → 3.10.0
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/CHANGELOG.md +13 -0
- data/README.md +5 -5
- 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: 8a5c76d4d509f27d20824ed1e798cd856aeaa35690ec1c6e1ae37bb22e6556dc
|
|
4
|
+
data.tar.gz: 4c4cb1acf5428a934584870502bb3e3de9d21b0bb1eb77f138c70c15cf8e7325
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 499332acb138e429ef2520240c1d34fe9feb476ad58113dfd1abd952f555613d2a4ce7c055157152081c8cfbccc04c931f32756471e767cd93b5e1bc5516e792
|
|
7
|
+
data.tar.gz: 10511d007223dc73bb7cb44d86f7df5ae0e406201ca8c7d501fc8952a13264c497b146c9e13d6f8e0a263a51ef6c94c067b8913d25a42ca8e44243ffd4452656
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [3.10.0](https://github.com/gopad/gopad-ruby/compare/v3.9.0...v3.10.0) (2026-09-14)
|
|
4
|
+
|
|
5
|
+
### Dependencies
|
|
6
|
+
|
|
7
|
+
* **minor:** update dependency rubocop to '~> 1.91.0' ([#227](https://github.com/gopad/gopad-ruby/issues/227)) ([623c048](https://github.com/gopad/gopad-ruby/commit/623c048be325cf4aa83a51377f3e41d7dd350bdf))
|
|
8
|
+
* **mise:** update dependency prek to v0.5.3 ([#228](https://github.com/gopad/gopad-ruby/issues/228)) ([a9b0365](https://github.com/gopad/gopad-ruby/commit/a9b0365d2ea8fe0d87a5c1fbcd3e1f4ac5665207))
|
|
9
|
+
|
|
10
|
+
## [3.9.0](https://github.com/gopad/gopad-ruby/compare/v3.8.1...v3.9.0) (2026-08-31)
|
|
11
|
+
|
|
12
|
+
### Dependencies
|
|
13
|
+
|
|
14
|
+
* **minor:** update dependency rubocop to '~> 1.90.0' ([#225](https://github.com/gopad/gopad-ruby/issues/225)) ([90d6d3b](https://github.com/gopad/gopad-ruby/commit/90d6d3b93c3107a25ffd91c77e18772d4a472dbf))
|
|
15
|
+
|
|
3
16
|
## [3.8.1](https://github.com/gopad/gopad-ruby/compare/v3.8.0...v3.8.1) (2026-08-17)
|
|
4
17
|
|
|
5
18
|
### Dependencies
|
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: 3.
|
|
9
|
+
- Package version: 3.10.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-3.
|
|
24
|
+
gem install ./gopad-3.10.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', '~> 3.
|
|
33
|
+
gem 'gopad', '~> 3.10.0'
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
### Install from Git
|
|
@@ -73,10 +73,10 @@ After installing the tools via `mise install` as described above set up the
|
|
|
73
73
|
pre-commit hooks so they run automatically on every commit:
|
|
74
74
|
|
|
75
75
|
```console
|
|
76
|
-
|
|
76
|
+
prek install --hook-type pre-commit --hook-type commit-msg
|
|
77
77
|
```
|
|
78
78
|
|
|
79
|
-
> `
|
|
79
|
+
> `prek` is managed by mise and will be available after `mise install`.
|
|
80
80
|
|
|
81
81
|
If you have changed something on the source you should simply commit following
|
|
82
82
|
the mentioned conventions:
|
data/lib/gopad/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gopad
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.
|
|
4
|
+
version: 3.10.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Thomas Boerger
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-09-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|