airwallex 0.1.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 +7 -0
- data/CHANGELOG.md +22 -0
- data/LICENSE.txt +21 -0
- data/README.md +377 -0
- data/Rakefile +12 -0
- data/docs/internal/20251125_iteration_1_quickstart.md +130 -0
- data/docs/internal/20251125_iteration_1_summary.md +342 -0
- data/docs/internal/20251125_sprint_1_completed.md +448 -0
- data/docs/internal/20251125_sprint_1_plan.md +389 -0
- data/docs/internal/20251125_sprint_2_completed.md +559 -0
- data/docs/internal/20251125_sprint_2_plan.md +531 -0
- data/docs/internal/20251125_sprint_2_unit_tests_completed.md +264 -0
- data/docs/research/Airwallex API Endpoint Research.md +410 -0
- data/docs/research/Airwallex API Research for Ruby Gem.md +383 -0
- data/lib/airwallex/api_operations/create.rb +16 -0
- data/lib/airwallex/api_operations/delete.rb +16 -0
- data/lib/airwallex/api_operations/list.rb +23 -0
- data/lib/airwallex/api_operations/retrieve.rb +16 -0
- data/lib/airwallex/api_operations/update.rb +44 -0
- data/lib/airwallex/api_resource.rb +96 -0
- data/lib/airwallex/client.rb +132 -0
- data/lib/airwallex/configuration.rb +67 -0
- data/lib/airwallex/errors.rb +64 -0
- data/lib/airwallex/list_object.rb +85 -0
- data/lib/airwallex/middleware/auth_refresh.rb +32 -0
- data/lib/airwallex/middleware/idempotency.rb +29 -0
- data/lib/airwallex/resources/beneficiary.rb +14 -0
- data/lib/airwallex/resources/payment_intent.rb +44 -0
- data/lib/airwallex/resources/transfer.rb +23 -0
- data/lib/airwallex/util.rb +58 -0
- data/lib/airwallex/version.rb +5 -0
- data/lib/airwallex/webhook.rb +67 -0
- data/lib/airwallex.rb +49 -0
- data/sig/airwallex.rbs +4 -0
- metadata +128 -0
metadata
ADDED
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: airwallex
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Chayut Orapinpatipat
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2025-11-25 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: faraday
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '2.0'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '2.0'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: faraday-multipart
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '1.0'
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '1.0'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: faraday-retry
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '2.0'
|
|
48
|
+
type: :runtime
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '2.0'
|
|
55
|
+
description: A comprehensive Ruby gem for integrating with Airwallex's global payment
|
|
56
|
+
infrastructure, including payment acceptance, payouts, foreign exchange, card issuing,
|
|
57
|
+
and treasury. Features automatic authentication management, idempotency guarantees,
|
|
58
|
+
webhook verification, and unified pagination.
|
|
59
|
+
email:
|
|
60
|
+
- chayut@sentia.com.au
|
|
61
|
+
executables: []
|
|
62
|
+
extensions: []
|
|
63
|
+
extra_rdoc_files: []
|
|
64
|
+
files:
|
|
65
|
+
- CHANGELOG.md
|
|
66
|
+
- LICENSE.txt
|
|
67
|
+
- README.md
|
|
68
|
+
- Rakefile
|
|
69
|
+
- docs/internal/20251125_iteration_1_quickstart.md
|
|
70
|
+
- docs/internal/20251125_iteration_1_summary.md
|
|
71
|
+
- docs/internal/20251125_sprint_1_completed.md
|
|
72
|
+
- docs/internal/20251125_sprint_1_plan.md
|
|
73
|
+
- docs/internal/20251125_sprint_2_completed.md
|
|
74
|
+
- docs/internal/20251125_sprint_2_plan.md
|
|
75
|
+
- docs/internal/20251125_sprint_2_unit_tests_completed.md
|
|
76
|
+
- docs/research/Airwallex API Endpoint Research.md
|
|
77
|
+
- docs/research/Airwallex API Research for Ruby Gem.md
|
|
78
|
+
- lib/airwallex.rb
|
|
79
|
+
- lib/airwallex/api_operations/create.rb
|
|
80
|
+
- lib/airwallex/api_operations/delete.rb
|
|
81
|
+
- lib/airwallex/api_operations/list.rb
|
|
82
|
+
- lib/airwallex/api_operations/retrieve.rb
|
|
83
|
+
- lib/airwallex/api_operations/update.rb
|
|
84
|
+
- lib/airwallex/api_resource.rb
|
|
85
|
+
- lib/airwallex/client.rb
|
|
86
|
+
- lib/airwallex/configuration.rb
|
|
87
|
+
- lib/airwallex/errors.rb
|
|
88
|
+
- lib/airwallex/list_object.rb
|
|
89
|
+
- lib/airwallex/middleware/auth_refresh.rb
|
|
90
|
+
- lib/airwallex/middleware/idempotency.rb
|
|
91
|
+
- lib/airwallex/resources/beneficiary.rb
|
|
92
|
+
- lib/airwallex/resources/payment_intent.rb
|
|
93
|
+
- lib/airwallex/resources/transfer.rb
|
|
94
|
+
- lib/airwallex/util.rb
|
|
95
|
+
- lib/airwallex/version.rb
|
|
96
|
+
- lib/airwallex/webhook.rb
|
|
97
|
+
- sig/airwallex.rbs
|
|
98
|
+
homepage: https://github.com/Sentia/airwallex
|
|
99
|
+
licenses:
|
|
100
|
+
- MIT
|
|
101
|
+
metadata:
|
|
102
|
+
allowed_push_host: https://rubygems.org
|
|
103
|
+
homepage_uri: https://github.com/Sentia/airwallex
|
|
104
|
+
source_code_uri: https://github.com/Sentia/airwallex
|
|
105
|
+
changelog_uri: https://github.com/Sentia/airwallex/blob/main/CHANGELOG.md
|
|
106
|
+
documentation_uri: https://rubydoc.info/gems/airwallex
|
|
107
|
+
bug_tracker_uri: https://github.com/Sentia/airwallex/issues
|
|
108
|
+
rubygems_mfa_required: 'true'
|
|
109
|
+
post_install_message:
|
|
110
|
+
rdoc_options: []
|
|
111
|
+
require_paths:
|
|
112
|
+
- lib
|
|
113
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
114
|
+
requirements:
|
|
115
|
+
- - ">="
|
|
116
|
+
- !ruby/object:Gem::Version
|
|
117
|
+
version: 3.1.0
|
|
118
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
119
|
+
requirements:
|
|
120
|
+
- - ">="
|
|
121
|
+
- !ruby/object:Gem::Version
|
|
122
|
+
version: '0'
|
|
123
|
+
requirements: []
|
|
124
|
+
rubygems_version: 3.5.11
|
|
125
|
+
signing_key:
|
|
126
|
+
specification_version: 4
|
|
127
|
+
summary: Production-grade Ruby client for the Airwallex API
|
|
128
|
+
test_files: []
|