pg_rails 7.6.19 → 7.6.20

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: e3c2a1c474c0e93c88c3403a1c029908571afa71299d67bb61333f1dc41df4d6
4
- data.tar.gz: 5bc01cc28aac8510bdac8d9e2b8b50f68c60d047d70dc0e47c693211dc4462a7
3
+ metadata.gz: 2a76ffabfe4b54636335deff5bc216c0de26d6f0a6a7e42a5b54c6d3e1c065a7
4
+ data.tar.gz: 72bd49ecd3d237d6aa083d54ec04f2d473a1c427e1c971b0ae77e65da94a4044
5
5
  SHA512:
6
- metadata.gz: af345cd05556af2813a3c492f4d8d76565f87eb34f7607a197ce9509ac35f4fbaea46029a9053f0768add6185d9940246360cf6c74705c0d88938c28e9b0fcce
7
- data.tar.gz: f357484dbc3a12c00332574f8b7389020193a0a456b2ec0b1af8b1cd340c3a0c2855eea40ba8df125720283ddea2f741db8a45c0b8c3588348b5481342b8c6a9
6
+ metadata.gz: 3199b9c236fc31a94710715e1c64f6a40d90c0c3b391a3e7c73dc79723bdab3ecf4a55adba024002efbf5a95d3990aa0569c6ef08f4acfc55bc88a9f2bfc862f
7
+ data.tar.gz: f4037520fd19acdf4e0c2b1564519431d35c5c6dd65dca12ee7b78bb97b83dd2b787077295e951cc28f4767dd3f71bede2b5fa52716b919c94256df9a0616245
@@ -1,8 +1,8 @@
1
1
  # :nocov:
2
2
  module PgEngine
3
3
  module Utils
4
- class CheckInvalidRecords
5
- def run
4
+ class ResourceReports
5
+ def check_invalid_records
6
6
  invalids = []
7
7
  classes.each do |klass|
8
8
  klass.find_each do |record|
@@ -19,6 +19,26 @@ module PgEngine
19
19
  end
20
20
  end
21
21
 
22
+ def report(klass)
23
+ if klass.respond_to?(:discarded)
24
+ <<~STRING
25
+ #{klass}.unscoped.count: #{klass.unscoped.count}
26
+ #{klass}.unscoped.kept.count: #{klass.unscoped.kept.count}
27
+ #{klass}.unscoped.unkept.count: #{klass.unscoped.unkept.count}
28
+ #{klass}.unscoped.discarded.count: #{klass.unscoped.discarded.count}
29
+ #{klass}.unscoped.undiscarded.count: #{klass.unscoped.undiscarded.count}
30
+ STRING
31
+ else
32
+ <<~STRING
33
+ #{klass}.unscoped.count: #{klass.unscoped.count}
34
+ STRING
35
+ end
36
+ end
37
+
38
+ def report_all
39
+ classes.map { |klass| report(klass).to_s }.join("\n")
40
+ end
41
+
22
42
  def classes
23
43
  all = ActiveRecord::Base.descendants.select { |m| m.table_name.present? }
24
44
  all - ignored_classes
@@ -28,7 +48,6 @@ module PgEngine
28
48
  [
29
49
  ActionText::Record,
30
50
  ActionMailbox::Record,
31
- ActiveAdmin::Comment,
32
51
  ActiveStorage::Record,
33
52
  PgEngine::BaseRecord,
34
53
  Audited::Audit,
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PgRails
4
- VERSION = '7.6.19'
4
+ VERSION = '7.6.20'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pg_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.6.19
4
+ version: 7.6.20
5
5
  platform: ruby
6
6
  authors:
7
7
  - Martín Rosso
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-10-18 00:00:00.000000000 Z
11
+ date: 2024-10-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -847,9 +847,9 @@ files:
847
847
  - pg_engine/lib/pg_engine/mailgun/log_sync.rb
848
848
  - pg_engine/lib/pg_engine/navigator.rb
849
849
  - pg_engine/lib/pg_engine/route_helpers.rb
850
- - pg_engine/lib/pg_engine/utils/check_invalid_records.rb
851
850
  - pg_engine/lib/pg_engine/utils/pdf_preview_generator.rb
852
851
  - pg_engine/lib/pg_engine/utils/pg_logger.rb
852
+ - pg_engine/lib/pg_engine/utils/resource_reports.rb
853
853
  - pg_engine/lib/tasks/auto_anotar_modelos.rake
854
854
  - pg_engine/spec/components/alert_component_spec.rb
855
855
  - pg_engine/spec/components/internal_error_component_spec.rb