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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2a76ffabfe4b54636335deff5bc216c0de26d6f0a6a7e42a5b54c6d3e1c065a7
|
4
|
+
data.tar.gz: 72bd49ecd3d237d6aa083d54ec04f2d473a1c427e1c971b0ae77e65da94a4044
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
5
|
-
def
|
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,
|
data/pg_rails/lib/version.rb
CHANGED
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.
|
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-
|
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
|