pg_objects 1.4.1 → 1.4.3
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/.github/workflows/bundle_audit.yml +8 -2
- data/.github/workflows/ci.yml +5 -1
- data/.rubocop.yml +1 -1
- data/Gemfile.lock +67 -62
- data/LICENSE +1 -1
- data/lib/pg_objects/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 942d933b2db5ec4a82451dfd89804b6d655a78545a8ac44657adcbd8d785182a
|
4
|
+
data.tar.gz: 32e8be0ec438813644947256312e56298e0b612bc3166e10480ff528e4ac49e8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 50c281beec58a52bf9b10903d92fd71a3752a871b4d44768a573d3b55d4f477c9d1083eae1fd6aa1fad0da8b486809a9fa0f9cc6cc620ea41d5e0c42f1197351
|
7
|
+
data.tar.gz: 9bfff8212f623f44b0a46307e1c02630058090bd394b8de69f01dc6ce75e9a228bae5921117b3ce52d24e0db163087a22b0f8178bb3de5ec237bfd1dc01a2f19
|
@@ -1,5 +1,11 @@
|
|
1
1
|
name: BundleAudit
|
2
|
-
|
2
|
+
|
3
|
+
permissions:
|
4
|
+
contents: read
|
5
|
+
pull-requests: write
|
6
|
+
|
7
|
+
on:
|
8
|
+
push: {}
|
3
9
|
|
4
10
|
jobs:
|
5
11
|
bundle_audit:
|
@@ -15,7 +21,7 @@ jobs:
|
|
15
21
|
- name: Set up Ruby
|
16
22
|
uses: ruby/setup-ruby@v1
|
17
23
|
with:
|
18
|
-
ruby-version: '3.
|
24
|
+
ruby-version: '3.4.2'
|
19
25
|
bundler-cache: true
|
20
26
|
|
21
27
|
- name: Bundle audit
|
data/.github/workflows/ci.yml
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
name: CI for PGObjects
|
2
2
|
|
3
|
+
permissions:
|
4
|
+
contents: read
|
5
|
+
pull-requests: write
|
6
|
+
|
3
7
|
on:
|
4
8
|
push: {}
|
5
9
|
|
@@ -8,7 +12,7 @@ jobs:
|
|
8
12
|
runs-on: ubuntu-latest
|
9
13
|
strategy:
|
10
14
|
matrix:
|
11
|
-
ruby-version: ['3.2', '3.3']
|
15
|
+
ruby-version: ['3.2', '3.3', '3.4']
|
12
16
|
steps:
|
13
17
|
- name: Checkout
|
14
18
|
uses: actions/checkout@v2
|
data/.rubocop.yml
CHANGED
@@ -9,7 +9,7 @@ inherit_from: .rubocop_todo.yml
|
|
9
9
|
AllCops:
|
10
10
|
# EnabledByDefault: true
|
11
11
|
TargetRubyVersion: 3.2
|
12
|
-
# Cop names are not
|
12
|
+
# Cop names are not displayed in offense messages by default. Change behavior
|
13
13
|
# by overriding DisplayCopNames, or by giving the -D/--display-cop-names
|
14
14
|
# option.
|
15
15
|
DisplayCopNames: true
|
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.3)
|
5
5
|
activerecord (>= 6.1.7.0, < 9)
|
6
6
|
dry-auto_inject (~> 1)
|
7
7
|
dry-configurable (~> 1)
|
@@ -50,7 +50,7 @@ GEM
|
|
50
50
|
securerandom (>= 0.3)
|
51
51
|
tzinfo (~> 2.0, >= 2.0.5)
|
52
52
|
uri (>= 0.13.1)
|
53
|
-
ast (2.4.
|
53
|
+
ast (2.4.3)
|
54
54
|
base64 (0.2.0)
|
55
55
|
benchmark (0.4.0)
|
56
56
|
bigdecimal (3.1.9)
|
@@ -60,14 +60,14 @@ GEM
|
|
60
60
|
bundler-audit (0.9.2)
|
61
61
|
bundler (>= 1.2.0, < 3)
|
62
62
|
thor (~> 1.0)
|
63
|
-
byebug (
|
63
|
+
byebug (12.0.0)
|
64
64
|
coderay (1.1.3)
|
65
65
|
concurrent-ruby (1.3.5)
|
66
|
-
connection_pool (2.5.
|
66
|
+
connection_pool (2.5.3)
|
67
67
|
crass (1.0.6)
|
68
68
|
date (3.4.1)
|
69
69
|
debug_inspector (1.2.0)
|
70
|
-
diff-lcs (1.6.
|
70
|
+
diff-lcs (1.6.2)
|
71
71
|
drb (2.2.1)
|
72
72
|
dry-auto_inject (1.1.0)
|
73
73
|
dry-core (~> 1.1)
|
@@ -81,87 +81,87 @@ GEM
|
|
81
81
|
concurrent-ruby (~> 1.0)
|
82
82
|
logger
|
83
83
|
zeitwerk (~> 2.6)
|
84
|
-
dry-monads (1.8.
|
84
|
+
dry-monads (1.8.3)
|
85
85
|
concurrent-ruby (~> 1.0)
|
86
86
|
dry-core (~> 1.1)
|
87
87
|
zeitwerk (~> 2.6)
|
88
88
|
erubi (1.13.1)
|
89
89
|
faker (3.5.1)
|
90
90
|
i18n (>= 1.8.11, < 2)
|
91
|
-
google-protobuf (4.30.
|
91
|
+
google-protobuf (4.30.2)
|
92
92
|
bigdecimal
|
93
93
|
rake (>= 13)
|
94
|
-
google-protobuf (4.30.
|
94
|
+
google-protobuf (4.30.2-aarch64-linux)
|
95
95
|
bigdecimal
|
96
96
|
rake (>= 13)
|
97
|
-
google-protobuf (4.30.
|
97
|
+
google-protobuf (4.30.2-arm64-darwin)
|
98
98
|
bigdecimal
|
99
99
|
rake (>= 13)
|
100
|
-
google-protobuf (4.30.
|
100
|
+
google-protobuf (4.30.2-x86_64-darwin)
|
101
101
|
bigdecimal
|
102
102
|
rake (>= 13)
|
103
|
-
google-protobuf (4.30.
|
104
|
-
bigdecimal
|
105
|
-
rake (>= 13)
|
106
|
-
google-protobuf (4.30.1-x86_64-linux)
|
103
|
+
google-protobuf (4.30.2-x86_64-linux)
|
107
104
|
bigdecimal
|
108
105
|
rake (>= 13)
|
109
106
|
i18n (1.14.7)
|
110
107
|
concurrent-ruby (~> 1.0)
|
111
108
|
io-console (0.8.0)
|
112
|
-
irb (1.15.
|
109
|
+
irb (1.15.2)
|
113
110
|
pp (>= 0.6.0)
|
114
111
|
rdoc (>= 4.0.0)
|
115
112
|
reline (>= 0.4.2)
|
116
|
-
json (2.
|
117
|
-
language_server-protocol (3.17.0.
|
113
|
+
json (2.12.2)
|
114
|
+
language_server-protocol (3.17.0.5)
|
118
115
|
lint_roller (1.1.0)
|
119
|
-
logger (1.
|
116
|
+
logger (1.7.0)
|
120
117
|
loofah (2.24.0)
|
121
118
|
crass (~> 1.0.2)
|
122
119
|
nokogiri (>= 1.12.0)
|
123
120
|
memery (1.7.0)
|
124
121
|
method_source (1.1.0)
|
125
|
-
mini_portile2 (2.8.8)
|
126
122
|
minitest (5.25.5)
|
127
|
-
nokogiri (1.18.
|
128
|
-
|
123
|
+
nokogiri (1.18.8-aarch64-linux-gnu)
|
124
|
+
racc (~> 1.4)
|
125
|
+
nokogiri (1.18.8-aarch64-linux-musl)
|
126
|
+
racc (~> 1.4)
|
127
|
+
nokogiri (1.18.8-arm-linux-gnu)
|
129
128
|
racc (~> 1.4)
|
130
|
-
nokogiri (1.18.
|
129
|
+
nokogiri (1.18.8-arm-linux-musl)
|
131
130
|
racc (~> 1.4)
|
132
|
-
nokogiri (1.18.
|
131
|
+
nokogiri (1.18.8-arm64-darwin)
|
133
132
|
racc (~> 1.4)
|
134
|
-
nokogiri (1.18.
|
133
|
+
nokogiri (1.18.8-x86_64-darwin)
|
135
134
|
racc (~> 1.4)
|
136
|
-
nokogiri (1.18.
|
135
|
+
nokogiri (1.18.8-x86_64-linux-gnu)
|
137
136
|
racc (~> 1.4)
|
138
|
-
nokogiri (1.18.
|
137
|
+
nokogiri (1.18.8-x86_64-linux-musl)
|
139
138
|
racc (~> 1.4)
|
140
|
-
parallel (1.
|
141
|
-
parser (3.3.
|
139
|
+
parallel (1.27.0)
|
140
|
+
parser (3.3.8.0)
|
142
141
|
ast (~> 2.4.1)
|
143
142
|
racc
|
144
|
-
pg_query (6.
|
143
|
+
pg_query (6.1.0)
|
145
144
|
google-protobuf (>= 3.25.3)
|
146
145
|
pp (0.6.2)
|
147
146
|
prettyprint
|
148
147
|
prettyprint (0.2.0)
|
148
|
+
prism (1.4.0)
|
149
149
|
proc_to_ast (0.2.0)
|
150
150
|
parser
|
151
151
|
rouge
|
152
152
|
unparser
|
153
|
-
pry (0.
|
153
|
+
pry (0.15.2)
|
154
154
|
coderay (~> 1.1)
|
155
155
|
method_source (~> 1.0)
|
156
|
-
pry-byebug (3.
|
157
|
-
byebug (~>
|
158
|
-
pry (>= 0.13, < 0.
|
156
|
+
pry-byebug (3.11.0)
|
157
|
+
byebug (~> 12.0)
|
158
|
+
pry (>= 0.13, < 0.16)
|
159
159
|
psych (5.2.3)
|
160
160
|
date
|
161
161
|
stringio
|
162
162
|
racc (1.8.1)
|
163
|
-
rack (3.1.
|
164
|
-
rack-session (2.1.
|
163
|
+
rack (3.1.16)
|
164
|
+
rack-session (2.1.1)
|
165
165
|
base64 (>= 0.1.0)
|
166
166
|
rack (>= 3.0.0)
|
167
167
|
rack-test (2.2.0)
|
@@ -184,40 +184,41 @@ GEM
|
|
184
184
|
thor (~> 1.0, >= 1.2.2)
|
185
185
|
zeitwerk (~> 2.6)
|
186
186
|
rainbow (3.1.1)
|
187
|
-
rake (13.
|
187
|
+
rake (13.3.0)
|
188
188
|
rake-hooks (1.2.3)
|
189
189
|
rake
|
190
|
-
rdoc (6.
|
190
|
+
rdoc (6.13.1)
|
191
191
|
psych (>= 4.0.0)
|
192
192
|
regexp_parser (2.10.0)
|
193
|
-
reline (0.6.
|
193
|
+
reline (0.6.1)
|
194
194
|
io-console (~> 0.5)
|
195
|
-
rouge (4.5.
|
196
|
-
rspec (3.13.
|
195
|
+
rouge (4.5.2)
|
196
|
+
rspec (3.13.1)
|
197
197
|
rspec-core (~> 3.13.0)
|
198
198
|
rspec-expectations (~> 3.13.0)
|
199
199
|
rspec-mocks (~> 3.13.0)
|
200
|
-
rspec-core (3.13.
|
200
|
+
rspec-core (3.13.4)
|
201
201
|
rspec-support (~> 3.13.0)
|
202
|
-
rspec-expectations (3.13.
|
202
|
+
rspec-expectations (3.13.5)
|
203
203
|
diff-lcs (>= 1.2.0, < 2.0)
|
204
204
|
rspec-support (~> 3.13.0)
|
205
|
-
rspec-mocks (3.13.
|
205
|
+
rspec-mocks (3.13.5)
|
206
206
|
diff-lcs (>= 1.2.0, < 2.0)
|
207
207
|
rspec-support (~> 3.13.0)
|
208
|
-
rspec-parameterized (
|
209
|
-
rspec-parameterized-core (<
|
210
|
-
rspec-parameterized-table_syntax (<
|
211
|
-
rspec-parameterized-core (
|
208
|
+
rspec-parameterized (2.0.0)
|
209
|
+
rspec-parameterized-core (>= 2, < 3)
|
210
|
+
rspec-parameterized-table_syntax (>= 2, < 3)
|
211
|
+
rspec-parameterized-core (2.0.0)
|
212
212
|
parser
|
213
|
+
prism
|
213
214
|
proc_to_ast (>= 0.2.0)
|
214
215
|
rspec (>= 2.13, < 4)
|
215
216
|
unparser
|
216
|
-
rspec-parameterized-table_syntax (
|
217
|
+
rspec-parameterized-table_syntax (2.0.0)
|
217
218
|
binding_of_caller
|
218
|
-
rspec-parameterized-core (<
|
219
|
-
rspec-support (3.13.
|
220
|
-
rubocop (1.
|
219
|
+
rspec-parameterized-core (>= 2, < 3)
|
220
|
+
rspec-support (3.13.4)
|
221
|
+
rubocop (1.75.8)
|
221
222
|
json (~> 2.3)
|
222
223
|
language_server-protocol (~> 3.17.0.2)
|
223
224
|
lint_roller (~> 1.1.0)
|
@@ -225,26 +226,27 @@ GEM
|
|
225
226
|
parser (>= 3.3.0.2)
|
226
227
|
rainbow (>= 2.2.2, < 4.0)
|
227
228
|
regexp_parser (>= 2.9.3, < 3.0)
|
228
|
-
rubocop-ast (>= 1.
|
229
|
+
rubocop-ast (>= 1.44.0, < 2.0)
|
229
230
|
ruby-progressbar (~> 1.7)
|
230
231
|
unicode-display_width (>= 2.4.0, < 4.0)
|
231
|
-
rubocop-ast (1.
|
232
|
-
parser (>= 3.3.
|
233
|
-
|
232
|
+
rubocop-ast (1.44.1)
|
233
|
+
parser (>= 3.3.7.2)
|
234
|
+
prism (~> 1.4)
|
235
|
+
rubocop-rails (2.32.0)
|
234
236
|
activesupport (>= 4.2.0)
|
235
237
|
lint_roller (~> 1.1)
|
236
238
|
rack (>= 1.1)
|
237
|
-
rubocop (>= 1.
|
238
|
-
rubocop-ast (>= 1.
|
239
|
+
rubocop (>= 1.75.0, < 2.0)
|
240
|
+
rubocop-ast (>= 1.44.0, < 2.0)
|
239
241
|
rubocop-rake (0.7.1)
|
240
242
|
lint_roller (~> 1.1)
|
241
243
|
rubocop (>= 1.72.1)
|
242
|
-
rubocop-rspec (3.
|
244
|
+
rubocop-rspec (3.6.0)
|
243
245
|
lint_roller (~> 1.1)
|
244
246
|
rubocop (~> 1.72, >= 1.72.1)
|
245
247
|
ruby-progressbar (1.13.0)
|
246
248
|
securerandom (0.4.1)
|
247
|
-
stringio (3.1.
|
249
|
+
stringio (3.1.7)
|
248
250
|
thor (1.3.2)
|
249
251
|
timeout (0.4.3)
|
250
252
|
tzinfo (2.0.6)
|
@@ -261,11 +263,14 @@ GEM
|
|
261
263
|
|
262
264
|
PLATFORMS
|
263
265
|
aarch64-linux
|
264
|
-
|
266
|
+
aarch64-linux-gnu
|
267
|
+
aarch64-linux-musl
|
268
|
+
arm-linux-gnu
|
269
|
+
arm-linux-musl
|
265
270
|
arm64-darwin
|
266
|
-
x86-linux
|
267
271
|
x86_64-darwin
|
268
|
-
x86_64-linux
|
272
|
+
x86_64-linux-gnu
|
273
|
+
x86_64-linux-musl
|
269
274
|
|
270
275
|
DEPENDENCIES
|
271
276
|
bundler
|
data/LICENSE
CHANGED
data/lib/pg_objects/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Denis Kiselyov
|
8
8
|
bindir: exe
|
9
9
|
cert_chain: []
|
10
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: activerecord
|
@@ -240,7 +240,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
240
240
|
- !ruby/object:Gem::Version
|
241
241
|
version: '0'
|
242
242
|
requirements: []
|
243
|
-
rubygems_version: 3.6.
|
243
|
+
rubygems_version: 3.6.7
|
244
244
|
specification_version: 4
|
245
245
|
summary: Simple manager for PostgreSQL objects like triggers and functions
|
246
246
|
test_files: []
|