sbmt-outbox 6.13.0 → 6.13.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/app/models/sbmt/outbox/base_item.rb +3 -4
- data/lib/sbmt/outbox/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bcee17041bce58afa1aae1d66f2eaa9fa6d5caf1fd7a120702784e5edf5a397d
|
|
4
|
+
data.tar.gz: 0decf4919d3b431b25aab5e05a80c18cf7abb4c30cf74e0ac13f3f96c794b294
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c6dc93a04ec8754f9c2a268a954d3cef3418992fa44d27a0c141c68243bbeb411340080154c51dbff2a633554b576546b6d63bb2f66b9ec44eb8dc8b1b910d8a
|
|
7
|
+
data.tar.gz: 1b12263dd0ac7b43b01290640ee7fcb6c7dd1b44c8188a68bb77b30ffe5e03dae7f465a133beb09851e2504aceb620143a1e36bd6eb482847d79e134d3ad1b22
|
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
+
# For compatibility with rails < 7
|
|
4
|
+
# Remove when drop support of Rails < 7
|
|
3
5
|
require_relative "../../../../lib/sbmt/outbox/enum_refinement"
|
|
6
|
+
using Sbmt::Outbox::EnumRefinement
|
|
4
7
|
|
|
5
8
|
module Sbmt
|
|
6
9
|
module Outbox
|
|
7
10
|
class BaseItem < Outbox.active_record_base_class
|
|
8
|
-
# For compatibility with rails < 7
|
|
9
|
-
# Remove when drop support of Rails < 7
|
|
10
|
-
using EnumRefinement
|
|
11
|
-
|
|
12
11
|
self.abstract_class = true
|
|
13
12
|
|
|
14
13
|
class << self
|
data/lib/sbmt/outbox/version.rb
CHANGED