pg 0.18.2 → 1.4.5

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.
Files changed (119) hide show
  1. checksums.yaml +5 -5
  2. checksums.yaml.gz.sig +0 -0
  3. data/.appveyor.yml +36 -0
  4. data/.gems +6 -0
  5. data/.github/workflows/binary-gems.yml +86 -0
  6. data/.github/workflows/source-gem.yml +131 -0
  7. data/.gitignore +13 -0
  8. data/.hgsigs +34 -0
  9. data/.hgtags +41 -0
  10. data/.irbrc +23 -0
  11. data/.pryrc +23 -0
  12. data/.tm_properties +21 -0
  13. data/.travis.yml +49 -0
  14. data/BSDL +2 -2
  15. data/Gemfile +14 -0
  16. data/History.rdoc +480 -4
  17. data/Manifest.txt +8 -21
  18. data/README-Windows.rdoc +17 -28
  19. data/README.ja.rdoc +1 -2
  20. data/README.rdoc +92 -20
  21. data/Rakefile +33 -133
  22. data/Rakefile.cross +89 -67
  23. data/certs/ged.pem +24 -0
  24. data/certs/larskanis-2022.pem +26 -0
  25. data/ext/errorcodes.def +113 -0
  26. data/ext/errorcodes.rb +1 -1
  27. data/ext/errorcodes.txt +36 -2
  28. data/ext/extconf.rb +120 -54
  29. data/ext/gvl_wrappers.c +8 -0
  30. data/ext/gvl_wrappers.h +44 -33
  31. data/ext/pg.c +216 -172
  32. data/ext/pg.h +93 -98
  33. data/ext/pg_binary_decoder.c +85 -16
  34. data/ext/pg_binary_encoder.c +25 -22
  35. data/ext/pg_coder.c +176 -40
  36. data/ext/pg_connection.c +1735 -1138
  37. data/ext/pg_copy_coder.c +95 -28
  38. data/ext/pg_errors.c +1 -1
  39. data/ext/pg_record_coder.c +521 -0
  40. data/ext/pg_result.c +642 -221
  41. data/ext/pg_text_decoder.c +609 -41
  42. data/ext/pg_text_encoder.c +254 -100
  43. data/ext/pg_tuple.c +569 -0
  44. data/ext/pg_type_map.c +62 -22
  45. data/ext/pg_type_map_all_strings.c +20 -6
  46. data/ext/pg_type_map_by_class.c +55 -25
  47. data/ext/pg_type_map_by_column.c +81 -42
  48. data/ext/pg_type_map_by_mri_type.c +49 -20
  49. data/ext/pg_type_map_by_oid.c +56 -26
  50. data/ext/pg_type_map_in_ruby.c +52 -21
  51. data/ext/{util.c → pg_util.c} +12 -12
  52. data/ext/{util.h → pg_util.h} +2 -2
  53. data/lib/pg/basic_type_map_based_on_result.rb +47 -0
  54. data/lib/pg/basic_type_map_for_queries.rb +193 -0
  55. data/lib/pg/basic_type_map_for_results.rb +81 -0
  56. data/lib/pg/basic_type_registry.rb +301 -0
  57. data/lib/pg/binary_decoder.rb +23 -0
  58. data/lib/pg/coder.rb +24 -3
  59. data/lib/pg/connection.rb +711 -64
  60. data/lib/pg/constants.rb +2 -1
  61. data/lib/pg/exceptions.rb +9 -2
  62. data/lib/pg/result.rb +24 -7
  63. data/lib/pg/text_decoder.rb +27 -23
  64. data/lib/pg/text_encoder.rb +40 -8
  65. data/lib/pg/tuple.rb +30 -0
  66. data/lib/pg/type_map_by_column.rb +3 -2
  67. data/lib/pg/version.rb +4 -0
  68. data/lib/pg.rb +61 -36
  69. data/misc/openssl-pg-segfault.rb +31 -0
  70. data/misc/postgres/History.txt +9 -0
  71. data/misc/postgres/Manifest.txt +5 -0
  72. data/misc/postgres/README.txt +21 -0
  73. data/misc/postgres/Rakefile +21 -0
  74. data/misc/postgres/lib/postgres.rb +16 -0
  75. data/misc/ruby-pg/History.txt +9 -0
  76. data/misc/ruby-pg/Manifest.txt +5 -0
  77. data/misc/ruby-pg/README.txt +21 -0
  78. data/misc/ruby-pg/Rakefile +21 -0
  79. data/misc/ruby-pg/lib/ruby/pg.rb +16 -0
  80. data/pg.gemspec +32 -0
  81. data/rakelib/task_extension.rb +46 -0
  82. data/sample/array_insert.rb +1 -1
  83. data/sample/async_api.rb +4 -8
  84. data/sample/async_copyto.rb +1 -1
  85. data/sample/async_mixed.rb +1 -1
  86. data/sample/check_conn.rb +1 -1
  87. data/sample/copydata.rb +71 -0
  88. data/sample/copyfrom.rb +1 -1
  89. data/sample/copyto.rb +1 -1
  90. data/sample/cursor.rb +1 -1
  91. data/sample/disk_usage_report.rb +6 -15
  92. data/sample/issue-119.rb +2 -2
  93. data/sample/losample.rb +1 -1
  94. data/sample/minimal-testcase.rb +2 -2
  95. data/sample/notify_wait.rb +1 -1
  96. data/sample/pg_statistics.rb +6 -15
  97. data/sample/replication_monitor.rb +9 -18
  98. data/sample/test_binary_values.rb +1 -1
  99. data/sample/wal_shipper.rb +2 -2
  100. data/sample/warehouse_partitions.rb +8 -17
  101. data.tar.gz.sig +0 -0
  102. metadata +74 -216
  103. metadata.gz.sig +0 -0
  104. data/ChangeLog +0 -5545
  105. data/lib/pg/basic_type_mapping.rb +0 -399
  106. data/spec/data/expected_trace.out +0 -26
  107. data/spec/data/random_binary_data +0 -0
  108. data/spec/helpers.rb +0 -355
  109. data/spec/pg/basic_type_mapping_spec.rb +0 -251
  110. data/spec/pg/connection_spec.rb +0 -1535
  111. data/spec/pg/result_spec.rb +0 -449
  112. data/spec/pg/type_map_by_class_spec.rb +0 -138
  113. data/spec/pg/type_map_by_column_spec.rb +0 -222
  114. data/spec/pg/type_map_by_mri_type_spec.rb +0 -136
  115. data/spec/pg/type_map_by_oid_spec.rb +0 -149
  116. data/spec/pg/type_map_in_ruby_spec.rb +0 -164
  117. data/spec/pg/type_map_spec.rb +0 -22
  118. data/spec/pg/type_spec.rb +0 -688
  119. data/spec/pg_spec.rb +0 -50
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pg
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.18.2
4
+ version: 1.4.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Granger
@@ -11,201 +11,52 @@ bindir: bin
11
11
  cert_chain:
12
12
  - |
13
13
  -----BEGIN CERTIFICATE-----
14
- MIIDbDCCAlSgAwIBAgIBATANBgkqhkiG9w0BAQUFADA+MQwwCgYDVQQDDANnZWQx
15
- GTAXBgoJkiaJk/IsZAEZFglGYWVyaWVNVUQxEzARBgoJkiaJk/IsZAEZFgNvcmcw
16
- HhcNMTUwNDAxMjEyNDEzWhcNMTYwMzMxMjEyNDEzWjA+MQwwCgYDVQQDDANnZWQx
17
- GTAXBgoJkiaJk/IsZAEZFglGYWVyaWVNVUQxEzARBgoJkiaJk/IsZAEZFgNvcmcw
18
- ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDb92mkyYwuGBg1oRxt2tkH
19
- +Uo3LAsaL/APBfSLzy8o3+B3AUHKCjMUaVeBoZdWtMHB75X3VQlvXfZMyBxj59Vo
20
- cDthr3zdao4HnyrzAIQf7BO5Y8KBwVD+yyXCD/N65TTwqsQnO3ie7U5/9ut1rnNr
21
- OkOzAscMwkfQxBkXDzjvAWa6UF4c5c9kR/T79iA21kDx9+bUMentU59aCJtUcbxa
22
- 7kcKJhPEYsk4OdxR9q2dphNMFDQsIdRO8rywX5FRHvcb+qnXC17RvxLHtOjysPtp
23
- EWsYoZMxyCDJpUqbwoeiM+tAHoz2ABMv3Ahie3Qeb6+MZNAtMmaWfBx3dg2u+/WN
24
- AgMBAAGjdTBzMAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBSZ0hCV
25
- qoHr122fGKelqffzEQBhszAcBgNVHREEFTATgRFnZWRARmFlcmllTVVELm9yZzAc
26
- BgNVHRIEFTATgRFnZWRARmFlcmllTVVELm9yZzANBgkqhkiG9w0BAQUFAAOCAQEA
27
- lUKo3NXePpuvN3QGsOLJ6QhNd4+Q9Rz75GipuMrCl296V8QFkd2gg9EG44Pqtk+9
28
- Zac8TkKc9bCSR0snakp+cCPplVvZF0/gMzkSTUJkDBHlNV16z73CyWpbQQa+iLJ4
29
- uisI6gF2ZXK919MYLn2bFJfb7OsCvVfyTPqq8afPY+rq9vlf9ZPwU49AlD8bPRic
30
- 0LX0gO5ykvETIOv+WgGcqp96ceNi9XVuJMh20uWuw6pmv/Ub2RqAf82jQSbpz09G
31
- G8LHR7EjtPPmqCCunfyecJ6MmCNaiJCBxq2NYzyNmluPyHT8+0fuB5kccUVZm6CD
32
- xn3DzOkDE6NYbk8gC9rTsA==
14
+ MIIDLjCCAhagAwIBAgIBCjANBgkqhkiG9w0BAQsFADA9MQ4wDAYDVQQDDAVrYW5p
15
+ czEXMBUGCgmSJomT8ixkARkWB2NvbWNhcmQxEjAQBgoJkiaJk/IsZAEZFgJkZTAe
16
+ Fw0yMjA0MTExMTMwNTNaFw0yMzA0MTExMTMwNTNaMD0xDjAMBgNVBAMMBWthbmlz
17
+ MRcwFQYKCZImiZPyLGQBGRYHY29tY2FyZDESMBAGCgmSJomT8ixkARkWAmRlMIIB
18
+ IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApop+rNmg35bzRugZ21VMGqI6
19
+ HGzPLO4VHYncWn/xmgPU/ZMcZdfj6MzIaZJ/czXyt4eHpBk1r8QOV3gBXnRXEjVW
20
+ 9xi+EdVOkTV2/AVFKThcbTAQGiF/bT1n2M+B1GTybRzMg6hyhOJeGPqIhLfJEpxn
21
+ lJi4+ENAVT4MpqHEAGB8yFoPC0GqiOHQsdHxQV3P3c2OZqG+yJey74QtwA2tLcLn
22
+ Q53c63+VLGsOjODl1yPn/2ejyq8qWu6ahfTxiIlSar2UbwtaQGBDFdb2CXgEufXT
23
+ L7oaPxlmj+Q2oLOfOnInd2Oxop59HoJCQPsg8f921J43NCQGA8VHK6paxIRDLQID
24
+ AQABozkwNzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNVHQ4EFgQUvgTdT7fe
25
+ x17ugO3IOsjEJwW7KP4wDQYJKoZIhvcNAQELBQADggEBAILiaB/unSVBfX5n7uL8
26
+ veGGCOHuGYhCGqspb6mYiCx0dmV3RPRiEfGDLfzcXbHNx/3AjygcxH4Slr+pmaxr
27
+ 04Xli3WurocnjoANSWqCwpHH3OhSVxFgBNrCa3OMWcIr0xKH+I7PXA80SXe0pzfg
28
+ ePjpzTY71j+rcyRJqWiU5/zwdUaCCelBJscxh/0IaNcz67ocCEMRj0n4m5HFEmZL
29
+ 9zKkMZFoOjxRQjcL84QU7ZXnnFR5HG8nLw+NqWjo49W6MBQ9HGFda2tk3OpBhyWS
30
+ sc3NyOkGUGdfiee5VRG31Sh3LLON3YGED+zZAS+ZF6598y4vhv8MBLa1Oy357byC
31
+ tTg=
33
32
  -----END CERTIFICATE-----
34
- date: 2015-05-14 00:00:00.000000000 Z
35
- dependencies:
36
- - !ruby/object:Gem::Dependency
37
- name: hoe-mercurial
38
- requirement: !ruby/object:Gem::Requirement
39
- requirements:
40
- - - "~>"
41
- - !ruby/object:Gem::Version
42
- version: '1.4'
43
- type: :development
44
- prerelease: false
45
- version_requirements: !ruby/object:Gem::Requirement
46
- requirements:
47
- - - "~>"
48
- - !ruby/object:Gem::Version
49
- version: '1.4'
50
- - !ruby/object:Gem::Dependency
51
- name: hoe-deveiate
52
- requirement: !ruby/object:Gem::Requirement
53
- requirements:
54
- - - "~>"
55
- - !ruby/object:Gem::Version
56
- version: '0.6'
57
- type: :development
58
- prerelease: false
59
- version_requirements: !ruby/object:Gem::Requirement
60
- requirements:
61
- - - "~>"
62
- - !ruby/object:Gem::Version
63
- version: '0.6'
64
- - !ruby/object:Gem::Dependency
65
- name: hoe-highline
66
- requirement: !ruby/object:Gem::Requirement
67
- requirements:
68
- - - "~>"
69
- - !ruby/object:Gem::Version
70
- version: '0.2'
71
- type: :development
72
- prerelease: false
73
- version_requirements: !ruby/object:Gem::Requirement
74
- requirements:
75
- - - "~>"
76
- - !ruby/object:Gem::Version
77
- version: '0.2'
78
- - !ruby/object:Gem::Dependency
79
- name: rdoc
80
- requirement: !ruby/object:Gem::Requirement
81
- requirements:
82
- - - "~>"
83
- - !ruby/object:Gem::Version
84
- version: '4.0'
85
- type: :development
86
- prerelease: false
87
- version_requirements: !ruby/object:Gem::Requirement
88
- requirements:
89
- - - "~>"
90
- - !ruby/object:Gem::Version
91
- version: '4.0'
92
- - !ruby/object:Gem::Dependency
93
- name: rake-compiler
94
- requirement: !ruby/object:Gem::Requirement
95
- requirements:
96
- - - "~>"
97
- - !ruby/object:Gem::Version
98
- version: '0.9'
99
- type: :development
100
- prerelease: false
101
- version_requirements: !ruby/object:Gem::Requirement
102
- requirements:
103
- - - "~>"
104
- - !ruby/object:Gem::Version
105
- version: '0.9'
106
- - !ruby/object:Gem::Dependency
107
- name: hoe
108
- requirement: !ruby/object:Gem::Requirement
109
- requirements:
110
- - - "~>"
111
- - !ruby/object:Gem::Version
112
- version: '3.12'
113
- type: :development
114
- prerelease: false
115
- version_requirements: !ruby/object:Gem::Requirement
116
- requirements:
117
- - - "~>"
118
- - !ruby/object:Gem::Version
119
- version: '3.12'
120
- - !ruby/object:Gem::Dependency
121
- name: hoe-bundler
122
- requirement: !ruby/object:Gem::Requirement
123
- requirements:
124
- - - "~>"
125
- - !ruby/object:Gem::Version
126
- version: '1.0'
127
- type: :development
128
- prerelease: false
129
- version_requirements: !ruby/object:Gem::Requirement
130
- requirements:
131
- - - "~>"
132
- - !ruby/object:Gem::Version
133
- version: '1.0'
134
- - !ruby/object:Gem::Dependency
135
- name: rspec
136
- requirement: !ruby/object:Gem::Requirement
137
- requirements:
138
- - - "~>"
139
- - !ruby/object:Gem::Version
140
- version: '3.0'
141
- type: :development
142
- prerelease: false
143
- version_requirements: !ruby/object:Gem::Requirement
144
- requirements:
145
- - - "~>"
146
- - !ruby/object:Gem::Version
147
- version: '3.0'
148
- description: |-
149
- Pg is the Ruby interface to the {PostgreSQL RDBMS}[http://www.postgresql.org/].
150
-
151
- It works with {PostgreSQL 8.4 and later}[http://www.postgresql.org/support/versioning/].
152
-
153
- A small example usage:
154
-
155
- #!/usr/bin/env ruby
156
-
157
- require 'pg'
158
-
159
- # Output a table of current connections to the DB
160
- conn = PG.connect( dbname: 'sales' )
161
- conn.exec( "SELECT * FROM pg_stat_activity" ) do |result|
162
- puts " PID | User | Query"
163
- result.each do |row|
164
- puts " %7d | %-16s | %s " %
165
- row.values_at('procpid', 'usename', 'current_query')
166
- end
167
- end
33
+ date: 2022-11-17 00:00:00.000000000 Z
34
+ dependencies: []
35
+ description: Pg is the Ruby interface to the PostgreSQL RDBMS. It works with PostgreSQL
36
+ 9.3 and later.
168
37
  email:
169
38
  - ged@FaerieMUD.org
170
39
  - lars@greiz-reinsdorf.de
171
40
  executables: []
172
41
  extensions:
173
42
  - ext/extconf.rb
174
- extra_rdoc_files:
175
- - Contributors.rdoc
176
- - History.rdoc
177
- - Manifest.txt
178
- - README-OS_X.rdoc
179
- - README-Windows.rdoc
180
- - README.ja.rdoc
181
- - README.rdoc
182
- - ext/errorcodes.txt
183
- - POSTGRES
184
- - LICENSE
185
- - ext/gvl_wrappers.c
186
- - ext/pg.c
187
- - ext/pg_binary_decoder.c
188
- - ext/pg_binary_encoder.c
189
- - ext/pg_coder.c
190
- - ext/pg_connection.c
191
- - ext/pg_copy_coder.c
192
- - ext/pg_errors.c
193
- - ext/pg_result.c
194
- - ext/pg_text_decoder.c
195
- - ext/pg_text_encoder.c
196
- - ext/pg_type_map.c
197
- - ext/pg_type_map_all_strings.c
198
- - ext/pg_type_map_by_class.c
199
- - ext/pg_type_map_by_column.c
200
- - ext/pg_type_map_by_mri_type.c
201
- - ext/pg_type_map_by_oid.c
202
- - ext/pg_type_map_in_ruby.c
203
- - ext/util.c
43
+ extra_rdoc_files: []
204
44
  files:
45
+ - ".appveyor.yml"
46
+ - ".gems"
205
47
  - ".gemtest"
48
+ - ".github/workflows/binary-gems.yml"
49
+ - ".github/workflows/source-gem.yml"
50
+ - ".gitignore"
51
+ - ".hgsigs"
52
+ - ".hgtags"
53
+ - ".irbrc"
54
+ - ".pryrc"
55
+ - ".tm_properties"
56
+ - ".travis.yml"
206
57
  - BSDL
207
- - ChangeLog
208
58
  - Contributors.rdoc
59
+ - Gemfile
209
60
  - History.rdoc
210
61
  - LICENSE
211
62
  - Manifest.txt
@@ -216,6 +67,8 @@ files:
216
67
  - README.rdoc
217
68
  - Rakefile
218
69
  - Rakefile.cross
70
+ - certs/ged.pem
71
+ - certs/larskanis-2022.pem
219
72
  - ext/errorcodes.def
220
73
  - ext/errorcodes.rb
221
74
  - ext/errorcodes.txt
@@ -230,9 +83,11 @@ files:
230
83
  - ext/pg_connection.c
231
84
  - ext/pg_copy_coder.c
232
85
  - ext/pg_errors.c
86
+ - ext/pg_record_coder.c
233
87
  - ext/pg_result.c
234
88
  - ext/pg_text_decoder.c
235
89
  - ext/pg_text_encoder.c
90
+ - ext/pg_tuple.c
236
91
  - ext/pg_type_map.c
237
92
  - ext/pg_type_map_all_strings.c
238
93
  - ext/pg_type_map_by_class.c
@@ -240,13 +95,17 @@ files:
240
95
  - ext/pg_type_map_by_mri_type.c
241
96
  - ext/pg_type_map_by_oid.c
242
97
  - ext/pg_type_map_in_ruby.c
243
- - ext/util.c
244
- - ext/util.h
98
+ - ext/pg_util.c
99
+ - ext/pg_util.h
245
100
  - ext/vc/pg.sln
246
101
  - ext/vc/pg_18/pg.vcproj
247
102
  - ext/vc/pg_19/pg_19.vcproj
248
103
  - lib/pg.rb
249
- - lib/pg/basic_type_mapping.rb
104
+ - lib/pg/basic_type_map_based_on_result.rb
105
+ - lib/pg/basic_type_map_for_queries.rb
106
+ - lib/pg/basic_type_map_for_results.rb
107
+ - lib/pg/basic_type_registry.rb
108
+ - lib/pg/binary_decoder.rb
250
109
  - lib/pg/coder.rb
251
110
  - lib/pg/connection.rb
252
111
  - lib/pg/constants.rb
@@ -254,12 +113,28 @@ files:
254
113
  - lib/pg/result.rb
255
114
  - lib/pg/text_decoder.rb
256
115
  - lib/pg/text_encoder.rb
116
+ - lib/pg/tuple.rb
257
117
  - lib/pg/type_map_by_column.rb
118
+ - lib/pg/version.rb
119
+ - misc/openssl-pg-segfault.rb
120
+ - misc/postgres/History.txt
121
+ - misc/postgres/Manifest.txt
122
+ - misc/postgres/README.txt
123
+ - misc/postgres/Rakefile
124
+ - misc/postgres/lib/postgres.rb
125
+ - misc/ruby-pg/History.txt
126
+ - misc/ruby-pg/Manifest.txt
127
+ - misc/ruby-pg/README.txt
128
+ - misc/ruby-pg/Rakefile
129
+ - misc/ruby-pg/lib/ruby/pg.rb
130
+ - pg.gemspec
131
+ - rakelib/task_extension.rb
258
132
  - sample/array_insert.rb
259
133
  - sample/async_api.rb
260
134
  - sample/async_copyto.rb
261
135
  - sample/async_mixed.rb
262
136
  - sample/check_conn.rb
137
+ - sample/copydata.rb
263
138
  - sample/copyfrom.rb
264
139
  - sample/copyto.rb
265
140
  - sample/cursor.rb
@@ -273,33 +148,17 @@ files:
273
148
  - sample/test_binary_values.rb
274
149
  - sample/wal_shipper.rb
275
150
  - sample/warehouse_partitions.rb
276
- - spec/data/expected_trace.out
277
- - spec/data/random_binary_data
278
- - spec/helpers.rb
279
- - spec/pg/basic_type_mapping_spec.rb
280
- - spec/pg/connection_spec.rb
281
- - spec/pg/result_spec.rb
282
- - spec/pg/type_map_by_class_spec.rb
283
- - spec/pg/type_map_by_column_spec.rb
284
- - spec/pg/type_map_by_mri_type_spec.rb
285
- - spec/pg/type_map_by_oid_spec.rb
286
- - spec/pg/type_map_in_ruby_spec.rb
287
- - spec/pg/type_map_spec.rb
288
- - spec/pg/type_spec.rb
289
- - spec/pg_spec.rb
290
- homepage: https://bitbucket.org/ged/ruby-pg
151
+ homepage: https://github.com/ged/ruby-pg
291
152
  licenses:
292
- - BSD
293
- - Ruby
294
- - GPL
295
- metadata: {}
153
+ - BSD-2-Clause
154
+ metadata:
155
+ homepage_uri: https://github.com/ged/ruby-pg
156
+ source_code_uri: https://github.com/ged/ruby-pg
157
+ changelog_uri: https://github.com/ged/ruby-pg/blob/master/History.rdoc
158
+ documentation_uri: http://deveiate.org/code/pg
296
159
  post_install_message:
297
160
  rdoc_options:
298
- - "-f"
299
- - fivefish
300
- - "-t"
301
- - 'pg: The Ruby Interface to PostgreSQL'
302
- - "-m"
161
+ - "--main"
303
162
  - README.rdoc
304
163
  require_paths:
305
164
  - lib
@@ -307,16 +166,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
307
166
  requirements:
308
167
  - - ">="
309
168
  - !ruby/object:Gem::Version
310
- version: 1.9.3
169
+ version: '2.5'
311
170
  required_rubygems_version: !ruby/object:Gem::Requirement
312
171
  requirements:
313
172
  - - ">="
314
173
  - !ruby/object:Gem::Version
315
174
  version: '0'
316
175
  requirements: []
317
- rubyforge_project:
318
- rubygems_version: 2.4.6
176
+ rubygems_version: 3.3.19
319
177
  signing_key:
320
178
  specification_version: 4
321
- summary: Pg is the Ruby interface to the {PostgreSQL RDBMS}[http://www.postgresql.org/]
179
+ summary: Pg is the Ruby interface to the PostgreSQL RDBMS
322
180
  test_files: []
metadata.gz.sig CHANGED
Binary file