payabli 2.2.21 → 2.2.22
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 +4 -4
- data/.fern/metadata.json +2 -2
- data/README.md +6 -0
- data/lib/payabli/client.rb +1 -1
- data/lib/payabli/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e05bcb36e71a98a3140b47a9a98956dd4fab002cd4f6b61a95bc6bb5c4aecf36
|
|
4
|
+
data.tar.gz: e8ca856e9e15e5631c42aca5e5976c1d3e1b58a17fc2a09633a115f779dffc4b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9f4f7bdefed0e39418fb036d4f06919e172656362070e39a29ef3048d41c8b11b660e092b07b7b24522996c5132aa018a7f50c2b2751fbef8f3bec06fd66cd53
|
|
7
|
+
data.tar.gz: cadf269b6814966eb3409d27df82aa63b3d3caad64ffe5fa5ecce64ae452fa8b971a7318ae761d2ae285dfbc692bf99635bec45c3318e1c98f6844464b0b7407
|
data/.fern/metadata.json
CHANGED
data/README.md
CHANGED
|
@@ -9,6 +9,7 @@ The Payabli Ruby library provides convenient access to the Payabli APIs from Rub
|
|
|
9
9
|
- [Documentation](#documentation)
|
|
10
10
|
- [Reference](#reference)
|
|
11
11
|
- [Changelog](#changelog)
|
|
12
|
+
- [Getting Started](#getting-started)
|
|
12
13
|
- [Passing Query Parameters](#passing-query-parameters)
|
|
13
14
|
- [Usage](#usage)
|
|
14
15
|
- [Environments](#environments)
|
|
@@ -33,6 +34,11 @@ A full reference for this library is available [here](https://github.com/payabli
|
|
|
33
34
|
The changelog for the official Payabli Ruby SDK is available on the Payabli Docs site. See [Ruby SDK Changelog](https://docs.payabli.com/changelog/ruby-sdk) for more information.
|
|
34
35
|
|
|
35
36
|
|
|
37
|
+
## Getting Started
|
|
38
|
+
|
|
39
|
+
Visit the Payabli Docs site to get started with the official Payabli Ruby SDK. See [Use the Ruby SDK](https://docs.payabli.com/developers/platform-sdk-ruby-guide) for more information.
|
|
40
|
+
|
|
41
|
+
|
|
36
42
|
## Passing Query Parameters
|
|
37
43
|
|
|
38
44
|
```ruby
|
data/lib/payabli/client.rb
CHANGED
|
@@ -10,7 +10,7 @@ module Payabli
|
|
|
10
10
|
@raw_client = Payabli::Internal::Http::RawClient.new(
|
|
11
11
|
base_url: base_url || Payabli::Environment::SANDBOX,
|
|
12
12
|
headers: {
|
|
13
|
-
"User-Agent" => "payabli/2.2.
|
|
13
|
+
"User-Agent" => "payabli/2.2.22",
|
|
14
14
|
"X-Fern-Language" => "Ruby",
|
|
15
15
|
requestToken: api_key.to_s
|
|
16
16
|
}
|
data/lib/payabli/version.rb
CHANGED