pglite 0.0.2-x86_64-linux → 0.0.4-x86_64-linux
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.
- checksums.yaml +4 -4
- data/README.md +4 -0
- data/lib/{pglite_rb.so → 3.2/pglite_rb.so} +0 -0
- data/lib/3.3/pglite_rb.so +0 -0
- data/lib/3.4/pglite_rb.so +0 -0
- data/lib/pglite/version.rb +1 -1
- metadata +10 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f0cb0acebd3d1584d04aebe51ff8b3d5f97a51e248adc4d7fdce91c286ac3c19
|
|
4
|
+
data.tar.gz: 6f673b9da594f5254b7a446011872ae7104d757d249966c9fc24e56b88b3aaa7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 219049d7fdee0a7d9aaac093faa62c9d4b61a9c3807ff004d526d70243e709f3497ab0c95cda85418b4fdd69f11edc9bc82fa7123d4bf20b50cf3771856c3bc7
|
|
7
|
+
data.tar.gz: 75ddb87e10c55a071cc42f28cf64e26dc14c5db7d0dd6fa73f959e675d0a77069ccc4b1b393fb615bc0d2d142b085773195d397c3b9a6066812ab6e215d12870
|
data/README.md
CHANGED
|
@@ -41,6 +41,10 @@ Specify the `pglite` adapter in your `database.yml`. Done.
|
|
|
41
41
|
|
|
42
42
|
The database would be provisioned the first time a connection is initialized (in the `tmp/pglite` directory or in the `mount_path` if one is specified in the configuration). Alternatively, you can manually call `PGlite.install!(path)` on the application boot.
|
|
43
43
|
|
|
44
|
+
## Configuration
|
|
45
|
+
|
|
46
|
+
You can enable PostgreSQL logs (stdout/stderr) by set the `PGLITE_WASI_STDIO=1` environment variable.
|
|
47
|
+
|
|
44
48
|
## Contributing
|
|
45
49
|
|
|
46
50
|
Bug reports and pull requests are welcome on GitHub at [https://github.com/palkan/pglite-rb](https://github.com/palkan/pglite-rb).
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/lib/pglite/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pglite
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
platform: x86_64-linux
|
|
6
6
|
authors:
|
|
7
7
|
- Vladimir Dementyev
|
|
8
|
+
autorequire:
|
|
8
9
|
bindir: bin
|
|
9
10
|
cert_chain: []
|
|
10
|
-
date:
|
|
11
|
+
date: 2025-12-11 00:00:00.000000000 Z
|
|
11
12
|
dependencies:
|
|
12
13
|
- !ruby/object:Gem::Dependency
|
|
13
14
|
name: bundler
|
|
@@ -89,6 +90,9 @@ files:
|
|
|
89
90
|
- CHANGELOG.md
|
|
90
91
|
- LICENSE.txt
|
|
91
92
|
- README.md
|
|
93
|
+
- lib/3.2/pglite_rb.so
|
|
94
|
+
- lib/3.3/pglite_rb.so
|
|
95
|
+
- lib/3.4/pglite_rb.so
|
|
92
96
|
- lib/active_record/connection_adapters/pglite_adapter.rb
|
|
93
97
|
- lib/active_record/connection_adapters/pglite_shims/pg.rb
|
|
94
98
|
- lib/pglite.rb
|
|
@@ -96,7 +100,6 @@ files:
|
|
|
96
100
|
- lib/pglite/pg.rb
|
|
97
101
|
- lib/pglite/result.rb
|
|
98
102
|
- lib/pglite/version.rb
|
|
99
|
-
- lib/pglite_rb.so
|
|
100
103
|
homepage: https://github.com/palkan/pglite-rb
|
|
101
104
|
licenses:
|
|
102
105
|
- MIT
|
|
@@ -106,6 +109,7 @@ metadata:
|
|
|
106
109
|
documentation_uri: https://github.com/palkan/pglite-rb
|
|
107
110
|
homepage_uri: https://github.com/palkan/pglite-rb
|
|
108
111
|
source_code_uri: https://github.com/palkan/pglite-rb
|
|
112
|
+
post_install_message:
|
|
109
113
|
rdoc_options: []
|
|
110
114
|
require_paths:
|
|
111
115
|
- lib
|
|
@@ -113,7 +117,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
113
117
|
requirements:
|
|
114
118
|
- - ">="
|
|
115
119
|
- !ruby/object:Gem::Version
|
|
116
|
-
version: '3.
|
|
120
|
+
version: '3.2'
|
|
117
121
|
- - "<"
|
|
118
122
|
- !ruby/object:Gem::Version
|
|
119
123
|
version: 3.5.dev
|
|
@@ -123,7 +127,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
123
127
|
- !ruby/object:Gem::Version
|
|
124
128
|
version: '0'
|
|
125
129
|
requirements: []
|
|
126
|
-
rubygems_version: 3.
|
|
130
|
+
rubygems_version: 3.5.23
|
|
131
|
+
signing_key:
|
|
127
132
|
specification_version: 4
|
|
128
133
|
summary: PGlite for Ruby and Rails
|
|
129
134
|
test_files: []
|