trilogy_aurora 0.1.0 → 0.1.1
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/.rubocop.yml +4 -0
- data/Dockerfile +4 -0
- data/lib/trilogy_aurora/version.rb +1 -1
- data/lib/trilogy_aurora.rb +5 -0
- metadata +13 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 49d0b54c33fe2440d310cb66aad1722769e24f4e39c8c53aa364c04dbd22f67f
|
4
|
+
data.tar.gz: e7fd2c557484527611490eedc2cb5930e9a48508d7acb53536bfef7c235472c2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 93a8efa03067002bda6189d6e07e101fdf10b48f36140b6a07b69684632ac518263b8ae8b4bcd7503d2e0a509806d06d751ba065a685e51bd4c568e964adc5ed
|
7
|
+
data.tar.gz: e0cade9011a49826878fea139cf9fc3c43163e1bd355da7360663719cfd74cbfeb10502fe454446a9855fd2f95a029cc717bdb2317b1f7765b8b8972eb444cd5
|
data/.rubocop.yml
CHANGED
data/Dockerfile
CHANGED
data/lib/trilogy_aurora.rb
CHANGED
@@ -97,6 +97,11 @@ module TrilogyAurora
|
|
97
97
|
def self.const_missing(name)
|
98
98
|
TrilogyAurora::ORIGINAL_TRILOGY_CLASS.const_get(name)
|
99
99
|
end
|
100
|
+
|
101
|
+
# Delegate `const_defined?` to ::Trilogy.
|
102
|
+
def self.const_defined?(name, ...)
|
103
|
+
TrilogyAurora::ORIGINAL_TRILOGY_CLASS.const_defined?(name, ...)
|
104
|
+
end
|
100
105
|
end
|
101
106
|
|
102
107
|
# The original ::Trilogy class.
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: trilogy_aurora
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aidan Lavis
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-09-
|
11
|
+
date: 2023-09-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: trilogy
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '2.
|
19
|
+
version: '2.3'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '3.0'
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '2.3'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
32
|
+
version: '3.0'
|
27
33
|
description:
|
28
34
|
email:
|
29
35
|
- aidanlavis@gmail.com
|
@@ -65,7 +71,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
65
71
|
- !ruby/object:Gem::Version
|
66
72
|
version: '0'
|
67
73
|
requirements: []
|
68
|
-
rubygems_version: 3.
|
74
|
+
rubygems_version: 3.4.13
|
69
75
|
signing_key:
|
70
76
|
specification_version: 4
|
71
77
|
summary: Adds AWS Aurora failover support to Trilogy.
|