six_saferpay 2.8.4 → 2.9.0

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: 8a0ea6993020ec6ef5cb04a886f52af73af387bb003e1740de706ceb84d08fc0
4
- data.tar.gz: a1cbcec008c6ad18e33128493e2a8671d0f8f65363b0492ce1274a5e3b66e28a
3
+ metadata.gz: 152ac195af8f0f906771ecebe3e791d75e501fa0a6522d476bb43d9d83c1b0b4
4
+ data.tar.gz: 78f390ee3f82b616f66e3644329b4deac7038aebc99acacd906c141b7cbf6dcd
5
5
  SHA512:
6
- metadata.gz: facdfc9eee1af946083f794cb35859df7c9e65628c63e98e6e57f870aeeae52160c51ea5d6a93f85bcd8f9188c997a29801e93ac0783d04db59135fef87cded6
7
- data.tar.gz: 241f3e54e40ebb6e86c68a5044ef1495331f45e835be0c3c2b1fd57df59752c101742ddab9a31b449fb3b254d382b0194dc74dfac0fa59cf52875d7a3e10dd37
6
+ metadata.gz: 296644cda987451f3bfb29356147b175757eb9462fd1f6399e07b142919adcd2094484d0620bf4a93e5b6c62a3f68f5b90cfb5264fa7b34f408f626fa7baa15f
7
+ data.tar.gz: 3c4645f14c98a549cc59c96ba02f0dbf4839d715bce4ac1e17434ebecd44cf1cf16c5688cd323306bd5063c3e144c85048b05d69ecbe06e2a364f991a5535c95
data/.tool-versions ADDED
@@ -0,0 +1 @@
1
+ ruby 2.7.4
data/.travis.yml CHANGED
@@ -1,13 +1,13 @@
1
1
  ---
2
- sudo: false
3
2
  language: ruby
4
3
  cache: bundler
5
4
  rvm:
6
- - 2.7.2
5
+ - 2.7.4
7
6
 
8
7
  before_install:
8
+ - yes | gem update --system --force
9
9
  - gem install bundler:2.2.8
10
10
 
11
11
  notifications:
12
- slack: fadendaten:tWoet2mtObvbwSZSyUAY93jl
12
+ slack: "fadendaten:tWoet2mtObvbwSZSyUAY93jl"
13
13
  email: false
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- six_saferpay (2.8.3)
4
+ six_saferpay (2.8.4)
5
5
  activesupport (>= 6.0.0)
6
6
 
7
7
  GEM
@@ -22,6 +22,7 @@ GEM
22
22
  diff-lcs (1.4.4)
23
23
  docile (1.4.0)
24
24
  dotenv (2.7.6)
25
+ ffi (1.15.4-java)
25
26
  hashdiff (1.0.1)
26
27
  i18n (1.8.10)
27
28
  concurrent-ruby (~> 1.0)
@@ -32,6 +33,10 @@ GEM
32
33
  pry (0.14.1)
33
34
  coderay (~> 1.1)
34
35
  method_source (~> 1.0)
36
+ pry (0.14.1-java)
37
+ coderay (~> 1.1)
38
+ method_source (~> 1.0)
39
+ spoon (~> 0.0)
35
40
  public_suffix (4.0.6)
36
41
  rake (13.0.6)
37
42
  rexml (3.2.5)
@@ -56,6 +61,8 @@ GEM
56
61
  simplecov_json_formatter (0.1.3)
57
62
  spinning_wheel (1.0.0)
58
63
  activesupport (>= 5.2.4.3)
64
+ spoon (0.0.6)
65
+ ffi
59
66
  thor (1.1.0)
60
67
  tty-color (0.6.0)
61
68
  tty-cursor (0.7.1)
@@ -12,7 +12,7 @@ module SixSaferpay
12
12
  def initialize(response_header: ,
13
13
  capture_id: nil,
14
14
  status: ,
15
- date: ,
15
+ date: nil,
16
16
  invoice: nil)
17
17
  @response_header = SixSaferpay::ResponseHeader.new(**response_header.to_h) if response_header
18
18
  @capture_id = capture_id
@@ -11,7 +11,7 @@ module SixSaferpay
11
11
  :street2,
12
12
  :zip,
13
13
  :city,
14
- :country_subdevision_code,
14
+ :country_subdivision_code,
15
15
  :country_code,
16
16
  :phone,
17
17
  :email,
@@ -28,7 +28,7 @@ module SixSaferpay
28
28
  street2: nil,
29
29
  zip: nil,
30
30
  city: nil,
31
- country_subdevision_code: nil,
31
+ country_subdivision_code: nil,
32
32
  country_code: nil,
33
33
  phone: nil,
34
34
  email: nil
@@ -43,7 +43,7 @@ module SixSaferpay
43
43
  @street2 = street2
44
44
  @zip = zip
45
45
  @city = city
46
- @country_subdevision_code = country_subdevision_code
46
+ @country_subdivision_code = country_subdivision_code
47
47
  @country_code = country_code
48
48
  @phone = phone
49
49
  @email = email
@@ -61,7 +61,7 @@ module SixSaferpay
61
61
  hash.merge!(street2: @street2) if @street2.present?
62
62
  hash.merge!(zip: @zip) if @zip
63
63
  hash.merge!(city: @city) if @city
64
- hash.merge!(country_subdevision_code: @country_subdevision_code) if @country_subdevision_code
64
+ hash.merge!(country_subdivision_code: @country_subdivision_code) if @country_subdivision_code
65
65
  hash.merge!(country_code: @country_code) if @country_code
66
66
  hash.merge!(phone: @phone) if @phone
67
67
  hash.merge!(email: @email) if @email
@@ -1,3 +1,3 @@
1
1
  module SixSaferpay
2
- VERSION = "2.8.4"
2
+ VERSION = "2.9.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: six_saferpay
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.8.4
4
+ version: 2.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fadendaten GmbH
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2021-08-31 00:00:00.000000000 Z
12
+ date: 2022-11-02 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport
@@ -192,6 +192,7 @@ files:
192
192
  - ".rspec"
193
193
  - ".ruby-version"
194
194
  - ".test.env"
195
+ - ".tool-versions"
195
196
  - ".travis.yml"
196
197
  - Gemfile
197
198
  - Gemfile.lock