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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1aba17ec5f9227459bf8e23bec368067accc6edd
|
4
|
+
data.tar.gz: f3f6b5f0e408ef3bf70b028f255de119c2f5c0d9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
|
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.
|
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
|