webspicy 0.12.4 → 0.12.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/examples/restful/Gemfile.lock +16 -16
- data/lib/webspicy/client/rack_test_client.rb +1 -0
- data/lib/webspicy/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c3d8a8db807de1959e59ebc27dec02a35c11749763c64932c4b38be2c763375f
|
4
|
+
data.tar.gz: d8bdd2e5e1dfc7dfbf25034ccb5867f93b1dd09d63e60225c78f30b0d9577a22
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 25f00703c45fdef554cb45d8699ed97b9bc61a1d395103260b2e1901960a21740eed8aa47f103c760b8d6e352aebb55d98377322b2fe0bdb033302d52694b50e
|
7
|
+
data.tar.gz: 487fc0463160ff897ceab1ec3782ffb5c1cf89aa701970ddf0478dac71678ae458f95423aa7cdde3fbfa2c0a762fd61d3a9cfc14fe8e02efeacf978897ba5770
|
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ../..
|
3
3
|
specs:
|
4
|
-
webspicy (0.12.
|
4
|
+
webspicy (0.12.5)
|
5
5
|
finitio (>= 0.6.1)
|
6
6
|
http (~> 2)
|
7
7
|
path (~> 1.3)
|
@@ -16,9 +16,9 @@ GEM
|
|
16
16
|
public_suffix (>= 2.0.2, < 4.0)
|
17
17
|
citrus (3.0.2)
|
18
18
|
diff-lcs (1.3)
|
19
|
-
domain_name (0.5.
|
19
|
+
domain_name (0.5.20190701)
|
20
20
|
unf (>= 0.0.5, < 1.0.0)
|
21
|
-
finitio (0.
|
21
|
+
finitio (0.7.0)
|
22
22
|
citrus (>= 2.4, < 4.0)
|
23
23
|
http (2.2.2)
|
24
24
|
addressable (~> 2.3)
|
@@ -29,11 +29,11 @@ GEM
|
|
29
29
|
domain_name (~> 0.5)
|
30
30
|
http-form_data (1.0.3)
|
31
31
|
http_parser.rb (0.6.0)
|
32
|
-
mustermann (1.0.
|
32
|
+
mustermann (1.0.3)
|
33
33
|
path (1.3.3)
|
34
|
-
public_suffix (3.
|
35
|
-
rack (2.0.
|
36
|
-
rack-protection (2.0.
|
34
|
+
public_suffix (3.1.1)
|
35
|
+
rack (2.0.7)
|
36
|
+
rack-protection (2.0.5)
|
37
37
|
rack
|
38
38
|
rack-robustness (1.1.0)
|
39
39
|
rack-test (0.6.3)
|
@@ -43,24 +43,24 @@ GEM
|
|
43
43
|
rspec-core (~> 3.8.0)
|
44
44
|
rspec-expectations (~> 3.8.0)
|
45
45
|
rspec-mocks (~> 3.8.0)
|
46
|
-
rspec-core (3.8.
|
46
|
+
rspec-core (3.8.2)
|
47
47
|
rspec-support (~> 3.8.0)
|
48
|
-
rspec-expectations (3.8.
|
48
|
+
rspec-expectations (3.8.4)
|
49
49
|
diff-lcs (>= 1.2.0, < 2.0)
|
50
50
|
rspec-support (~> 3.8.0)
|
51
|
-
rspec-mocks (3.8.
|
51
|
+
rspec-mocks (3.8.1)
|
52
52
|
diff-lcs (>= 1.2.0, < 2.0)
|
53
53
|
rspec-support (~> 3.8.0)
|
54
|
-
rspec-support (3.8.
|
55
|
-
sinatra (2.0.
|
54
|
+
rspec-support (3.8.2)
|
55
|
+
sinatra (2.0.5)
|
56
56
|
mustermann (~> 1.0)
|
57
57
|
rack (~> 2.0)
|
58
|
-
rack-protection (= 2.0.
|
58
|
+
rack-protection (= 2.0.5)
|
59
59
|
tilt (~> 2.0)
|
60
|
-
tilt (2.0.
|
60
|
+
tilt (2.0.9)
|
61
61
|
unf (0.1.4)
|
62
62
|
unf_ext
|
63
|
-
unf_ext (0.0.7.
|
63
|
+
unf_ext (0.0.7.6)
|
64
64
|
|
65
65
|
PLATFORMS
|
66
66
|
ruby
|
@@ -71,4 +71,4 @@ DEPENDENCIES
|
|
71
71
|
webspicy!
|
72
72
|
|
73
73
|
BUNDLED WITH
|
74
|
-
|
74
|
+
2.0.1
|
@@ -78,6 +78,7 @@ module Webspicy
|
|
78
78
|
def get(url, params = {}, headers = nil, body = nil)
|
79
79
|
handler = get_handler(headers)
|
80
80
|
|
81
|
+
params = Hash[params.map{|k,v| [k, v.nil? ? "" : v] }]
|
81
82
|
Webspicy.info("GET #{url} -- #{params.inspect} -- #{headers.inspect}")
|
82
83
|
|
83
84
|
handler.get(url, params)
|
data/lib/webspicy/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: webspicy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.12.
|
4
|
+
version: 0.12.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bernard Lambeau
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-07-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|