cachetastic-memcache-pool 0.1.0 → 0.1.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.
data/README.md ADDED
@@ -0,0 +1,8 @@
1
+ Cachetastic Memcache Pool Adapter
2
+ ----------
3
+
4
+ This is a memcached adapter for cachetastic that shares connections for caches with the same server list and mc_options configuration. The configuration for this adapter is the same as for the built-in memcached adapter.
5
+
6
+ ~~~~~{ruby}
7
+ configatron.cachetastic.defaults.adapter = Cachetastic::Adapters::MemcachePool::Adapter
8
+ ~~~~~
@@ -22,5 +22,5 @@ Gem::Specification.new do |s|
22
22
  s.add_development_dependency "rcov", "~> 0.9.0"
23
23
 
24
24
  s.add_runtime_dependency "cachetastic", "~> 3.0.0"
25
- s.add_runtime_dependency "memcache-client", "~> 1.8.5"
25
+ s.add_runtime_dependency "memcache-client", "~> 1.8.1"
26
26
  end
@@ -1,7 +1,7 @@
1
1
  module Cachetastic
2
2
  module Adapters
3
3
  module MemcachePool
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cachetastic-memcache-pool
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 0
10
- version: 0.1.0
9
+ - 1
10
+ version: 0.1.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jason Wadsworth
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-09-21 00:00:00 -04:00
18
+ date: 2011-09-24 00:00:00 -04:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -74,12 +74,12 @@ dependencies:
74
74
  requirements:
75
75
  - - ~>
76
76
  - !ruby/object:Gem::Version
77
- hash: 61
77
+ hash: 53
78
78
  segments:
79
79
  - 1
80
80
  - 8
81
- - 5
82
- version: 1.8.5
81
+ - 1
82
+ version: 1.8.1
83
83
  type: :runtime
84
84
  version_requirements: *id004
85
85
  description: Cachetastic Memcached Adapter with Connection Pooling
@@ -95,7 +95,7 @@ files:
95
95
  - .gitignore
96
96
  - .rspec
97
97
  - Gemfile
98
- - README
98
+ - README.md
99
99
  - Rakefile
100
100
  - cachetastic-memcache-pool.gemspec
101
101
  - lib/cachetastic/adapters/memcache_pool.rb
data/README DELETED
File without changes