appfuel 0.6.13 → 0.6.14

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: 6dfc353f7f492ba50f67230227bdb1f805327ce0
4
- data.tar.gz: 2e5980d58400b7d8da0ee6ccf52c3cd9921147e3
3
+ metadata.gz: 6227e9bcd8b53e8e88354e06ff108779cb26d629
4
+ data.tar.gz: 9c345cca5a9965e99b2709e23487b88b1b2e7de7
5
5
  SHA512:
6
- metadata.gz: 3e887e9365bdd9e920065ca16b51c8bfb152cb6a70add23bfe4c3e1a4f3d5ea24d18f6db10648424359597b207d5ec9a3711d0d637356a89ab0ff54257ded38b
7
- data.tar.gz: b8181744cf9f8a4b75b9d972376dc23a6807f0b0758cb72601af367253d8d3c637aa6340a3b6e338153ac0fe91dd307435f4a16b9b6cbcba374c64d8cf9a798d
6
+ metadata.gz: 15d5c710379a5b8e9b07508c49a90e059a0038b92c8fda868afcf9883a7fc0f845a8cf86975758999c66cba8d894f1ab5e27c8671d6cdffdf89f1bc66c134af0
7
+ data.tar.gz: 83ac13bfa0c506eacc44d20f43792872af951c8a8212d547cd673f91b195792305c6ae2bf38cce536cf08f1ee5a347be84f58d4fbf7e7ae94955dcb926cb6f6c
data/CHANGELOG.md CHANGED
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. (Pending ap
5
5
 
6
6
 
7
7
  # Releases
8
+ ## [[0.6.14]](https://github.com/rsb/appfuel/releases/tag/0.6.14) 2017-09-28
9
+ ### Fixed
10
+ - web_api adapter was parsing error body as json
11
+
8
12
  ## [[0.6.13]](https://github.com/rsb/appfuel/releases/tag/0.6.13) 2017-09-27
9
13
  ### Fixed
10
14
  - appfuel app_container was not properly being reset during tests
@@ -58,8 +58,7 @@ module Appfuel
58
58
  response = adapter::Request.execute(data)
59
59
  response = handle_response(response, options[:headers])
60
60
  rescue RestClient::ExceptionWithResponse => err
61
- data = handle_response(err.response, options[:headers])
62
- handle_http_error(err.http_code, data, http_url, err.message)
61
+ handle_http_error(err.http_code, err.http_body, http_url, err.message)
63
62
  end
64
63
 
65
64
  response
@@ -1,3 +1,3 @@
1
1
  module Appfuel
2
- VERSION = "0.6.13"
2
+ VERSION = "0.6.14"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appfuel
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.13
4
+ version: 0.6.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Scott-Buccleuch