stellar_spectrum 1.1.1 → 1.1.2

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: b1f612b68e42b96844627bd1b79a6bd3fc6af1cae0c58d61a6f71390b6514886
4
- data.tar.gz: 9aa9ae6bbf9dc14a972b0eb544d3e335689ad932afbf9ffa9d9b9e7c32d02eae
3
+ metadata.gz: 5ef61e24fd04852881c091a6155671ad2f53448d3fa699b3146fa19ce82b8f3a
4
+ data.tar.gz: d89c169967f8b853331174587aacb4b7ea8c1d0016122e12890764a404787cd6
5
5
  SHA512:
6
- metadata.gz: baf26711abdfea3e88212dbd5255fa8b50ae12f0c57081f9b3438306f50c3ae11ecb2a9375a3cb1114c66504574897e3f8689add2cfdacab8679c25a243d8b79
7
- data.tar.gz: 47bbc538c0706fe459060bbb5c22ed5d002443ac56e471777a9209af5d1c77d9226602429bd2362a16708117b2f95e5eb693c011ffaae3c456792bb571201bce
6
+ metadata.gz: a4f15d359e6c46e11f3a94b33f45c409fc9aaab50019c83d3d16dbbdf45cd08dab8c9a003c91ed47e9c8665d7431c375f04207425a22837d4bd7ab49e6778ac6
7
+ data.tar.gz: 00cf1675dd97d7c8574fdc43776e8f9d720c33efdd083b07577b54477f5dfbd658ea5a3c371299e88e10fbca61373c07db9942ccb37dc4aa03c0b44493f09652
data/CHANGELOG.md CHANGED
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
4
4
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [1.1.2] - 2018-12-13
8
+ ### Fixed
9
+ - Do not blow up if `Faraday::ClientError#response` is nil
10
+
7
11
  ## [1.1.1] - 2018-12-13
8
12
  ### Fixed
9
13
  - [Make unlocking strategy safer](https://github.com/bloom-solutions/stellar_spectrum-ruby/pull/9)
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- stellar_spectrum (1.1.1)
4
+ stellar_spectrum (1.1.2)
5
5
  activesupport
6
6
  gem_config
7
7
  light-service
@@ -31,6 +31,8 @@ module StellarSpectrum
31
31
  sequence: c.next_sequence_number,
32
32
  )
33
33
  rescue Faraday::ClientError => e
34
+ fail if e.response.nil?
35
+
34
36
  if e.response[:status] == TIMEOUT_CODE
35
37
  retry_result = Retry.execute(
36
38
  stellar_client: c.stellar_client,
@@ -1,3 +1,3 @@
1
1
  module StellarSpectrum
2
- VERSION = "1.1.1"
2
+ VERSION = "1.1.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stellar_spectrum
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ramon Tayag
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2018-12-12 00:00:00.000000000 Z
12
+ date: 2018-12-13 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport