webspicy 0.12.4 → 0.12.5

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 972d2b981e44492f77c87ce552061d5b92503e2facff9a0f4f95fb8d0ef426b8
4
- data.tar.gz: 5e293e567a92762784eca22c19b735187ee0270e0584a0e42707107237d360ee
3
+ metadata.gz: c3d8a8db807de1959e59ebc27dec02a35c11749763c64932c4b38be2c763375f
4
+ data.tar.gz: d8bdd2e5e1dfc7dfbf25034ccb5867f93b1dd09d63e60225c78f30b0d9577a22
5
5
  SHA512:
6
- metadata.gz: 8a3555a3607c5d687c6f7e6a9ad47a646699a9d63453e4bde00c9ee5cd5598714f7a343c8c9f64ee355e9705eb25c05707182193143111c7baf95fb8050027d0
7
- data.tar.gz: 7d7397817db1b4a5dda52327b248c7a62f96c3aecadced8bbc9a577968ad35064bf61adef9168f2d8a710d0d9f7d2a174a992795715db87d40d88022250142df
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.3)
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.20180417)
19
+ domain_name (0.5.20190701)
20
20
  unf (>= 0.0.5, < 1.0.0)
21
- finitio (0.6.1)
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.2)
32
+ mustermann (1.0.3)
33
33
  path (1.3.3)
34
- public_suffix (3.0.3)
35
- rack (2.0.3)
36
- rack-protection (2.0.3)
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.0)
46
+ rspec-core (3.8.2)
47
47
  rspec-support (~> 3.8.0)
48
- rspec-expectations (3.8.2)
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.0)
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.0)
55
- sinatra (2.0.3)
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.3)
58
+ rack-protection (= 2.0.5)
59
59
  tilt (~> 2.0)
60
- tilt (2.0.8)
60
+ tilt (2.0.9)
61
61
  unf (0.1.4)
62
62
  unf_ext
63
- unf_ext (0.0.7.5)
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
- 1.16.0
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)
@@ -2,7 +2,7 @@ module Webspicy
2
2
  module Version
3
3
  MAJOR = 0
4
4
  MINOR = 12
5
- TINY = 4
5
+ TINY = 5
6
6
  end
7
7
  VERSION = "#{Version::MAJOR}.#{Version::MINOR}.#{Version::TINY}"
8
8
  end
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
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-05-31 00:00:00.000000000 Z
11
+ date: 2019-07-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake