libmemcached_store 0.2.0 → 0.2.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/.gitignore +0 -1
- data/Rakefile +1 -1
- data/lib/libmemcached_store.rb +0 -0
- data/libmemcached_store.gemspec +53 -0
- metadata +5 -3
data/.gitignore
CHANGED
data/Rakefile
CHANGED
|
@@ -6,7 +6,7 @@ begin
|
|
|
6
6
|
require 'jeweler'
|
|
7
7
|
Jeweler::Tasks.new do |gemspec|
|
|
8
8
|
gemspec.name = "libmemcached_store"
|
|
9
|
-
gemspec.version = '0.2.
|
|
9
|
+
gemspec.version = '0.2.1'
|
|
10
10
|
gemspec.summary = "ActiveSupport::Cache wrapper for libmemcached "
|
|
11
11
|
gemspec.description = "An ActiveSupport cache store that uses the C-based libmemcached client through
|
|
12
12
|
Evan Weaver's Ruby/SWIG wrapper, memcached. libmemcached is fast, lightweight,
|
|
File without changes
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{libmemcached_store}
|
|
8
|
+
s.version = "0.2.1"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Jeffrey Hardy"]
|
|
12
|
+
s.date = %q{2010-08-24}
|
|
13
|
+
s.description = %q{An ActiveSupport cache store that uses the C-based libmemcached client through
|
|
14
|
+
Evan Weaver's Ruby/SWIG wrapper, memcached. libmemcached is fast, lightweight,
|
|
15
|
+
and supports consistent hashing, non-blocking IO, and graceful server failover.}
|
|
16
|
+
s.email = %q{packagethief@gmail.com}
|
|
17
|
+
s.extra_rdoc_files = [
|
|
18
|
+
"README"
|
|
19
|
+
]
|
|
20
|
+
s.files = [
|
|
21
|
+
".gitignore",
|
|
22
|
+
"MIT-LICENSE",
|
|
23
|
+
"README",
|
|
24
|
+
"Rakefile",
|
|
25
|
+
"lib/active_support/cache/compressed_libmemcached_store.rb",
|
|
26
|
+
"lib/active_support/cache/libmemcached_store.rb",
|
|
27
|
+
"lib/libmemcached_store.rb",
|
|
28
|
+
"libmemcached_store.gemspec",
|
|
29
|
+
"test/libmemcached_store_test.rb"
|
|
30
|
+
]
|
|
31
|
+
s.homepage = %q{http://github.com/37signals/libmemcached_store}
|
|
32
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
33
|
+
s.require_paths = ["lib"]
|
|
34
|
+
s.rubygems_version = %q{1.3.7}
|
|
35
|
+
s.summary = %q{ActiveSupport::Cache wrapper for libmemcached}
|
|
36
|
+
s.test_files = [
|
|
37
|
+
"test/libmemcached_store_test.rb"
|
|
38
|
+
]
|
|
39
|
+
|
|
40
|
+
if s.respond_to? :specification_version then
|
|
41
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
42
|
+
s.specification_version = 3
|
|
43
|
+
|
|
44
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
45
|
+
s.add_runtime_dependency(%q<memcached>, [">= 0"])
|
|
46
|
+
else
|
|
47
|
+
s.add_dependency(%q<memcached>, [">= 0"])
|
|
48
|
+
end
|
|
49
|
+
else
|
|
50
|
+
s.add_dependency(%q<memcached>, [">= 0"])
|
|
51
|
+
end
|
|
52
|
+
end
|
|
53
|
+
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: libmemcached_store
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 21
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 2
|
|
9
|
-
-
|
|
10
|
-
version: 0.2.
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.2.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Jeffrey Hardy
|
|
@@ -50,6 +50,8 @@ files:
|
|
|
50
50
|
- Rakefile
|
|
51
51
|
- lib/active_support/cache/compressed_libmemcached_store.rb
|
|
52
52
|
- lib/active_support/cache/libmemcached_store.rb
|
|
53
|
+
- lib/libmemcached_store.rb
|
|
54
|
+
- libmemcached_store.gemspec
|
|
53
55
|
- test/libmemcached_store_test.rb
|
|
54
56
|
has_rdoc: true
|
|
55
57
|
homepage: http://github.com/37signals/libmemcached_store
|