switchman 3.0.10 → 3.0.11

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: e0148847d4a814e96ae663f5e2576e52a5feb9709a0b4ca7edf531884404e982
4
- data.tar.gz: df40d39aed43999ba851a99b74808704c99f536ef352194734a66b912c260564
3
+ metadata.gz: 49ec10390b095e34032d625e9a1540217c8d4361b7d0961d0f10218d2349ef6a
4
+ data.tar.gz: 29f9748cbf4f1d4d268171ae7c0863d296b23788c8ee0153ee9cb32938933c03
5
5
  SHA512:
6
- metadata.gz: 04e37250e9480e5c1d4683259c2cf5380e7da23bf44d890550920a0446a1dd3dfc1f371b294ccea6d25a3cd54b8605d8a1277613cba953e5b3d23325580d2fd2
7
- data.tar.gz: c8b4d479438201645fd5fab3997258e7e7e141680d2470ed2accef6922f32b664c9349e18b72b07e9a0fcf1366b47043deaf002feeadd3517138356a213010e9
6
+ metadata.gz: c0c79ce80057b54bb0a7234d9ff09b7b9aa6af18c25b1b0c1b32365244ecb22332c90b2d477d537c24869ec84f9a1af06059e77e9f53a21c2391164df7758338
7
+ data.tar.gz: 7e335d49f3e8e44eb1d2ea1061dd837ceffb5a7505c7d2dbefe11c5bea2ba290bf0795b0f74a938bedd2e79f69dda03bd2da62ffabe8f6f8771da5053007a073
@@ -68,6 +68,9 @@ module Switchman
68
68
 
69
69
  initializer 'switchman.extend_ar', before: 'active_record.initialize_database' do
70
70
  ::ActiveSupport.on_load(:active_record) do
71
+ # Switchman requires postgres, so just always load the pg adapter
72
+ require 'active_record/connection_adapters/postgresql_adapter'
73
+
71
74
  require 'switchman/active_record/abstract_adapter'
72
75
  require 'switchman/active_record/association'
73
76
  require 'switchman/active_record/attribute_methods'
@@ -81,6 +84,7 @@ module Switchman
81
84
  require 'switchman/active_record/migration'
82
85
  require 'switchman/active_record/model_schema'
83
86
  require 'switchman/active_record/persistence'
87
+ require 'switchman/active_record/postgresql_adapter'
84
88
  require 'switchman/active_record/predicate_builder'
85
89
  require 'switchman/active_record/query_cache'
86
90
  require 'switchman/active_record/query_methods'
@@ -128,6 +132,7 @@ module Switchman
128
132
  ::ActiveRecord::ConnectionAdapters::AbstractAdapter.prepend(ActiveRecord::AbstractAdapter)
129
133
  ::ActiveRecord::ConnectionAdapters::ConnectionPool.prepend(ActiveRecord::ConnectionPool)
130
134
  ::ActiveRecord::ConnectionAdapters::AbstractAdapter.prepend(ActiveRecord::QueryCache)
135
+ ::ActiveRecord::ConnectionAdapters::PostgreSQLAdapter.prepend(ActiveRecord::PostgreSQLAdapter)
131
136
 
132
137
  ::ActiveRecord::DatabaseConfigurations.prepend(ActiveRecord::DatabaseConfigurations)
133
138
  ::ActiveRecord::DatabaseConfigurations::DatabaseConfig.prepend(ActiveRecord::DatabaseConfigurations::DatabaseConfig)
@@ -180,11 +185,6 @@ module Switchman
180
185
  require 'switchman/active_record/table_definition'
181
186
  ::ActiveRecord::ConnectionAdapters::TableDefinition.prepend(ActiveRecord::TableDefinition)
182
187
 
183
- if defined?(::ActiveRecord::ConnectionAdapters::PostgreSQLAdapter)
184
- require 'switchman/active_record/postgresql_adapter'
185
- ::ActiveRecord::ConnectionAdapters::PostgreSQLAdapter.prepend(ActiveRecord::PostgreSQLAdapter)
186
- end
187
-
188
188
  Shard.send(:initialize_sharding)
189
189
  end
190
190
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Switchman
4
- VERSION = '3.0.10'
4
+ VERSION = '3.0.11'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: switchman
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.10
4
+ version: 3.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cody Cutrer
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2022-03-21 00:00:00.000000000 Z
13
+ date: 2022-03-22 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: activerecord