pg_objects 1.4.1 → 1.4.4
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 +9 -3
- data/.github/workflows/ci.yml +8 -2
- data/.github/workflows/publish.yml +11 -10
- data/.rubocop.yml +2 -2
- data/Gemfile.lock +70 -65
- data/LICENSE +1 -1
- data/README.md +0 -1
- data/lib/pg_objects/version.rb +1 -3
- data/lib/pg_objects.rb +9 -8
- data/pg_objects.gemspec +3 -3
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b7dbb150d5066af4022a9fe9767c5d80b7dff7722d873223f96c3b920e6b5f8a
|
4
|
+
data.tar.gz: 2e1483a5adcb2f4ec9c235b31535ee40330c0305a66a9b58cc01541bdde0a3a0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 238ec678d18e603a06c752ec7093bc99b72b6a1d5c8c4a91518aca6e060e5b875efad725d7ee427a80438c5e2d07cb710eede4e13aae6e9f911e8172f030feb4
|
7
|
+
data.tar.gz: 339c33e6d341b7cd9e3b224a7e961f0d89a9dd5f0b2d2d474b88dab575b5a4cd806005589e79206edff73168b90b0c2ebdaeba54793a1835f3e6a29c6503e9f8
|
@@ -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:
|
@@ -8,14 +14,14 @@ jobs:
|
|
8
14
|
|
9
15
|
steps:
|
10
16
|
- name: Checkout
|
11
|
-
uses: actions/checkout@
|
17
|
+
uses: actions/checkout@v4
|
12
18
|
with:
|
13
19
|
fetch-depth: 0
|
14
20
|
|
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,10 +12,12 @@ 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
|
-
uses: actions/checkout@
|
18
|
+
uses: actions/checkout@v4
|
19
|
+
with:
|
20
|
+
fetch-depth: 0
|
15
21
|
|
16
22
|
- name: Setup Ruby
|
17
23
|
uses: ruby/setup-ruby@v1
|
@@ -5,7 +5,7 @@ on:
|
|
5
5
|
types: [published]
|
6
6
|
|
7
7
|
jobs:
|
8
|
-
|
8
|
+
publish:
|
9
9
|
runs-on: ubuntu-latest
|
10
10
|
|
11
11
|
permissions:
|
@@ -13,13 +13,14 @@ jobs:
|
|
13
13
|
id-token: write
|
14
14
|
|
15
15
|
steps:
|
16
|
-
|
17
|
-
|
18
|
-
- name: Set up Ruby
|
19
|
-
uses: ruby/setup-ruby@v1
|
20
|
-
with:
|
21
|
-
bundler-cache: true
|
22
|
-
ruby-version: ruby
|
16
|
+
- name: Checkout
|
17
|
+
uses: actions/checkout@v4
|
23
18
|
|
24
|
-
|
25
|
-
|
19
|
+
- name: Set up Ruby
|
20
|
+
uses: ruby/setup-ruby@v1
|
21
|
+
with:
|
22
|
+
bundler-cache: true
|
23
|
+
ruby-version: ruby
|
24
|
+
|
25
|
+
- name: Release
|
26
|
+
uses: rubygems/release-gem@v1
|
data/.rubocop.yml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# softened a bit with http://relaxed.ruby.style/rubocop.yml
|
2
2
|
|
3
|
-
|
3
|
+
plugins:
|
4
4
|
- rubocop-rake
|
5
5
|
- rubocop-rspec
|
6
6
|
|
@@ -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.4)
|
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.
|
84
|
+
dry-monads (1.9.0)
|
85
85
|
concurrent-ruby (~> 1.0)
|
86
86
|
dry-core (~> 1.1)
|
87
87
|
zeitwerk (~> 2.6)
|
88
88
|
erubi (1.13.1)
|
89
|
-
faker (3.5.
|
89
|
+
faker (3.5.2)
|
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.9-aarch64-linux-gnu)
|
124
|
+
racc (~> 1.4)
|
125
|
+
nokogiri (1.18.9-aarch64-linux-musl)
|
126
|
+
racc (~> 1.4)
|
127
|
+
nokogiri (1.18.9-arm-linux-gnu)
|
129
128
|
racc (~> 1.4)
|
130
|
-
nokogiri (1.18.
|
129
|
+
nokogiri (1.18.9-arm-linux-musl)
|
131
130
|
racc (~> 1.4)
|
132
|
-
nokogiri (1.18.
|
131
|
+
nokogiri (1.18.9-arm64-darwin)
|
133
132
|
racc (~> 1.4)
|
134
|
-
nokogiri (1.18.
|
133
|
+
nokogiri (1.18.9-x86_64-darwin)
|
135
134
|
racc (~> 1.4)
|
136
|
-
nokogiri (1.18.
|
135
|
+
nokogiri (1.18.9-x86_64-linux-gnu)
|
137
136
|
racc (~> 1.4)
|
138
|
-
nokogiri (1.18.
|
137
|
+
nokogiri (1.18.9-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.78.0)
|
221
222
|
json (~> 2.3)
|
222
223
|
language_server-protocol (~> 3.17.0.2)
|
223
224
|
lint_roller (~> 1.1.0)
|
@@ -225,27 +226,28 @@ 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.45.1, < 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.45.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.
|
248
|
-
thor (1.
|
249
|
+
stringio (3.1.7)
|
250
|
+
thor (1.4.0)
|
249
251
|
timeout (0.4.3)
|
250
252
|
tzinfo (2.0.6)
|
251
253
|
concurrent-ruby (~> 1.0)
|
@@ -257,15 +259,18 @@ GEM
|
|
257
259
|
parser (>= 3.3.0)
|
258
260
|
uri (1.0.3)
|
259
261
|
useragent (0.16.11)
|
260
|
-
zeitwerk (2.7.
|
262
|
+
zeitwerk (2.7.3)
|
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/README.md
CHANGED
@@ -1,5 +1,4 @@
|
|
1
1
|
[](https://badge.fury.io/rb/pg_objects)
|
2
|
-
[](https://codeclimate.com/github/marinazzio/pg_objects/maintainability)
|
3
2
|
|
4
3
|
# PgObjects
|
5
4
|
|
data/lib/pg_objects/version.rb
CHANGED
data/lib/pg_objects.rb
CHANGED
@@ -1,4 +1,12 @@
|
|
1
|
-
|
1
|
+
require_relative 'pg_objects/version'
|
2
|
+
|
3
|
+
module PgObjects
|
4
|
+
AmbiguousDependencyError = Class.new(StandardError)
|
5
|
+
CyclicDependencyError = Class.new(StandardError)
|
6
|
+
DependencyNotExistError = Class.new(StandardError)
|
7
|
+
UnsupportedAdapterError = Class.new(StandardError)
|
8
|
+
end
|
9
|
+
|
2
10
|
require 'pg_objects/railtie' if defined?(Rails)
|
3
11
|
|
4
12
|
require 'dry-configurable'
|
@@ -15,10 +23,3 @@ require 'pg_objects/logger'
|
|
15
23
|
require 'pg_objects/manager'
|
16
24
|
require 'pg_objects/parsed_object'
|
17
25
|
require 'pg_objects/parser'
|
18
|
-
|
19
|
-
module PgObjects
|
20
|
-
AmbiguousDependencyError = Class.new(StandardError)
|
21
|
-
CyclicDependencyError = Class.new(StandardError)
|
22
|
-
DependencyNotExistError = Class.new(StandardError)
|
23
|
-
UnsupportedAdapterError = Class.new(StandardError)
|
24
|
-
end
|
data/pg_objects.gemspec
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
lib = File.expand_path('lib', __dir__)
|
2
2
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
3
|
-
|
3
|
+
|
4
|
+
require_relative 'lib/pg_objects/version'
|
4
5
|
|
5
6
|
Gem::Specification.new do |spec|
|
6
7
|
spec.name = 'pg_objects'
|
@@ -14,6 +15,7 @@ Gem::Specification.new do |spec|
|
|
14
15
|
spec.required_ruby_version = '>= 3.2.0'
|
15
16
|
|
16
17
|
spec.metadata = {
|
18
|
+
'allowed_push_host' => 'https://rubygems.org',
|
17
19
|
'bug_tracker_uri' => 'https://github.com/marinazzio/pg_objects/issues',
|
18
20
|
'documentation_uri' => 'https://github.com/marinazzio/pg_objects/blob/master/README.md',
|
19
21
|
'homepage_uri' => 'https://github.com/marinazzio/pg_objects',
|
@@ -32,8 +34,6 @@ Gem::Specification.new do |spec|
|
|
32
34
|
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
33
35
|
raise 'RubyGems 2.0 or newer is required to protect against public gem pushes.' unless spec.respond_to?(:metadata)
|
34
36
|
|
35
|
-
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
|
36
|
-
|
37
37
|
# Specify which files should be added to the gem when it is released.
|
38
38
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
39
39
|
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
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.4
|
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
|
@@ -215,12 +215,12 @@ homepage: https://github.com/marinazzio/pg_objects
|
|
215
215
|
licenses:
|
216
216
|
- MIT
|
217
217
|
metadata:
|
218
|
+
allowed_push_host: https://rubygems.org
|
218
219
|
bug_tracker_uri: https://github.com/marinazzio/pg_objects/issues
|
219
220
|
documentation_uri: https://github.com/marinazzio/pg_objects/blob/master/README.md
|
220
221
|
homepage_uri: https://github.com/marinazzio/pg_objects
|
221
222
|
rubygems_mfa_required: 'true'
|
222
223
|
source_code_uri: https://github.com/marinazzio/pg_objects
|
223
|
-
allowed_push_host: https://rubygems.org
|
224
224
|
post_install_message: |2+
|
225
225
|
To create initial directories structure run:
|
226
226
|
|
@@ -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.9
|
244
244
|
specification_version: 4
|
245
245
|
summary: Simple manager for PostgreSQL objects like triggers and functions
|
246
246
|
test_files: []
|