janus-ar 0.15.1 → 0.15.2
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/Gemfile.lock +1 -1
- data/Rakefile +1 -0
- data/lib/janus/version.rb +1 -1
- data/spec/lib/janus/query_director_spec.rb +2 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8bb9ff5d84b8ba3951b9a1666e64d267cfec1954cdebd7e9cc72cea970f0d3db
|
4
|
+
data.tar.gz: 308144511c0a90d895e09acf51313a5c2eb3413e7d3b4016ac94b379d6c63489
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dd4855979a81e739025ecca496f38ff5be6a1b7979f5fdd713329b985a8ca07663f9fa0c0b3bba89d0793ada21f73e66ac12635a664e42146b5bce1d926d4649
|
7
|
+
data.tar.gz: 113eed8973e6a7b60e2c05960bbe979c908b84efbfe58b3843afdeaaa3ca8808c04465811ab07eaf0244e5fa51ecce40f777098f25118ec89271b9fcaa5cb07c
|
data/Gemfile.lock
CHANGED
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require 'bundler/gem_tasks'
|
data/lib/janus/version.rb
CHANGED
@@ -15,7 +15,8 @@ RSpec.describe Janus::QueryDirector do
|
|
15
15
|
it { expect(described_class::SQL_REPLICA_MATCHERS).to eq([/\A\s*(select|with.+\)\s*select)\s/i]) }
|
16
16
|
it { expect(described_class::SQL_ALL_MATCHERS).to eq([/\A\s*set\s/i]) }
|
17
17
|
it {
|
18
|
-
expect(described_class::WRITE_PREFIXES).to eq %w(INSERT UPDATE DELETE LOCK CREATE GRANT DROP ALTER TRUNCATE BEGIN
|
18
|
+
expect(described_class::WRITE_PREFIXES).to eq %w(INSERT UPDATE DELETE LOCK CREATE GRANT DROP ALTER TRUNCATE BEGIN
|
19
|
+
SAVEPOINT FLUSH)
|
19
20
|
}
|
20
21
|
|
21
22
|
it { expect(described_class::ALL).to eq :all }
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: janus-ar
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.15.
|
4
|
+
version: 0.15.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lloyd Watkin
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-05-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|
@@ -198,6 +198,7 @@ files:
|
|
198
198
|
- Gemfile.lock
|
199
199
|
- LICENSE
|
200
200
|
- README.md
|
201
|
+
- Rakefile
|
201
202
|
- assets/.gitkeep
|
202
203
|
- assets/janus-logo.png
|
203
204
|
- bin/release.sh
|