six_saferpay 2.8.4 → 2.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.tool-versions +1 -0
- data/.travis.yml +3 -3
- data/Gemfile.lock +8 -1
- data/lib/six_saferpay/api/six_transaction/responses/capture_response.rb +1 -1
- data/lib/six_saferpay/models/address.rb +4 -4
- data/lib/six_saferpay/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 152ac195af8f0f906771ecebe3e791d75e501fa0a6522d476bb43d9d83c1b0b4
|
4
|
+
data.tar.gz: 78f390ee3f82b616f66e3644329b4deac7038aebc99acacd906c141b7cbf6dcd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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.
|
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)
|
@@ -11,7 +11,7 @@ module SixSaferpay
|
|
11
11
|
:street2,
|
12
12
|
:zip,
|
13
13
|
:city,
|
14
|
-
:
|
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
|
-
|
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
|
-
@
|
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!(
|
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
|
data/lib/six_saferpay/version.rb
CHANGED
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.
|
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:
|
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
|