padrino-cache 0.1.0 → 0.1.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/VERSION +1 -1
- data/padrino-cache.gemspec +4 -7
- data/test/helper.rb +2 -2
- metadata +4 -6
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1
|
data/padrino-cache.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{padrino-cache}
|
|
8
|
-
s.version = "0.1.
|
|
8
|
+
s.version = "0.1.1"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Padrino Team", "Nathan Esquenazi", "Davide D'Agostino", "Arthur Chiu"]
|
|
12
|
-
s.date = %q{2009-11-
|
|
12
|
+
s.date = %q{2009-11-17}
|
|
13
13
|
s.description = %q{Caching support for memcached, page and fragment}
|
|
14
14
|
s.email = %q{nesquena@gmail.com}
|
|
15
15
|
s.extra_rdoc_files = [
|
|
@@ -21,6 +21,8 @@ Gem::Specification.new do |s|
|
|
|
21
21
|
".gitignore",
|
|
22
22
|
"LICENSE",
|
|
23
23
|
"README.rdoc",
|
|
24
|
+
"README.rdoc",
|
|
25
|
+
"Rakefile",
|
|
24
26
|
"Rakefile",
|
|
25
27
|
"VERSION",
|
|
26
28
|
"lib/padrino-cache.rb",
|
|
@@ -34,11 +36,6 @@ Gem::Specification.new do |s|
|
|
|
34
36
|
s.require_paths = ["lib"]
|
|
35
37
|
s.rubygems_version = %q{1.3.5}
|
|
36
38
|
s.summary = %q{Page and fragment caching for Padrino}
|
|
37
|
-
s.test_files = [
|
|
38
|
-
"test/active_support_helpers.rb",
|
|
39
|
-
"test/helper.rb",
|
|
40
|
-
"test/test_padrino_cache.rb"
|
|
41
|
-
]
|
|
42
39
|
|
|
43
40
|
if s.respond_to? :specification_version then
|
|
44
41
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
data/test/helper.rb
CHANGED
|
@@ -8,8 +8,8 @@ require 'webrat'
|
|
|
8
8
|
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
|
9
9
|
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
|
10
10
|
require 'active_support_helpers'
|
|
11
|
-
require
|
|
12
|
-
require
|
|
11
|
+
require 'padrino-helpers'
|
|
12
|
+
require 'padrino-cache'
|
|
13
13
|
|
|
14
14
|
class Test::Unit::TestCase
|
|
15
15
|
include Padrino::Helpers::OutputHelpers
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: padrino-cache
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Padrino Team
|
|
@@ -12,7 +12,7 @@ autorequire:
|
|
|
12
12
|
bindir: bin
|
|
13
13
|
cert_chain: []
|
|
14
14
|
|
|
15
|
-
date: 2009-11-
|
|
15
|
+
date: 2009-11-17 00:00:00 -08:00
|
|
16
16
|
default_executable:
|
|
17
17
|
dependencies:
|
|
18
18
|
- !ruby/object:Gem::Dependency
|
|
@@ -124,7 +124,5 @@ rubygems_version: 1.3.5
|
|
|
124
124
|
signing_key:
|
|
125
125
|
specification_version: 3
|
|
126
126
|
summary: Page and fragment caching for Padrino
|
|
127
|
-
test_files:
|
|
128
|
-
|
|
129
|
-
- test/helper.rb
|
|
130
|
-
- test/test_padrino_cache.rb
|
|
127
|
+
test_files: []
|
|
128
|
+
|