journaled 6.2.8 → 6.2.9

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: '087e1092ce9f8937951563934335c344f2fd3be2e1b2c00638f7f9858d43aa2f'
4
- data.tar.gz: 706e1931d2411dfb20e5558b6a1bd8d873e69fb4af31238387d09ea9aacd7988
3
+ metadata.gz: 5002dd1919359cc60cb0c65f79d447369e8b3c0ee877fc8595de9a1f96401fd1
4
+ data.tar.gz: 1f89c0f22aef4e6592bdae5f441f9bd58384770ac88fc293763476b1ddba5c5b
5
5
  SHA512:
6
- metadata.gz: 5bb28caee44bb06d03d37aad85b8653947947017fc10c247ce23bff032226ef852810fbb4357bef07df8cffa885e3260086ec12900da2284e7e5939eff0ab887
7
- data.tar.gz: 571e2176d4bb3c8e8690e7fd6a46af587e85c0790ff59e3efe2f8034c040d9fce7acb2a0f6e9153d5d49a7b372cecafebac0c5bbe1252f0510a2ecd4ba919fd5
6
+ metadata.gz: 1c50ce659c7a04e06c33b42b58f3b3b096e03ad4869ce6537597a7031044e7d1b9d2292062fbcf2823aa2c16fd6b6a2ae2bcf0968364dee2be8ca6e0f45127e3
7
+ data.tar.gz: ac0447714457d670a3ee9f505e4aecd48b23065cb5a5bceeb8500b0c5739bc9fad78d9a96005a95bdb4347e6abe17f16bed4c9716b85f9bdcbd10bc2aff25970
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Journaled
4
- VERSION = "6.2.8"
4
+ VERSION = "6.2.9"
5
5
  end
data/rbi/journaled.rbi ADDED
@@ -0,0 +1,13 @@
1
+ # typed: true
2
+
3
+ # Journaled mixes AuditLog into every Active Record class at boot via
4
+ # `ActiveSupport.on_load(:active_record) { include Journaled::AuditLog }`
5
+ # (lib/journaled/audit_log.rb). Runtime reflection tools attribute that mixin
6
+ # inconsistently depending on load order — under some hosts it lands in the
7
+ # activerecord gem's RBI, under others it is lost entirely — so declare it
8
+ # here. Tapioca merges RBI files a gem exports under rbi/ into the RBI it
9
+ # generates for the gem, which makes `has_audit_log`, `skip_audit_log`, and
10
+ # the blocked-method guards resolve statically in every consuming app.
11
+ class ActiveRecord::Base
12
+ include Journaled::AuditLog
13
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: journaled
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.2.8
4
+ version: 6.2.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jake Lipson
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2026-06-02 00:00:00.000000000 Z
14
+ date: 2026-07-09 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: activejob
@@ -286,6 +286,7 @@ files:
286
286
  - lib/journaled/transaction_ext.rb
287
287
  - lib/journaled/version.rb
288
288
  - lib/tasks/journaled_worker.rake
289
+ - rbi/journaled.rbi
289
290
  homepage: http://github.com/Betterment/journaled
290
291
  licenses:
291
292
  - MIT