typhoeus_spec_cache 0.2.1 → 0.2.2
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/.gitignore +0 -2
- data/VERSION +1 -1
- data/lib/typhoeus/spec_cache_macros.rb +1 -1
- data/typhoeus_spec_cache.gemspec +62 -0
- metadata +4 -3
data/.gitignore
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.2
|
|
@@ -15,7 +15,7 @@ module Typhoeus
|
|
|
15
15
|
def typhoeus_spec_cache(cache_path, &block)
|
|
16
16
|
describe "HTTP cache suite for #{cache_path}" do
|
|
17
17
|
hydra = Typhoeus::Hydra.new
|
|
18
|
-
cache = SpecCache.new(hydra, cache_path)
|
|
18
|
+
cache = Typhoeus::SpecCache.new(hydra, cache_path)
|
|
19
19
|
|
|
20
20
|
before(:each) do
|
|
21
21
|
stub_hydra(hydra)
|
|
@@ -0,0 +1,62 @@
|
|
|
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{typhoeus_spec_cache}
|
|
8
|
+
s.version = "0.2.2"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["David Balatero"]
|
|
12
|
+
s.date = %q{2010-05-20}
|
|
13
|
+
s.description = %q{A plugin to help you dynamically manage HTTP caching for your specs.}
|
|
14
|
+
s.email = %q{dbalatero@gmail.com}
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"LICENSE",
|
|
17
|
+
"README.markdown",
|
|
18
|
+
"README.markdown.html"
|
|
19
|
+
]
|
|
20
|
+
s.files = [
|
|
21
|
+
".document",
|
|
22
|
+
".gitignore",
|
|
23
|
+
"LICENSE",
|
|
24
|
+
"README.markdown",
|
|
25
|
+
"Rakefile",
|
|
26
|
+
"VERSION",
|
|
27
|
+
"lib/typhoeus/instance_exec.rb",
|
|
28
|
+
"lib/typhoeus/response_marshalling.rb",
|
|
29
|
+
"lib/typhoeus/spec_cache.rb",
|
|
30
|
+
"lib/typhoeus/spec_cache_macros.rb",
|
|
31
|
+
"lib/typhoeus_spec_cache.rb",
|
|
32
|
+
"spec/spec.opts",
|
|
33
|
+
"spec/spec_helper.rb",
|
|
34
|
+
"spec/typhoeus/spec_cache_macros_spec.rb",
|
|
35
|
+
"spec/typhoeus/spec_cache_spec.rb",
|
|
36
|
+
"typhoeus_spec_cache.gemspec"
|
|
37
|
+
]
|
|
38
|
+
s.homepage = %q{http://github.com/dbalatero/typhoeus_spec_cache}
|
|
39
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
40
|
+
s.require_paths = ["lib"]
|
|
41
|
+
s.rubygems_version = %q{1.3.6}
|
|
42
|
+
s.summary = %q{A plugin to help you dynamically manage HTTP caching for your specs.}
|
|
43
|
+
s.test_files = [
|
|
44
|
+
"spec/spec_helper.rb",
|
|
45
|
+
"spec/typhoeus/spec_cache_macros_spec.rb",
|
|
46
|
+
"spec/typhoeus/spec_cache_spec.rb"
|
|
47
|
+
]
|
|
48
|
+
|
|
49
|
+
if s.respond_to? :specification_version then
|
|
50
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
51
|
+
s.specification_version = 3
|
|
52
|
+
|
|
53
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
54
|
+
s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
|
|
55
|
+
else
|
|
56
|
+
s.add_dependency(%q<rspec>, [">= 1.2.9"])
|
|
57
|
+
end
|
|
58
|
+
else
|
|
59
|
+
s.add_dependency(%q<rspec>, [">= 1.2.9"])
|
|
60
|
+
end
|
|
61
|
+
end
|
|
62
|
+
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 2
|
|
8
|
-
-
|
|
9
|
-
version: 0.2.
|
|
8
|
+
- 2
|
|
9
|
+
version: 0.2.2
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- David Balatero
|
|
@@ -14,7 +14,7 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date: 2010-
|
|
17
|
+
date: 2010-05-20 00:00:00 -07:00
|
|
18
18
|
default_executable:
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
@@ -57,6 +57,7 @@ files:
|
|
|
57
57
|
- spec/spec_helper.rb
|
|
58
58
|
- spec/typhoeus/spec_cache_macros_spec.rb
|
|
59
59
|
- spec/typhoeus/spec_cache_spec.rb
|
|
60
|
+
- typhoeus_spec_cache.gemspec
|
|
60
61
|
- README.markdown.html
|
|
61
62
|
has_rdoc: true
|
|
62
63
|
homepage: http://github.com/dbalatero/typhoeus_spec_cache
|