alarmable 1.6.1 → 2.0.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/.github/workflows/release.yml +3 -3
- data/.github/workflows/test.yml +3 -3
- data/.rubocop.yml +1 -1
- data/Appraisals +12 -6
- data/CHANGELOG.md +6 -0
- data/Dockerfile +2 -2
- data/Gemfile +3 -3
- data/Makefile +1 -1
- data/alarmable.gemspec +4 -4
- data/docker-compose.yml +1 -2
- data/gemfiles/rails_7.1.gemfile +3 -3
- data/gemfiles/rails_7.2.gemfile +23 -0
- data/gemfiles/rails_8.0.gemfile +23 -0
- data/lib/alarmable/version.rb +1 -1
- metadata +12 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 410b45f7e4abd1faea1d95f0e2449512de445627fc3488d0cbe69167fa8a48d8
|
4
|
+
data.tar.gz: 5e254b9e0e3985423e9dcf2e40f3ba454a9afbb363276a8c796122ce1c488eaa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8cfaf52562fedd1817f3d82ff2671b10646fa7a9aedbb71fe96a6caf82746c116302a0091df7d34a51eebe31aaf258cd8bddcc00266257d78f8ee219cb0342d8
|
7
|
+
data.tar.gz: 33982315842bc5d00eefdc5b1d283a764e2a72ee606d3477ceebb8e1f58cbf4278098ae1ecae07443bd7662707977f1b54463cacb03a2109f08112c95f2ff5de
|
@@ -20,12 +20,12 @@ jobs:
|
|
20
20
|
steps:
|
21
21
|
- uses: actions/checkout@v4
|
22
22
|
|
23
|
-
- name: Install Ruby 2
|
23
|
+
- name: Install Ruby 3.2
|
24
24
|
uses: ruby/setup-ruby@v1
|
25
25
|
with:
|
26
|
-
ruby-version: 2
|
26
|
+
ruby-version: 3.2
|
27
27
|
bundler-cache: true
|
28
|
-
rubygems: '3.
|
28
|
+
rubygems: '3.6.9'
|
29
29
|
|
30
30
|
- name: Prepare the virtual environment
|
31
31
|
uses: hausgold/actions/ci@master
|
data/.github/workflows/test.yml
CHANGED
@@ -18,8 +18,8 @@ jobs:
|
|
18
18
|
strategy:
|
19
19
|
fail-fast: false
|
20
20
|
matrix:
|
21
|
-
ruby: ['
|
22
|
-
rails: ['
|
21
|
+
ruby: ['3.2', '3.3', '3.4']
|
22
|
+
rails: ['7.1', '7.2', '8.0']
|
23
23
|
env:
|
24
24
|
BUNDLE_GEMFILE: 'gemfiles/rails_${{ matrix.rails }}.gemfile'
|
25
25
|
steps:
|
@@ -30,7 +30,7 @@ jobs:
|
|
30
30
|
with:
|
31
31
|
ruby-version: ${{ matrix.ruby }}
|
32
32
|
bundler-cache: true
|
33
|
-
rubygems: '3.
|
33
|
+
rubygems: '3.6.9'
|
34
34
|
|
35
35
|
- name: Prepare the virtual environment
|
36
36
|
uses: hausgold/actions/ci@master
|
data/.rubocop.yml
CHANGED
data/Appraisals
CHANGED
@@ -1,13 +1,19 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
appraise 'rails-6.1' do
|
4
|
-
gem 'activejob', '~> 6.1.0'
|
5
|
-
gem 'activerecord', '~> 6.1.0'
|
6
|
-
gem 'activesupport', '~> 6.1.0'
|
7
|
-
end
|
8
|
-
|
9
3
|
appraise 'rails-7.1' do
|
10
4
|
gem 'activejob', '~> 7.1.0'
|
11
5
|
gem 'activerecord', '~> 7.1.0'
|
12
6
|
gem 'activesupport', '~> 7.1.0'
|
13
7
|
end
|
8
|
+
|
9
|
+
appraise 'rails-7.2' do
|
10
|
+
gem 'activejob', '~> 7.2.0'
|
11
|
+
gem 'activerecord', '~> 7.2.0'
|
12
|
+
gem 'activesupport', '~> 7.2.0'
|
13
|
+
end
|
14
|
+
|
15
|
+
appraise 'rails-8.0' do
|
16
|
+
gem 'activejob', '~> 8.0.0'
|
17
|
+
gem 'activerecord', '~> 8.0.0'
|
18
|
+
gem 'activesupport', '~> 8.0.0'
|
19
|
+
end
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,12 @@
|
|
2
2
|
|
3
3
|
* TODO: Replace this bullet point with an actual description of a change.
|
4
4
|
|
5
|
+
### 2.0.0 (28 June 2025)
|
6
|
+
|
7
|
+
* Upgraded PostgreSQL to 17.5. ([#20](https://github.com/hausgold/alarmable/pull/20))
|
8
|
+
* Corrected some RuboCop glitches ([#21](https://github.com/hausgold/alarmable/pull/21))
|
9
|
+
* Drop Ruby 2 and end of life Rails (<7.1) ([#22](https://github.com/hausgold/alarmable/pull/22))
|
10
|
+
|
5
11
|
### 1.6.1 (21 May 2025)
|
6
12
|
|
7
13
|
* Corrected some RuboCop glitches ([#17](https://github.com/hausgold/alarmable/pull/17))
|
data/Dockerfile
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
FROM hausgold/ruby:2
|
1
|
+
FROM hausgold/ruby:3.2
|
2
2
|
LABEL org.opencontainers.image.authors="containers@hausgold.de"
|
3
3
|
|
4
4
|
# Update system gem
|
@@ -11,7 +11,7 @@ RUN apt-get update -yqqq && \
|
|
11
11
|
ca-certificates \
|
12
12
|
bash-completion inotify-tools && \
|
13
13
|
echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen && /usr/sbin/locale-gen && \
|
14
|
-
gem install bundler -v '~> 2.
|
14
|
+
gem install bundler -v '~> 2.6.9' --no-document --no-prerelease
|
15
15
|
|
16
16
|
# Add new web user
|
17
17
|
RUN mkdir /app && \
|
data/Gemfile
CHANGED
@@ -9,11 +9,11 @@ gemspec
|
|
9
9
|
|
10
10
|
# Development dependencies
|
11
11
|
gem 'appraisal', '~> 2.4'
|
12
|
-
gem 'bundler', '~> 2.
|
13
|
-
gem 'countless', '~>
|
12
|
+
gem 'bundler', '~> 2.6'
|
13
|
+
gem 'countless', '~> 2.0'
|
14
14
|
gem 'guard-rspec', '~> 4.7'
|
15
15
|
gem 'pg', '~> 1.4'
|
16
|
-
gem 'railties', '>=
|
16
|
+
gem 'railties', '>= 7.1'
|
17
17
|
gem 'rake', '~> 13.0'
|
18
18
|
gem 'rspec', '~> 3.12'
|
19
19
|
gem 'rubocop'
|
data/Makefile
CHANGED
@@ -120,7 +120,7 @@ test-style: \
|
|
120
120
|
test-style-ruby:
|
121
121
|
# Run the static code analyzer (rubocop)
|
122
122
|
@$(call run-shell,$(BUNDLE) exec $(RUBOCOP) -a \
|
123
|
-
|| ($(TEST) $$($(RUBY_VERSION)) != '2
|
123
|
+
|| ($(TEST) $$($(RUBY_VERSION)) != '3.2' && true))
|
124
124
|
|
125
125
|
clean:
|
126
126
|
# Clean the dependencies
|
data/alarmable.gemspec
CHANGED
@@ -34,12 +34,12 @@ Gem::Specification.new do |spec|
|
|
34
34
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
35
35
|
spec.require_paths = ['lib']
|
36
36
|
|
37
|
-
spec.required_ruby_version = '>= 2
|
37
|
+
spec.required_ruby_version = '>= 3.2'
|
38
38
|
|
39
|
-
spec.add_dependency 'activejob', '>=
|
39
|
+
spec.add_dependency 'activejob', '>= 7.1'
|
40
40
|
spec.add_dependency 'activejob-cancel', '~> 0.3'
|
41
|
-
spec.add_dependency 'activerecord', '>=
|
42
|
-
spec.add_dependency 'activesupport', '>=
|
41
|
+
spec.add_dependency 'activerecord', '>= 7.1'
|
42
|
+
spec.add_dependency 'activesupport', '>= 7.1'
|
43
43
|
spec.add_dependency 'base64', '~> 0.2.0'
|
44
44
|
spec.add_dependency 'bigdecimal', '~> 3.1'
|
45
45
|
spec.add_dependency 'hashdiff', '~> 1.0'
|
data/docker-compose.yml
CHANGED
data/gemfiles/rails_7.1.gemfile
CHANGED
@@ -3,11 +3,11 @@
|
|
3
3
|
source "https://rubygems.org"
|
4
4
|
|
5
5
|
gem "appraisal", "~> 2.4"
|
6
|
-
gem "bundler", "~> 2.
|
7
|
-
gem "countless", "~>
|
6
|
+
gem "bundler", "~> 2.6"
|
7
|
+
gem "countless", "~> 2.0"
|
8
8
|
gem "guard-rspec", "~> 4.7"
|
9
9
|
gem "pg", "~> 1.4"
|
10
|
-
gem "railties", ">=
|
10
|
+
gem "railties", ">= 7.1"
|
11
11
|
gem "rake", "~> 13.0"
|
12
12
|
gem "rspec", "~> 3.12"
|
13
13
|
gem "rubocop"
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# This file was generated by Appraisal
|
2
|
+
|
3
|
+
source "https://rubygems.org"
|
4
|
+
|
5
|
+
gem "appraisal", "~> 2.4"
|
6
|
+
gem "bundler", "~> 2.6"
|
7
|
+
gem "countless", "~> 2.0"
|
8
|
+
gem "guard-rspec", "~> 4.7"
|
9
|
+
gem "pg", "~> 1.4"
|
10
|
+
gem "railties", ">= 7.1"
|
11
|
+
gem "rake", "~> 13.0"
|
12
|
+
gem "rspec", "~> 3.12"
|
13
|
+
gem "rubocop"
|
14
|
+
gem "rubocop-rails"
|
15
|
+
gem "rubocop-rspec"
|
16
|
+
gem "simplecov", ">= 0.22"
|
17
|
+
gem "yard", ">= 0.9.28"
|
18
|
+
gem "yard-activesupport-concern", ">= 0.0.1"
|
19
|
+
gem "activejob", "~> 7.2.0"
|
20
|
+
gem "activerecord", "~> 7.2.0"
|
21
|
+
gem "activesupport", "~> 7.2.0"
|
22
|
+
|
23
|
+
gemspec path: "../"
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# This file was generated by Appraisal
|
2
|
+
|
3
|
+
source "https://rubygems.org"
|
4
|
+
|
5
|
+
gem "appraisal", "~> 2.4"
|
6
|
+
gem "bundler", "~> 2.6"
|
7
|
+
gem "countless", "~> 2.0"
|
8
|
+
gem "guard-rspec", "~> 4.7"
|
9
|
+
gem "pg", "~> 1.4"
|
10
|
+
gem "railties", ">= 7.1"
|
11
|
+
gem "rake", "~> 13.0"
|
12
|
+
gem "rspec", "~> 3.12"
|
13
|
+
gem "rubocop"
|
14
|
+
gem "rubocop-rails"
|
15
|
+
gem "rubocop-rspec"
|
16
|
+
gem "simplecov", ">= 0.22"
|
17
|
+
gem "yard", ">= 0.9.28"
|
18
|
+
gem "yard-activesupport-concern", ">= 0.0.1"
|
19
|
+
gem "activejob", "~> 8.0.0"
|
20
|
+
gem "activerecord", "~> 8.0.0"
|
21
|
+
gem "activesupport", "~> 8.0.0"
|
22
|
+
|
23
|
+
gemspec path: "../"
|
data/lib/alarmable/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: alarmable
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hermann Mayer
|
8
|
-
autorequire:
|
9
8
|
bindir: exe
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: activejob
|
@@ -16,14 +15,14 @@ dependencies:
|
|
16
15
|
requirements:
|
17
16
|
- - ">="
|
18
17
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
18
|
+
version: '7.1'
|
20
19
|
type: :runtime
|
21
20
|
prerelease: false
|
22
21
|
version_requirements: !ruby/object:Gem::Requirement
|
23
22
|
requirements:
|
24
23
|
- - ">="
|
25
24
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
25
|
+
version: '7.1'
|
27
26
|
- !ruby/object:Gem::Dependency
|
28
27
|
name: activejob-cancel
|
29
28
|
requirement: !ruby/object:Gem::Requirement
|
@@ -44,28 +43,28 @@ dependencies:
|
|
44
43
|
requirements:
|
45
44
|
- - ">="
|
46
45
|
- !ruby/object:Gem::Version
|
47
|
-
version: '
|
46
|
+
version: '7.1'
|
48
47
|
type: :runtime
|
49
48
|
prerelease: false
|
50
49
|
version_requirements: !ruby/object:Gem::Requirement
|
51
50
|
requirements:
|
52
51
|
- - ">="
|
53
52
|
- !ruby/object:Gem::Version
|
54
|
-
version: '
|
53
|
+
version: '7.1'
|
55
54
|
- !ruby/object:Gem::Dependency
|
56
55
|
name: activesupport
|
57
56
|
requirement: !ruby/object:Gem::Requirement
|
58
57
|
requirements:
|
59
58
|
- - ">="
|
60
59
|
- !ruby/object:Gem::Version
|
61
|
-
version: '
|
60
|
+
version: '7.1'
|
62
61
|
type: :runtime
|
63
62
|
prerelease: false
|
64
63
|
version_requirements: !ruby/object:Gem::Requirement
|
65
64
|
requirements:
|
66
65
|
- - ">="
|
67
66
|
- !ruby/object:Gem::Version
|
68
|
-
version: '
|
67
|
+
version: '7.1'
|
69
68
|
- !ruby/object:Gem::Dependency
|
70
69
|
name: base64
|
71
70
|
requirement: !ruby/object:Gem::Requirement
|
@@ -173,9 +172,10 @@ files:
|
|
173
172
|
- docker-compose.yml
|
174
173
|
- gemfiles/rails_6.1.gemfile
|
175
174
|
- gemfiles/rails_7.1.gemfile
|
175
|
+
- gemfiles/rails_7.2.gemfile
|
176
|
+
- gemfiles/rails_8.0.gemfile
|
176
177
|
- lib/alarmable.rb
|
177
178
|
- lib/alarmable/version.rb
|
178
|
-
homepage:
|
179
179
|
licenses:
|
180
180
|
- MIT
|
181
181
|
metadata:
|
@@ -184,7 +184,6 @@ metadata:
|
|
184
184
|
changelog_uri: https://github.com/hausgold/alarmable/blob/master/CHANGELOG.md
|
185
185
|
bug_tracker_uri: https://github.com/hausgold/alarmable/issues
|
186
186
|
documentation_uri: https://www.rubydoc.info/gems/alarmable
|
187
|
-
post_install_message:
|
188
187
|
rdoc_options: []
|
189
188
|
require_paths:
|
190
189
|
- lib
|
@@ -192,15 +191,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
192
191
|
requirements:
|
193
192
|
- - ">="
|
194
193
|
- !ruby/object:Gem::Version
|
195
|
-
version: '2
|
194
|
+
version: '3.2'
|
196
195
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
197
196
|
requirements:
|
198
197
|
- - ">="
|
199
198
|
- !ruby/object:Gem::Version
|
200
199
|
version: '0'
|
201
200
|
requirements: []
|
202
|
-
rubygems_version: 3.
|
203
|
-
signing_key:
|
201
|
+
rubygems_version: 3.6.9
|
204
202
|
specification_version: 4
|
205
203
|
summary: A reusable alarm extension to Active Record models
|
206
204
|
test_files: []
|