rest-core 3.5.91 → 3.5.92
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +1 -1
- data/CHANGES.md +8 -0
- data/lib/rest-core.rb +1 -0
- data/lib/rest-core/util/dalli_extension.rb +15 -0
- data/lib/rest-core/version.rb +1 -1
- data/rest-core.gemspec +7 -4
- data/test/test_dalli_extension.rb +41 -0
- metadata +6 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 71fc71379386c45f55e01051b376bf514a1075c7
|
4
|
+
data.tar.gz: f928e5b82c9a3f1363b63f26ab44ced207bb9eed
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5d381aac49625af92235bd160607220756cd596f8ffdcabc9a90512185564e65e3a4356a0650227e9b6aa5edacedd6b0b3cf4cfdf0883adca4fb48be38f00d6a
|
7
|
+
data.tar.gz: bfa47194947c204e83e027d3311ec950ec35a5a7417f727317120844908ebab2c3f32bfc1caa212d7f483aa5682ace607c0e580159fde3020c32cd7c889a5ddb
|
data/.travis.yml
CHANGED
data/CHANGES.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# CHANGES
|
2
2
|
|
3
|
+
## rest-core 3.5.92 -- 2015-12-28
|
4
|
+
|
5
|
+
### Enhancements
|
6
|
+
|
7
|
+
* Added `RestCore::DalliExtension` for making `Dalli::Client` walk and quad
|
8
|
+
like `Hash` so that you could pass it as a cache client to
|
9
|
+
`RestCore::Cache`.
|
10
|
+
|
3
11
|
## rest-core 3.5.91 -- 2015-12-11
|
4
12
|
|
5
13
|
### Bugs fixed
|
data/lib/rest-core.rb
CHANGED
@@ -45,6 +45,7 @@ module RestCore
|
|
45
45
|
autoload :Config , 'rest-core/util/config'
|
46
46
|
autoload :Clash , 'rest-core/util/clash'
|
47
47
|
autoload :Smash , 'rest-core/util/smash'
|
48
|
+
autoload :DalliExtension, 'rest-core/util/dalli_extension'
|
48
49
|
|
49
50
|
# middlewares
|
50
51
|
autoload :AuthBasic , 'rest-core/middleware/auth_basic'
|
data/lib/rest-core/version.rb
CHANGED
data/rest-core.gemspec
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
|
-
# stub: rest-core 3.5.
|
2
|
+
# stub: rest-core 3.5.92 ruby lib
|
3
3
|
|
4
4
|
Gem::Specification.new do |s|
|
5
5
|
s.name = "rest-core"
|
6
|
-
s.version = "3.5.
|
6
|
+
s.version = "3.5.92"
|
7
7
|
|
8
8
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
9
9
|
s.require_paths = ["lib"]
|
10
10
|
s.authors = ["Lin Jen-Shin (godfat)"]
|
11
|
-
s.date = "2015-12-
|
11
|
+
s.date = "2015-12-28"
|
12
12
|
s.description = "Modular Ruby clients interface for REST APIs.\n\nThere has been an explosion in the number of REST APIs available today.\nTo address the need for a way to access these APIs easily and elegantly,\nwe have developed rest-core, which consists of composable middleware\nthat allows you to build a REST client for any REST API. Or in the case of\ncommon APIs such as Facebook, Github, and Twitter, you can simply use the\ndedicated clients provided by [rest-more][].\n\n[rest-more]: https://github.com/godfat/rest-more"
|
13
13
|
s.email = ["godfat (XD) godfat.org"]
|
14
14
|
s.files = [
|
@@ -66,6 +66,7 @@ Gem::Specification.new do |s|
|
|
66
66
|
"lib/rest-core/timer.rb",
|
67
67
|
"lib/rest-core/util/clash.rb",
|
68
68
|
"lib/rest-core/util/config.rb",
|
69
|
+
"lib/rest-core/util/dalli_extension.rb",
|
69
70
|
"lib/rest-core/util/hmac.rb",
|
70
71
|
"lib/rest-core/util/json.rb",
|
71
72
|
"lib/rest-core/util/parse_link.rb",
|
@@ -85,6 +86,7 @@ Gem::Specification.new do |s|
|
|
85
86
|
"test/test_client.rb",
|
86
87
|
"test/test_client_oauth1.rb",
|
87
88
|
"test/test_config.rb",
|
89
|
+
"test/test_dalli_extension.rb",
|
88
90
|
"test/test_default_headers.rb",
|
89
91
|
"test/test_default_payload.rb",
|
90
92
|
"test/test_default_query.rb",
|
@@ -113,7 +115,7 @@ Gem::Specification.new do |s|
|
|
113
115
|
"test/test_universal.rb"]
|
114
116
|
s.homepage = "https://github.com/godfat/rest-core"
|
115
117
|
s.licenses = ["Apache License 2.0"]
|
116
|
-
s.rubygems_version = "2.5.
|
118
|
+
s.rubygems_version = "2.5.1"
|
117
119
|
s.summary = "Modular Ruby clients interface for REST APIs."
|
118
120
|
s.test_files = [
|
119
121
|
"test/test_auth_basic.rb",
|
@@ -124,6 +126,7 @@ Gem::Specification.new do |s|
|
|
124
126
|
"test/test_client.rb",
|
125
127
|
"test/test_client_oauth1.rb",
|
126
128
|
"test/test_config.rb",
|
129
|
+
"test/test_dalli_extension.rb",
|
127
130
|
"test/test_default_headers.rb",
|
128
131
|
"test/test_default_payload.rb",
|
129
132
|
"test/test_default_query.rb",
|
@@ -0,0 +1,41 @@
|
|
1
|
+
|
2
|
+
require 'rest-core/test'
|
3
|
+
|
4
|
+
describe RC::DalliExtension do
|
5
|
+
after do
|
6
|
+
Muack.verify
|
7
|
+
end
|
8
|
+
|
9
|
+
def engine env
|
10
|
+
yield(env.merge(RC::RESPONSE_STATUS => 200,
|
11
|
+
RC::RESPONSE_HEADERS => {'A' => 'B'},
|
12
|
+
RC::RESPONSE_BODY => 'ok'))
|
13
|
+
end
|
14
|
+
|
15
|
+
def call dalli, opts={}, &block
|
16
|
+
dalli.extend(RC::DalliExtension)
|
17
|
+
RC::Cache.new(method(:engine), dalli, 10).
|
18
|
+
call({RC::REQUEST_METHOD => :get,
|
19
|
+
RC::REQUEST_HEADERS => {}}.merge(opts),
|
20
|
+
&lambda{|_|_})[RC::RESPONSE_BODY]
|
21
|
+
end
|
22
|
+
|
23
|
+
would 'set and get' do
|
24
|
+
dalli = Object.new
|
25
|
+
mock(dalli).set(is_a(String), nil) do |key, value|
|
26
|
+
mock(dalli).get(key){ "200\nA: B\n\n\nok" }
|
27
|
+
end
|
28
|
+
|
29
|
+
expect(call(dalli, 'cache.update' => true)).eq 'ok'
|
30
|
+
end
|
31
|
+
|
32
|
+
would 'store' do
|
33
|
+
dalli = Object.new
|
34
|
+
mock(dalli).get(is_a(String)) do |key|
|
35
|
+
mock(dalli).set(key, "200\nA: B\n\n\nok", 10){}
|
36
|
+
nil
|
37
|
+
end
|
38
|
+
|
39
|
+
expect(call(dalli)).eq 'ok'
|
40
|
+
end
|
41
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rest-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.5.
|
4
|
+
version: 3.5.92
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lin Jen-Shin (godfat)
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-12-
|
11
|
+
date: 2015-12-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: httpclient
|
@@ -123,6 +123,7 @@ files:
|
|
123
123
|
- lib/rest-core/timer.rb
|
124
124
|
- lib/rest-core/util/clash.rb
|
125
125
|
- lib/rest-core/util/config.rb
|
126
|
+
- lib/rest-core/util/dalli_extension.rb
|
126
127
|
- lib/rest-core/util/hmac.rb
|
127
128
|
- lib/rest-core/util/json.rb
|
128
129
|
- lib/rest-core/util/parse_link.rb
|
@@ -142,6 +143,7 @@ files:
|
|
142
143
|
- test/test_client.rb
|
143
144
|
- test/test_client_oauth1.rb
|
144
145
|
- test/test_config.rb
|
146
|
+
- test/test_dalli_extension.rb
|
145
147
|
- test/test_default_headers.rb
|
146
148
|
- test/test_default_payload.rb
|
147
149
|
- test/test_default_query.rb
|
@@ -188,7 +190,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
188
190
|
version: '0'
|
189
191
|
requirements: []
|
190
192
|
rubyforge_project:
|
191
|
-
rubygems_version: 2.5.
|
193
|
+
rubygems_version: 2.5.1
|
192
194
|
signing_key:
|
193
195
|
specification_version: 4
|
194
196
|
summary: Modular Ruby clients interface for REST APIs.
|
@@ -201,6 +203,7 @@ test_files:
|
|
201
203
|
- test/test_client.rb
|
202
204
|
- test/test_client_oauth1.rb
|
203
205
|
- test/test_config.rb
|
206
|
+
- test/test_dalli_extension.rb
|
204
207
|
- test/test_default_headers.rb
|
205
208
|
- test/test_default_payload.rb
|
206
209
|
- test/test_default_query.rb
|