alarmable 2.13.0 → 2.14.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2a91376f599b996c0afe3b48280f3ce822757c9715426a804e58af82294cb3e0
4
- data.tar.gz: e9f1d11a9700fbc5dd186d72c9ac7344a0ff8177d14f89b163e630e141847bb7
3
+ metadata.gz: ed8db34cc3e5b97304aae1eb4e43b24506ed3cd856576d22a29f8b27646ccb31
4
+ data.tar.gz: 4e6be6792c9249b4b2e6c821547755fe0a52c3eaecb3db9157a6bcf0a9424c83
5
5
  SHA512:
6
- metadata.gz: 9aa27b1e19307f83ceef25121cf9be2a1f1c92b11b2eaa257dc7f085079b6265361859d82142df10e8634b5c1abda42cfd68c22aeec41b3f4c7782a7ca8b207b
7
- data.tar.gz: 8b073cc26ee38de752716c39e1ad0bd61345d7376401a4f485153894f4d929695ad889fa7f0a6005e688a96bb382d2915c26b15562a2cf7a34ce7d3a98243dd6
6
+ metadata.gz: c0f4c42d65907056ae1792a253af05038d3024dd3586c39bb8c4bf0e8e7b32041aad111c8ca17defc7532161faf3e98e7539d332f4eac94042957f69a6e0e1ef
7
+ data.tar.gz: 647aa9f689735fa6fc6303f699582446eb9845e174d5da35881fe733137b5cc142b803959140aac0f5b419310455471c0d3a21b1d158175f61eae19d8ab63331
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  * TODO: Replace this bullet point with an actual description of a change.
4
4
 
5
+ ### 2.14.0 (27 August 2026)
6
+
7
+ * Corrected some RuboCop glitches ([#42](https://github.com/hausgold/alarmable/pull/42))
8
+
5
9
  ### 2.13.0 (20 May 2026)
6
10
 
7
11
  * Corrected some RuboCop glitches ([#41](https://github.com/hausgold/alarmable/pull/41))
@@ -3,7 +3,7 @@
3
3
  # The gem version details.
4
4
  module Alarmable
5
5
  # The version of the +alarmable+ gem
6
- VERSION = '2.13.0'
6
+ VERSION = '2.14.0'
7
7
 
8
8
  class << self
9
9
  # Returns the version of gem as a string.
data/lib/alarmable.rb CHANGED
@@ -103,7 +103,7 @@ module Alarmable
103
103
  # of the specified class. Also validate the +alarm_base_date_property+
104
104
  # setting.
105
105
  #
106
- # rubocop:disable Style/GuardClause -- because its fine like this
106
+ # rubocop:disable-next Style/GuardClause -- because its fine like this
107
107
  def validate_alarm_settings
108
108
  raise 'Alarmable +alarm_job+ is not configured' if alarm_job.nil?
109
109
  unless alarm_job.is_a? Class
@@ -116,7 +116,6 @@ module Alarmable
116
116
  raise 'Alarmable +alarm_base_date_property+ is not usable'
117
117
  end
118
118
  end
119
- # rubocop:enable Style/GuardClause
120
119
 
121
120
  # Generate a unique and recalculatable identifier for a given alarm
122
121
  # object. We build a hash of the primary keys (before_minutes and
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: alarmable
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.13.0
4
+ version: 2.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer
@@ -167,7 +167,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
167
167
  - !ruby/object:Gem::Version
168
168
  version: '0'
169
169
  requirements: []
170
- rubygems_version: 4.0.11
170
+ rubygems_version: 4.0.16
171
171
  specification_version: 4
172
172
  summary: A reusable alarm extension to Active Record models
173
173
  test_files: []