fat_zebra 3.2.6 → 3.2.8

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: ace23c2e07a9ce8da166d78fe441521986143f949a155160c7c97e21455f3ca9
4
- data.tar.gz: 9515304dde5b7cec6f304718406c9191e4a1c32aad45f907c60040a0b413fa3b
3
+ metadata.gz: 625b6ff9cd32d884e4e644b9655a134bc5d07d5add01a137e584f48e03efd883
4
+ data.tar.gz: d771ca15d1733de9660daf647b26451acfada63f146ed4fd8771e2eb78dbffb0
5
5
  SHA512:
6
- metadata.gz: 6f49354b516cd1093acc086815ff7c9099959cb2a671f16861c794b4b83e19ffb3261a2f09fd77657c622283191df4c7bb5c2eab8f46f04488b35abf6af87649
7
- data.tar.gz: 2dfe966670f924e523aa6347804ff2e9acc17734cd37bdba678b2563306c77f3dde1e7c0737564e231b86a4b33e621afa49e1953996e3f4e4925b8793aef5ac9
6
+ metadata.gz: f7197165ac27625530e9d2f9892a316723fc7219ccc57b8fcaf40886b1fb215e9191bca0f0b4c24579da7a5c04172029b9d587ba50e88e9144e95a6045bcbb5a
7
+ data.tar.gz: 62bbd024edd93157ad6326d63ebcf996053713aed999feaad568e490a0620269b2d0b2fe932da25ca6ea119d8e992c28f9f759ca3b9fe2aca770587ed46c2c49
data/fat_zebra.gemspec CHANGED
@@ -10,10 +10,13 @@ Gem::Specification.new do |s|
10
10
  s.version = FatZebra::VERSION
11
11
  s.authors = ['Fat Zebra']
12
12
  s.email = ['support@fatzebra.com']
13
- s.homepage = ''
13
+ s.homepage = 'https://github.com/fatzebra/Ruby-Library'
14
14
  s.summary = 'Fat Zebra payments gem - integrate your ruby app with Fat Zebra'
15
15
  s.description = 'Provides integration with the Fat Zebra internet payment gateway (www.fatzebra.com), including purchase, refund, auth, capture and recurring billing functionality.'
16
16
 
17
+ s.metadata['homepage_uri'] = s.homepage
18
+ s.metadata['source_code_uri'] = s.homepage
19
+
17
20
  s.files = `git ls-files`.split("\n")
18
21
  s.test_files = `git ls-files -- {spec}/*`.split("\n")
19
22
  s.require_paths = %w[lib]
@@ -0,0 +1,57 @@
1
+ # frozen_string_literal: true
2
+
3
+ module FatZebra
4
+ module Utilities
5
+ module ApplePay
6
+ class Domain < APIResource
7
+
8
+ ENDPOINT_URL = '/v1.0/utilities/apple_pay/domains'
9
+
10
+ class << self
11
+
12
+ ##
13
+ # List Apple Pay (web) domains
14
+ #
15
+ # @return [FatZebra::Utilities::ApplePay::Domains] response
16
+ def list
17
+ response = request(:get, ENDPOINT_URL)
18
+ initialize_from(response)
19
+ end
20
+
21
+ ##
22
+ # Register an Apple Pay (web) domain
23
+ #
24
+ # @return [FatZebra::Utilities::ApplePay::Domains] response
25
+ def register!(domain, params = {})
26
+ response = request(:post, path(domain), params)
27
+ initialize_from(response)
28
+ end
29
+
30
+ ##
31
+ # Check registration status of an Apple Pay (web) domain
32
+ #
33
+ # @return [FatZebra::Utilities::ApplePay::Domains] response
34
+ def find!(domain)
35
+ response = request(:get, path(domain))
36
+ initialize_from(response)
37
+ end
38
+
39
+ ##
40
+ # Delete an Apple Pay (web) domain
41
+ #
42
+ # @return [FatZebra::Utilities::ApplePay::Domains] response
43
+ def delete!(domain)
44
+ response = request(:delete, path(domain))
45
+ initialize_from(response)
46
+ end
47
+
48
+ private
49
+
50
+ def path(domain)
51
+ "#{ENDPOINT_URL}/#{domain}"
52
+ end
53
+ end
54
+ end
55
+ end
56
+ end
57
+ end
@@ -1,5 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FatZebra
4
- VERSION = '3.2.6'
4
+ VERSION = '3.2.8'
5
+
5
6
  end
data/lib/fat_zebra.rb CHANGED
@@ -42,7 +42,8 @@ require 'fat_zebra/bank_account'
42
42
  require 'fat_zebra/web_hook'
43
43
  require 'fat_zebra/batch'
44
44
 
45
- # Utilities/Mastercard
45
+ # Utilities
46
+ require 'fat_zebra/utilities/apple_pay/domain'
46
47
  require 'fat_zebra/utilities/mastercard/click_to_pay/registration'
47
48
 
48
49
  # Paypal API Resources
@@ -0,0 +1,52 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: delete
5
+ uri: https://gateway.sandbox.fatzebra.com.au/v1.0/utilities/apple_pay/domains/www.example99.com
6
+ body:
7
+ encoding: UTF-8
8
+ string: '{"test":true}'
9
+ headers:
10
+ Accept-Encoding:
11
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
12
+ Accept:
13
+ - "*/*"
14
+ User-Agent:
15
+ - Ruby
16
+ Authorization:
17
+ - Basic VEVTVDpURVNU
18
+ response:
19
+ status:
20
+ code: 202
21
+ message: Accepted
22
+ headers:
23
+ Date:
24
+ - Mon, 04 Mar 2024 01:10:33 GMT
25
+ Content-Type:
26
+ - application/json; charset=utf-8
27
+ Transfer-Encoding:
28
+ - chunked
29
+ Connection:
30
+ - keep-alive
31
+ Status:
32
+ - 202 Accepted
33
+ Cache-Control:
34
+ - no-store
35
+ Vary:
36
+ - Accept
37
+ Pragma:
38
+ - no-cache
39
+ X-Request-Id:
40
+ - 3f319fea5d6aa95004cab8f5
41
+ X-Runtime:
42
+ - '0.033681'
43
+ X-Backend:
44
+ - gateway
45
+ Strict-Transport-Security:
46
+ - max-age=31536000; includeSubDomains
47
+ body:
48
+ encoding: UTF-8
49
+ string: '{"successful":true,"response":{},"errors":[],"test":true}'
50
+ http_version:
51
+ recorded_at: Mon, 04 Mar 2024 01:10:33 GMT
52
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,86 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://gateway.sandbox.fatzebra.com.au/v1.0/utilities/apple_pay/domains/www.example.com?test=true
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept-Encoding:
11
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
12
+ Accept:
13
+ - application/json
14
+ User-Agent:
15
+ - Ruby
16
+ Host:
17
+ - gateway.sandbox.fatzebra.com.au
18
+ Authorization:
19
+ - Basic VEVTVDpURVNU
20
+ Content-Type:
21
+ - application/json
22
+ response:
23
+ status:
24
+ code: 200
25
+ message: OK
26
+ headers:
27
+ Date:
28
+ - Mon, 04 Mar 2024 01:10:33 GMT
29
+ Content-Type:
30
+ - application/json; charset=utf-8
31
+ Transfer-Encoding:
32
+ - chunked
33
+ Connection:
34
+ - keep-alive
35
+ Status:
36
+ - 200 OK
37
+ Cache-Control:
38
+ - no-store
39
+ Vary:
40
+ - Accept
41
+ Pragma:
42
+ - no-cache
43
+ X-Request-Id:
44
+ - 5347a0df5e2ebe022d005a3a
45
+ X-Runtime:
46
+ - '0.030516'
47
+ X-Backend:
48
+ - gateway
49
+ Strict-Transport-Security:
50
+ - max-age=31536000; includeSubDomains
51
+ Content-Security-Policy-Report-Only:
52
+ - 'child-src ''self'' blob: *.cardinalcommerce.com fatzebra.statuspage.io; connect-src
53
+ ''self'' *.mastercard.com *.forter.com *.pmnts-staging.io *.rollbar.com *.nr-data.net
54
+ *.cardinalcommerce.com fatzebra.statuspage.io *.googleapis.com *.google-analytics.com;
55
+ default-src ''self'' ''unsafe-eval'' ''unsafe-inline'' *.forter.com *.nr-data.net
56
+ blob: *.pmnts-sandbox.io *.rollbar.com fatzebra.statuspage.io *.iovation.com
57
+ data: *.googleapis.com *.gstatic.com *.newrelic.com *.bootstrapcdn.com www.google.com
58
+ pay.google.com *.google-analytics.com *.gravatar.com; font-src ''self'' cdnjs.cloudflare.com
59
+ data: *.gstatic.com *.bootstrapcdn.com *.aexp-static.com; form-action ''self''
60
+ *.cardinalcommerce.com; frame-ancestors ''self''; frame-src ''self'' fatzebra.statuspage.io
61
+ *.americanexpress.com www.google.com pay.google.com *.masterpass.com *.visa.com
62
+ *.mastercard.com; img-src ''self'' *.visa.com data: *.googleapis.com *.gstatic.com
63
+ masterpass.com *.masterpass.com *.americanexpress.com *.google-analytics.com
64
+ *.gravatar.com; script-src ''self'' ''unsafe-eval'' ''unsafe-inline'' *.forter.com
65
+ *.nr-data.net *.pmnts-sandbox.io *.pmnts-staging.io *.rollbar.com fatzebra.statuspage.io
66
+ cdnjs.cloudflare.com *.iovation.com *.jquery.com *.newrelic.com *.googleapis.com
67
+ *.cardinalcommerce.com *.bootstrapcdn.com wasm-eval *.google-analytics.com
68
+ *.googletagmanager.com; script-src-attr ''unsafe-inline''; script-src-elem
69
+ ''self'' ''unsafe-inline'' *.forter.com *.nr-data.net *.pmnts-sandbox.io *.rollbar.com
70
+ fatzebra.statuspage.io *.iovation.com *.jquery.com cdnjs.cloudflare.com *.pmnts-staging.io
71
+ *.aexp-static.com *.newrelic.com *.googleapis.com *.americanexpress.com www.google.com
72
+ pay.google.com *.visa.com *.masterpass.com *.mastercard.com *.google-analytics.com
73
+ *.gstatic.com *.bootstrapcdn.com; style-src ''self'' ''unsafe-eval'' ''unsafe-inline''
74
+ *.bootstrapcdn.com *.googleapis.com; style-src-attr ''unsafe-inline''; style-src-elem
75
+ ''unsafe-inline'' ''self'' *.googleapis.com cdnjs.cloudflare.com *.bootstrapcdn.com;
76
+ worker-src blob:; report-uri https://fatzebra.report-uri.com/r/d/csp/wizard'
77
+ Nel:
78
+ - '{"report_to":"default","max_age":31536000,"include_subdomains":true}'
79
+ Report-To:
80
+ - '{"group":"default","max_age":31536000,"endpoints":[{"url":"https://fatzebra.report-uri.com/a/d/g"}],"include_subdomains":true}'
81
+ body:
82
+ encoding: UTF-8
83
+ string: '{"successful":true,"response":{"status":"Active","domain":"www.example.com","created_at":"2023-04-14T15:15:45+10:00","updated_at":"2023-04-14T05:15:47+00:00"},"errors":[],"test":true}'
84
+ http_version:
85
+ recorded_at: Mon, 04 Mar 2024 01:10:32 GMT
86
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,86 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://gateway.sandbox.fatzebra.com.au/v1.0/utilities/apple_pay/domains?test=true
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ""
9
+ headers:
10
+ Accept-Encoding:
11
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
12
+ Accept:
13
+ - application/json
14
+ User-Agent:
15
+ - Ruby
16
+ Host:
17
+ - gateway.sandbox.fatzebra.com.au
18
+ Authorization:
19
+ - Basic VEVTVDpURVNU
20
+ Content-Type:
21
+ - application/json
22
+ response:
23
+ status:
24
+ code: 200
25
+ message: OK
26
+ headers:
27
+ Date:
28
+ - Wed, 27 Mar 2024 05:15:56 GMT
29
+ Content-Type:
30
+ - application/json; charset=utf-8
31
+ Transfer-Encoding:
32
+ - chunked
33
+ Connection:
34
+ - keep-alive
35
+ Status:
36
+ - 200 OK
37
+ Cache-Control:
38
+ - no-store
39
+ Vary:
40
+ - Accept
41
+ Pragma:
42
+ - no-cache
43
+ X-Request-Id:
44
+ - 2cbc832327aa693a5e85b23b
45
+ X-Runtime:
46
+ - "0.062169"
47
+ X-Backend:
48
+ - gateway
49
+ Strict-Transport-Security:
50
+ - max-age=31536000; includeSubDomains
51
+ Content-Security-Policy-Report-Only:
52
+ - "child-src 'self' blob: *.cardinalcommerce.com fatzebra.statuspage.io; connect-src
53
+ 'self' *.mastercard.com *.forter.com *.pmnts-staging.io *.rollbar.com *.nr-data.net
54
+ *.cardinalcommerce.com fatzebra.statuspage.io *.googleapis.com *.google-analytics.com;
55
+ default-src 'self' 'unsafe-eval' 'unsafe-inline' *.forter.com *.nr-data.net
56
+ blob: *.pmnts-sandbox.io *.rollbar.com fatzebra.statuspage.io *.iovation.com
57
+ data: *.googleapis.com *.gstatic.com *.newrelic.com *.bootstrapcdn.com www.google.com
58
+ pay.google.com *.google-analytics.com *.gravatar.com; font-src 'self' cdnjs.cloudflare.com
59
+ data: *.gstatic.com *.bootstrapcdn.com *.aexp-static.com; form-action 'self'
60
+ *.cardinalcommerce.com; frame-ancestors 'self'; frame-src 'self' fatzebra.statuspage.io
61
+ *.americanexpress.com www.google.com pay.google.com *.masterpass.com *.visa.com
62
+ *.mastercard.com; img-src 'self' *.visa.com data: *.googleapis.com *.gstatic.com
63
+ masterpass.com *.masterpass.com *.americanexpress.com *.google-analytics.com
64
+ *.gravatar.com; script-src 'self' 'unsafe-eval' 'unsafe-inline' *.forter.com
65
+ *.nr-data.net *.pmnts-sandbox.io *.pmnts-staging.io *.rollbar.com fatzebra.statuspage.io
66
+ cdnjs.cloudflare.com *.iovation.com *.jquery.com *.newrelic.com *.googleapis.com
67
+ *.cardinalcommerce.com *.bootstrapcdn.com wasm-eval *.google-analytics.com
68
+ *.googletagmanager.com; script-src-attr 'unsafe-inline'; script-src-elem
69
+ 'self' 'unsafe-inline' *.forter.com *.nr-data.net *.pmnts-sandbox.io *.rollbar.com
70
+ fatzebra.statuspage.io *.iovation.com *.jquery.com cdnjs.cloudflare.com *.pmnts-staging.io
71
+ *.aexp-static.com *.newrelic.com *.googleapis.com *.americanexpress.com www.google.com
72
+ pay.google.com *.visa.com *.masterpass.com *.mastercard.com *.google-analytics.com
73
+ *.gstatic.com *.bootstrapcdn.com; style-src 'self' 'unsafe-eval' 'unsafe-inline'
74
+ *.bootstrapcdn.com *.googleapis.com; style-src-attr 'unsafe-inline'; style-src-elem
75
+ 'unsafe-inline' 'self' *.googleapis.com cdnjs.cloudflare.com *.bootstrapcdn.com;
76
+ worker-src blob:; report-uri https://fatzebra.report-uri.com/r/d/csp/wizard"
77
+ Nel:
78
+ - '{"report_to":"default","max_age":31536000,"include_subdomains":true}'
79
+ Report-To:
80
+ - '{"group":"default","max_age":31536000,"endpoints":[{"url":"https://fatzebra.report-uri.com/a/d/g"}],"include_subdomains":true}'
81
+ body:
82
+ encoding: UTF-8
83
+ string: '{"successful":true,"response":[{"domain":"example.com","status":"Active"},{"domain":"example2.com","status":"Active"}],"errors":[],"test":true}'
84
+ http_version:
85
+ recorded_at: Wed, 27 Mar 2024 05:15:56 GMT
86
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,84 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://gateway.sandbox.fatzebra.com.au/v1.0/utilities/apple_pay/domains/www.example99.com
6
+ body:
7
+ encoding: UTF-8
8
+ string: '{"async":false,"test":true}'
9
+ headers:
10
+ Accept-Encoding:
11
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
12
+ Accept:
13
+ - application/json
14
+ User-Agent:
15
+ - Ruby
16
+ Authorization:
17
+ - Basic VEVTVDpURVNU
18
+ Content-Type:
19
+ - application/json
20
+ response:
21
+ status:
22
+ code: 200
23
+ message: OK
24
+ headers:
25
+ Date:
26
+ - Mon, 04 Mar 2024 01:10:32 GMT
27
+ Content-Type:
28
+ - application/json; charset=utf-8
29
+ Transfer-Encoding:
30
+ - chunked
31
+ Connection:
32
+ - keep-alive
33
+ Status:
34
+ - 200 OK
35
+ Cache-Control:
36
+ - no-store
37
+ Vary:
38
+ - Accept
39
+ Pragma:
40
+ - no-cache
41
+ X-Request-Id:
42
+ - 298c3b404da4ccb5139e44ce
43
+ X-Runtime:
44
+ - '3.097708'
45
+ X-Backend:
46
+ - gateway
47
+ Strict-Transport-Security:
48
+ - max-age=31536000; includeSubDomains
49
+ Content-Security-Policy-Report-Only:
50
+ - 'child-src ''self'' blob: *.cardinalcommerce.com fatzebra.statuspage.io; connect-src
51
+ ''self'' *.mastercard.com *.forter.com *.pmnts-staging.io *.rollbar.com *.nr-data.net
52
+ *.cardinalcommerce.com fatzebra.statuspage.io *.googleapis.com *.google-analytics.com;
53
+ default-src ''self'' ''unsafe-eval'' ''unsafe-inline'' *.forter.com *.nr-data.net
54
+ blob: *.pmnts-sandbox.io *.rollbar.com fatzebra.statuspage.io *.iovation.com
55
+ data: *.googleapis.com *.gstatic.com *.newrelic.com *.bootstrapcdn.com www.google.com
56
+ pay.google.com *.google-analytics.com *.gravatar.com; font-src ''self'' cdnjs.cloudflare.com
57
+ data: *.gstatic.com *.bootstrapcdn.com *.aexp-static.com; form-action ''self''
58
+ *.cardinalcommerce.com; frame-ancestors ''self''; frame-src ''self'' fatzebra.statuspage.io
59
+ *.americanexpress.com www.google.com pay.google.com *.masterpass.com *.visa.com
60
+ *.mastercard.com; img-src ''self'' *.visa.com data: *.googleapis.com *.gstatic.com
61
+ masterpass.com *.masterpass.com *.americanexpress.com *.google-analytics.com
62
+ *.gravatar.com; script-src ''self'' ''unsafe-eval'' ''unsafe-inline'' *.forter.com
63
+ *.nr-data.net *.pmnts-sandbox.io *.pmnts-staging.io *.rollbar.com fatzebra.statuspage.io
64
+ cdnjs.cloudflare.com *.iovation.com *.jquery.com *.newrelic.com *.googleapis.com
65
+ *.cardinalcommerce.com *.bootstrapcdn.com wasm-eval *.google-analytics.com
66
+ *.googletagmanager.com; script-src-attr ''unsafe-inline''; script-src-elem
67
+ ''self'' ''unsafe-inline'' *.forter.com *.nr-data.net *.pmnts-sandbox.io *.rollbar.com
68
+ fatzebra.statuspage.io *.iovation.com *.jquery.com cdnjs.cloudflare.com *.pmnts-staging.io
69
+ *.aexp-static.com *.newrelic.com *.googleapis.com *.americanexpress.com www.google.com
70
+ pay.google.com *.visa.com *.masterpass.com *.mastercard.com *.google-analytics.com
71
+ *.gstatic.com *.bootstrapcdn.com; style-src ''self'' ''unsafe-eval'' ''unsafe-inline''
72
+ *.bootstrapcdn.com *.googleapis.com; style-src-attr ''unsafe-inline''; style-src-elem
73
+ ''unsafe-inline'' ''self'' *.googleapis.com cdnjs.cloudflare.com *.bootstrapcdn.com;
74
+ worker-src blob:; report-uri https://fatzebra.report-uri.com/r/d/csp/wizard'
75
+ Nel:
76
+ - '{"report_to":"default","max_age":31536000,"include_subdomains":true}'
77
+ Report-To:
78
+ - '{"group":"default","max_age":31536000,"endpoints":[{"url":"https://fatzebra.report-uri.com/a/d/g"}],"include_subdomains":true}'
79
+ body:
80
+ encoding: UTF-8
81
+ string: '{"successful":true,"response":{"status":"Active","domain":"www.example99.com","created_at":"2024-03-04T12:10:29+11:00","updated_at":"2024-03-04T01:10:31+00:00"},"errors":[],"test":true}'
82
+ http_version:
83
+ recorded_at: Mon, 04 Mar 2024 01:10:32 GMT
84
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,60 @@
1
+ require 'spec_helper'
2
+
3
+ describe FatZebra::Utilities::ApplePay::Domain do
4
+
5
+ describe '.list', :vcr do
6
+ subject(:list) { FatZebra::Utilities::ApplePay::Domain.list }
7
+
8
+ it "fetches the merchant domains" do
9
+ expect(list).to be_accepted
10
+ expect(list.data.length).to eq(2)
11
+ expect(list.data.first.raw).to eq(
12
+ {
13
+ "domain" => "example.com",
14
+ "status" => "Active"
15
+ }
16
+ )
17
+ expect(list.data.last.raw).to eq(
18
+ {
19
+ "domain" => "example2.com",
20
+ "status" => "Active"
21
+ }
22
+ )
23
+ end
24
+ end
25
+
26
+ describe '.register!', :vcr do
27
+ subject(:create) { FatZebra::Utilities::ApplePay::Domain.register!(domain, valid_payload) }
28
+
29
+ let!(:domain) { "www.example99.com" }
30
+ let!(:valid_payload) {{
31
+ async: false
32
+ }}
33
+
34
+ it "creates the domain" do
35
+ expect(create).to be_accepted
36
+ expect(create.domain).to eq(domain)
37
+ expect(create.status).to eq("Active")
38
+ end
39
+ end
40
+
41
+ describe '.find!', :vcr do
42
+ subject(:find) { FatZebra::Utilities::ApplePay::Domain.find!(domain) }
43
+ let!(:domain) { "www.example.com" }
44
+
45
+ it "fetches the domain" do
46
+ expect(find).to be_accepted
47
+ expect(find.domain).to eq(domain)
48
+ expect(find.status).to eq("Active")
49
+ end
50
+ end
51
+
52
+ describe '.delete!', :vcr do
53
+ subject(:delete) { FatZebra::Utilities::ApplePay::Domain.delete!(domain) }
54
+ let!(:domain) { "www.example99.com" }
55
+
56
+ it "deletes the domain" do
57
+ expect(delete).to be_accepted
58
+ end
59
+ end
60
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fat_zebra
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.6
4
+ version: 3.2.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fat Zebra
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-10-04 00:00:00.000000000 Z
11
+ date: 2024-03-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: byebug
@@ -147,6 +147,7 @@ files:
147
147
  - lib/fat_zebra/request/multipart/part.rb
148
148
  - lib/fat_zebra/request/multipart/stream.rb
149
149
  - lib/fat_zebra/util.rb
150
+ - lib/fat_zebra/utilities/apple_pay/domain.rb
150
151
  - lib/fat_zebra/utilities/mastercard/click_to_pay/registration.rb
151
152
  - lib/fat_zebra/validation.rb
152
153
  - lib/fat_zebra/version.rb
@@ -330,6 +331,10 @@ files:
330
331
  - spec/cassettes/FatZebra_Refund/_void/1_4_2.yml
331
332
  - spec/cassettes/FatZebra_Refund/_void/1_4_3.yml
332
333
  - spec/cassettes/FatZebra_Refund/_void/1_4_4.yml
334
+ - spec/cassettes/FatZebra_Utilities_ApplePay_Domain/_delete_/deletes_the_domain.yml
335
+ - spec/cassettes/FatZebra_Utilities_ApplePay_Domain/_find_/fetches_the_domain.yml
336
+ - spec/cassettes/FatZebra_Utilities_ApplePay_Domain/_list/fetches_the_merchant_domains.yml
337
+ - spec/cassettes/FatZebra_Utilities_ApplePay_Domain/_register_/creates_the_domain.yml
333
338
  - spec/cassettes/FatZebra_WebHook/_create/1_1_1.yml
334
339
  - spec/cassettes/FatZebra_WebHook/_create/1_1_2.yml
335
340
  - spec/cassettes/FatZebra_WebHook/_create/1_1_3.yml
@@ -360,14 +365,17 @@ files:
360
365
  - spec/lib/fat_zebra/refund_spec.rb
361
366
  - spec/lib/fat_zebra/request_spec.rb
362
367
  - spec/lib/fat_zebra/util_spec.rb
368
+ - spec/lib/fat_zebra/utilities/apple_pay/domain_spec.rb
363
369
  - spec/lib/fat_zebra/validation_spec.rb
364
370
  - spec/lib/fat_zebra/web_hook_spec.rb
365
371
  - spec/spec_helper.rb
366
372
  - spec/support/payloads.rb
367
373
  - vendor/cacert.pem
368
- homepage: ''
374
+ homepage: https://github.com/fatzebra/Ruby-Library
369
375
  licenses: []
370
- metadata: {}
376
+ metadata:
377
+ homepage_uri: https://github.com/fatzebra/Ruby-Library
378
+ source_code_uri: https://github.com/fatzebra/Ruby-Library
371
379
  post_install_message:
372
380
  rdoc_options: []
373
381
  require_paths: