redistry 0.1.2 → 0.1.3
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.
- data/README.md +4 -0
- data/lib/redistry/serializers/activerecord.rb +3 -1
- data/lib/redistry/version.rb +1 -1
- metadata +3 -3
data/README.md
CHANGED
@@ -7,6 +7,10 @@ Add `redistry` to your `Gemfile`
|
|
7
7
|
|
8
8
|
gem "redistry"
|
9
9
|
|
10
|
+
You can also use your own redis client connection rather than the default `Redis.new` (in an initializer, for example)
|
11
|
+
|
12
|
+
Redistry.client = Redis.new(:host => 'my-redis-host', :port => 6379)
|
13
|
+
|
10
14
|
|
11
15
|
#### Using has_list
|
12
16
|
|
data/lib/redistry/version.rb
CHANGED
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 1
|
8
|
-
-
|
9
|
-
version: 0.1.
|
8
|
+
- 3
|
9
|
+
version: 0.1.3
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Brian Smith
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2011-07-
|
17
|
+
date: 2011-07-29 00:00:00 -07:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|