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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f45e8aea8f3bbfbd363bf255b787f1ebad043ff7
4
- data.tar.gz: 302ba4e89536b92386c2212b7e3f2c614f6045ea
3
+ metadata.gz: 3694e90d16fa4534d88e4659b91a1e394245e171
4
+ data.tar.gz: 202bbe0d5bf966c694fbb0293eeded67e28520fb
5
5
  SHA512:
6
- metadata.gz: 2a45e6ba3a2ad346d196baa3116604ab9aa3a621d341f1b1a301f51871878c537e037477bde705bc78e95052e1a6479ed36dd7f07fbe9b62a297d1a356fdafad
7
- data.tar.gz: 231119937b7e73b04c25e062b35d6835349aa993849e3c2dce4af077d2f13160b5a9b814a3ab3bc9a92037652ad82b9ff91cddcc94483a363875e922f125505b
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$/ # must set before :json
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
 
@@ -1,5 +1,5 @@
1
1
  module Kintone
2
2
  class Client
3
- VERSION = '0.1.4'
3
+ VERSION = '0.1.5'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kintone-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Genki Sugawara