gopad 3.7.3 → 3.8.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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +10 -0
  3. data/README.md +50 -4
  4. data/lib/gopad/version.rb +1 -1
  5. metadata +6 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 931525aa85469fabc7ca71e6143d05b36ea3f4577d5de82ebbd616432e211045
4
- data.tar.gz: 8f2639201bba2de1fae658bba91de35cf7fc41da430157f202da587bedd6eeab
3
+ metadata.gz: a7461f3c0adf3de63b39dff32617a376d1bb1fd433e6d2d00e0bd02085e70c4c
4
+ data.tar.gz: bad0afeb516008408cfcd469319c06447b07571ca513be477ad77f966220f336
5
5
  SHA512:
6
- metadata.gz: d2a0653d6fad9d80d95a02bd597c8c000269238d3fe3beff032544d0dd13f58a8153a51e10ce46b74361575cd03a889ddc3f96ee5eb5dea083260ed263e81fad
7
- data.tar.gz: d78369b284f4bafd016153ee3053b0c39a3f3cdd955a1c079701d59c0f62ca731de0b3428ceb4ff50bcd8b8d14758f27e5e11d4707f77adff4a90f9305c58894
6
+ metadata.gz: 27dd78e11875b88bb99da7da447aae5ac8b458898d80bfc07e8d7018bb0e91c9b456330096b50e7fe40382ea6b836d8d9e4d9e3d8286871cc2c65a6d2ac28698
7
+ data.tar.gz: 4b36dd6deb12f66c48fbd4d008bdb160b85df971fd831d2c335386eaeb2d00e8a8d702b19c9f09e0b41c95d1703a40fb85497dfc138a7a74183a5b244b2e6826
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.8.0](https://github.com/gopad/gopad-ruby/compare/v3.7.3...v3.8.0) (2026-08-10)
4
+
5
+ ### Features
6
+
7
+ * restructure repo and build processes ([25eceb1](https://github.com/gopad/gopad-ruby/commit/25eceb11e39a56b597c717941a308eac89d0993d))
8
+
9
+ ### Dependencies
10
+
11
+ * **minor:** update dependency rubocop to '~> 1.89.0' ([#220](https://github.com/gopad/gopad-ruby/issues/220)) ([27c15a9](https://github.com/gopad/gopad-ruby/commit/27c15a9853eb69bf1e1e9346779e827d95ae1380))
12
+
3
13
  ## [3.7.3](https://github.com/gopad/gopad-ruby/compare/v3.7.2...v3.7.3) (2026-07-20)
4
14
 
5
15
  ## [3.7.2](https://github.com/gopad/gopad-ruby/compare/v3.7.1...v3.7.2) (2026-07-13)
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.7.3
9
+ - Package version: 3.8.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.7.3.gem
24
+ gem install ./gopad-3.8.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.7.3'
33
+ gem 'gopad', '~> 3.8.0'
34
34
  ```
35
35
 
36
36
  ### Install from Git
@@ -46,9 +46,51 @@ gem 'gopad', :git => 'https://github.com/gopad/gopad-ruby.git'
46
46
  If you find a security issue please contact
47
47
  [gopad@webhippie.de](mailto:gopad@webhippie.de) first.
48
48
 
49
+ ## Generating
50
+
51
+ We use [mise][mise] to manage all required tools and their versions. Install it
52
+ by following the [official installation instructions][mise-install], then run
53
+ the following commands inside the repository to activate mise and install all
54
+ tools defined in `mise.toml`:
55
+
56
+ ```console
57
+ mise trust
58
+ mise install
59
+ ```
60
+
49
61
  ## Contributing
50
62
 
51
- Fork -> Patch -> Push -> Pull Request
63
+ Generally we are following [conventional commits][commits] when we apply
64
+ changes. That way we are able to generate proper changelogs for every release.
65
+ Please use always pull requests to integrate new functionalities or to fix
66
+ issues.
67
+
68
+ For the release process we are following [semantic versioning][semver] which
69
+ clearly indicates if a new version just resolves bugs, includes new features or
70
+ even includes breaking changes.
71
+
72
+ After installing the tools via `mise install` as described above set up the
73
+ pre-commit hooks so they run automatically on every commit:
74
+
75
+ ```console
76
+ pre-commit install --hook-type pre-commit --hook-type commit-msg
77
+ ```
78
+
79
+ > `pre-commit` is managed by mise and will be available after `mise install`.
80
+
81
+ If you have changed something on the source you should simply commit following
82
+ the mentioned conventions:
83
+
84
+ ```console
85
+ git checkout -b feat/new-feature
86
+ git add --all
87
+ git commit -m 'feat: added awesome new feature'
88
+ git push --set-upstream origin feat/new-feature
89
+ ```
90
+
91
+ After pushing your changes into the Git repository you should create a pull
92
+ request on GitHub. If the pull request have been merged and everything built
93
+ fine it will also create automatically a new release at least once a week.
52
94
 
53
95
  ## Authors
54
96
 
@@ -65,3 +107,7 @@ Copyright (c) 2018 Thomas Boerger <thomas@webhippie.de>
65
107
  ```
66
108
 
67
109
  [generator]: https://openapi-generator.tech
110
+ [mise]: https://mise.jdx.dev/
111
+ [mise-install]: https://mise.jdx.dev/getting-started.html
112
+ [commits]: https://www.conventionalcommits.org/en/v1.0.0/
113
+ [semver]: https://semver.org/
data/lib/gopad/version.rb CHANGED
@@ -8,5 +8,5 @@
8
8
  # Generator version: 7.17.0
9
9
 
10
10
  module Gopad
11
- VERSION = '3.7.3'.freeze
11
+ VERSION = '3.8.0'.freeze
12
12
  end
metadata CHANGED
@@ -1,13 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gopad
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.7.3
4
+ version: 3.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas Boerger
8
+ autorequire:
8
9
  bindir: bin
9
10
  cert_chain: []
10
- date: 1980-01-02 00:00:00.000000000 Z
11
+ date: 2026-08-10 00:00:00.000000000 Z
11
12
  dependencies:
12
13
  - !ruby/object:Gem::Dependency
13
14
  name: faraday
@@ -117,6 +118,7 @@ licenses:
117
118
  - Apache-2.0
118
119
  metadata:
119
120
  rubygems_mfa_required: 'true'
121
+ post_install_message:
120
122
  rdoc_options: []
121
123
  require_paths:
122
124
  - lib
@@ -131,7 +133,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
131
133
  - !ruby/object:Gem::Version
132
134
  version: '0'
133
135
  requirements: []
134
- rubygems_version: 4.0.16
136
+ rubygems_version: 3.4.20
137
+ signing_key:
135
138
  specification_version: 4
136
139
  summary: Etherpad for markdown with Go
137
140
  test_files: []