json_api_resource_connecitons 0.1.0 → 0.1.1

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
  SHA1:
3
- metadata.gz: a3f3f54916a89e9f3f079b32b656bd8a72a9de26
4
- data.tar.gz: edc2bf3aa050e7a3324b81ba5e6697d6e16e68f1
3
+ metadata.gz: 1aba17ec5f9227459bf8e23bec368067accc6edd
4
+ data.tar.gz: f3f6b5f0e408ef3bf70b028f255de119c2f5c0d9
5
5
  SHA512:
6
- metadata.gz: 87bdc3c17a3811926b17c5a427b6b3096aa163622e6335d18144009cf0bbb6ba070533c1b08357f036afa4acd7420344448aec8cc11b2275e1a55357f3bb6afc
7
- data.tar.gz: f4ab1b7b605044ba6bca452e4beb9bf0b9a3a3b4e60db36446f2c1658bfd9820b4abfbd47b2cf6f24d8d7ac9fca3293a594b70e4679b24b32a0a3773d5e1dfcb
6
+ metadata.gz: 9e752bf28de06193aa6fcd4a72a8a0f44aa8e945aa77d3d0a5d181ae9323683edea024199943c09d6045657dc9db2c0578d49bc797decb2c0cd16f2655362490
7
+ data.tar.gz: f36dd5c5ebe717c4d6cb949cfe9eda47e9181c0dbf817e185349280dd438155d34d35cf07a4fbb5873b741d15a58dbbf39549543214323bfefbad59c4de9cff8
@@ -6,9 +6,16 @@ require 'active_support/core_ext/class/attribute'
6
6
  require 'json_api_resource'
7
7
  require "json_api_resource_connecitons/version"
8
8
 
9
+ require 'multiconnect'
10
+
11
+ require 'json_api_resource/cache_processor'
12
+
13
+ require 'json_api_resource/connections/cache_connection'
14
+ require 'json_api_resource/connections/cached_circuitbreaker_server_connection'
15
+ require 'json_api_resource/connections/server_not_ready_error'
16
+
17
+
9
18
  module JsonApiResourceConnections
10
- require 'json_api_resource/connections'
11
- require 'json_api_resource/cache_processor'
12
19
 
13
20
  extend ActiveSupport::Concern
14
21
 
@@ -1,3 +1,3 @@
1
1
  module JsonApiResourceConnecitons
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: json_api_resource_connecitons
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Greg
@@ -100,7 +100,6 @@ files:
100
100
  - lib/json_api_resource/cache_processor.rb
101
101
  - lib/json_api_resource/cache_processor/base.rb
102
102
  - lib/json_api_resource/cache_processor/compressed_cache_processor.rb
103
- - lib/json_api_resource/connections.rb
104
103
  - lib/json_api_resource/connections/cache_connection.rb
105
104
  - lib/json_api_resource/connections/cached_circuitbreaker_server_connection.rb
106
105
  - lib/json_api_resource/connections/server_not_ready_error.rb
@@ -1,7 +0,0 @@
1
- module JsonApiResource
2
- module Connections
3
- autoload :CacheConnection, 'json_api_resource/connections/cache_connection'
4
- autoload :CachedCircuitbreakerServerConnection, 'json_api_resource/connections/cached_circuitbreaker_server_connection'
5
- autoload :ServerNotReadyError, 'json_api_resource/connections/server_not_ready_error'
6
- end
7
- end