cipherstash-pg 1.0.0.beta.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (88) hide show
  1. checksums.yaml +7 -0
  2. data/.appveyor.yml +42 -0
  3. data/.gems +6 -0
  4. data/.gemtest +0 -0
  5. data/.github/workflows/binary-gems.yml +117 -0
  6. data/.github/workflows/source-gem.yml +137 -0
  7. data/.gitignore +19 -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 +22 -0
  15. data/Contributors.rdoc +46 -0
  16. data/Gemfile +14 -0
  17. data/Gemfile.lock +45 -0
  18. data/History.md +804 -0
  19. data/LICENSE +56 -0
  20. data/Manifest.txt +72 -0
  21. data/POSTGRES +23 -0
  22. data/README-OS_X.rdoc +68 -0
  23. data/README-Windows.rdoc +56 -0
  24. data/README.ja.md +266 -0
  25. data/README.md +272 -0
  26. data/Rakefile +76 -0
  27. data/Rakefile.cross +298 -0
  28. data/certs/ged.pem +24 -0
  29. data/certs/larskanis-2022.pem +26 -0
  30. data/certs/larskanis-2023.pem +24 -0
  31. data/cipherstash-pg.gemspec +0 -0
  32. data/lib/2.7/pg_ext.so +0 -0
  33. data/lib/3.0/pg_ext.so +0 -0
  34. data/lib/3.1/pg_ext.so +0 -0
  35. data/lib/3.2/pg_ext.so +0 -0
  36. data/lib/cipherstash-pg/basic_type_map_based_on_result.rb +11 -0
  37. data/lib/cipherstash-pg/basic_type_map_for_queries.rb +113 -0
  38. data/lib/cipherstash-pg/basic_type_map_for_results.rb +30 -0
  39. data/lib/cipherstash-pg/basic_type_registry.rb +206 -0
  40. data/lib/cipherstash-pg/binary_decoder.rb +21 -0
  41. data/lib/cipherstash-pg/coder.rb +82 -0
  42. data/lib/cipherstash-pg/connection.rb +467 -0
  43. data/lib/cipherstash-pg/constants.rb +3 -0
  44. data/lib/cipherstash-pg/exceptions.rb +19 -0
  45. data/lib/cipherstash-pg/result.rb +22 -0
  46. data/lib/cipherstash-pg/text_decoder.rb +43 -0
  47. data/lib/cipherstash-pg/text_encoder.rb +67 -0
  48. data/lib/cipherstash-pg/tuple.rb +24 -0
  49. data/lib/cipherstash-pg/type_map_by_column.rb +11 -0
  50. data/lib/cipherstash-pg/version.rb +3 -0
  51. data/lib/cipherstash-pg.rb +60 -0
  52. data/lib/libpq.so.5 +0 -0
  53. data/misc/openssl-pg-segfault.rb +21 -0
  54. data/misc/postgres/History.txt +9 -0
  55. data/misc/postgres/Manifest.txt +5 -0
  56. data/misc/postgres/README.txt +21 -0
  57. data/misc/postgres/Rakefile +14 -0
  58. data/misc/postgres/lib/postgres.rb +12 -0
  59. data/misc/ruby-pg/History.txt +9 -0
  60. data/misc/ruby-pg/Manifest.txt +5 -0
  61. data/misc/ruby-pg/README.txt +21 -0
  62. data/misc/ruby-pg/Rakefile +14 -0
  63. data/misc/ruby-pg/lib/ruby/pg.rb +12 -0
  64. data/rakelib/task_extension.rb +32 -0
  65. data/sample/array_insert.rb +7 -0
  66. data/sample/async_api.rb +60 -0
  67. data/sample/async_copyto.rb +24 -0
  68. data/sample/async_mixed.rb +28 -0
  69. data/sample/check_conn.rb +9 -0
  70. data/sample/copydata.rb +21 -0
  71. data/sample/copyfrom.rb +29 -0
  72. data/sample/copyto.rb +13 -0
  73. data/sample/cursor.rb +11 -0
  74. data/sample/disk_usage_report.rb +92 -0
  75. data/sample/issue-119.rb +46 -0
  76. data/sample/losample.rb +51 -0
  77. data/sample/minimal-testcase.rb +6 -0
  78. data/sample/notify_wait.rb +26 -0
  79. data/sample/pg_statistics.rb +104 -0
  80. data/sample/replication_monitor.rb +123 -0
  81. data/sample/test_binary_values.rb +17 -0
  82. data/sample/wal_shipper.rb +202 -0
  83. data/sample/warehouse_partitions.rb +161 -0
  84. data/translation/.po4a-version +7 -0
  85. data/translation/po/all.pot +875 -0
  86. data/translation/po/ja.po +868 -0
  87. data/translation/po4a.cfg +9 -0
  88. metadata +138 -0
@@ -0,0 +1,9 @@
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
+
9
+ [type:text] ../README.md ja:../README.ja.md
metadata ADDED
@@ -0,0 +1,138 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cipherstash-pg
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0.beta.2
5
+ platform: ruby
6
+ authors:
7
+ - CipherStash Engineers
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2023-04-27 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: CipherStashPG is the Ruby interface to CipherStash-enhanced PostgresQL,
14
+ based on PG. Known to work on Postgres 14+ (might work on older version)
15
+ email:
16
+ - engineers@cipherstash.com
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - "./.appveyor.yml"
22
+ - "./.gems"
23
+ - "./.gemtest"
24
+ - "./.github/workflows/binary-gems.yml"
25
+ - "./.github/workflows/source-gem.yml"
26
+ - "./.gitignore"
27
+ - "./.hgsigs"
28
+ - "./.hgtags"
29
+ - "./.irbrc"
30
+ - "./.pryrc"
31
+ - "./.tm_properties"
32
+ - "./.travis.yml"
33
+ - "./BSDL"
34
+ - "./Contributors.rdoc"
35
+ - "./Gemfile"
36
+ - "./Gemfile.lock"
37
+ - "./History.md"
38
+ - "./LICENSE"
39
+ - "./Manifest.txt"
40
+ - "./POSTGRES"
41
+ - "./README-OS_X.rdoc"
42
+ - "./README-Windows.rdoc"
43
+ - "./README.ja.md"
44
+ - "./README.md"
45
+ - "./Rakefile"
46
+ - "./Rakefile.cross"
47
+ - "./certs/ged.pem"
48
+ - "./certs/larskanis-2022.pem"
49
+ - "./certs/larskanis-2023.pem"
50
+ - "./cipherstash-pg.gemspec"
51
+ - "./lib/2.7/pg_ext.so"
52
+ - "./lib/3.0/pg_ext.so"
53
+ - "./lib/3.1/pg_ext.so"
54
+ - "./lib/3.2/pg_ext.so"
55
+ - "./lib/cipherstash-pg.rb"
56
+ - "./lib/cipherstash-pg/basic_type_map_based_on_result.rb"
57
+ - "./lib/cipherstash-pg/basic_type_map_for_queries.rb"
58
+ - "./lib/cipherstash-pg/basic_type_map_for_results.rb"
59
+ - "./lib/cipherstash-pg/basic_type_registry.rb"
60
+ - "./lib/cipherstash-pg/binary_decoder.rb"
61
+ - "./lib/cipherstash-pg/coder.rb"
62
+ - "./lib/cipherstash-pg/connection.rb"
63
+ - "./lib/cipherstash-pg/constants.rb"
64
+ - "./lib/cipherstash-pg/exceptions.rb"
65
+ - "./lib/cipherstash-pg/result.rb"
66
+ - "./lib/cipherstash-pg/text_decoder.rb"
67
+ - "./lib/cipherstash-pg/text_encoder.rb"
68
+ - "./lib/cipherstash-pg/tuple.rb"
69
+ - "./lib/cipherstash-pg/type_map_by_column.rb"
70
+ - "./lib/cipherstash-pg/version.rb"
71
+ - "./lib/libpq.so.5"
72
+ - "./misc/openssl-pg-segfault.rb"
73
+ - "./misc/postgres/History.txt"
74
+ - "./misc/postgres/Manifest.txt"
75
+ - "./misc/postgres/README.txt"
76
+ - "./misc/postgres/Rakefile"
77
+ - "./misc/postgres/lib/postgres.rb"
78
+ - "./misc/ruby-pg/History.txt"
79
+ - "./misc/ruby-pg/Manifest.txt"
80
+ - "./misc/ruby-pg/README.txt"
81
+ - "./misc/ruby-pg/Rakefile"
82
+ - "./misc/ruby-pg/lib/ruby/pg.rb"
83
+ - "./rakelib/task_extension.rb"
84
+ - "./sample/array_insert.rb"
85
+ - "./sample/async_api.rb"
86
+ - "./sample/async_copyto.rb"
87
+ - "./sample/async_mixed.rb"
88
+ - "./sample/check_conn.rb"
89
+ - "./sample/copydata.rb"
90
+ - "./sample/copyfrom.rb"
91
+ - "./sample/copyto.rb"
92
+ - "./sample/cursor.rb"
93
+ - "./sample/disk_usage_report.rb"
94
+ - "./sample/issue-119.rb"
95
+ - "./sample/losample.rb"
96
+ - "./sample/minimal-testcase.rb"
97
+ - "./sample/notify_wait.rb"
98
+ - "./sample/pg_statistics.rb"
99
+ - "./sample/replication_monitor.rb"
100
+ - "./sample/test_binary_values.rb"
101
+ - "./sample/wal_shipper.rb"
102
+ - "./sample/warehouse_partitions.rb"
103
+ - "./translation/.po4a-version"
104
+ - "./translation/po/all.pot"
105
+ - "./translation/po/ja.po"
106
+ - "./translation/po4a.cfg"
107
+ homepage: https://github.com/cipherstash/cipherstash-pg
108
+ licenses:
109
+ - BSD-2-Clause
110
+ metadata:
111
+ homepage_uri: https://github.com/cipherstash/cipherstash-pg
112
+ source_code_uri: https://github.com/cipherstash/cipherstash-pg
113
+ derived_from_pg_gem_version: 1.4.6
114
+ post_install_message:
115
+ rdoc_options:
116
+ - "--main"
117
+ - README.md
118
+ - "--title"
119
+ - 'CipherStashPG: The Ruby PostgreSQL Driver for CipherStash-enhanced PostgreSQL'
120
+ require_paths:
121
+ - lib
122
+ required_ruby_version: !ruby/object:Gem::Requirement
123
+ requirements:
124
+ - - ">="
125
+ - !ruby/object:Gem::Version
126
+ version: '2.7'
127
+ required_rubygems_version: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">"
130
+ - !ruby/object:Gem::Version
131
+ version: 1.3.1
132
+ requirements: []
133
+ rubygems_version: 3.4.6
134
+ signing_key:
135
+ specification_version: 4
136
+ summary: CipherStashPG is the Ruby interface to CipherStash-enhanced PostgresQL, based
137
+ on PG
138
+ test_files: []