pg_objects 1.4.7 → 1.4.8
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/.evilution.yml +74 -0
- data/Gemfile.lock +43 -42
- data/lib/pg_objects/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 600119793dcaf119077239c7b5703c5dc5f80e596efed30e790d158253cd4816
|
|
4
|
+
data.tar.gz: 9cd2b19b7aaa2b977e87fc805cf9bd536ad6b7f1e8d2a11518df02ffcab8c33f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 718fde409d5f772221fc25f6aeb10c8cd5bb73dfb43122de3751654b2f4624045cff146df6b8afe4a0a05d3074e22f5e04b85aea7b08bb64c06a2d01f9420806
|
|
7
|
+
data.tar.gz: b19c8055c4bb64b4ededd54e606eef8aa665a3fa484bbabca61dab824c1fe5bce7959898e6d039e7cd17db06bb585ab2a2faf957a272c0cf668fc8b8e0b32cd0
|
data/.evilution.yml
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
# Evilution configuration
|
|
2
|
+
# See: https://github.com/marinazzio/evilution
|
|
3
|
+
|
|
4
|
+
# Per-mutation timeout in seconds (default: 30)
|
|
5
|
+
# timeout: 30
|
|
6
|
+
|
|
7
|
+
# Output format: text or json (default: text)
|
|
8
|
+
# format: text
|
|
9
|
+
|
|
10
|
+
# Minimum mutation score to pass (0.0 to 1.0, default: 0.0)
|
|
11
|
+
# min_score: 0.0
|
|
12
|
+
|
|
13
|
+
# Test integration: rspec, minitest (default: rspec)
|
|
14
|
+
# integration: rspec
|
|
15
|
+
|
|
16
|
+
# Number of parallel workers (default: 1)
|
|
17
|
+
# jobs: 1
|
|
18
|
+
|
|
19
|
+
# Stop after N surviving mutants (default: disabled)
|
|
20
|
+
# fail_fast: 1
|
|
21
|
+
|
|
22
|
+
# Generate concrete test code in suggestions, matching integration (default: false)
|
|
23
|
+
# suggest_tests: false
|
|
24
|
+
|
|
25
|
+
# Skip all string literal mutations inside heredocs (default: false).
|
|
26
|
+
# Useful for Rails apps where heredoc content (SQL, templates, fixtures)
|
|
27
|
+
# rarely has meaningful test coverage and produces noisy survivors.
|
|
28
|
+
# skip_heredoc_literals: true
|
|
29
|
+
|
|
30
|
+
# Opt into the RelatedSpecHeuristic, which appends request/integration/
|
|
31
|
+
# feature/system specs for mutations that touch `.includes(...)` calls
|
|
32
|
+
# (default: false). Off by default because the fan-out can be heavy and
|
|
33
|
+
# push runs over the per-mutation timeout. Enable if you need coverage
|
|
34
|
+
# of N+1 regressions that only surface in higher-level specs.
|
|
35
|
+
# related_specs_heuristic: true
|
|
36
|
+
|
|
37
|
+
# When no matching spec resolves for a mutation's source file, the
|
|
38
|
+
# default is to skip that mutation and mark it :unresolved in the
|
|
39
|
+
# report (a coverage gap signal). Set to true to fall back to running
|
|
40
|
+
# the entire test suite for such mutations instead (slow, high memory).
|
|
41
|
+
# fallback_to_full_suite: false
|
|
42
|
+
|
|
43
|
+
# Preload file required in the parent process before forking workers.
|
|
44
|
+
# For Rails projects, spec/rails_helper.rb or test/test_helper.rb is
|
|
45
|
+
# auto-detected when isolation resolves to :fork. Set to false to disable.
|
|
46
|
+
preload: spec/spec_helper.rb
|
|
47
|
+
|
|
48
|
+
# Hooks: Ruby files returning a Proc, keyed by lifecycle event
|
|
49
|
+
# hooks:
|
|
50
|
+
# worker_process_start: config/evilution_hooks/worker_start.rb
|
|
51
|
+
# mutation_insert_pre: config/evilution_hooks/mutation_pre.rb
|
|
52
|
+
|
|
53
|
+
# Per-mutation example targeting (default: true). When enabled, Evilution
|
|
54
|
+
# parses resolved spec files and restricts each mutation run to examples
|
|
55
|
+
# whose bodies reference the mutated method/class token. Set to false
|
|
56
|
+
# to run every example in the resolved spec files. You can also disable
|
|
57
|
+
# without editing the file by exporting EV_DISABLE_EXAMPLE_TARGETING=1.
|
|
58
|
+
# example_targeting: true
|
|
59
|
+
|
|
60
|
+
# Behavior when targeting finds no matching example (default: full_file).
|
|
61
|
+
# full_file - run every example in the resolved spec files
|
|
62
|
+
# unresolved - mark the mutation :unresolved and skip
|
|
63
|
+
# example_targeting_fallback: full_file
|
|
64
|
+
|
|
65
|
+
# LRU cache bounds for the spec AST parser that powers example targeting.
|
|
66
|
+
# example_targeting_cache:
|
|
67
|
+
# max_files: 50
|
|
68
|
+
# max_blocks: 10000
|
|
69
|
+
|
|
70
|
+
# AST patterns to skip during mutation generation (default: [])
|
|
71
|
+
# See docs/ast_pattern_syntax.md for pattern syntax
|
|
72
|
+
# ignore_patterns:
|
|
73
|
+
# - "call{name=info, receiver=call{name=logger}}"
|
|
74
|
+
# - "call{name=debug|warn}"
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
pg_objects (1.4.
|
|
4
|
+
pg_objects (1.4.8)
|
|
5
5
|
activerecord (>= 6.1.7.0, < 9)
|
|
6
6
|
dry-auto_inject (~> 1)
|
|
7
7
|
dry-configurable (~> 1)
|
|
@@ -15,9 +15,9 @@ PATH
|
|
|
15
15
|
GEM
|
|
16
16
|
remote: https://rubygems.org/
|
|
17
17
|
specs:
|
|
18
|
-
actionpack (8.1.
|
|
19
|
-
actionview (= 8.1.
|
|
20
|
-
activesupport (= 8.1.
|
|
18
|
+
actionpack (8.1.3)
|
|
19
|
+
actionview (= 8.1.3)
|
|
20
|
+
activesupport (= 8.1.3)
|
|
21
21
|
nokogiri (>= 1.8.5)
|
|
22
22
|
rack (>= 2.2.4)
|
|
23
23
|
rack-session (>= 1.0.1)
|
|
@@ -25,19 +25,19 @@ GEM
|
|
|
25
25
|
rails-dom-testing (~> 2.2)
|
|
26
26
|
rails-html-sanitizer (~> 1.6)
|
|
27
27
|
useragent (~> 0.16)
|
|
28
|
-
actionview (8.1.
|
|
29
|
-
activesupport (= 8.1.
|
|
28
|
+
actionview (8.1.3)
|
|
29
|
+
activesupport (= 8.1.3)
|
|
30
30
|
builder (~> 3.1)
|
|
31
31
|
erubi (~> 1.11)
|
|
32
32
|
rails-dom-testing (~> 2.2)
|
|
33
33
|
rails-html-sanitizer (~> 1.6)
|
|
34
|
-
activemodel (8.1.
|
|
35
|
-
activesupport (= 8.1.
|
|
36
|
-
activerecord (8.1.
|
|
37
|
-
activemodel (= 8.1.
|
|
38
|
-
activesupport (= 8.1.
|
|
34
|
+
activemodel (8.1.3)
|
|
35
|
+
activesupport (= 8.1.3)
|
|
36
|
+
activerecord (8.1.3)
|
|
37
|
+
activemodel (= 8.1.3)
|
|
38
|
+
activesupport (= 8.1.3)
|
|
39
39
|
timeout (>= 0.4.0)
|
|
40
|
-
activesupport (8.1.
|
|
40
|
+
activesupport (8.1.3)
|
|
41
41
|
base64
|
|
42
42
|
bigdecimal
|
|
43
43
|
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
@@ -53,7 +53,7 @@ GEM
|
|
|
53
53
|
ast (2.4.3)
|
|
54
54
|
base64 (0.3.0)
|
|
55
55
|
benchmark (0.5.0)
|
|
56
|
-
bigdecimal (4.
|
|
56
|
+
bigdecimal (4.1.2)
|
|
57
57
|
binding_of_caller (1.0.1)
|
|
58
58
|
debug_inspector (>= 1.2.0)
|
|
59
59
|
builder (3.3.0)
|
|
@@ -82,13 +82,13 @@ GEM
|
|
|
82
82
|
concurrent-ruby (~> 1.0)
|
|
83
83
|
logger
|
|
84
84
|
zeitwerk (~> 2.6)
|
|
85
|
-
dry-monads (1.
|
|
85
|
+
dry-monads (1.10.0)
|
|
86
86
|
concurrent-ruby (~> 1.0)
|
|
87
87
|
dry-core (~> 1.1)
|
|
88
88
|
zeitwerk (~> 2.6)
|
|
89
|
-
erb (6.0.1)
|
|
89
|
+
erb (6.0.1.1)
|
|
90
90
|
erubi (1.13.1)
|
|
91
|
-
faker (3.
|
|
91
|
+
faker (3.8.0)
|
|
92
92
|
i18n (>= 1.8.11, < 2)
|
|
93
93
|
google-protobuf (4.33.5)
|
|
94
94
|
bigdecimal
|
|
@@ -100,35 +100,36 @@ GEM
|
|
|
100
100
|
pp (>= 0.6.0)
|
|
101
101
|
rdoc (>= 4.0.0)
|
|
102
102
|
reline (>= 0.4.2)
|
|
103
|
-
json (2.
|
|
103
|
+
json (2.19.5)
|
|
104
104
|
language_server-protocol (3.17.0.5)
|
|
105
105
|
lint_roller (1.1.0)
|
|
106
106
|
logger (1.7.0)
|
|
107
|
-
loofah (2.25.
|
|
107
|
+
loofah (2.25.1)
|
|
108
108
|
crass (~> 1.0.2)
|
|
109
109
|
nokogiri (>= 1.12.0)
|
|
110
110
|
memery (1.8.0)
|
|
111
111
|
method_source (1.1.0)
|
|
112
|
-
minitest (6.0.
|
|
112
|
+
minitest (6.0.6)
|
|
113
|
+
drb (~> 2.0)
|
|
113
114
|
prism (~> 1.5)
|
|
114
|
-
nokogiri (1.19.
|
|
115
|
+
nokogiri (1.19.3-aarch64-linux-gnu)
|
|
115
116
|
racc (~> 1.4)
|
|
116
|
-
nokogiri (1.19.
|
|
117
|
+
nokogiri (1.19.3-aarch64-linux-musl)
|
|
117
118
|
racc (~> 1.4)
|
|
118
|
-
nokogiri (1.19.
|
|
119
|
+
nokogiri (1.19.3-arm-linux-gnu)
|
|
119
120
|
racc (~> 1.4)
|
|
120
|
-
nokogiri (1.19.
|
|
121
|
+
nokogiri (1.19.3-arm-linux-musl)
|
|
121
122
|
racc (~> 1.4)
|
|
122
|
-
nokogiri (1.19.
|
|
123
|
+
nokogiri (1.19.3-arm64-darwin)
|
|
123
124
|
racc (~> 1.4)
|
|
124
|
-
nokogiri (1.19.
|
|
125
|
+
nokogiri (1.19.3-x86_64-darwin)
|
|
125
126
|
racc (~> 1.4)
|
|
126
|
-
nokogiri (1.19.
|
|
127
|
+
nokogiri (1.19.3-x86_64-linux-gnu)
|
|
127
128
|
racc (~> 1.4)
|
|
128
|
-
nokogiri (1.19.
|
|
129
|
+
nokogiri (1.19.3-x86_64-linux-musl)
|
|
129
130
|
racc (~> 1.4)
|
|
130
|
-
parallel (1.
|
|
131
|
-
parser (3.3.
|
|
131
|
+
parallel (1.28.0)
|
|
132
|
+
parser (3.3.11.1)
|
|
132
133
|
ast (~> 2.4.1)
|
|
133
134
|
racc
|
|
134
135
|
pg_query (6.2.2)
|
|
@@ -152,8 +153,8 @@ GEM
|
|
|
152
153
|
date
|
|
153
154
|
stringio
|
|
154
155
|
racc (1.8.1)
|
|
155
|
-
rack (3.2.
|
|
156
|
-
rack-session (2.1.
|
|
156
|
+
rack (3.2.6)
|
|
157
|
+
rack-session (2.1.2)
|
|
157
158
|
base64 (>= 0.1.0)
|
|
158
159
|
rack (>= 3.0.0)
|
|
159
160
|
rack-test (2.2.0)
|
|
@@ -167,9 +168,9 @@ GEM
|
|
|
167
168
|
rails-html-sanitizer (1.6.2)
|
|
168
169
|
loofah (~> 2.21)
|
|
169
170
|
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
|
|
170
|
-
railties (8.1.
|
|
171
|
-
actionpack (= 8.1.
|
|
172
|
-
activesupport (= 8.1.
|
|
171
|
+
railties (8.1.3)
|
|
172
|
+
actionpack (= 8.1.3)
|
|
173
|
+
activesupport (= 8.1.3)
|
|
173
174
|
irb (~> 1.13)
|
|
174
175
|
rackup (>= 1.0.0)
|
|
175
176
|
rake (>= 12.2)
|
|
@@ -177,14 +178,14 @@ GEM
|
|
|
177
178
|
tsort (>= 0.2)
|
|
178
179
|
zeitwerk (~> 2.6)
|
|
179
180
|
rainbow (3.1.1)
|
|
180
|
-
rake (13.
|
|
181
|
+
rake (13.4.2)
|
|
181
182
|
rake-hooks (1.2.3)
|
|
182
183
|
rake
|
|
183
184
|
rdoc (7.1.0)
|
|
184
185
|
erb
|
|
185
186
|
psych (>= 4.0.0)
|
|
186
187
|
tsort
|
|
187
|
-
regexp_parser (2.
|
|
188
|
+
regexp_parser (2.12.0)
|
|
188
189
|
reline (0.6.3)
|
|
189
190
|
io-console (~> 0.5)
|
|
190
191
|
rouge (4.7.0)
|
|
@@ -213,21 +214,21 @@ GEM
|
|
|
213
214
|
binding_of_caller
|
|
214
215
|
rspec-parameterized-core (>= 2, < 3)
|
|
215
216
|
rspec-support (3.13.6)
|
|
216
|
-
rubocop (1.
|
|
217
|
+
rubocop (1.86.1)
|
|
217
218
|
json (~> 2.3)
|
|
218
219
|
language_server-protocol (~> 3.17.0.2)
|
|
219
220
|
lint_roller (~> 1.1.0)
|
|
220
|
-
parallel (
|
|
221
|
+
parallel (>= 1.10)
|
|
221
222
|
parser (>= 3.3.0.2)
|
|
222
223
|
rainbow (>= 2.2.2, < 4.0)
|
|
223
224
|
regexp_parser (>= 2.9.3, < 3.0)
|
|
224
225
|
rubocop-ast (>= 1.49.0, < 2.0)
|
|
225
226
|
ruby-progressbar (~> 1.7)
|
|
226
227
|
unicode-display_width (>= 2.4.0, < 4.0)
|
|
227
|
-
rubocop-ast (1.49.
|
|
228
|
+
rubocop-ast (1.49.1)
|
|
228
229
|
parser (>= 3.3.7.2)
|
|
229
230
|
prism (~> 1.7)
|
|
230
|
-
rubocop-rails (2.
|
|
231
|
+
rubocop-rails (2.35.0)
|
|
231
232
|
activesupport (>= 4.2.0)
|
|
232
233
|
lint_roller (~> 1.1)
|
|
233
234
|
rack (>= 1.1)
|
|
@@ -243,7 +244,7 @@ GEM
|
|
|
243
244
|
securerandom (0.4.1)
|
|
244
245
|
stringio (3.2.0)
|
|
245
246
|
thor (1.5.0)
|
|
246
|
-
timeout (0.6.
|
|
247
|
+
timeout (0.6.1)
|
|
247
248
|
tsort (0.2.0)
|
|
248
249
|
tzinfo (2.0.6)
|
|
249
250
|
concurrent-ruby (~> 1.0)
|
|
@@ -256,7 +257,7 @@ GEM
|
|
|
256
257
|
prism (>= 1.5.1)
|
|
257
258
|
uri (1.1.1)
|
|
258
259
|
useragent (0.16.11)
|
|
259
|
-
zeitwerk (2.7.
|
|
260
|
+
zeitwerk (2.7.5)
|
|
260
261
|
|
|
261
262
|
PLATFORMS
|
|
262
263
|
aarch64-linux
|
data/lib/pg_objects/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pg_objects
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.4.
|
|
4
|
+
version: 1.4.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Denis Kiselyov
|
|
@@ -165,6 +165,7 @@ executables: []
|
|
|
165
165
|
extensions: []
|
|
166
166
|
extra_rdoc_files: []
|
|
167
167
|
files:
|
|
168
|
+
- ".evilution.yml"
|
|
168
169
|
- ".github/copilot-instructions.md"
|
|
169
170
|
- ".github/dependabot.yml"
|
|
170
171
|
- ".github/workflows/bundle_audit.yml"
|
|
@@ -243,7 +244,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
243
244
|
- !ruby/object:Gem::Version
|
|
244
245
|
version: '0'
|
|
245
246
|
requirements: []
|
|
246
|
-
rubygems_version: 4.0.
|
|
247
|
+
rubygems_version: 4.0.10
|
|
247
248
|
specification_version: 4
|
|
248
249
|
summary: Simple manager for PostgreSQL objects like triggers and functions
|
|
249
250
|
test_files: []
|