expiring_memory_store 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/expiring_memory_store.gemspec +43 -0
- metadata +3 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.1
|
@@ -0,0 +1,43 @@
|
|
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{expiring_memory_store}
|
8
|
+
s.version = "0.1.1"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Matthew Rudy Jacobs"]
|
12
|
+
s.date = %q{2010-06-25}
|
13
|
+
s.email = %q{dunno@dunno.com}
|
14
|
+
s.files = [
|
15
|
+
"MIT-LICENSE",
|
16
|
+
"Rakefile",
|
17
|
+
"Readme.md",
|
18
|
+
"VERSION",
|
19
|
+
"expiring_memory_store.gemspec",
|
20
|
+
"init.rb",
|
21
|
+
"lib/active_support/cache/expiring_memory_store.rb",
|
22
|
+
"test/expiring_memory_store_test.rb"
|
23
|
+
]
|
24
|
+
s.homepage = %q{http://github.com/matthewrudy/expiring_memory_store}
|
25
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
26
|
+
s.require_paths = ["lib"]
|
27
|
+
s.rubygems_version = %q{1.3.6}
|
28
|
+
s.summary = %q{Fallback when original is not present or somethings not right.}
|
29
|
+
s.test_files = [
|
30
|
+
"test/expiring_memory_store_test.rb"
|
31
|
+
]
|
32
|
+
|
33
|
+
if s.respond_to? :specification_version then
|
34
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
35
|
+
s.specification_version = 3
|
36
|
+
|
37
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
38
|
+
else
|
39
|
+
end
|
40
|
+
else
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
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
|
+
- 1
|
9
|
+
version: 0.1.1
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Matthew Rudy Jacobs
|
@@ -31,6 +31,7 @@ files:
|
|
31
31
|
- Rakefile
|
32
32
|
- Readme.md
|
33
33
|
- VERSION
|
34
|
+
- expiring_memory_store.gemspec
|
34
35
|
- init.rb
|
35
36
|
- lib/active_support/cache/expiring_memory_store.rb
|
36
37
|
- test/expiring_memory_store_test.rb
|