filebound_client 0.3.3 → 0.3.4

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: dc63ed349ba36895b622b4566afe25a7389ef808a2c99f7794925aac0a15f12b
4
- data.tar.gz: cdda043425d0021371cd5d2ae70bac8d0ecb9915183b7299f4868badb814db57
3
+ metadata.gz: 8156e7efc52c251f7da708595679f9cef56dbe2f1ccfe2e3c885bb3984bf0e58
4
+ data.tar.gz: 28b7efd8ab5961dbda136b339463837e82c4bd7340a50916e59aecd2f6b35ea7
5
5
  SHA512:
6
- metadata.gz: aca782ffc4effb7bd0b40c1bf527ce029a90db8a6b854f3e1fe64e909c646573c016b020c720e8aad4f66234f652aba904c81ad1aa3af4b59f25ca8d652d620d
7
- data.tar.gz: 42caa6adc6504e2860092a85143c83cd2b9d6d6a7f7f9a1c5e36560c2bedd9293c77f5ed8054466a379b7c5a25a9c3552328e8083625bad3a3cdce13f48d9c38
6
+ metadata.gz: b11fb0336dc19655ea72ff67e6eff8ddff378cfc988fbe539b40f6c85ef75b5396ee2a1d84f1b03bf899bd3590d637035406cce9dd3918a2eff07197f122d78a
7
+ data.tar.gz: d784366f53fe5e96cf8764ee7f68f3714c8c16913cda326067b32948953c84846f93f7abfc88e24f0c399208c4c643b36bf93bf33ab09646d5ebc796d9983863
data/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
3
3
 
4
4
  Changes to this gem will be noted here.
5
5
 
6
+ ## [0.3.3] - 2019-03-20
7
+
8
+ ### Changed
9
+
10
+ - Enabled quirks mode on the JSON parser in FileboundClient::Connection#login
11
+
6
12
  ## [0.3.3] - 2019-02-01
7
13
 
8
14
  ### Removed
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- filebound_client (0.3.2)
4
+ filebound_client (0.3.3)
5
5
  httpi (~> 2.4.0)
6
6
  rubyntlm (~> 0.6.0)
7
7
 
@@ -142,7 +142,7 @@ module FileboundClient
142
142
  response = post('/login', body: { username: configuration.username, password: configuration.password },
143
143
  headers: { 'Content-Type' => 'application/json' })
144
144
  if response.code == 200
145
- @token = JSON.parse(response.body, symbolize_names: true)
145
+ @token = JSON.parse(response.body, symbolize_names: true, quirks_mode: true)
146
146
  true
147
147
  else
148
148
  false
@@ -1,4 +1,4 @@
1
1
  module FileboundClient
2
2
  # Current version of gem
3
- VERSION = '0.3.3'.freeze
3
+ VERSION = '0.3.4'.freeze
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: filebound_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bryan Richardson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-02-01 00:00:00.000000000 Z
11
+ date: 2019-03-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler