padrino-cache 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +1 -1
- data/Rakefile +2 -2
- data/VERSION +1 -1
- data/padrino-cache.gemspec +4 -8
- data/test/helper.rb +0 -4
- data/test/test_padrino_cache.rb +1 -1
- metadata +3 -5
- data/test/active_support_helpers.rb +0 -7
data/README.rdoc
CHANGED
@@ -7,7 +7,7 @@ To install the 'full-stack' padrino framework, simply grab the latest version fr
|
|
7
7
|
$ sudo gem install padrino --source http://gemcutter.org
|
8
8
|
|
9
9
|
This will install the necessary padrino gems to get you started.
|
10
|
-
Now you are ready to use this gem to enhance your
|
10
|
+
Now you are ready to use this gem to enhance your existing Sinatra projects or build new Padrino applications.
|
11
11
|
|
12
12
|
You can also install only the padrino-cache gem for more fine-grained use:
|
13
13
|
|
data/Rakefile
CHANGED
@@ -8,12 +8,12 @@ begin
|
|
8
8
|
gem.summary = "Page and fragment caching for Padrino"
|
9
9
|
gem.description = "Caching support for memcached, page and fragment"
|
10
10
|
gem.email = "nesquena@gmail.com"
|
11
|
-
gem.homepage = "http://github.com/padrino/padrino-cache"
|
11
|
+
gem.homepage = "http://github.com/padrino/padrino-framework/tree/master/padrino-cache"
|
12
12
|
gem.authors = ["Padrino Team", "Nathan Esquenazi", "Davide D'Agostino", "Arthur Chiu"]
|
13
13
|
gem.add_runtime_dependency "sinatra", ">= 0.9.2"
|
14
14
|
gem.add_runtime_dependency "padrino-core", ">= 0.1.1"
|
15
15
|
gem.add_development_dependency "haml", ">= 2.2.1"
|
16
|
-
gem.add_development_dependency "shoulda",
|
16
|
+
gem.add_development_dependency "shoulda", ">= 0"
|
17
17
|
gem.add_development_dependency "mocha", ">= 0.9.7"
|
18
18
|
gem.add_development_dependency "rack-test", ">= 0.5.0"
|
19
19
|
gem.add_development_dependency "webrat", ">= 0.5.1"
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.4
|
data/padrino-cache.gemspec
CHANGED
@@ -5,33 +5,29 @@
|
|
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.4"
|
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-23}
|
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 = [
|
16
|
-
"
|
17
|
-
"README.rdoc"
|
16
|
+
"README.rdoc"
|
18
17
|
]
|
19
18
|
s.files = [
|
20
19
|
".document",
|
21
20
|
".gitignore",
|
22
21
|
"LICENSE",
|
23
22
|
"README.rdoc",
|
24
|
-
"README.rdoc",
|
25
|
-
"Rakefile",
|
26
23
|
"Rakefile",
|
27
24
|
"VERSION",
|
28
25
|
"lib/padrino-cache.rb",
|
29
26
|
"padrino-cache.gemspec",
|
30
|
-
"test/active_support_helpers.rb",
|
31
27
|
"test/helper.rb",
|
32
28
|
"test/test_padrino_cache.rb"
|
33
29
|
]
|
34
|
-
s.homepage = %q{http://github.com/padrino/padrino-cache}
|
30
|
+
s.homepage = %q{http://github.com/padrino/padrino-framework/tree/master/padrino-cache}
|
35
31
|
s.rdoc_options = ["--charset=UTF-8"]
|
36
32
|
s.require_paths = ["lib"]
|
37
33
|
s.rubygems_version = %q{1.3.5}
|
data/test/helper.rb
CHANGED
@@ -7,14 +7,10 @@ require 'webrat'
|
|
7
7
|
|
8
8
|
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
9
9
|
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
10
|
-
require 'active_support_helpers'
|
11
10
|
require 'padrino-helpers'
|
12
11
|
require 'padrino-cache'
|
13
12
|
|
14
13
|
class Test::Unit::TestCase
|
15
|
-
include Padrino::Helpers::OutputHelpers
|
16
|
-
include Padrino::Helpers::TagHelpers
|
17
|
-
include Padrino::Helpers::AssetTagHelpers
|
18
14
|
include Rack::Test::Methods
|
19
15
|
include Webrat::Methods
|
20
16
|
include Webrat::Matchers
|
data/test/test_padrino_cache.rb
CHANGED
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.4
|
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-23 00:00:00 -08:00
|
16
16
|
default_executable:
|
17
17
|
dependencies:
|
18
18
|
- !ruby/object:Gem::Dependency
|
@@ -92,7 +92,6 @@ executables: []
|
|
92
92
|
extensions: []
|
93
93
|
|
94
94
|
extra_rdoc_files:
|
95
|
-
- LICENSE
|
96
95
|
- README.rdoc
|
97
96
|
files:
|
98
97
|
- .document
|
@@ -103,11 +102,10 @@ files:
|
|
103
102
|
- VERSION
|
104
103
|
- lib/padrino-cache.rb
|
105
104
|
- padrino-cache.gemspec
|
106
|
-
- test/active_support_helpers.rb
|
107
105
|
- test/helper.rb
|
108
106
|
- test/test_padrino_cache.rb
|
109
107
|
has_rdoc: true
|
110
|
-
homepage: http://github.com/padrino/padrino-cache
|
108
|
+
homepage: http://github.com/padrino/padrino-framework/tree/master/padrino-cache
|
111
109
|
licenses: []
|
112
110
|
|
113
111
|
post_install_message:
|