rubydb-activerecord 0.1.2 → 0.1.3
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 +8 -3
- data/lib/active_record/connection_adapters/rubydb_adapter.rb +881 -879
- data/rubydb-activerecord.gemspec +21 -21
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7826c8459285e9f9618db8c3c0da13384475a7b23cff83913bb5e58343892dce
|
|
4
|
+
data.tar.gz: 26d63b507b6894123b27cc9bc57712adc687b1c022bfc6bb40c4b64a0d0a44a8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cd65e0aef816739bff7fb28459dfbf76f0f38c1147943c4ab9b438736fbfc8e13b79747ecd25fe609b9d6bdfe7bd1b32d128b4f760774a8433aaf1f4ad4b7aae
|
|
7
|
+
data.tar.gz: 1b3b26558f105274d4774933bc9290be9a28e06c1329397b8cb04ea7cc3e11dbfc7f7c6d6e92d918dae3066067af19bc1c008dc555beb26b99de6c9e1ad18992
|
data/README.md
CHANGED
|
@@ -7,7 +7,7 @@ This gem is an adapter to RubyDB's SQL engine. It is not a PostgreSQL, MySQL, or
|
|
|
7
7
|
## Requirements
|
|
8
8
|
|
|
9
9
|
- Ruby 3.3 or newer
|
|
10
|
-
- RubyDB 0.1.x
|
|
10
|
+
- RubyDB 0.1.6 or another compatible `0.1.x` release
|
|
11
11
|
- ActiveRecord 7.1, 7.2, or 8.0 (the dependency range is `>= 7.1`, `< 8.1`)
|
|
12
12
|
|
|
13
13
|
## Install
|
|
@@ -15,8 +15,8 @@ This gem is an adapter to RubyDB's SQL engine. It is not a PostgreSQL, MySQL, or
|
|
|
15
15
|
Add both gems to the Rails application's `Gemfile`:
|
|
16
16
|
|
|
17
17
|
```ruby
|
|
18
|
-
gem "rubydb"
|
|
19
|
-
gem "rubydb-activerecord"
|
|
18
|
+
gem "rubydb", "~> 0.1.6"
|
|
19
|
+
gem "rubydb-activerecord", "~> 0.1.3"
|
|
20
20
|
```
|
|
21
21
|
|
|
22
22
|
Then run:
|
|
@@ -25,6 +25,11 @@ Then run:
|
|
|
25
25
|
bundle install
|
|
26
26
|
```
|
|
27
27
|
|
|
28
|
+
The core gem contains the optional Go accelerator and its platform binaries;
|
|
29
|
+
the adapter does not require Go to be installed. RubyDB remains the SQL,
|
|
30
|
+
transaction, WAL, and durability authority while the adapter exposes the
|
|
31
|
+
Rails connection, query, migration, schema, and pool APIs.
|
|
32
|
+
|
|
28
33
|
The adapter registers itself under the `rubydb` adapter name when it is
|
|
29
34
|
required by Bundler. For a manually loaded application, require it explicitly:
|
|
30
35
|
|