activesupport-cache-redis_multiplexer 0.1.0 → 0.1.2

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: 48255ba7ec057bb5970310cff2b95bcdce86ce90
4
- data.tar.gz: 746977246e65dba9efcd6f2ccbaf40cebd01450e
3
+ metadata.gz: a3f21fed63f7dbd74f02202b4fdca6f21039deeb
4
+ data.tar.gz: ed9596a8a718769bff31c42b662028aad0be272b
5
5
  SHA512:
6
- metadata.gz: 287bfa35e707e672e2602e0b823ebc07baad1d6149be56c0c9231dd5eee00468376768d08857fac838cad9cba263c370efaaa9ebfe34868df91c3ece5c21a9e0
7
- data.tar.gz: e3b063b9f07eb62a4c7af59d0dd86a006625871da273c11a159d3a215f587d08229a07c94c7bbca4b36f96166fbfcf3b62e5e8f5ff8bf0a00d7866ad0eb0add5
6
+ metadata.gz: 13542407bb782e535dd7b4e72e7ab1baa45204046b86e3a1e938b55d73ba214dcd2d7506c3273e0ebf53d266e344471df0fef0023f12c7e8bbf4049891d9fc2d
7
+ data.tar.gz: 846a1bb2e41eb6f15163473e7bb076b438693bec3e1a6337fd7feb32022418dc998dddba551d6a39a78890c31ae8f9a0fabfd2862d87f7a50ee47596b0874368
@@ -1,11 +1,11 @@
1
1
  # coding: utf-8
2
2
  lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'activesupport/cache/redis_multiplexer/version'
4
+ require 'active_support/cache/redis_multiplexer'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "activesupport-cache-redis_multiplexer"
8
- spec.version = Activesupport::Cache::RedisMultiplexer::VERSION
8
+ spec.version = ActiveSupport::Cache::RedisMultiplexer::VERSION
9
9
  spec.authors = ["namusyaka"]
10
10
  spec.email = ["namusyaka@gmail.com"]
11
11
 
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  require "bundler/setup"
4
- require "activesupport/cache/redis_multiplexer"
4
+ require "active_support/cache/redis_multiplexer"
5
5
 
6
6
  # You can add fixtures and/or initialization code here to make experimenting
7
7
  # with your gem easier. You can also use a different console, if you like.
@@ -1,8 +1,10 @@
1
- require 'activesupport/cache'
1
+ require 'active_support/cache'
2
2
  require 'forwardable'
3
3
 
4
4
  module ActiveSupport::Cache
5
5
  class RedisMultiplexer < Store
6
+ VERSION = "0.1.2"
7
+
6
8
  extend Forwardable
7
9
 
8
10
  # Delegates WRITE actions into primary redis instance.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activesupport-cache-redis_multiplexer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - namusyaka
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-05-07 00:00:00.000000000 Z
11
+ date: 2017-01-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -85,8 +85,7 @@ files:
85
85
  - activesupport-cache-redis_multiplexer.gemspec
86
86
  - bin/console
87
87
  - bin/setup
88
- - lib/activesupport/cache/redis_multiplexer.rb
89
- - lib/activesupport/cache/redis_multiplexer/version.rb
88
+ - lib/active_support/cache/redis_multiplexer.rb
90
89
  homepage: https://github.com/namusyaka/activesupport-cache-redis_multiplexer
91
90
  licenses:
92
91
  - MIT
@@ -112,4 +111,3 @@ signing_key:
112
111
  specification_version: 4
113
112
  summary: Handling redis-servers both Primary and Read-Replica in your Rails application
114
113
  test_files: []
115
- has_rdoc:
@@ -1,7 +0,0 @@
1
- module Activesupport
2
- module Cache
3
- class RedisMultiplexer
4
- VERSION = "0.1.0"
5
- end
6
- end
7
- end