database_consistency 1.7.1 → 1.7.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 66ce7a52d5ba8e97db7d362d92c6a40df067f6fbab3945aa0f97ec80017ed265
4
- data.tar.gz: 52b9314bb94e5664cfe791535596ad1de1055e378a37dd0b9f909d595c633a51
3
+ metadata.gz: 04c8b742c1385fa81e5c0d32ea46904671394ab10d4967551e770715900d5342
4
+ data.tar.gz: df9baa66d00abf4079c89dbcd97280a0398e1cc3d796a83f5b5fde49cb450d6f
5
5
  SHA512:
6
- metadata.gz: c72b8c701d2e90e4fd981c27a63b6a1369f10af8c51021006cb78bf19d92f24d280c36cbb4654db8929c3f26069769fa8fd23145c444a2fe565dacadadbed7cc
7
- data.tar.gz: 763b0564fe4d78619e5d0ba0245837dbf74634f9480237b1b68f47f04ae5be3dfa2c943aa9da6257ec7b2b6159e1dfef6772a12ca656a3d7de45d916f4c6b10c
6
+ metadata.gz: 3a29b79f54482ae21357bfc5c7aae7fc08b1162156138aa87c5199c159f6297e788a1bd99e6143a381e75ece63d38a4c144dc93497233469ecca2ec0e5d91a7a
7
+ data.tar.gz: d5800c2c487f9a6f3f8a704be26dc0589cbffff1f6b5a3bec6b62874ec22e6ca0a8dcc104e91cc68a96107d17086539e48804f06001b80792a8b94ca6fa73bf1
@@ -6,10 +6,10 @@ module DatabaseConsistency
6
6
  module_function
7
7
 
8
8
  def adapter
9
- if ActiveRecord::Base.respond_to?(:connection_config)
10
- ActiveRecord::Base.connection_config[:adapter]
11
- else
9
+ if ActiveRecord::Base.respond_to?(:connection_db_config)
12
10
  ActiveRecord::Base.connection_db_config.configuration_hash[:adapter]
11
+ else
12
+ ActiveRecord::Base.connection_config[:adapter]
13
13
  end
14
14
  end
15
15
 
@@ -18,10 +18,10 @@ module DatabaseConsistency
18
18
  end
19
19
 
20
20
  def connection_config(klass)
21
- if klass.respond_to?(:connection_config)
22
- klass.connection_config
23
- else
21
+ if klass.respond_to?(:connection_db_config)
24
22
  klass.connection_db_config.configuration_hash
23
+ else
24
+ klass.connection_config
25
25
  end
26
26
  end
27
27
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DatabaseConsistency
4
- VERSION = '1.7.1'
4
+ VERSION = '1.7.2'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: database_consistency
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.1
4
+ version: 1.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Evgeniy Demin
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-12-21 00:00:00.000000000 Z
11
+ date: 2023-01-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord