record_cache 0.9.8 → 0.9.9
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 +2 -1
- data/VERSION +1 -1
- data/record_cache.gemspec +68 -0
- metadata +3 -2
data/.gitignore
CHANGED
data/Rakefile
CHANGED
|
@@ -15,8 +15,9 @@ begin
|
|
|
15
15
|
s.add_dependency('deferrable', '>= 0.1.0')
|
|
16
16
|
s.add_dependency('memcache', '>= 1.0.0')
|
|
17
17
|
s.add_dependency('cache_version', '>= 0.9.4')
|
|
18
|
-
s.add_dependency('activerecord', '>= 0')
|
|
18
|
+
s.add_dependency('activerecord', '>= 2.0.0')
|
|
19
19
|
end
|
|
20
|
+
Jeweler::GemcutterTasks.new
|
|
20
21
|
rescue LoadError
|
|
21
22
|
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
|
|
22
23
|
end
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.9.
|
|
1
|
+
0.9.9
|
|
@@ -0,0 +1,68 @@
|
|
|
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{record_cache}
|
|
8
|
+
s.version = "0.9.9"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Justin Balthrop"]
|
|
12
|
+
s.date = %q{2009-11-20}
|
|
13
|
+
s.description = %q{Active Record caching and indexing in memcache}
|
|
14
|
+
s.email = %q{code@justinbalthrop.com}
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"LICENSE",
|
|
17
|
+
"README.rdoc"
|
|
18
|
+
]
|
|
19
|
+
s.files = [
|
|
20
|
+
".gitignore",
|
|
21
|
+
"LICENSE",
|
|
22
|
+
"README.rdoc",
|
|
23
|
+
"Rakefile",
|
|
24
|
+
"VERSION",
|
|
25
|
+
"lib/record_cache.rb",
|
|
26
|
+
"lib/record_cache/index.rb",
|
|
27
|
+
"lib/record_cache/scope.rb",
|
|
28
|
+
"lib/record_cache/set.rb",
|
|
29
|
+
"record_cache.gemspec",
|
|
30
|
+
"test/record_cache_test.rb",
|
|
31
|
+
"test/test_helper.rb"
|
|
32
|
+
]
|
|
33
|
+
s.homepage = %q{http://github.com/ninjudd/record_cache}
|
|
34
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
35
|
+
s.require_paths = ["lib"]
|
|
36
|
+
s.rubygems_version = %q{1.3.5}
|
|
37
|
+
s.summary = %q{Active Record caching and indexing in memcache. An alternative to cache_fu}
|
|
38
|
+
s.test_files = [
|
|
39
|
+
"test/record_cache_test.rb",
|
|
40
|
+
"test/test_helper.rb"
|
|
41
|
+
]
|
|
42
|
+
|
|
43
|
+
if s.respond_to? :specification_version then
|
|
44
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
45
|
+
s.specification_version = 3
|
|
46
|
+
|
|
47
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
48
|
+
s.add_runtime_dependency(%q<after_commit>, [">= 1.0.0"])
|
|
49
|
+
s.add_runtime_dependency(%q<deferrable>, [">= 0.1.0"])
|
|
50
|
+
s.add_runtime_dependency(%q<memcache>, [">= 1.0.0"])
|
|
51
|
+
s.add_runtime_dependency(%q<cache_version>, [">= 0.9.4"])
|
|
52
|
+
s.add_runtime_dependency(%q<activerecord>, [">= 2.0.0"])
|
|
53
|
+
else
|
|
54
|
+
s.add_dependency(%q<after_commit>, [">= 1.0.0"])
|
|
55
|
+
s.add_dependency(%q<deferrable>, [">= 0.1.0"])
|
|
56
|
+
s.add_dependency(%q<memcache>, [">= 1.0.0"])
|
|
57
|
+
s.add_dependency(%q<cache_version>, [">= 0.9.4"])
|
|
58
|
+
s.add_dependency(%q<activerecord>, [">= 2.0.0"])
|
|
59
|
+
end
|
|
60
|
+
else
|
|
61
|
+
s.add_dependency(%q<after_commit>, [">= 1.0.0"])
|
|
62
|
+
s.add_dependency(%q<deferrable>, [">= 0.1.0"])
|
|
63
|
+
s.add_dependency(%q<memcache>, [">= 1.0.0"])
|
|
64
|
+
s.add_dependency(%q<cache_version>, [">= 0.9.4"])
|
|
65
|
+
s.add_dependency(%q<activerecord>, [">= 2.0.0"])
|
|
66
|
+
end
|
|
67
|
+
end
|
|
68
|
+
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: record_cache
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Justin Balthrop
|
|
@@ -60,7 +60,7 @@ dependencies:
|
|
|
60
60
|
requirements:
|
|
61
61
|
- - ">="
|
|
62
62
|
- !ruby/object:Gem::Version
|
|
63
|
-
version:
|
|
63
|
+
version: 2.0.0
|
|
64
64
|
version:
|
|
65
65
|
description: Active Record caching and indexing in memcache
|
|
66
66
|
email: code@justinbalthrop.com
|
|
@@ -81,6 +81,7 @@ files:
|
|
|
81
81
|
- lib/record_cache/index.rb
|
|
82
82
|
- lib/record_cache/scope.rb
|
|
83
83
|
- lib/record_cache/set.rb
|
|
84
|
+
- record_cache.gemspec
|
|
84
85
|
- test/record_cache_test.rb
|
|
85
86
|
- test/test_helper.rb
|
|
86
87
|
has_rdoc: true
|