cipherstash-pg 1.0.0.beta.1-x86_64-darwin-22
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/BSDL +22 -0
- data/Contributors.rdoc +46 -0
- data/Gemfile +14 -0
- data/History.rdoc +789 -0
- data/LICENSE +56 -0
- data/Manifest.txt +72 -0
- data/POSTGRES +23 -0
- data/README-OS_X.rdoc +68 -0
- data/README-Windows.rdoc +56 -0
- data/README.ja.rdoc +13 -0
- data/README.rdoc +233 -0
- data/Rakefile +115 -0
- data/certs/ged.pem +24 -0
- data/certs/larskanis-2022.pem +26 -0
- data/cipherstash-pg.gemspec +31 -0
- data/lib/2.7/pg_ext.bundle +0 -0
- data/lib/3.0/pg_ext.bundle +0 -0
- data/lib/3.1/pg_ext.bundle +0 -0
- data/lib/3.2/pg_ext.bundle +0 -0
- data/lib/cipherstash-pg.rb +15 -0
- data/lib/libpq.5.dylib +0 -0
- data/lib/pg/basic_type_map_based_on_result.rb +47 -0
- data/lib/pg/basic_type_map_for_queries.rb +193 -0
- data/lib/pg/basic_type_map_for_results.rb +81 -0
- data/lib/pg/basic_type_registry.rb +301 -0
- data/lib/pg/binary_decoder.rb +23 -0
- data/lib/pg/coder.rb +104 -0
- data/lib/pg/connection.rb +878 -0
- data/lib/pg/constants.rb +12 -0
- data/lib/pg/exceptions.rb +18 -0
- data/lib/pg/result.rb +43 -0
- data/lib/pg/text_decoder.rb +46 -0
- data/lib/pg/text_encoder.rb +59 -0
- data/lib/pg/tuple.rb +30 -0
- data/lib/pg/type_map_by_column.rb +16 -0
- data/lib/pg/version.rb +4 -0
- data/lib/pg.rb +55 -0
- data/misc/openssl-pg-segfault.rb +31 -0
- data/misc/postgres/History.txt +9 -0
- data/misc/postgres/Manifest.txt +5 -0
- data/misc/postgres/README.txt +21 -0
- data/misc/postgres/Rakefile +21 -0
- data/misc/postgres/lib/postgres.rb +16 -0
- data/misc/ruby-pg/History.txt +9 -0
- data/misc/ruby-pg/Manifest.txt +5 -0
- data/misc/ruby-pg/README.txt +21 -0
- data/misc/ruby-pg/Rakefile +21 -0
- data/misc/ruby-pg/lib/ruby/pg.rb +16 -0
- data/rakelib/task_extension.rb +46 -0
- data/sample/array_insert.rb +20 -0
- data/sample/async_api.rb +102 -0
- data/sample/async_copyto.rb +39 -0
- data/sample/async_mixed.rb +56 -0
- data/sample/check_conn.rb +21 -0
- data/sample/copydata.rb +71 -0
- data/sample/copyfrom.rb +81 -0
- data/sample/copyto.rb +19 -0
- data/sample/cursor.rb +21 -0
- data/sample/disk_usage_report.rb +177 -0
- data/sample/issue-119.rb +94 -0
- data/sample/losample.rb +69 -0
- data/sample/minimal-testcase.rb +17 -0
- data/sample/notify_wait.rb +72 -0
- data/sample/pg_statistics.rb +285 -0
- data/sample/replication_monitor.rb +222 -0
- data/sample/test_binary_values.rb +33 -0
- data/sample/wal_shipper.rb +434 -0
- data/sample/warehouse_partitions.rb +311 -0
- data/vendor/database-extensions/install.sql +317 -0
- data/vendor/database-extensions/uninstall.sql +20 -0
- metadata +118 -0
metadata
ADDED
@@ -0,0 +1,118 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: cipherstash-pg
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0.beta.1
|
5
|
+
platform: x86_64-darwin-22
|
6
|
+
authors:
|
7
|
+
- CipherStash
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2023-04-06 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: CipherStash PG is a drop in replacement of PG that provides transparent
|
14
|
+
data encryption, with a PG-compatible API
|
15
|
+
email:
|
16
|
+
- engineers@cipherstash.com
|
17
|
+
executables: []
|
18
|
+
extensions: []
|
19
|
+
extra_rdoc_files: []
|
20
|
+
files:
|
21
|
+
- "./BSDL"
|
22
|
+
- "./Contributors.rdoc"
|
23
|
+
- "./Gemfile"
|
24
|
+
- "./History.rdoc"
|
25
|
+
- "./LICENSE"
|
26
|
+
- "./Manifest.txt"
|
27
|
+
- "./POSTGRES"
|
28
|
+
- "./README-OS_X.rdoc"
|
29
|
+
- "./README-Windows.rdoc"
|
30
|
+
- "./README.ja.rdoc"
|
31
|
+
- "./README.rdoc"
|
32
|
+
- "./Rakefile"
|
33
|
+
- "./certs/ged.pem"
|
34
|
+
- "./certs/larskanis-2022.pem"
|
35
|
+
- "./cipherstash-pg.gemspec"
|
36
|
+
- "./lib/2.7/pg_ext.bundle"
|
37
|
+
- "./lib/3.0/pg_ext.bundle"
|
38
|
+
- "./lib/3.1/pg_ext.bundle"
|
39
|
+
- "./lib/3.2/pg_ext.bundle"
|
40
|
+
- "./lib/cipherstash-pg.rb"
|
41
|
+
- "./lib/libpq.5.dylib"
|
42
|
+
- "./lib/pg.rb"
|
43
|
+
- "./lib/pg/basic_type_map_based_on_result.rb"
|
44
|
+
- "./lib/pg/basic_type_map_for_queries.rb"
|
45
|
+
- "./lib/pg/basic_type_map_for_results.rb"
|
46
|
+
- "./lib/pg/basic_type_registry.rb"
|
47
|
+
- "./lib/pg/binary_decoder.rb"
|
48
|
+
- "./lib/pg/coder.rb"
|
49
|
+
- "./lib/pg/connection.rb"
|
50
|
+
- "./lib/pg/constants.rb"
|
51
|
+
- "./lib/pg/exceptions.rb"
|
52
|
+
- "./lib/pg/result.rb"
|
53
|
+
- "./lib/pg/text_decoder.rb"
|
54
|
+
- "./lib/pg/text_encoder.rb"
|
55
|
+
- "./lib/pg/tuple.rb"
|
56
|
+
- "./lib/pg/type_map_by_column.rb"
|
57
|
+
- "./lib/pg/version.rb"
|
58
|
+
- "./misc/openssl-pg-segfault.rb"
|
59
|
+
- "./misc/postgres/History.txt"
|
60
|
+
- "./misc/postgres/Manifest.txt"
|
61
|
+
- "./misc/postgres/README.txt"
|
62
|
+
- "./misc/postgres/Rakefile"
|
63
|
+
- "./misc/postgres/lib/postgres.rb"
|
64
|
+
- "./misc/ruby-pg/History.txt"
|
65
|
+
- "./misc/ruby-pg/Manifest.txt"
|
66
|
+
- "./misc/ruby-pg/README.txt"
|
67
|
+
- "./misc/ruby-pg/Rakefile"
|
68
|
+
- "./misc/ruby-pg/lib/ruby/pg.rb"
|
69
|
+
- "./rakelib/task_extension.rb"
|
70
|
+
- "./sample/array_insert.rb"
|
71
|
+
- "./sample/async_api.rb"
|
72
|
+
- "./sample/async_copyto.rb"
|
73
|
+
- "./sample/async_mixed.rb"
|
74
|
+
- "./sample/check_conn.rb"
|
75
|
+
- "./sample/copydata.rb"
|
76
|
+
- "./sample/copyfrom.rb"
|
77
|
+
- "./sample/copyto.rb"
|
78
|
+
- "./sample/cursor.rb"
|
79
|
+
- "./sample/disk_usage_report.rb"
|
80
|
+
- "./sample/issue-119.rb"
|
81
|
+
- "./sample/losample.rb"
|
82
|
+
- "./sample/minimal-testcase.rb"
|
83
|
+
- "./sample/notify_wait.rb"
|
84
|
+
- "./sample/pg_statistics.rb"
|
85
|
+
- "./sample/replication_monitor.rb"
|
86
|
+
- "./sample/test_binary_values.rb"
|
87
|
+
- "./sample/wal_shipper.rb"
|
88
|
+
- "./sample/warehouse_partitions.rb"
|
89
|
+
- "./vendor/database-extensions/install.sql"
|
90
|
+
- "./vendor/database-extensions/uninstall.sql"
|
91
|
+
homepage: https://github.com/cipherstash/cipherstash-pg
|
92
|
+
licenses:
|
93
|
+
- BSD-2-Clause
|
94
|
+
metadata:
|
95
|
+
homepage_uri: https://github.com/cipherstash/cipherstash-pg
|
96
|
+
source_code_uri: https://github.com/cipherstash/cipherstash-pg
|
97
|
+
documentation_uri: http://deveiate.org/code/pg
|
98
|
+
post_install_message:
|
99
|
+
rdoc_options: []
|
100
|
+
require_paths:
|
101
|
+
- lib
|
102
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
103
|
+
requirements:
|
104
|
+
- - ">="
|
105
|
+
- !ruby/object:Gem::Version
|
106
|
+
version: '2.7'
|
107
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
108
|
+
requirements:
|
109
|
+
- - ">"
|
110
|
+
- !ruby/object:Gem::Version
|
111
|
+
version: 1.3.1
|
112
|
+
requirements: []
|
113
|
+
rubygems_version: 3.4.6
|
114
|
+
signing_key:
|
115
|
+
specification_version: 4
|
116
|
+
summary: CipherStash PG is a drop in replacement of PG that provides transparent data
|
117
|
+
encryption
|
118
|
+
test_files: []
|