gibbon 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of gibbon might be problematic. Click here for more details.
- data/VERSION +1 -1
- data/gibbon.gemspec +1 -1
- data/lib/gibbon.rb +1 -1
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.4
|
data/gibbon.gemspec
CHANGED
data/lib/gibbon.rb
CHANGED
@@ -27,7 +27,7 @@ module Gibbon
|
|
27
27
|
def call(method, params = {})
|
28
28
|
url = base_api_url + method
|
29
29
|
params = @default_params.merge(params)
|
30
|
-
params.each_pair {|k,v| params[k] = CGI::escape(v)}
|
30
|
+
params.each_pair {|k,v| params[k] = CGI::escape(v) if v.class == String}
|
31
31
|
response = API.post(url, :body => params.to_json, :timeout => @timeout)
|
32
32
|
|
33
33
|
begin
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: gibbon
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.1.
|
5
|
+
version: 0.1.4
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Amro Mousa
|
@@ -114,7 +114,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
114
114
|
requirements:
|
115
115
|
- - ">="
|
116
116
|
- !ruby/object:Gem::Version
|
117
|
-
hash:
|
117
|
+
hash: 3438354439166932671
|
118
118
|
segments:
|
119
119
|
- 0
|
120
120
|
version: "0"
|