cache_version 0.9.4 → 0.9.5
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/VERSION +1 -1
- data/cache_version.gemspec +55 -0
- metadata +2 -1
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.9.
|
|
1
|
+
0.9.5
|
|
@@ -0,0 +1,55 @@
|
|
|
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{cache_version}
|
|
8
|
+
s.version = "0.9.5"
|
|
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{Store the version of any class for cache invalidation}
|
|
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
|
+
"cache_version.gemspec",
|
|
26
|
+
"examples/sample_migration.rb",
|
|
27
|
+
"lib/cache_version.rb",
|
|
28
|
+
"test/cache_version_test.rb",
|
|
29
|
+
"test/test_helper.rb"
|
|
30
|
+
]
|
|
31
|
+
s.homepage = %q{http://github.com/ninjudd/cache_version}
|
|
32
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
33
|
+
s.require_paths = ["lib"]
|
|
34
|
+
s.rubygems_version = %q{1.3.5}
|
|
35
|
+
s.summary = %q{Store the version of any class for cache invalidation}
|
|
36
|
+
s.test_files = [
|
|
37
|
+
"test/cache_version_test.rb",
|
|
38
|
+
"test/test_helper.rb",
|
|
39
|
+
"examples/sample_migration.rb"
|
|
40
|
+
]
|
|
41
|
+
|
|
42
|
+
if s.respond_to? :specification_version then
|
|
43
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
44
|
+
s.specification_version = 3
|
|
45
|
+
|
|
46
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
47
|
+
s.add_runtime_dependency(%q<memcache>, [">= 1.0.0"])
|
|
48
|
+
else
|
|
49
|
+
s.add_dependency(%q<memcache>, [">= 1.0.0"])
|
|
50
|
+
end
|
|
51
|
+
else
|
|
52
|
+
s.add_dependency(%q<memcache>, [">= 1.0.0"])
|
|
53
|
+
end
|
|
54
|
+
end
|
|
55
|
+
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cache_version
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Justin Balthrop
|
|
@@ -37,6 +37,7 @@ files:
|
|
|
37
37
|
- README.rdoc
|
|
38
38
|
- Rakefile
|
|
39
39
|
- VERSION
|
|
40
|
+
- cache_version.gemspec
|
|
40
41
|
- examples/sample_migration.rb
|
|
41
42
|
- lib/cache_version.rb
|
|
42
43
|
- test/cache_version_test.rb
|