pg 1.2.3 → 1.5.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.
Files changed (136) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data/.appveyor.yml +42 -0
  4. data/.gems +6 -0
  5. data/.github/workflows/binary-gems.yml +117 -0
  6. data/.github/workflows/source-gem.yml +141 -0
  7. data/.gitignore +22 -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/Gemfile +14 -0
  15. data/History.md +884 -0
  16. data/Manifest.txt +0 -1
  17. data/README.ja.md +300 -0
  18. data/README.md +286 -0
  19. data/Rakefile +33 -135
  20. data/Rakefile.cross +12 -13
  21. data/certs/ged.pem +24 -0
  22. data/certs/larskanis-2022.pem +26 -0
  23. data/certs/larskanis-2023.pem +24 -0
  24. data/ext/errorcodes.def +12 -0
  25. data/ext/errorcodes.rb +0 -0
  26. data/ext/errorcodes.txt +4 -1
  27. data/ext/extconf.rb +104 -25
  28. data/ext/gvl_wrappers.c +4 -0
  29. data/ext/gvl_wrappers.h +23 -0
  30. data/ext/pg.c +73 -58
  31. data/ext/pg.h +28 -5
  32. data/ext/pg_binary_decoder.c +80 -1
  33. data/ext/pg_binary_encoder.c +225 -1
  34. data/ext/pg_coder.c +96 -33
  35. data/ext/pg_connection.c +1010 -704
  36. data/ext/pg_copy_coder.c +351 -33
  37. data/ext/pg_errors.c +1 -1
  38. data/ext/pg_record_coder.c +50 -19
  39. data/ext/pg_result.c +177 -64
  40. data/ext/pg_text_decoder.c +29 -11
  41. data/ext/pg_text_encoder.c +29 -16
  42. data/ext/pg_tuple.c +83 -60
  43. data/ext/pg_type_map.c +44 -10
  44. data/ext/pg_type_map_all_strings.c +17 -3
  45. data/ext/pg_type_map_by_class.c +54 -27
  46. data/ext/pg_type_map_by_column.c +73 -31
  47. data/ext/pg_type_map_by_mri_type.c +48 -19
  48. data/ext/pg_type_map_by_oid.c +59 -27
  49. data/ext/pg_type_map_in_ruby.c +55 -21
  50. data/ext/pg_util.c +2 -2
  51. data/lib/pg/basic_type_map_based_on_result.rb +67 -0
  52. data/lib/pg/basic_type_map_for_queries.rb +198 -0
  53. data/lib/pg/basic_type_map_for_results.rb +104 -0
  54. data/lib/pg/basic_type_registry.rb +299 -0
  55. data/lib/pg/binary_decoder/date.rb +9 -0
  56. data/lib/pg/binary_decoder/timestamp.rb +26 -0
  57. data/lib/pg/binary_encoder/timestamp.rb +20 -0
  58. data/lib/pg/coder.rb +15 -13
  59. data/lib/pg/connection.rb +743 -83
  60. data/lib/pg/exceptions.rb +14 -1
  61. data/lib/pg/text_decoder/date.rb +18 -0
  62. data/lib/pg/text_decoder/inet.rb +9 -0
  63. data/lib/pg/text_decoder/json.rb +14 -0
  64. data/lib/pg/text_decoder/numeric.rb +9 -0
  65. data/lib/pg/text_decoder/timestamp.rb +30 -0
  66. data/lib/pg/text_encoder/date.rb +12 -0
  67. data/lib/pg/text_encoder/inet.rb +28 -0
  68. data/lib/pg/text_encoder/json.rb +14 -0
  69. data/lib/pg/text_encoder/numeric.rb +9 -0
  70. data/lib/pg/text_encoder/timestamp.rb +24 -0
  71. data/lib/pg/version.rb +4 -0
  72. data/lib/pg.rb +94 -39
  73. data/misc/openssl-pg-segfault.rb +31 -0
  74. data/misc/postgres/History.txt +9 -0
  75. data/misc/postgres/Manifest.txt +5 -0
  76. data/misc/postgres/README.txt +21 -0
  77. data/misc/postgres/Rakefile +21 -0
  78. data/misc/postgres/lib/postgres.rb +16 -0
  79. data/misc/ruby-pg/History.txt +9 -0
  80. data/misc/ruby-pg/Manifest.txt +5 -0
  81. data/misc/ruby-pg/README.txt +21 -0
  82. data/misc/ruby-pg/Rakefile +21 -0
  83. data/misc/ruby-pg/lib/ruby/pg.rb +16 -0
  84. data/pg.gemspec +34 -0
  85. data/rakelib/task_extension.rb +46 -0
  86. data/sample/array_insert.rb +20 -0
  87. data/sample/async_api.rb +102 -0
  88. data/sample/async_copyto.rb +39 -0
  89. data/sample/async_mixed.rb +56 -0
  90. data/sample/check_conn.rb +21 -0
  91. data/sample/copydata.rb +71 -0
  92. data/sample/copyfrom.rb +81 -0
  93. data/sample/copyto.rb +19 -0
  94. data/sample/cursor.rb +21 -0
  95. data/sample/disk_usage_report.rb +177 -0
  96. data/sample/issue-119.rb +94 -0
  97. data/sample/losample.rb +69 -0
  98. data/sample/minimal-testcase.rb +17 -0
  99. data/sample/notify_wait.rb +72 -0
  100. data/sample/pg_statistics.rb +285 -0
  101. data/sample/replication_monitor.rb +222 -0
  102. data/sample/test_binary_values.rb +33 -0
  103. data/sample/wal_shipper.rb +434 -0
  104. data/sample/warehouse_partitions.rb +311 -0
  105. data/translation/.po4a-version +7 -0
  106. data/translation/po/all.pot +936 -0
  107. data/translation/po/ja.po +1036 -0
  108. data/translation/po4a.cfg +12 -0
  109. data.tar.gz.sig +0 -0
  110. metadata +135 -207
  111. metadata.gz.sig +0 -0
  112. data/ChangeLog +0 -0
  113. data/History.rdoc +0 -578
  114. data/README.ja.rdoc +0 -13
  115. data/README.rdoc +0 -213
  116. data/lib/pg/basic_type_mapping.rb +0 -522
  117. data/lib/pg/binary_decoder.rb +0 -23
  118. data/lib/pg/constants.rb +0 -12
  119. data/lib/pg/text_decoder.rb +0 -46
  120. data/lib/pg/text_encoder.rb +0 -59
  121. data/spec/data/expected_trace.out +0 -26
  122. data/spec/data/random_binary_data +0 -0
  123. data/spec/helpers.rb +0 -380
  124. data/spec/pg/basic_type_mapping_spec.rb +0 -630
  125. data/spec/pg/connection_spec.rb +0 -1949
  126. data/spec/pg/connection_sync_spec.rb +0 -41
  127. data/spec/pg/result_spec.rb +0 -681
  128. data/spec/pg/tuple_spec.rb +0 -333
  129. data/spec/pg/type_map_by_class_spec.rb +0 -138
  130. data/spec/pg/type_map_by_column_spec.rb +0 -226
  131. data/spec/pg/type_map_by_mri_type_spec.rb +0 -136
  132. data/spec/pg/type_map_by_oid_spec.rb +0 -149
  133. data/spec/pg/type_map_in_ruby_spec.rb +0 -164
  134. data/spec/pg/type_map_spec.rb +0 -22
  135. data/spec/pg/type_spec.rb +0 -1123
  136. data/spec/pg_spec.rb +0 -50
@@ -0,0 +1,12 @@
1
+ [po_directory] po
2
+
3
+ [options] --master-charset UTF-8 \
4
+ --localized-charset UTF-8 \
5
+ --master-language en \
6
+ --option markdown \
7
+ --keep 0 \
8
+ --package-name Pg \
9
+ --package-version 1.4.6 \
10
+ --copyright-holder 'Pg authors'
11
+
12
+ [type:text] ../README.md ja:../README.ja.md
data.tar.gz.sig CHANGED
Binary file
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: 1.2.3
4
+ version: 1.5.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Granger
@@ -11,177 +11,29 @@ bindir: bin
11
11
  cert_chain:
12
12
  - |
13
13
  -----BEGIN CERTIFICATE-----
14
- MIID+DCCAmCgAwIBAgIBAjANBgkqhkiG9w0BAQsFADAiMSAwHgYDVQQDDBdnZWQv
15
- REM9RmFlcmllTVVEL0RDPW9yZzAeFw0xOTEyMjQyMDE5NTFaFw0yMDEyMjMyMDE5
16
- NTFaMCIxIDAeBgNVBAMMF2dlZC9EQz1GYWVyaWVNVUQvREM9b3JnMIIBojANBgkq
17
- hkiG9w0BAQEFAAOCAY8AMIIBigKCAYEAvyVhkRzvlEs0fe7145BYLfN6njX9ih5H
18
- L60U0p0euIurpv84op9CNKF9tx+1WKwyQvQP7qFGuZxkSUuWcP/sFhDXL1lWUuIl
19
- M4uHbGCRmOshDrF4dgnBeOvkHr1fIhPlJm5FO+Vew8tSQmlDsosxLUx+VB7DrVFO
20
- 5PU2AEbf04GGSrmqADGWXeaslaoRdb1fu/0M5qfPTRn5V39sWD9umuDAF9qqil/x
21
- Sl6phTvgBrG8GExHbNZpLARd3xrBYLEFsX7RvBn2UPfgsrtvpdXjsHGfpT3IPN+B
22
- vQ66lts4alKC69TE5cuKasWBm+16A4aEe3XdZBRNmtOu/g81gvwA7fkJHKllJuaI
23
- dXzdHqq+zbGZVSQ7pRYHYomD0IiDe1DbIouFnPWmagaBnGHwXkDT2bKKP+s2v21m
24
- ozilJg4aar2okb/RA6VS87o+d7g6LpDDMMQjH4G9OPnJENLdhu8KnPw/ivSVvQw7
25
- N2I4L/ZOIe2DIVuYH7aLHfjZDQv/mNgpAgMBAAGjOTA3MAkGA1UdEwQCMAAwCwYD
26
- VR0PBAQDAgSwMB0GA1UdDgQWBBRyjf55EbrHagiRLqt5YAd3yb8k4DANBgkqhkiG
27
- 9w0BAQsFAAOCAYEAifxlz7x0EfT3fjhM520ZEIrWa+tLMuLKNefkY18u8tZnx4EX
28
- Xxwh3tna3fvNfrOrdY5leIj1dbv4FTRg+gIBnIxAySqvpGvI/Axg5EdYbwninCLL
29
- LAKCmRo+5QwaPMYN2zdHIjGrp8jg1neCo5zy6tVvyTv0DMI6FLrydVJYduMMDFSy
30
- gQKR1rVOcCJtnBnLCF9+kKEUKohAHOmGsE7OBZFnjMIpH5yUDUVJKByv0gIipFt0
31
- 1T6zff6oVU0w8WBiNKR381+6sF3wIZVnVY0XeJg6hNL+YecE8ILxLhHTmtT/BO0S
32
- 3xPze9uXDR+iD6HYl8KU5QEg/dXFPhfQb512vVkTJDZvMcwu6PxDUjHFChLjAji/
33
- AZXjg1C5E9znTkeUR8ieU9F1MOKoiH57a5lYSTI8Ga8PpsNXTxNeXc16Ob26CqrJ
34
- 83uuAYSy65yXDGXXPVBeKPVnYrqp91pqpS5Nh7wfuiCrE8lgU8PATh7K4BV1UhAT
35
- 0MHbAT42wTYkfUj3
14
+ MIIDLjCCAhagAwIBAgIBCzANBgkqhkiG9w0BAQsFADA9MQ4wDAYDVQQDDAVrYW5p
15
+ czEXMBUGCgmSJomT8ixkARkWB2NvbWNhcmQxEjAQBgoJkiaJk/IsZAEZFgJkZTAe
16
+ Fw0yMzA0MjgwOTI0NDhaFw0yNDA0MjcwOTI0NDhaMD0xDjAMBgNVBAMMBWthbmlz
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
+ x17ugO3IOsjEJwW7KP4wDQYJKoZIhvcNAQELBQADggEBACAxNXwfMGG7paZjnG/c
26
+ smdi/ocW2GmCNtILaSzDZqlD5LoA68MiO7u5vwWyBaDJ6giUB330VJoGRbWMxvxN
27
+ JU6Bnwa4yYp9YtF91wYIi7FXwIrCPKd9bk3bf4M5wECdsv+zvVceq2zRXqD7fci8
28
+ 1LRG8ort/f4TgaT7B4aNwOaabA2UT6u0FGeglqxLkhir86MY3QQyBfJZUoTKWGkz
29
+ S9a7GXsYpe+8HMOaE4+SZp8SORKPgATND5m/4VdzuO59VXjE5UP7QpXigbxAt7H7
30
+ ciK5Du2ZDhowmWzZwNzR7VvVmfAK6RQJlRB03VkkQRWGld5yApOrYDne6WbD8kE0
31
+ uM8=
36
32
  -----END CERTIFICATE-----
37
- date: 2020-03-18 00:00:00.000000000 Z
38
- dependencies:
39
- - !ruby/object:Gem::Dependency
40
- name: hoe-mercurial
41
- requirement: !ruby/object:Gem::Requirement
42
- requirements:
43
- - - "~>"
44
- - !ruby/object:Gem::Version
45
- version: '1.4'
46
- type: :development
47
- prerelease: false
48
- version_requirements: !ruby/object:Gem::Requirement
49
- requirements:
50
- - - "~>"
51
- - !ruby/object:Gem::Version
52
- version: '1.4'
53
- - !ruby/object:Gem::Dependency
54
- name: hoe-deveiate
55
- requirement: !ruby/object:Gem::Requirement
56
- requirements:
57
- - - "~>"
58
- - !ruby/object:Gem::Version
59
- version: '0.10'
60
- type: :development
61
- prerelease: false
62
- version_requirements: !ruby/object:Gem::Requirement
63
- requirements:
64
- - - "~>"
65
- - !ruby/object:Gem::Version
66
- version: '0.10'
67
- - !ruby/object:Gem::Dependency
68
- name: hoe-highline
69
- requirement: !ruby/object:Gem::Requirement
70
- requirements:
71
- - - "~>"
72
- - !ruby/object:Gem::Version
73
- version: '0.2'
74
- type: :development
75
- prerelease: false
76
- version_requirements: !ruby/object:Gem::Requirement
77
- requirements:
78
- - - "~>"
79
- - !ruby/object:Gem::Version
80
- version: '0.2'
81
- - !ruby/object:Gem::Dependency
82
- name: rake-compiler
83
- requirement: !ruby/object:Gem::Requirement
84
- requirements:
85
- - - "~>"
86
- - !ruby/object:Gem::Version
87
- version: '1.0'
88
- type: :development
89
- prerelease: false
90
- version_requirements: !ruby/object:Gem::Requirement
91
- requirements:
92
- - - "~>"
93
- - !ruby/object:Gem::Version
94
- version: '1.0'
95
- - !ruby/object:Gem::Dependency
96
- name: rake-compiler-dock
97
- requirement: !ruby/object:Gem::Requirement
98
- requirements:
99
- - - "~>"
100
- - !ruby/object:Gem::Version
101
- version: '1.0'
102
- type: :development
103
- prerelease: false
104
- version_requirements: !ruby/object:Gem::Requirement
105
- requirements:
106
- - - "~>"
107
- - !ruby/object:Gem::Version
108
- version: '1.0'
109
- - !ruby/object:Gem::Dependency
110
- name: hoe-bundler
111
- requirement: !ruby/object:Gem::Requirement
112
- requirements:
113
- - - "~>"
114
- - !ruby/object:Gem::Version
115
- version: '1.0'
116
- type: :development
117
- prerelease: false
118
- version_requirements: !ruby/object:Gem::Requirement
119
- requirements:
120
- - - "~>"
121
- - !ruby/object:Gem::Version
122
- version: '1.0'
123
- - !ruby/object:Gem::Dependency
124
- name: rspec
125
- requirement: !ruby/object:Gem::Requirement
126
- requirements:
127
- - - "~>"
128
- - !ruby/object:Gem::Version
129
- version: '3.5'
130
- type: :development
131
- prerelease: false
132
- version_requirements: !ruby/object:Gem::Requirement
133
- requirements:
134
- - - "~>"
135
- - !ruby/object:Gem::Version
136
- version: '3.5'
137
- - !ruby/object:Gem::Dependency
138
- name: rdoc
139
- requirement: !ruby/object:Gem::Requirement
140
- requirements:
141
- - - "~>"
142
- - !ruby/object:Gem::Version
143
- version: '5.1'
144
- type: :development
145
- prerelease: false
146
- version_requirements: !ruby/object:Gem::Requirement
147
- requirements:
148
- - - "~>"
149
- - !ruby/object:Gem::Version
150
- version: '5.1'
151
- - !ruby/object:Gem::Dependency
152
- name: hoe
153
- requirement: !ruby/object:Gem::Requirement
154
- requirements:
155
- - - "~>"
156
- - !ruby/object:Gem::Version
157
- version: '3.20'
158
- type: :development
159
- prerelease: false
160
- version_requirements: !ruby/object:Gem::Requirement
161
- requirements:
162
- - - "~>"
163
- - !ruby/object:Gem::Version
164
- version: '3.20'
165
- description: |-
166
- Pg is the Ruby interface to the {PostgreSQL RDBMS}[http://www.postgresql.org/].
167
-
168
- It works with {PostgreSQL 9.2 and later}[http://www.postgresql.org/support/versioning/].
169
-
170
- A small example usage:
171
-
172
- #!/usr/bin/env ruby
173
-
174
- require 'pg'
175
-
176
- # Output a table of current connections to the DB
177
- conn = PG.connect( dbname: 'sales' )
178
- conn.exec( "SELECT * FROM pg_stat_activity" ) do |result|
179
- puts " PID | User | Query"
180
- result.each do |row|
181
- puts " %7d | %-16s | %s " %
182
- row.values_at('procpid', 'usename', 'current_query')
183
- end
184
- end
33
+ date: 2023-09-01 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.
185
37
  email:
186
38
  - ged@FaerieMUD.org
187
39
  - lars@greiz-reinsdorf.de
@@ -190,17 +42,15 @@ extensions:
190
42
  - ext/extconf.rb
191
43
  extra_rdoc_files:
192
44
  - Contributors.rdoc
193
- - History.rdoc
194
- - Manifest.txt
45
+ - History.md
195
46
  - README-OS_X.rdoc
196
47
  - README-Windows.rdoc
197
- - README.ja.rdoc
198
- - README.rdoc
199
- - ext/errorcodes.txt
200
- - POSTGRES
201
- - LICENSE
48
+ - README.ja.md
49
+ - README.md
202
50
  - ext/gvl_wrappers.c
51
+ - ext/gvl_wrappers.h
203
52
  - ext/pg.c
53
+ - ext/pg.h
204
54
  - ext/pg_binary_decoder.c
205
55
  - ext/pg_binary_encoder.c
206
56
  - ext/pg_coder.c
@@ -220,21 +70,61 @@ extra_rdoc_files:
220
70
  - ext/pg_type_map_by_oid.c
221
71
  - ext/pg_type_map_in_ruby.c
222
72
  - ext/pg_util.c
73
+ - ext/pg_util.h
74
+ - lib/pg.rb
75
+ - lib/pg/basic_type_map_based_on_result.rb
76
+ - lib/pg/basic_type_map_for_queries.rb
77
+ - lib/pg/basic_type_map_for_results.rb
78
+ - lib/pg/basic_type_registry.rb
79
+ - lib/pg/binary_decoder/date.rb
80
+ - lib/pg/binary_decoder/timestamp.rb
81
+ - lib/pg/binary_encoder/timestamp.rb
82
+ - lib/pg/coder.rb
83
+ - lib/pg/connection.rb
84
+ - lib/pg/exceptions.rb
85
+ - lib/pg/result.rb
86
+ - lib/pg/text_decoder/date.rb
87
+ - lib/pg/text_decoder/inet.rb
88
+ - lib/pg/text_decoder/json.rb
89
+ - lib/pg/text_decoder/numeric.rb
90
+ - lib/pg/text_decoder/timestamp.rb
91
+ - lib/pg/text_encoder/date.rb
92
+ - lib/pg/text_encoder/inet.rb
93
+ - lib/pg/text_encoder/json.rb
94
+ - lib/pg/text_encoder/numeric.rb
95
+ - lib/pg/text_encoder/timestamp.rb
96
+ - lib/pg/tuple.rb
97
+ - lib/pg/type_map_by_column.rb
98
+ - lib/pg/version.rb
223
99
  files:
100
+ - ".appveyor.yml"
101
+ - ".gems"
224
102
  - ".gemtest"
103
+ - ".github/workflows/binary-gems.yml"
104
+ - ".github/workflows/source-gem.yml"
105
+ - ".gitignore"
106
+ - ".hgsigs"
107
+ - ".hgtags"
108
+ - ".irbrc"
109
+ - ".pryrc"
110
+ - ".tm_properties"
111
+ - ".travis.yml"
225
112
  - BSDL
226
- - ChangeLog
227
113
  - Contributors.rdoc
228
- - History.rdoc
114
+ - Gemfile
115
+ - History.md
229
116
  - LICENSE
230
117
  - Manifest.txt
231
118
  - POSTGRES
232
119
  - README-OS_X.rdoc
233
120
  - README-Windows.rdoc
234
- - README.ja.rdoc
235
- - README.rdoc
121
+ - README.ja.md
122
+ - README.md
236
123
  - Rakefile
237
124
  - Rakefile.cross
125
+ - certs/ged.pem
126
+ - certs/larskanis-2022.pem
127
+ - certs/larskanis-2023.pem
238
128
  - ext/errorcodes.def
239
129
  - ext/errorcodes.rb
240
130
  - ext/errorcodes.txt
@@ -267,57 +157,95 @@ files:
267
157
  - ext/vc/pg_18/pg.vcproj
268
158
  - ext/vc/pg_19/pg_19.vcproj
269
159
  - lib/pg.rb
270
- - lib/pg/basic_type_mapping.rb
271
- - lib/pg/binary_decoder.rb
160
+ - lib/pg/basic_type_map_based_on_result.rb
161
+ - lib/pg/basic_type_map_for_queries.rb
162
+ - lib/pg/basic_type_map_for_results.rb
163
+ - lib/pg/basic_type_registry.rb
164
+ - lib/pg/binary_decoder/date.rb
165
+ - lib/pg/binary_decoder/timestamp.rb
166
+ - lib/pg/binary_encoder/timestamp.rb
272
167
  - lib/pg/coder.rb
273
168
  - lib/pg/connection.rb
274
- - lib/pg/constants.rb
275
169
  - lib/pg/exceptions.rb
276
170
  - lib/pg/result.rb
277
- - lib/pg/text_decoder.rb
278
- - lib/pg/text_encoder.rb
171
+ - lib/pg/text_decoder/date.rb
172
+ - lib/pg/text_decoder/inet.rb
173
+ - lib/pg/text_decoder/json.rb
174
+ - lib/pg/text_decoder/numeric.rb
175
+ - lib/pg/text_decoder/timestamp.rb
176
+ - lib/pg/text_encoder/date.rb
177
+ - lib/pg/text_encoder/inet.rb
178
+ - lib/pg/text_encoder/json.rb
179
+ - lib/pg/text_encoder/numeric.rb
180
+ - lib/pg/text_encoder/timestamp.rb
279
181
  - lib/pg/tuple.rb
280
182
  - lib/pg/type_map_by_column.rb
281
- - spec/data/expected_trace.out
282
- - spec/data/random_binary_data
283
- - spec/helpers.rb
284
- - spec/pg/basic_type_mapping_spec.rb
285
- - spec/pg/connection_spec.rb
286
- - spec/pg/connection_sync_spec.rb
287
- - spec/pg/result_spec.rb
288
- - spec/pg/tuple_spec.rb
289
- - spec/pg/type_map_by_class_spec.rb
290
- - spec/pg/type_map_by_column_spec.rb
291
- - spec/pg/type_map_by_mri_type_spec.rb
292
- - spec/pg/type_map_by_oid_spec.rb
293
- - spec/pg/type_map_in_ruby_spec.rb
294
- - spec/pg/type_map_spec.rb
295
- - spec/pg/type_spec.rb
296
- - spec/pg_spec.rb
183
+ - lib/pg/version.rb
184
+ - misc/openssl-pg-segfault.rb
185
+ - misc/postgres/History.txt
186
+ - misc/postgres/Manifest.txt
187
+ - misc/postgres/README.txt
188
+ - misc/postgres/Rakefile
189
+ - misc/postgres/lib/postgres.rb
190
+ - misc/ruby-pg/History.txt
191
+ - misc/ruby-pg/Manifest.txt
192
+ - misc/ruby-pg/README.txt
193
+ - misc/ruby-pg/Rakefile
194
+ - misc/ruby-pg/lib/ruby/pg.rb
195
+ - pg.gemspec
196
+ - rakelib/task_extension.rb
197
+ - sample/array_insert.rb
198
+ - sample/async_api.rb
199
+ - sample/async_copyto.rb
200
+ - sample/async_mixed.rb
201
+ - sample/check_conn.rb
202
+ - sample/copydata.rb
203
+ - sample/copyfrom.rb
204
+ - sample/copyto.rb
205
+ - sample/cursor.rb
206
+ - sample/disk_usage_report.rb
207
+ - sample/issue-119.rb
208
+ - sample/losample.rb
209
+ - sample/minimal-testcase.rb
210
+ - sample/notify_wait.rb
211
+ - sample/pg_statistics.rb
212
+ - sample/replication_monitor.rb
213
+ - sample/test_binary_values.rb
214
+ - sample/wal_shipper.rb
215
+ - sample/warehouse_partitions.rb
216
+ - translation/.po4a-version
217
+ - translation/po/all.pot
218
+ - translation/po/ja.po
219
+ - translation/po4a.cfg
297
220
  homepage: https://github.com/ged/ruby-pg
298
221
  licenses:
299
222
  - BSD-2-Clause
300
223
  metadata:
301
224
  homepage_uri: https://github.com/ged/ruby-pg
225
+ source_code_uri: https://github.com/ged/ruby-pg
226
+ changelog_uri: https://github.com/ged/ruby-pg/blob/master/History.md
227
+ documentation_uri: http://deveiate.org/code/pg
302
228
  post_install_message:
303
229
  rdoc_options:
304
230
  - "--main"
305
- - README.rdoc
231
+ - README.md
232
+ - "--title"
233
+ - 'PG: The Ruby PostgreSQL Driver'
306
234
  require_paths:
307
235
  - lib
308
236
  required_ruby_version: !ruby/object:Gem::Requirement
309
237
  requirements:
310
238
  - - ">="
311
239
  - !ruby/object:Gem::Version
312
- version: '2.2'
240
+ version: '2.5'
313
241
  required_rubygems_version: !ruby/object:Gem::Requirement
314
242
  requirements:
315
243
  - - ">="
316
244
  - !ruby/object:Gem::Version
317
245
  version: '0'
318
246
  requirements: []
319
- rubygems_version: 3.0.6
247
+ rubygems_version: 3.4.15
320
248
  signing_key:
321
249
  specification_version: 4
322
- summary: Pg is the Ruby interface to the {PostgreSQL RDBMS}[http://www.postgresql.org/]
250
+ summary: Pg is the Ruby interface to the PostgreSQL RDBMS
323
251
  test_files: []
metadata.gz.sig CHANGED
Binary file
data/ChangeLog DELETED
File without changes