resterl 0.0.5 → 0.0.6
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/lib/resterl/client.rb +1 -1
- data/resterl.gemspec +25 -27
- metadata +11 -6
- data/.gitignore +0 -23
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.6
|
data/lib/resterl/client.rb
CHANGED
data/resterl.gemspec
CHANGED
|
@@ -1,51 +1,49 @@
|
|
|
1
1
|
# Generated by jeweler
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{resterl}
|
|
8
|
-
s.version = "0.0.
|
|
8
|
+
s.version = "0.0.6"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
-
s.authors = ["Florian
|
|
12
|
-
s.date = %q{
|
|
11
|
+
s.authors = ["Florian D\303\274tsch"]
|
|
12
|
+
s.date = %q{2011-01-26}
|
|
13
13
|
s.email = %q{florian.duetsch@nix-wie-weg.de}
|
|
14
14
|
s.extra_rdoc_files = [
|
|
15
15
|
"LICENSE",
|
|
16
|
-
|
|
16
|
+
"README.rdoc"
|
|
17
17
|
]
|
|
18
18
|
s.files = [
|
|
19
19
|
".document",
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
"test/test_resterl.rb"
|
|
20
|
+
"LICENSE",
|
|
21
|
+
"README.rdoc",
|
|
22
|
+
"Rakefile",
|
|
23
|
+
"TODO.rdoc",
|
|
24
|
+
"VERSION",
|
|
25
|
+
"lib/resterl.rb",
|
|
26
|
+
"lib/resterl/base_object.rb",
|
|
27
|
+
"lib/resterl/caches/cache_interface.rb",
|
|
28
|
+
"lib/resterl/caches/key_prefix_decorator.rb",
|
|
29
|
+
"lib/resterl/caches/rails_memcached_cache.rb",
|
|
30
|
+
"lib/resterl/caches/redis_cache.rb",
|
|
31
|
+
"lib/resterl/caches/simple_cache.rb",
|
|
32
|
+
"lib/resterl/class_level_inheritable_attributes.rb",
|
|
33
|
+
"lib/resterl/client.rb",
|
|
34
|
+
"lib/resterl/request.rb",
|
|
35
|
+
"lib/resterl/response.rb",
|
|
36
|
+
"resterl.gemspec",
|
|
37
|
+
"test/helper.rb",
|
|
38
|
+
"test/test_resterl.rb"
|
|
40
39
|
]
|
|
41
40
|
s.homepage = %q{http://github.com/Nix-wie-weg/resterl}
|
|
42
|
-
s.rdoc_options = ["--charset=UTF-8"]
|
|
43
41
|
s.require_paths = ["lib"]
|
|
44
42
|
s.rubygems_version = %q{1.3.7}
|
|
45
43
|
s.summary = %q{Rudimentary HTTP client with focus on caching}
|
|
46
44
|
s.test_files = [
|
|
47
45
|
"test/helper.rb",
|
|
48
|
-
|
|
46
|
+
"test/test_resterl.rb"
|
|
49
47
|
]
|
|
50
48
|
|
|
51
49
|
if s.respond_to? :specification_version then
|
metadata
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: resterl
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
+
hash: 19
|
|
4
5
|
prerelease: false
|
|
5
6
|
segments:
|
|
6
7
|
- 0
|
|
7
8
|
- 0
|
|
8
|
-
-
|
|
9
|
-
version: 0.0.
|
|
9
|
+
- 6
|
|
10
|
+
version: 0.0.6
|
|
10
11
|
platform: ruby
|
|
11
12
|
authors:
|
|
12
13
|
- "Florian D\xC3\xBCtsch"
|
|
@@ -14,7 +15,7 @@ autorequire:
|
|
|
14
15
|
bindir: bin
|
|
15
16
|
cert_chain: []
|
|
16
17
|
|
|
17
|
-
date:
|
|
18
|
+
date: 2011-01-26 00:00:00 +01:00
|
|
18
19
|
default_executable:
|
|
19
20
|
dependencies:
|
|
20
21
|
- !ruby/object:Gem::Dependency
|
|
@@ -25,6 +26,7 @@ dependencies:
|
|
|
25
26
|
requirements:
|
|
26
27
|
- - ">="
|
|
27
28
|
- !ruby/object:Gem::Version
|
|
29
|
+
hash: 3
|
|
28
30
|
segments:
|
|
29
31
|
- 0
|
|
30
32
|
version: "0"
|
|
@@ -38,6 +40,7 @@ dependencies:
|
|
|
38
40
|
requirements:
|
|
39
41
|
- - ~>
|
|
40
42
|
- !ruby/object:Gem::Version
|
|
43
|
+
hash: 15
|
|
41
44
|
segments:
|
|
42
45
|
- 0
|
|
43
46
|
- 4
|
|
@@ -53,6 +56,7 @@ dependencies:
|
|
|
53
56
|
requirements:
|
|
54
57
|
- - ~>
|
|
55
58
|
- !ruby/object:Gem::Version
|
|
59
|
+
hash: 13
|
|
56
60
|
segments:
|
|
57
61
|
- 0
|
|
58
62
|
- 7
|
|
@@ -71,7 +75,6 @@ extra_rdoc_files:
|
|
|
71
75
|
- README.rdoc
|
|
72
76
|
files:
|
|
73
77
|
- .document
|
|
74
|
-
- .gitignore
|
|
75
78
|
- LICENSE
|
|
76
79
|
- README.rdoc
|
|
77
80
|
- Rakefile
|
|
@@ -96,8 +99,8 @@ homepage: http://github.com/Nix-wie-weg/resterl
|
|
|
96
99
|
licenses: []
|
|
97
100
|
|
|
98
101
|
post_install_message:
|
|
99
|
-
rdoc_options:
|
|
100
|
-
|
|
102
|
+
rdoc_options: []
|
|
103
|
+
|
|
101
104
|
require_paths:
|
|
102
105
|
- lib
|
|
103
106
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
@@ -105,6 +108,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
105
108
|
requirements:
|
|
106
109
|
- - ">="
|
|
107
110
|
- !ruby/object:Gem::Version
|
|
111
|
+
hash: 3
|
|
108
112
|
segments:
|
|
109
113
|
- 0
|
|
110
114
|
version: "0"
|
|
@@ -113,6 +117,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
113
117
|
requirements:
|
|
114
118
|
- - ">="
|
|
115
119
|
- !ruby/object:Gem::Version
|
|
120
|
+
hash: 3
|
|
116
121
|
segments:
|
|
117
122
|
- 0
|
|
118
123
|
version: "0"
|
data/.gitignore
DELETED