ebisu_connection 2.4.0 → 2.4.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ef5b5cbde60709d14b1b65c3438242ec718aa268
4
- data.tar.gz: 1089dee6bfac0e69cc98fdea8412b6585e3abfef
3
+ metadata.gz: cecd273a7f108ece25df9eba296918a4240c26e3
4
+ data.tar.gz: 123de88d95d7ac6e7327b5f47a369412c15890e2
5
5
  SHA512:
6
- metadata.gz: 034f3717d4a47ba2db9d3db352ac2ca79f6c880e4b0b04145d1d6d3b843f8218aef9e169a8fac25223c626ee5b8d61b65e6bcc9f5e74e2356cff69088a2cd668
7
- data.tar.gz: 4909c4d083e085731dc7268219f3fe9ab2d647afb1195fe5360a66408b6020b1d71e1f96da21f2fe7382329ecafd15d746c37bc70779ecb1a9839ab59f2945ea
6
+ metadata.gz: 19eb6a3075a4fd930fc255ab5178b45442b73f498826d18af8a85955cddf6428fe07d5ab18a3a288df75d8801a82ed807b454a3a52dfc58ba03b4598cb63bb86
7
+ data.tar.gz: 0705daf19603c49ed9025a40e43799d730ac72fb81a5526b08d1fa51bc8afb961f7f676bf53b78496d0e92db8003201b005dc8125e713c53f1d3e33e471525e9
@@ -22,5 +22,3 @@ end
22
22
 
23
23
  require "ebisu_connection/connection_manager"
24
24
  FreshConnection.connection_manager = EbisuConnection::ConnectionManager
25
-
26
- require "ebisu_connection/railtie" if defined?(Rails)
@@ -1,3 +1,3 @@
1
1
  module EbisuConnection
2
- VERSION = "2.4.0"
2
+ VERSION = "2.4.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ebisu_connection
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.0
4
+ version: 2.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - tsukasaoishi
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-07-11 00:00:00.000000000 Z
11
+ date: 2017-11-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fresh_connection
@@ -174,7 +174,6 @@ files:
174
174
  - lib/ebisu_connection/conf_file.rb
175
175
  - lib/ebisu_connection/connection_manager.rb
176
176
  - lib/ebisu_connection/greatest_common_divisor.rb
177
- - lib/ebisu_connection/railtie.rb
178
177
  - lib/ebisu_connection/replica.rb
179
178
  - lib/ebisu_connection/version.rb
180
179
  homepage: https://github.com/tsukasaoishi/ebisu_connection
@@ -197,7 +196,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
197
196
  version: '0'
198
197
  requirements: []
199
198
  rubyforge_project:
200
- rubygems_version: 2.6.11
199
+ rubygems_version: 2.6.13
201
200
  signing_key:
202
201
  specification_version: 4
203
202
  summary: EbisuConnection supports connections with configured replica servers.
@@ -1,9 +0,0 @@
1
- module EbisuConnection
2
- class Railtie < Rails::Railtie
3
- initializer "fresh_connection.initialize_database", after: "active_record.initialize_database" do
4
- ActiveSupport.on_load(:active_record) do
5
- ActiveRecord::Base.establish_fresh_connection
6
- end
7
- end
8
- end
9
- end