rimless 1.6.0 → 1.7.1
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/.github/workflows/release.yml +6 -0
- data/.github/workflows/test.yml +1 -19
- data/.gitignore +1 -0
- data/Appraisals +10 -0
- data/CHANGELOG.md +8 -0
- data/gemfiles/rails_6.1.gemfile +24 -0
- data/gemfiles/rails_7.1.gemfile +24 -0
- data/lib/rimless/version.rb +1 -1
- metadata +4 -5
- data/.github/workflows/documentation.yml +0 -40
- data/log/development.log +0 -0
- data/log/make.log +0 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f3016ce4075656157da5e99aba6c95d6f81b83a1ec726c871a359a75bfef0b97
|
|
4
|
+
data.tar.gz: cbe5de35fbe5549b4353e9eb9bccf2aabbebe34edafa0ba7e83675b0edcd2f2c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 93ec6aff6cfd564e453c3732251af3cc7c6d70ce72683a70edfa6107c2afde5fef80e3795f20681a42f20b7e261ddcf54f0d29b39a2a77dde5cf52246df77556
|
|
7
|
+
data.tar.gz: 0f704397120638a099ddf186fc98613e6d33e4fb8ea4b0080a9bd615f17f61b0a111ee2e70523e5971fa41dbd59893224420e01bc11a7c6627766b5f6f392ec6
|
|
@@ -46,3 +46,9 @@ jobs:
|
|
|
46
46
|
|
|
47
47
|
- name: Push the release Git commit/tag and package to the registry
|
|
48
48
|
run: make release
|
|
49
|
+
|
|
50
|
+
- name: Build and upload application documentation
|
|
51
|
+
run: api-docs && coverage --docs-only
|
|
52
|
+
env:
|
|
53
|
+
WORKFLOW_DISPATCH_TOKEN: '${{ secrets.WORKFLOW_DISPATCH_TOKEN }}'
|
|
54
|
+
GITHUB_TAG: 'v${{ github.event.inputs.VERSION }}'
|
data/.github/workflows/test.yml
CHANGED
|
@@ -19,7 +19,7 @@ jobs:
|
|
|
19
19
|
fail-fast: false
|
|
20
20
|
matrix:
|
|
21
21
|
ruby: ['2.7']
|
|
22
|
-
rails: ['5.2']
|
|
22
|
+
rails: ['5.2', '6.1', '7.1']
|
|
23
23
|
env:
|
|
24
24
|
BUNDLE_GEMFILE: 'gemfiles/rails_${{ matrix.rails }}.gemfile'
|
|
25
25
|
steps:
|
|
@@ -45,21 +45,3 @@ jobs:
|
|
|
45
45
|
|
|
46
46
|
- name: Upload the code coverage report
|
|
47
47
|
run: coverage
|
|
48
|
-
|
|
49
|
-
trigger-docs:
|
|
50
|
-
name: Trigger the documentation upload
|
|
51
|
-
runs-on: ubuntu-22.04
|
|
52
|
-
timeout-minutes: 2
|
|
53
|
-
needs: test
|
|
54
|
-
if: github.ref == 'refs/heads/master'
|
|
55
|
-
steps:
|
|
56
|
-
- name: Prepare the virtual environment
|
|
57
|
-
uses: hausgold/actions/ci@master
|
|
58
|
-
with:
|
|
59
|
-
clone_token: '${{ secrets.CLONE_TOKEN }}'
|
|
60
|
-
settings_secret_key: '${{ secrets.SETTINGS_SECRET_KEY }}'
|
|
61
|
-
settings: '${{ github.repository }}'
|
|
62
|
-
target: ci/noop
|
|
63
|
-
|
|
64
|
-
- name: Trigger the documentation upload
|
|
65
|
-
run: workflow documentation
|
data/.gitignore
CHANGED
data/Appraisals
CHANGED
|
@@ -4,3 +4,13 @@ appraise 'rails-5.2' do
|
|
|
4
4
|
gem 'activesupport', '~> 5.2.0'
|
|
5
5
|
gem 'railties', '~> 5.2.0'
|
|
6
6
|
end
|
|
7
|
+
|
|
8
|
+
appraise 'rails-6.1' do
|
|
9
|
+
gem 'activesupport', '~> 6.1.0'
|
|
10
|
+
gem 'railties', '~> 6.1.0'
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
appraise 'rails-7.1' do
|
|
14
|
+
gem 'activesupport', '~> 7.1.0'
|
|
15
|
+
gem 'railties', '~> 7.1.0'
|
|
16
|
+
end
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
* TODO: Replace this bullet point with an actual description of a change.
|
|
4
4
|
|
|
5
|
+
### 1.7.1
|
|
6
|
+
|
|
7
|
+
* Added API docs building to continuous integration (#41)
|
|
8
|
+
|
|
9
|
+
### 1.7.0
|
|
10
|
+
|
|
11
|
+
* Added CI tests for Rails 6.1 and 7.1 (#39)
|
|
12
|
+
|
|
5
13
|
### 1.6.0
|
|
6
14
|
|
|
7
15
|
* Dropped support for Ruby <2.7 (#38)
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# This file was generated by Appraisal
|
|
2
|
+
|
|
3
|
+
source "https://rubygems.org"
|
|
4
|
+
|
|
5
|
+
gem "appraisal", "~> 2.4"
|
|
6
|
+
gem "bundler", "~> 2.3"
|
|
7
|
+
gem "countless", "~> 1.1"
|
|
8
|
+
gem "factory_bot", "~> 6.2", "< 6.4.5"
|
|
9
|
+
gem "guard-rspec", "~> 4.7"
|
|
10
|
+
gem "railties", "~> 6.1.0"
|
|
11
|
+
gem "rake", "~> 13.0"
|
|
12
|
+
gem "redcarpet", "~> 3.5"
|
|
13
|
+
gem "rspec", "~> 3.12"
|
|
14
|
+
gem "rubocop", "~> 1.28"
|
|
15
|
+
gem "rubocop-rails", "~> 2.14"
|
|
16
|
+
gem "rubocop-rspec", "~> 2.10"
|
|
17
|
+
gem "simplecov", ">= 0.22"
|
|
18
|
+
gem "timecop", ">= 0.9.6"
|
|
19
|
+
gem "vcr", "~> 6.0"
|
|
20
|
+
gem "yard", ">= 0.9.28"
|
|
21
|
+
gem "yard-activesupport-concern", ">= 0.0.1"
|
|
22
|
+
gem "activesupport", "~> 6.1.0"
|
|
23
|
+
|
|
24
|
+
gemspec path: "../"
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# This file was generated by Appraisal
|
|
2
|
+
|
|
3
|
+
source "https://rubygems.org"
|
|
4
|
+
|
|
5
|
+
gem "appraisal", "~> 2.4"
|
|
6
|
+
gem "bundler", "~> 2.3"
|
|
7
|
+
gem "countless", "~> 1.1"
|
|
8
|
+
gem "factory_bot", "~> 6.2", "< 6.4.5"
|
|
9
|
+
gem "guard-rspec", "~> 4.7"
|
|
10
|
+
gem "railties", "~> 7.1.0"
|
|
11
|
+
gem "rake", "~> 13.0"
|
|
12
|
+
gem "redcarpet", "~> 3.5"
|
|
13
|
+
gem "rspec", "~> 3.12"
|
|
14
|
+
gem "rubocop", "~> 1.28"
|
|
15
|
+
gem "rubocop-rails", "~> 2.14"
|
|
16
|
+
gem "rubocop-rspec", "~> 2.10"
|
|
17
|
+
gem "simplecov", ">= 0.22"
|
|
18
|
+
gem "timecop", ">= 0.9.6"
|
|
19
|
+
gem "vcr", "~> 6.0"
|
|
20
|
+
gem "yard", ">= 0.9.28"
|
|
21
|
+
gem "yard-activesupport-concern", ">= 0.0.1"
|
|
22
|
+
gem "activesupport", "~> 7.1.0"
|
|
23
|
+
|
|
24
|
+
gemspec path: "../"
|
data/lib/rimless/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rimless
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.7.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Hermann Mayer
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-08-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -164,7 +164,6 @@ extensions: []
|
|
|
164
164
|
extra_rdoc_files: []
|
|
165
165
|
files:
|
|
166
166
|
- ".editorconfig"
|
|
167
|
-
- ".github/workflows/documentation.yml"
|
|
168
167
|
- ".github/workflows/release.yml"
|
|
169
168
|
- ".github/workflows/test.yml"
|
|
170
169
|
- ".gitignore"
|
|
@@ -216,6 +215,8 @@ files:
|
|
|
216
215
|
- doc/kafka-playground/examples/rimless-produce
|
|
217
216
|
- docker-compose.yml
|
|
218
217
|
- gemfiles/rails_5.2.gemfile
|
|
218
|
+
- gemfiles/rails_6.1.gemfile
|
|
219
|
+
- gemfiles/rails_7.1.gemfile
|
|
219
220
|
- lib/rimless.rb
|
|
220
221
|
- lib/rimless/avro_helpers.rb
|
|
221
222
|
- lib/rimless/avro_utils.rb
|
|
@@ -241,8 +242,6 @@ files:
|
|
|
241
242
|
- lib/rimless/tasks/templates/custom_consumer_spec.rb
|
|
242
243
|
- lib/rimless/tasks/templates/karafka.rb
|
|
243
244
|
- lib/rimless/version.rb
|
|
244
|
-
- log/development.log
|
|
245
|
-
- log/make.log
|
|
246
245
|
- rimless.gemspec
|
|
247
246
|
homepage:
|
|
248
247
|
licenses:
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
name: Build Documentation
|
|
2
|
-
on:
|
|
3
|
-
repository_dispatch:
|
|
4
|
-
types: [documentation]
|
|
5
|
-
|
|
6
|
-
concurrency:
|
|
7
|
-
group: 'docs'
|
|
8
|
-
|
|
9
|
-
jobs:
|
|
10
|
-
docs:
|
|
11
|
-
name: Build gem documentation
|
|
12
|
-
runs-on: ubuntu-22.04
|
|
13
|
-
timeout-minutes: 5
|
|
14
|
-
steps:
|
|
15
|
-
- uses: actions/checkout@v4
|
|
16
|
-
|
|
17
|
-
- name: Install the correct Ruby version
|
|
18
|
-
uses: ruby/setup-ruby@v1
|
|
19
|
-
with:
|
|
20
|
-
ruby-version: 2.7
|
|
21
|
-
bundler-cache: true
|
|
22
|
-
rubygems: '3.4.22'
|
|
23
|
-
|
|
24
|
-
- name: Prepare the virtual environment
|
|
25
|
-
uses: hausgold/actions/ci@master
|
|
26
|
-
with:
|
|
27
|
-
clone_token: '${{ secrets.CLONE_TOKEN }}'
|
|
28
|
-
settings_secret_key: '${{ secrets.SETTINGS_SECRET_KEY }}'
|
|
29
|
-
settings: '${{ github.repository }}'
|
|
30
|
-
target: ci/gem-test
|
|
31
|
-
|
|
32
|
-
- name: Build gem documentation
|
|
33
|
-
run: make docs
|
|
34
|
-
|
|
35
|
-
- name: Upload the code coverage report
|
|
36
|
-
run: coverage
|
|
37
|
-
|
|
38
|
-
- name: Add this job to the commit status
|
|
39
|
-
run: commit-status '${{ job.status }}'
|
|
40
|
-
if: always()
|
data/log/development.log
DELETED
|
File without changes
|
data/log/make.log
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
GNU Make 4.3
|
|
2
|
-
Built for x86_64-pc-linux-gnu
|
|
3
|
-
Copyright (C) 1988-2020 Free Software Foundation, Inc.
|
|
4
|
-
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
|
|
5
|
-
This is free software: you are free to change and redistribute it.
|
|
6
|
-
There is NO WARRANTY, to the extent permitted by law.
|