mangopay 3.36.0 → 3.37.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +36 -42
- data/lib/mangopay/version.rb +1 -1
- data/mangopay.gemspec +3 -3
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ab053280c45aa0899adbc045b9448a52439934da351049f226ebd2eb1815354b
|
4
|
+
data.tar.gz: e9abd7fadd084609d8820bd1147baa2ca12a3ccc4bc52cb559441d3af259c61f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7f418382b075cee36e01da7c7e6b766d6538561c082a78ba7c7f31dad0998f0deb77dccfffe7088530183ad80aaac85fe509452192f5564abebb840d404078e0
|
7
|
+
data.tar.gz: 36d54dd71d50dab4a573e0c06775a902471d24e904c0b6621634677309e4115f6e2d631ccde8e8b08525ad80f2acbb7342d9a0e330d0ff1768059f0a8b86d306
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,11 @@
|
|
1
|
+
## [3.37.0] - 2025-06-24
|
2
|
+
### Changed
|
3
|
+
- `multi_json` library version updated to 1.15.0 (latest, release 2020) to enable compatibility with later versions of Ruby
|
4
|
+
|
5
|
+
> ⚠️ **Caution - Breaking change**
|
6
|
+
>
|
7
|
+
> If you use version 1.7.7 (2013) of the `multi_json` [gem](https://rubygems.org/gems/multi_json/versions/1.15.0) in your project, you need to update to 1.15.0 to use this version v3.37.0 of the Mangopay Ruby SDK
|
8
|
+
|
1
9
|
## [3.36.0] - 2025-06-24
|
2
10
|
### Added
|
3
11
|
|
data/README.md
CHANGED
@@ -1,33 +1,25 @@
|
|
1
|
-
# Mangopay Ruby SDK
|
1
|
+
# Mangopay Ruby SDK
|
2
2
|
|
3
|
-
|
4
|
-
See the [API documentation](http://docs.mangopay.com/api-references/)
|
5
|
-
for more details on the API.
|
3
|
+
[](https://rubygems.org/gems/mangopay)
|
6
4
|
|
7
|
-
|
5
|
+
Official [Mangopay Gem](https://rubygems.org/gems/mangopay) to access the [Mangopay API](https://docs.mangopay.com/api-reference) from applications written in Ruby.
|
8
6
|
|
9
|
-
|
7
|
+
See the [Mangopay API documentation](https://docs.mangopay.com/) for Ruby samples and details on product features. See the [SDK tests](#tests) for further usage examples.
|
10
8
|
|
11
|
-
|
12
|
-
|
9
|
+
## Prerequisites
|
10
|
+
- * A `ClientId` and an API key – if you don't have these, <a href="https://mangopay.com/contact" target="_blank">contact Sales</a> to get access to the <a href="https://hub.mangopay.com/" target="_blank">Mangopay Dashboard</a>
|
11
|
+
- Ruby 1.9.2 or higher (tested from 1.9.2 up to 3.4.4)
|
13
12
|
|
14
|
-
Since [v3.0.17](https://github.com/Mangopay/mangopay2-ruby-sdk/releases/tag/v3.0.17)
|
13
|
+
Since SDK [v3.0.17](https://github.com/Mangopay/mangopay2-ruby-sdk/releases/tag/v3.0.17), the library uses v2.01 of the API. The older API version (v2) is no longer available.
|
15
14
|
|
16
|
-
|
17
|
-
-------------------------------------------------
|
18
|
-
You can get yourself a free sandbox account or sign up for a production account by [registering on the Mangopay site](https://www.mangopay.com/start/) (note that validation of your production account involves several steps, so think about doing it in advance of when you actually want to go live).
|
19
|
-
|
20
|
-
## Usage
|
21
|
-
|
22
|
-
### Install
|
23
|
-
* You can get yourself a free sandbox account or sign up for a production account [on the Mangopay site](https://www.mangopay.com/start/) (note that validation of your production account will involve several steps, so think about doing it in advance of when you actually want to go live).
|
15
|
+
## Installation
|
24
16
|
|
25
17
|
* Install the gem by either running ```gem install mangopay```
|
26
18
|
or by adding it to your Gemfile ```gem 'mangopay'```
|
27
19
|
|
28
|
-
*
|
20
|
+
* Call ```MangoPay.configure``` in your script as shown in the snippet below.
|
29
21
|
|
30
|
-
###
|
22
|
+
### Usage
|
31
23
|
|
32
24
|
```ruby
|
33
25
|
require 'mangopay'
|
@@ -85,8 +77,8 @@ rescue MangoPay::ResponseError => ex
|
|
85
77
|
end
|
86
78
|
```
|
87
79
|
|
88
|
-
### Using multiple
|
89
|
-
|
80
|
+
### Using multiple Client IDs
|
81
|
+
The Ruby SDK offers the option to create multiple configuration objects tailored to your specific needs:
|
90
82
|
|
91
83
|
```
|
92
84
|
config = MangoPay::Configuration.new
|
@@ -94,18 +86,19 @@ config.client_id = 'your-client-id'
|
|
94
86
|
config.client_apiKey = 'your-api-key'
|
95
87
|
config.preproduction = true
|
96
88
|
```
|
97
|
-
|
89
|
+
|
90
|
+
Add them using:
|
98
91
|
|
99
92
|
`MangoPay.add_config('config1', config)`
|
100
93
|
|
101
|
-
|
94
|
+
And perform a call with them using:
|
102
95
|
|
103
96
|
`MangoPay.get_config('config1').apply_configuration`
|
104
97
|
|
105
|
-
The previous method configure() is still working.
|
98
|
+
The previous method `configure()` is still working.
|
106
99
|
|
107
|
-
### Accessing
|
108
|
-
|
100
|
+
### Accessing rate limiting headers
|
101
|
+
The API returns rate limiting headers which are automatically updated in the `MangoPay` object:
|
109
102
|
|
110
103
|
* X-RateLimit-Limit
|
111
104
|
* X-RateLimit-Remaining
|
@@ -121,18 +114,28 @@ Along with each request, the rate limiting headers are automatically updated in
|
|
121
114
|
}
|
122
115
|
```
|
123
116
|
|
124
|
-
|
117
|
+
For more information, see the [rate limiting](https://docs.mangopay.com/api-reference/overview/rate-limiting) article on the Mangopay docs.
|
125
118
|
|
126
119
|
### Log requests and responses
|
127
|
-
You can
|
120
|
+
You can enable logs by setting the ```log_file``` configuration option (see [usage](#usage) above). If you don't want logs, remove the ```log_file``` line.
|
128
121
|
|
129
122
|
Requests and responses are filtered, so confidential data is not saved in logs.
|
130
123
|
|
131
124
|
### Tests
|
132
|
-
Make sure that you have run:
|
133
|
-
|
134
|
-
|
135
|
-
|
125
|
+
Make sure that you have run:
|
126
|
+
```
|
127
|
+
bundle install
|
128
|
+
```
|
129
|
+
Then to run the test suite, run:
|
130
|
+
```
|
131
|
+
rspec
|
132
|
+
```
|
133
|
+
|
134
|
+
## Issues
|
135
|
+
|
136
|
+
Create a [GitHub issue](https://github.com/Mangopay/mangopay2-ruby-sdk/issues) to report any problems or request features.
|
137
|
+
|
138
|
+
We aim to reply to issues and contributions in a timely manner. For additional followup or anything that can't be shared over GitHub, please get in touch with our Support teams via the <a href="https://hub.mangopay.com/" target="_blank">Mangopay Dashboard</a>.
|
136
139
|
|
137
140
|
## Contributing
|
138
141
|
|
@@ -149,10 +152,6 @@ a test!
|
|
149
152
|
|
150
153
|
5. Push to your fork and submit a pull request.
|
151
154
|
|
152
|
-
At this point you're waiting on us. We like to at least comment on, if not
|
153
|
-
accept, pull requests within three business days (and, typically, one business
|
154
|
-
day). We may suggest some changes or improvements or alternatives.
|
155
|
-
|
156
155
|
Syntax:
|
157
156
|
|
158
157
|
* Two spaces, no tabs.
|
@@ -160,9 +159,4 @@ Syntax:
|
|
160
159
|
* Prefer &&/|| over and/or.
|
161
160
|
* MyClass.my_method(my_arg) not my_method( my_arg ) or my_method my_arg.
|
162
161
|
* a = b and not a=b.
|
163
|
-
* Follow the conventions you see used in the source already.
|
164
|
-
|
165
|
-
A contribution can also be as simple as a +1 on issues tickets to show us
|
166
|
-
what you would like to see in this gem.
|
167
|
-
|
168
|
-
That's it for now. Good Hacking...
|
162
|
+
* Follow the conventions you see used in the source already.
|
data/lib/mangopay/version.rb
CHANGED
data/mangopay.gemspec
CHANGED
@@ -18,10 +18,10 @@ Gem::Specification.new do |s|
|
|
18
18
|
|
19
19
|
s.required_ruby_version = '>= 1.9.2'
|
20
20
|
|
21
|
-
s.add_dependency('multi_json', '>= 1.
|
21
|
+
s.add_dependency('multi_json', '>= 1.15.0')
|
22
22
|
|
23
|
-
s.add_development_dependency('rake', '>=
|
24
|
-
s.add_development_dependency('rspec', '>= 3.
|
23
|
+
s.add_development_dependency('rake', '>= 13.2.1')
|
24
|
+
s.add_development_dependency('rspec', '>= 3.13.0')
|
25
25
|
|
26
26
|
s.files = `git ls-files`.split("\n")
|
27
27
|
s.test_files = `git ls-files -- spec/*`.split("\n")
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mangopay
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.37.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Geoffroy Lorieux
|
@@ -17,42 +17,42 @@ dependencies:
|
|
17
17
|
requirements:
|
18
18
|
- - ">="
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version: 1.
|
20
|
+
version: 1.15.0
|
21
21
|
type: :runtime
|
22
22
|
prerelease: false
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
24
24
|
requirements:
|
25
25
|
- - ">="
|
26
26
|
- !ruby/object:Gem::Version
|
27
|
-
version: 1.
|
27
|
+
version: 1.15.0
|
28
28
|
- !ruby/object:Gem::Dependency
|
29
29
|
name: rake
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
31
31
|
requirements:
|
32
32
|
- - ">="
|
33
33
|
- !ruby/object:Gem::Version
|
34
|
-
version:
|
34
|
+
version: 13.2.1
|
35
35
|
type: :development
|
36
36
|
prerelease: false
|
37
37
|
version_requirements: !ruby/object:Gem::Requirement
|
38
38
|
requirements:
|
39
39
|
- - ">="
|
40
40
|
- !ruby/object:Gem::Version
|
41
|
-
version:
|
41
|
+
version: 13.2.1
|
42
42
|
- !ruby/object:Gem::Dependency
|
43
43
|
name: rspec
|
44
44
|
requirement: !ruby/object:Gem::Requirement
|
45
45
|
requirements:
|
46
46
|
- - ">="
|
47
47
|
- !ruby/object:Gem::Version
|
48
|
-
version: 3.
|
48
|
+
version: 3.13.0
|
49
49
|
type: :development
|
50
50
|
prerelease: false
|
51
51
|
version_requirements: !ruby/object:Gem::Requirement
|
52
52
|
requirements:
|
53
53
|
- - ">="
|
54
54
|
- !ruby/object:Gem::Version
|
55
|
-
version: 3.
|
55
|
+
version: 3.13.0
|
56
56
|
description: |2
|
57
57
|
The mangopay Gem makes interacting with MANGOPAY Services much easier.
|
58
58
|
For any questions regarding the use of MANGOPAY's Services feel free to contact us at http://www.mangopay.com/get-started-2/
|