redvex-ar_cache 0.1.2 → 0.1.3
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/Manifest +0 -1
- data/Rakefile +1 -1
- data/ar_cache.gemspec +5 -6
- data/lib/ar_cache.rb +1 -1
- metadata +6 -7
data/Manifest
CHANGED
data/Rakefile
CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
|
|
2
2
|
require 'rake'
|
3
3
|
require 'echoe'
|
4
4
|
|
5
|
-
Echoe.new('ar_cache', '0.1.
|
5
|
+
Echoe.new('ar_cache', '0.1.3') do |p|
|
6
6
|
p.description = "Performe ActiveRecord cache in File System for heavy and repetitive query."
|
7
7
|
p.url = "http://github.com/redvex/ar_cache"
|
8
8
|
p.author = "Gianni Mazza"
|
data/ar_cache.gemspec
CHANGED
@@ -2,26 +2,25 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{ar_cache}
|
5
|
-
s.version = "0.1.
|
5
|
+
s.version = "0.1.3"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Gianni Mazza"]
|
9
|
-
s.date = %q{2009-
|
9
|
+
s.date = %q{2009-09-11}
|
10
10
|
s.description = %q{Performe ActiveRecord cache in File System for heavy and repetitive query.}
|
11
11
|
s.email = %q{redvex@me.com}
|
12
12
|
s.extra_rdoc_files = ["CHANGELOG", "lib/ar_cache.rb", "README.rdoc"]
|
13
|
-
s.files = ["
|
14
|
-
s.has_rdoc = true
|
13
|
+
s.files = ["CHANGELOG", "init.rb", "lib/ar_cache.rb", "Manifest", "Rakefile", "README.rdoc", "ar_cache.gemspec"]
|
15
14
|
s.homepage = %q{http://github.com/redvex/ar_cache}
|
16
15
|
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Ar_cache", "--main", "README.rdoc"]
|
17
16
|
s.require_paths = ["lib"]
|
18
17
|
s.rubyforge_project = %q{ar_cache}
|
19
|
-
s.rubygems_version = %q{1.3.
|
18
|
+
s.rubygems_version = %q{1.3.5}
|
20
19
|
s.summary = %q{Performe ActiveRecord cache in File System for heavy and repetitive query.}
|
21
20
|
|
22
21
|
if s.respond_to? :specification_version then
|
23
22
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
24
|
-
s.specification_version =
|
23
|
+
s.specification_version = 3
|
25
24
|
|
26
25
|
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
27
26
|
s.add_runtime_dependency(%q<json>, [">= 0"])
|
data/lib/ar_cache.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: redvex-ar_cache
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gianni Mazza
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-09-11 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -33,16 +33,15 @@ extra_rdoc_files:
|
|
33
33
|
- lib/ar_cache.rb
|
34
34
|
- README.rdoc
|
35
35
|
files:
|
36
|
-
- ar_cache.gemspec
|
37
36
|
- CHANGELOG
|
38
37
|
- init.rb
|
39
38
|
- lib/ar_cache.rb
|
40
39
|
- Manifest
|
41
40
|
- Rakefile
|
42
41
|
- README.rdoc
|
43
|
-
|
42
|
+
- ar_cache.gemspec
|
43
|
+
has_rdoc: false
|
44
44
|
homepage: http://github.com/redvex/ar_cache
|
45
|
-
licenses:
|
46
45
|
post_install_message:
|
47
46
|
rdoc_options:
|
48
47
|
- --line-numbers
|
@@ -68,9 +67,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
68
67
|
requirements: []
|
69
68
|
|
70
69
|
rubyforge_project: ar_cache
|
71
|
-
rubygems_version: 1.
|
70
|
+
rubygems_version: 1.2.0
|
72
71
|
signing_key:
|
73
|
-
specification_version:
|
72
|
+
specification_version: 3
|
74
73
|
summary: Performe ActiveRecord cache in File System for heavy and repetitive query.
|
75
74
|
test_files: []
|
76
75
|
|