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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ceabdeb4ef69eb4c874761adac23f1222684b86d58c9b7a5669e3ef3a3ac8380
4
- data.tar.gz: 47427331ceebcd8165707c143868deceb98a9dc1b0a82f8ee77620c9a6a92443
3
+ metadata.gz: aacbcf63a5572fd1a11b9c453cad38fdd3e4b59ac2ecc9108ea658ba0900cc88
4
+ data.tar.gz: bd24d67aa5287677b587dc542e05be536699c81331a3b9ba454cfe8b47723657
5
5
  SHA512:
6
- metadata.gz: 344a98415e3903abdd735cefe0d3f18674c6ea7483bb40f18a3c7b207d8d15fa4598785dda153c3f6e16a83333f48a44abe5deb34eb68a6638c74fa97f872430
7
- data.tar.gz: 2effc19f46fa3755b2a4f866a6d40a8de9a1ec4a5f907792d38a221088ad67d7d8cb89f4dcd8c3f9ab34bd2acd1f95851a2bd3bd09ded4027fc92817fec940b1
6
+ metadata.gz: 9b01adaf15f3be353afd3b56146c17649f9e696057f328530c585e3ee98e897722708e7082668127979d5a47e1ac28a039c519b22b6d39a52790cb8c947a7b4f
7
+ data.tar.gz: 88ee0cbc687f66dd4eb109febf8c881c775c11e174c3440a076cf137ef27ff5d0c7ae2880f7e3e11b6cefe86311edbceca08eacda9a9b0f9179c66d94ac4a685
@@ -1,6 +1,10 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ ## 0.14.0 (2021-01-19)
5
+
6
+ * No code changes - moved repository to Jackpocket organization and updated URLs
7
+
4
8
  ## 0.13.0 (2021-01-14)
5
9
 
6
10
  * Renamed client `timeouts` option to `timeout`.
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- paysafe (0.13.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.10.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
  [![Gem Version](https://badge.fury.io/rb/paysafe.svg)](https://badge.fury.io/rb/paysafe)
4
- ![Build Status](https://github.com/javierjulio/paysafe/workflows/Paysafe/badge.svg?branch=master)
4
+ ![Tests](https://github.com/jackpocket/paysafe/workflows/Tests/badge.svg)
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/javierjulio/paysafe.git`
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/javierjulio/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.
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
 
@@ -1,3 +1,3 @@
1
1
  module Paysafe
2
- VERSION = "0.13.0"
2
+ VERSION = "0.14.0"
3
3
  end
@@ -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 = ["jjfutbol@gmail.com"]
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/javierjulio/paysafe"
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.13.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-14 00:00:00.000000000 Z
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
- - jjfutbol@gmail.com
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/javierjulio/paysafe
192
+ homepage: https://github.com/jackpocket/paysafe
193
193
  licenses:
194
194
  - MIT
195
195
  metadata: {}