proxy_rb 0.7.0 → 0.7.1

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
  SHA1:
3
- metadata.gz: bebf353324351d55cf170d4abf0cff4828eb3b0a
4
- data.tar.gz: 49ca3e1a8533972aa094c4ded73fbce98469bd73
3
+ metadata.gz: d596139bab9ef9b858831dfca447f18f20bfc27c
4
+ data.tar.gz: 1f539a3727f6e96eabc7fcb78927932970f79cd5
5
5
  SHA512:
6
- metadata.gz: dc8ca41e46cdbab7ab130bf4f09edc83573e3b543384676a8e2889487d350767cfdd7bb4db7823ea5f2b0abdbc20c6d773c06123643970544b2284be731e0f01
7
- data.tar.gz: 7cc6eb3238cd7247992f6194b223cf50735947a43e27a10586037da59d35aafdb7248dc8790b7a35ed96f6de2b0be42152f77d30c3e17b22174d820bbc49d5a1
6
+ metadata.gz: 559e7216f699f755daf26b02a47f8d9402b002e10c121ab3b1a9d927464888f0f94b3415a826b0c8386b5b323d78c2fa11b8484f4b43fd757b52a8702b080407
7
+ data.tar.gz: 3aa466ab70afbac880c504f0a4d6ad1d1dab21a0144472fa4e03de15936841d1eda8da7a7525f1497fcdaa703e0d035102323783a8280818b11ccd780659bc9a
data/History.md CHANGED
@@ -4,6 +4,10 @@ Empty
4
4
 
5
5
  # RELEASED
6
6
 
7
+ ## [v0.7.1](https://github.com/cucumber/aruba/compare/v0.7.0...v0.7.1)
8
+
9
+ * Handle nil as input for `#simple_table`
10
+
7
11
  ## [v0.7.0](https://github.com/cucumber/aruba/compare/v0.6.0...v0.7.0)
8
12
 
9
13
  * Make simple_table-formatter available as method
@@ -13,7 +13,7 @@ module ProxyRb
13
13
  # @param [Hash] hash
14
14
  # Input
15
15
  def initialize(hash, opts = {})
16
- @hash = hash
16
+ @hash = Hash(hash)
17
17
  @opts = {
18
18
  :sort => true
19
19
  }.merge opts
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
  # Main Module
3
3
  module ProxyRb
4
- VERSION = '0.7.0'
4
+ VERSION = '0.7.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: proxy_rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Max Meyer