stripe 1.5.19 → 1.5.20

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.
Files changed (3) hide show
  1. data/lib/stripe.rb +1 -1
  2. data/lib/stripe/version.rb +1 -1
  3. metadata +3 -3
@@ -35,7 +35,7 @@ module Stripe
35
35
  h.id
36
36
  when Hash
37
37
  res = {}
38
- h.each { |k, v| res[k] = objects_to_ids(v) if v }
38
+ h.each { |k, v| res[k] = objects_to_ids(v) unless v.nil? }
39
39
  res
40
40
  when Array
41
41
  h.map { |v| objects_to_ids(v) }
@@ -1,3 +1,3 @@
1
1
  module Stripe
2
- VERSION = '1.5.19'
2
+ VERSION = '1.5.20'
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stripe
3
3
  version: !ruby/object:Gem::Version
4
- hash: 37
4
+ hash: 43
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 5
9
- - 19
10
- version: 1.5.19
9
+ - 20
10
+ version: 1.5.20
11
11
  platform: ruby
12
12
  authors:
13
13
  - Ross Boucher