cipherstash-pg 1.0.0.beta.1-aarch64-linux

Sign up to get free protection for your applications and to get access to all the features.
Files changed (72) hide show
  1. checksums.yaml +7 -0
  2. data/BSDL +22 -0
  3. data/Contributors.rdoc +46 -0
  4. data/Gemfile +14 -0
  5. data/History.rdoc +789 -0
  6. data/LICENSE +56 -0
  7. data/Manifest.txt +72 -0
  8. data/POSTGRES +23 -0
  9. data/README-OS_X.rdoc +68 -0
  10. data/README-Windows.rdoc +56 -0
  11. data/README.ja.rdoc +13 -0
  12. data/README.rdoc +233 -0
  13. data/Rakefile +115 -0
  14. data/certs/ged.pem +24 -0
  15. data/certs/larskanis-2022.pem +26 -0
  16. data/cipherstash-pg.gemspec +31 -0
  17. data/lib/2.7/pg_ext.so +0 -0
  18. data/lib/3.0/pg_ext.so +0 -0
  19. data/lib/3.1/pg_ext.so +0 -0
  20. data/lib/3.2/pg_ext.so +0 -0
  21. data/lib/cipherstash-pg.rb +15 -0
  22. data/lib/libpq.so.5 +0 -0
  23. data/lib/pg/basic_type_map_based_on_result.rb +47 -0
  24. data/lib/pg/basic_type_map_for_queries.rb +193 -0
  25. data/lib/pg/basic_type_map_for_results.rb +81 -0
  26. data/lib/pg/basic_type_registry.rb +301 -0
  27. data/lib/pg/binary_decoder.rb +23 -0
  28. data/lib/pg/coder.rb +104 -0
  29. data/lib/pg/connection.rb +878 -0
  30. data/lib/pg/constants.rb +12 -0
  31. data/lib/pg/exceptions.rb +18 -0
  32. data/lib/pg/result.rb +43 -0
  33. data/lib/pg/text_decoder.rb +46 -0
  34. data/lib/pg/text_encoder.rb +59 -0
  35. data/lib/pg/tuple.rb +30 -0
  36. data/lib/pg/type_map_by_column.rb +16 -0
  37. data/lib/pg/version.rb +4 -0
  38. data/lib/pg.rb +55 -0
  39. data/misc/openssl-pg-segfault.rb +31 -0
  40. data/misc/postgres/History.txt +9 -0
  41. data/misc/postgres/Manifest.txt +5 -0
  42. data/misc/postgres/README.txt +21 -0
  43. data/misc/postgres/Rakefile +21 -0
  44. data/misc/postgres/lib/postgres.rb +16 -0
  45. data/misc/ruby-pg/History.txt +9 -0
  46. data/misc/ruby-pg/Manifest.txt +5 -0
  47. data/misc/ruby-pg/README.txt +21 -0
  48. data/misc/ruby-pg/Rakefile +21 -0
  49. data/misc/ruby-pg/lib/ruby/pg.rb +16 -0
  50. data/rakelib/task_extension.rb +46 -0
  51. data/sample/array_insert.rb +20 -0
  52. data/sample/async_api.rb +102 -0
  53. data/sample/async_copyto.rb +39 -0
  54. data/sample/async_mixed.rb +56 -0
  55. data/sample/check_conn.rb +21 -0
  56. data/sample/copydata.rb +71 -0
  57. data/sample/copyfrom.rb +81 -0
  58. data/sample/copyto.rb +19 -0
  59. data/sample/cursor.rb +21 -0
  60. data/sample/disk_usage_report.rb +177 -0
  61. data/sample/issue-119.rb +94 -0
  62. data/sample/losample.rb +69 -0
  63. data/sample/minimal-testcase.rb +17 -0
  64. data/sample/notify_wait.rb +72 -0
  65. data/sample/pg_statistics.rb +285 -0
  66. data/sample/replication_monitor.rb +222 -0
  67. data/sample/test_binary_values.rb +33 -0
  68. data/sample/wal_shipper.rb +434 -0
  69. data/sample/warehouse_partitions.rb +311 -0
  70. data/vendor/database-extensions/install.sql +317 -0
  71. data/vendor/database-extensions/uninstall.sql +20 -0
  72. 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: aarch64-linux
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.so"
37
+ - "./lib/3.0/pg_ext.so"
38
+ - "./lib/3.1/pg_ext.so"
39
+ - "./lib/3.2/pg_ext.so"
40
+ - "./lib/cipherstash-pg.rb"
41
+ - "./lib/libpq.so.5"
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: []