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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9f847d51451d08f816663e0a89bba24ae799218703f97ac2cc87f433148d2989
4
- data.tar.gz: 75477ea1015dec780e069e0835a221d718f39c3126605b6c1a65da7119ba8825
3
+ metadata.gz: 7826c8459285e9f9618db8c3c0da13384475a7b23cff83913bb5e58343892dce
4
+ data.tar.gz: 26d63b507b6894123b27cc9bc57712adc687b1c022bfc6bb40c4b64a0d0a44a8
5
5
  SHA512:
6
- metadata.gz: 3fe49d3b1b24296ffc67df1266cbb0acaf9a6e0ec747c684f2fab777a107c0e0eb31d5eed29a35d3cd1051a4cc75e965a7edf265a52e5dc69ef676f30e287ecc
7
- data.tar.gz: 41b717bac47ade8260f6376b1b175652b9e48c74ba3dec071770641f6b4f0b691449131123a4365acf5ed1979869ffd0b62f989e3df2023ef5c31fb908d06ea4
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