vpos 1.0.2 → 1.0.5
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/.gitignore +1 -0
- data/Gemfile.lock +14 -14
- data/README.md +1 -9
- data/lib/vpos/version.rb +1 -1
- data/lib/vpos.rb +1 -6
- data/lib/vpos_module.rb +1 -10
- data/vpos.gemspec +4 -4
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4750800d8256bc530a0fb7ca21e03346c8e87088a7d808ee49e69904d2c199f3
|
4
|
+
data.tar.gz: 492e1c3dd74ad007b37104220fc22cdc17e489ce809da07ddfca2f6ff4d2db82
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4af2aaafef72291b47a8523925bde9868e63a16d39aedac137d73d4fd3382cd903af108f0a589a334d6850affc71cc487f58cd6b218aef599b146d87cf14ef2b
|
7
|
+
data.tar.gz: 68c2abbd7e6e8cf39fa0ebcd462ebe34997362fec74538da9f6aa5c2d9b15079a08fdd95edf24f126f1db16a5196e6483cc8b2c530c458edd2b4682e5c77460c
|
data/.gitignore
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
vpos (1.0.
|
4
|
+
vpos (1.0.4)
|
5
5
|
httparty (~> 0.18.1)
|
6
6
|
rspec (~> 3.9, >= 3.9.0)
|
7
7
|
|
@@ -14,22 +14,22 @@ GEM
|
|
14
14
|
multi_xml (>= 0.5.2)
|
15
15
|
mime-types (3.3.1)
|
16
16
|
mime-types-data (~> 3.2015)
|
17
|
-
mime-types-data (3.
|
17
|
+
mime-types-data (3.2021.0225)
|
18
18
|
multi_xml (0.6.0)
|
19
19
|
rake (12.3.3)
|
20
|
-
rspec (3.
|
21
|
-
rspec-core (~> 3.
|
22
|
-
rspec-expectations (~> 3.
|
23
|
-
rspec-mocks (~> 3.
|
24
|
-
rspec-core (3.
|
25
|
-
rspec-support (~> 3.
|
26
|
-
rspec-expectations (3.
|
20
|
+
rspec (3.10.0)
|
21
|
+
rspec-core (~> 3.10.0)
|
22
|
+
rspec-expectations (~> 3.10.0)
|
23
|
+
rspec-mocks (~> 3.10.0)
|
24
|
+
rspec-core (3.10.1)
|
25
|
+
rspec-support (~> 3.10.0)
|
26
|
+
rspec-expectations (3.10.1)
|
27
27
|
diff-lcs (>= 1.2.0, < 2.0)
|
28
|
-
rspec-support (~> 3.
|
29
|
-
rspec-mocks (3.
|
28
|
+
rspec-support (~> 3.10.0)
|
29
|
+
rspec-mocks (3.10.2)
|
30
30
|
diff-lcs (>= 1.2.0, < 2.0)
|
31
|
-
rspec-support (~> 3.
|
32
|
-
rspec-support (3.
|
31
|
+
rspec-support (~> 3.10.0)
|
32
|
+
rspec-support (3.10.2)
|
33
33
|
|
34
34
|
PLATFORMS
|
35
35
|
ruby
|
@@ -40,4 +40,4 @@ DEPENDENCIES
|
|
40
40
|
vpos!
|
41
41
|
|
42
42
|
BUNDLED WITH
|
43
|
-
2.2.
|
43
|
+
2.2.27
|
data/README.md
CHANGED
@@ -23,7 +23,7 @@ See our documentation on [developer.vpos.ao](https://developer.vpos.ao)
|
|
23
23
|
|
24
24
|
## Installation
|
25
25
|
```ruby
|
26
|
-
gem 'vpos', '~> 1.0.
|
26
|
+
gem 'vpos', '~> 1.0.4'
|
27
27
|
```
|
28
28
|
|
29
29
|
or
|
@@ -77,14 +77,6 @@ or using one of the optional arguments
|
|
77
77
|
| `supervisor_card` | Merchant Supervisor Card number provided by EMIS | `string`
|
78
78
|
| `payment_callback_url` | Merchant application JSON endpoint to accept the callback payment response | `string`
|
79
79
|
| `refund_callback_url` | Merchant application JSON endpoint to accept the callback refund response | `string`
|
80
|
-
| `environment` | The vPOS environment, leave empty for `sandbox` mode and use `"PRD"` for `production`. | `string` |
|
81
|
-
|
82
|
-
### Get all Transactions
|
83
|
-
This endpoint retrieves all transactions.
|
84
|
-
|
85
|
-
```ruby
|
86
|
-
transaction = merchant.get_transactions
|
87
|
-
```
|
88
80
|
|
89
81
|
### Get a specific Transaction
|
90
82
|
Retrieves a transaction given a valid transaction ID.
|
data/lib/vpos/version.rb
CHANGED
data/lib/vpos.rb
CHANGED
@@ -3,8 +3,7 @@ require_relative "vpos_module"
|
|
3
3
|
class Vpos
|
4
4
|
include VposModule
|
5
5
|
|
6
|
-
def initialize(
|
7
|
-
@environment = environment
|
6
|
+
def initialize(token: set_token, pos_id: default_pos_id, supervisor_card: default_supervisor_card, payment_callback_url: default_payment_callback_url, refund_callback_url: default_refund_callback_url)
|
8
7
|
@token = token
|
9
8
|
@pos_id = pos_id
|
10
9
|
@supervisor_card = supervisor_card
|
@@ -36,8 +35,4 @@ class Vpos
|
|
36
35
|
def default_refund_callback_url
|
37
36
|
ENV['REFUND_CALLBACK_URL']
|
38
37
|
end
|
39
|
-
|
40
|
-
def default_environment
|
41
|
-
ENV['VPOS_PROFILE']
|
42
|
-
end
|
43
38
|
end
|
data/lib/vpos_module.rb
CHANGED
@@ -26,11 +26,6 @@ module VposModule
|
|
26
26
|
return_vpos_object(request)
|
27
27
|
end
|
28
28
|
|
29
|
-
def get_transactions
|
30
|
-
request = HTTParty.get("#{host}/transactions", set_headers)
|
31
|
-
return_vpos_object(request)
|
32
|
-
end
|
33
|
-
|
34
29
|
def get_request_id(response)
|
35
30
|
if response[:location].nil?
|
36
31
|
HTTParty.get("#{host}/references/invalid", set_headers)
|
@@ -68,10 +63,6 @@ module VposModule
|
|
68
63
|
end
|
69
64
|
|
70
65
|
def host
|
71
|
-
|
72
|
-
"https://api.vpos.ao/api/v1"
|
73
|
-
else
|
74
|
-
"https://sandbox.vpos.ao/api/v1"
|
75
|
-
end
|
66
|
+
"https://vpos.ao/api/v1"
|
76
67
|
end
|
77
68
|
end
|
data/vpos.gemspec
CHANGED
@@ -22,8 +22,8 @@ Gem::Specification.new do |spec|
|
|
22
22
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
23
23
|
spec.require_paths = ["lib"]
|
24
24
|
|
25
|
-
spec.add_development_dependency
|
25
|
+
spec.add_development_dependency 'bundler', '~> 2.2', '>= 2.2.3'
|
26
26
|
spec.add_development_dependency 'rake', '~> 12.3', '>= 12.3.3'
|
27
|
-
spec.add_dependency
|
28
|
-
spec.add_dependency
|
29
|
-
end
|
27
|
+
spec.add_dependency 'httparty', '~> 0.18.1'
|
28
|
+
spec.add_dependency 'rspec', '~> 3.11', ">= 3.11.0"
|
29
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vpos
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sergio Maziano
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-04-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -70,20 +70,20 @@ dependencies:
|
|
70
70
|
requirements:
|
71
71
|
- - "~>"
|
72
72
|
- !ruby/object:Gem::Version
|
73
|
-
version: '3.
|
73
|
+
version: '3.11'
|
74
74
|
- - ">="
|
75
75
|
- !ruby/object:Gem::Version
|
76
|
-
version: 3.
|
76
|
+
version: 3.11.0
|
77
77
|
type: :runtime
|
78
78
|
prerelease: false
|
79
79
|
version_requirements: !ruby/object:Gem::Requirement
|
80
80
|
requirements:
|
81
81
|
- - "~>"
|
82
82
|
- !ruby/object:Gem::Version
|
83
|
-
version: '3.
|
83
|
+
version: '3.11'
|
84
84
|
- - ">="
|
85
85
|
- !ruby/object:Gem::Version
|
86
|
-
version: 3.
|
86
|
+
version: 3.11.0
|
87
87
|
description: The one stop shop for online payments in Angola, allowing you to process
|
88
88
|
payments requests from EMIS GPO through vPOS.
|
89
89
|
email:
|