paysafe 0.13.0 → 0.14.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 +4 -0
- data/Gemfile.lock +2 -2
- data/README.md +3 -3
- data/lib/paysafe/version.rb +1 -1
- data/paysafe.gemspec +2 -3
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: aacbcf63a5572fd1a11b9c453cad38fdd3e4b59ac2ecc9108ea658ba0900cc88
|
|
4
|
+
data.tar.gz: bd24d67aa5287677b587dc542e05be536699c81331a3b9ba454cfe8b47723657
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9b01adaf15f3be353afd3b56146c17649f9e696057f328530c585e3ee98e897722708e7082668127979d5a47e1ac28a039c519b22b6d39a52790cb8c947a7b4f
|
|
7
|
+
data.tar.gz: 88ee0cbc687f66dd4eb109febf8c881c775c11e174c3440a076cf137ef27ff5d0c7ae2880f7e3e11b6cefe86311edbceca08eacda9a9b0f9179c66d94ac4a685
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
paysafe (0.
|
|
4
|
+
paysafe (0.14.0)
|
|
5
5
|
http (>= 4, < 5)
|
|
6
6
|
|
|
7
7
|
GEM
|
|
@@ -41,7 +41,7 @@ GEM
|
|
|
41
41
|
public_suffix (4.0.6)
|
|
42
42
|
rake (13.0.3)
|
|
43
43
|
rexml (3.2.4)
|
|
44
|
-
ruby-progressbar (1.
|
|
44
|
+
ruby-progressbar (1.11.0)
|
|
45
45
|
unf (0.1.4)
|
|
46
46
|
unf_ext
|
|
47
47
|
unf_ext (0.0.7.7)
|
data/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# The Paysafe Ruby Gem
|
|
2
2
|
|
|
3
3
|
[](https://badge.fury.io/rb/paysafe)
|
|
4
|
-

|
|
5
5
|
|
|
6
6
|
A well tested Ruby interface to the [Paysafe REST API](paysafe_api_reference) (formerly Optimal Payments). Requires Ruby 2.5 and up. Not all API actions are supported yet. Since the Paysafe API uses camelCase, this gem will handle converting to and from snake_case for you.
|
|
7
7
|
|
|
@@ -71,7 +71,7 @@ profile.cards.first.card_expiry.year
|
|
|
71
71
|
|
|
72
72
|
## Development
|
|
73
73
|
|
|
74
|
-
1. `git clone https://github.com/
|
|
74
|
+
1. `git clone https://github.com/jackpocket/paysafe.git`
|
|
75
75
|
2. Run `./bin/setup` to install dependencies and fill out API key/secret info
|
|
76
76
|
3. Run `./bin/console` for an interactive prompt with an authenticated client for you to experiment:
|
|
77
77
|
|
|
@@ -93,7 +93,7 @@ To release a new version, update the version number in `version.rb`, and then ru
|
|
|
93
93
|
|
|
94
94
|
## Contributing
|
|
95
95
|
|
|
96
|
-
Bug reports and pull requests for missing API support are welcome on GitHub at https://github.com/
|
|
96
|
+
Bug reports and pull requests for missing API support are welcome on GitHub at https://github.com/jackpocket/paysafe. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
|
|
97
97
|
|
|
98
98
|
## License
|
|
99
99
|
|
data/lib/paysafe/version.rb
CHANGED
data/paysafe.gemspec
CHANGED
|
@@ -7,11 +7,11 @@ Gem::Specification.new do |spec|
|
|
|
7
7
|
spec.name = "paysafe"
|
|
8
8
|
spec.version = Paysafe::VERSION
|
|
9
9
|
spec.authors = ["Javier Julio"]
|
|
10
|
-
spec.email = ["
|
|
10
|
+
spec.email = ["javier@jackpocket.com"]
|
|
11
11
|
|
|
12
12
|
spec.summary = "A Ruby interface to the Paysafe REST API."
|
|
13
13
|
spec.description = "A Ruby interface to the Paysafe REST API."
|
|
14
|
-
spec.homepage = "https://github.com/
|
|
14
|
+
spec.homepage = "https://github.com/jackpocket/paysafe"
|
|
15
15
|
spec.license = "MIT"
|
|
16
16
|
|
|
17
17
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
@@ -31,5 +31,4 @@ Gem::Specification.new do |spec|
|
|
|
31
31
|
spec.add_development_dependency "minitest-mock_expectations"
|
|
32
32
|
spec.add_development_dependency "vcr"
|
|
33
33
|
spec.add_development_dependency "webmock"
|
|
34
|
-
|
|
35
34
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: paysafe
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.14.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Javier Julio
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-01-
|
|
11
|
+
date: 2021-01-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: http
|
|
@@ -144,7 +144,7 @@ dependencies:
|
|
|
144
144
|
version: '0'
|
|
145
145
|
description: A Ruby interface to the Paysafe REST API.
|
|
146
146
|
email:
|
|
147
|
-
-
|
|
147
|
+
- javier@jackpocket.com
|
|
148
148
|
executables: []
|
|
149
149
|
extensions: []
|
|
150
150
|
extra_rdoc_files: []
|
|
@@ -189,7 +189,7 @@ files:
|
|
|
189
189
|
- lib/paysafe/verification.rb
|
|
190
190
|
- lib/paysafe/version.rb
|
|
191
191
|
- paysafe.gemspec
|
|
192
|
-
homepage: https://github.com/
|
|
192
|
+
homepage: https://github.com/jackpocket/paysafe
|
|
193
193
|
licenses:
|
|
194
194
|
- MIT
|
|
195
195
|
metadata: {}
|