kintone-client 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/kintone/client/client.rb +3 -3
- data/lib/kintone/client/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3694e90d16fa4534d88e4659b91a1e394245e171
|
4
|
+
data.tar.gz: 202bbe0d5bf966c694fbb0293eeded67e28520fb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 012d642d217d5979838ced75ed493de82a563c6676aae1c3f25d859ef2b52a1d949c13029c0b6c84d75fece04289bbbd0973755eaf1e4f60e896eace61f391c6
|
7
|
+
data.tar.gz: c63c992d4cf281c5907eb20d54e32e29a32e895062fbc881d54faf685e5baf0aac777f490638eb2beab09e84f05ff8a48f9830e50f45120ce0cb3424fe756393
|
@@ -20,9 +20,9 @@ class Kintone::Client
|
|
20
20
|
|
21
21
|
@conn = Faraday.new(options) do |faraday|
|
22
22
|
faraday.request :url_encoded
|
23
|
-
faraday.request :record, :content_type => /\bjson
|
24
|
-
faraday.response :form, :content_type => /\bjson
|
25
|
-
faraday.response :json, :content_type => /\bjson
|
23
|
+
faraday.request :record, :content_type => /\bjson\b/
|
24
|
+
faraday.response :form, :content_type => /\bjson\b/ # must set before :json
|
25
|
+
faraday.response :json, :content_type => /\bjson\b/
|
26
26
|
|
27
27
|
yield(faraday) if block_given?
|
28
28
|
|