vpos 1.0.3 → 2.0.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: 8370f4a90ad50fe5d01bfac9624ab58308ed93162e89f812d3c079666bcfe34d
4
- data.tar.gz: 52eaab59d6381acd36fe3123838e044eb245d233d6dee5a512e37023e66b4287
3
+ metadata.gz: e865b5fffb4fe4f2e13e6bb282439885fd0a56274d3c4bc84c7ae45d90ef07e2
4
+ data.tar.gz: d83b8a685d97e8b8141c2cf5d9e43378dbdd0c955691e89ec9a130d036467033
5
5
  SHA512:
6
- metadata.gz: c58b139c3f768eebe04c2c97fe5398ce1a9cb94c2e8fbaa04eff8449ff069493b26900c5cb7937beea387b0820fd594293aeed96f27d86b693bf28e04946fb54
7
- data.tar.gz: bc3e0f3b9991fa73dbe7002bb73d14cbb3e52a6d3d0d2e4b632962784081da33ebf3113504f934478cc86f16e0c1e5f3d12c7f9ced3756d181cb600ab0831534
6
+ metadata.gz: 168cffa759c19a468b376b57c62dafffd2fcd1890fa3df9bdac4f9f8f7725b1f3362cee3f6b8791bdde808df7fc3c0418b658ec19f514be806ae59928617669b
7
+ data.tar.gz: 2a9af917900e0d8342db0e8bc9f5433d005d33d2865308a3eb407c9b943bb5d67c345b5377c9cc7dc27590d9cd6359ef26c5d171578ead1f288f2b39e1a6f0ed
data/.gitignore CHANGED
@@ -24,3 +24,4 @@ test/version_tmp
24
24
  tmp
25
25
  example.rb
26
26
  .idea
27
+ vendor/*
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.5.8
1
+ 3.0.2
data/Gemfile.lock CHANGED
@@ -1,37 +1,33 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- vpos (1.0.2)
5
- concurrent-ruby
6
- httparty (~> 0.18.1)
7
- rspec (~> 3.9, >= 3.9.0)
4
+ vpos (2.0.0)
5
+ faraday (~> 2.3)
6
+ rspec (~> 3.11, >= 3.11.0)
8
7
 
9
8
  GEM
10
9
  remote: https://rubygems.org/
11
10
  specs:
12
- concurrent-ruby (1.1.9)
13
- diff-lcs (1.4.4)
14
- httparty (0.18.1)
15
- mime-types (~> 3.0)
16
- multi_xml (>= 0.5.2)
17
- mime-types (3.3.1)
18
- mime-types-data (~> 3.2015)
19
- mime-types-data (3.2021.0901)
20
- multi_xml (0.6.0)
11
+ diff-lcs (1.5.0)
12
+ faraday (2.3.0)
13
+ faraday-net_http (~> 2.0)
14
+ ruby2_keywords (>= 0.0.4)
15
+ faraday-net_http (2.0.3)
21
16
  rake (12.3.3)
22
- rspec (3.10.0)
23
- rspec-core (~> 3.10.0)
24
- rspec-expectations (~> 3.10.0)
25
- rspec-mocks (~> 3.10.0)
26
- rspec-core (3.10.1)
27
- rspec-support (~> 3.10.0)
28
- rspec-expectations (3.10.1)
17
+ rspec (3.11.0)
18
+ rspec-core (~> 3.11.0)
19
+ rspec-expectations (~> 3.11.0)
20
+ rspec-mocks (~> 3.11.0)
21
+ rspec-core (3.11.0)
22
+ rspec-support (~> 3.11.0)
23
+ rspec-expectations (3.11.0)
29
24
  diff-lcs (>= 1.2.0, < 2.0)
30
- rspec-support (~> 3.10.0)
31
- rspec-mocks (3.10.2)
25
+ rspec-support (~> 3.11.0)
26
+ rspec-mocks (3.11.1)
32
27
  diff-lcs (>= 1.2.0, < 2.0)
33
- rspec-support (~> 3.10.0)
34
- rspec-support (3.10.2)
28
+ rspec-support (~> 3.11.0)
29
+ rspec-support (3.11.0)
30
+ ruby2_keywords (0.0.5)
35
31
 
36
32
  PLATFORMS
37
33
  ruby
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.0'
26
+ gem 'vpos', '~> 2.0.0'
27
27
  ```
28
28
 
29
29
  or
@@ -52,17 +52,16 @@ The next section will show the various actions that can be performed by you, the
52
52
  require 'vpos'
53
53
 
54
54
  # use the default environment variables option
55
- merchant = Vpos.new
55
+ vpos = Vpos.new
56
56
 
57
57
  # or use optional arguments option
58
- merchant = Vpos.new(token: 'your_token_here', environment: 'PRD')
58
+ vpos = Vpos.new(token: 'your_token_here')
59
59
  ```
60
60
 
61
61
  #### Environment variables
62
62
  | Variable | Description | Required |
63
63
  | --- | --- | --- |
64
64
  | `GPO_POS_ID` | The Point of Sale ID provided by EMIS | true |
65
- | `GPO_SUPERVISOR_CARD` | The Supervisor card ID provided by EMIS | true |
66
65
  | `MERCHANT_VPOS_TOKEN` | The API token provided by vPOS | true |
67
66
  | `PAYMENT_CALLBACK_URL` | The URL that will handle payment notifications | false |
68
67
  | `REFUND_CALLBACK_URL` | The URL that will handle refund notifications | false |
@@ -74,65 +73,94 @@ or using one of the optional arguments
74
73
  | --- | --- | --- |
75
74
  | `token` | Token generated at [vPOS](https://merchant.vpos.ao) dashboard | `string`
76
75
  | `pos_id` | Merchant POS ID provided by EMIS | `string`
77
- | `supervisor_card` | Merchant Supervisor Card number provided by EMIS | `string`
78
76
  | `payment_callback_url` | Merchant application JSON endpoint to accept the callback payment response | `string`
79
77
  | `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
78
 
82
- ### Get all Transactions
83
- This endpoint retrieves all transactions.
79
+ ### Get a specific Transaction
80
+ Retrieves a transaction given a valid transaction ID using a env variable token.
84
81
 
85
82
  ```ruby
86
- transaction = merchant.get_transactions
83
+ transaction = merchant.get_transaction(transaction_id: '1jHbXEbRTIbbwaoJ6w06nLcRG7X')
87
84
  ```
88
85
 
89
- ### Get a specific Transaction
90
- Retrieves a transaction given a valid transaction ID.
86
+ or
87
+
88
+ Using a explicitly stated token
91
89
 
92
90
  ```ruby
93
- transaction = merchant.get_transaction('1jHbXEbRTIbbwaoJ6w06nLcRG7X')
91
+ transaction = merchant.get_transaction(transaction_id: '1jHbXEbRTIbbwaoJ6w06nLcRG7X', token: 'EbRTIbb1jHbXEbRTIbbwaoJ6w06nLcRG7X')
94
92
  ```
95
93
 
96
- | Argument | Description | Type |
94
+ | Argument | Description | Type | Required |
97
95
  | --- | --- | --- |
98
- | `id` | An existing Transaction ID | `string`
96
+ | `transaction_id` | An existing Transaction ID | `string` | Yes |
97
+ | `token` | Merchant token generated at vPOS merchant portal | `string` | No (if set as env variable) |
99
98
 
100
99
  ### New Payment Transaction
101
100
  Creates a new payment transaction given a valid mobile number associated with a `MULTICAIXA` account
102
- and a valid amount.
101
+ and a valid amount using a env variable token.
103
102
 
104
103
  ```ruby
105
- payment = merchant.new_payment('900111222', '123.45')
104
+ payment = merchant.new_payment(customer: '900111222', amount: '123.45')
106
105
  ```
107
106
 
108
- | Argument | Description | Type |
107
+ or
108
+
109
+ Using a explicitly stated token
110
+
111
+ ```ruby
112
+ payment = merchant.new_payment(customer: '900111222', amount: '123.45', token: 'EbRTIbb1jHbXEbRTIbbwaoJ6w06nLcRG7X')
113
+ ```
114
+
115
+ | Argument | Description | Type | Required |
109
116
  | --- | --- | --- |
110
- | `mobile` | The mobile number of the client who will pay | `string`
111
- | `amount` | The amount the client should pay, eg. "259.99", "259000.00" | `string`
117
+ | `customer` | The mobile number of the client who will pay | `string` | Yes |
118
+ | `amount` | The amount the client should pay, eg. "259.99", "259000.00" | `string` | Yes |
119
+ | `token` | Merchant token generated at vPOS merchant portal | `string` | No (if set as env variable) |
120
+ | `callback_url` | A valid https url where vPOS is going to callback as soon he finishes to process | `string` | No |
112
121
 
113
122
  ### Request Refund
114
- Given an existing `parent_transaction_id`, request a refund.
123
+ Given an existing `parent_transaction_id`, request a refund using a env variable token.
115
124
 
116
125
  ```ruby
117
- refund = merchant.new_refund('1kTFGhJH8i58uD9MdJpMjWnoE')
126
+ refund = merchant.new_refund(parent_transaction_id: '1kTFGhJH8i58uD9MdJpMjWnoE')
118
127
  ```
119
128
 
120
- | Argument | Description | Type |
129
+ or
130
+
131
+ Using a explicitly stated token
132
+
133
+ ```ruby
134
+ refund = merchant.new_refund(parent_transaction_id: '1kTFGhJH8i58uD9MdJpMjWnoE', token: 'EbRTIbb1jHbXEbRTIbbwaoJ6w06nLcRG7X')
135
+ ```
136
+
137
+ | Argument | Description | Type | Required |
121
138
  | --- | --- | --- |
122
139
  | `parent_transaction_id` | The ID of transaction you wish to refund | `string`
140
+ | `token` | Merchant token generated at vPOS merchant portal | `string` | No (if set as env variable) |
141
+ | `callback_url` | A valid https url where vPOS is going to callback as soon he finishes to process | `string` | No |
123
142
 
124
143
  ### Poll Transaction Status
125
- Poll the status of a transaction given a valid `request_id`.
144
+ Poll the status of a transaction given a valid `request_id` using a env variable token.
126
145
 
127
146
  Note: The `request_id` in this context is essentially the `transaction_id` of an existing request.
128
147
 
129
148
  ```ruby
130
- transaction = merchant.get_request('1jHbXEbRTIbbwaoJ6w06nLcRG7X')
149
+ transaction = merchant.get_request(request_id: '1jHbXEbRTIbbwaoJ6w06nLcRG7X')
131
150
  ```
132
151
 
133
- | Argument | Description | Type |
152
+ or
153
+
154
+ Using a explicitly stated token
155
+
156
+ ```ruby
157
+ transaction = merchant.get_request(request_id: '1jHbXEbRTIbbwaoJ6w06nLcRG7X', token: 'EbRTIbb1jHbXEbRTIbbwaoJ6w06nLcRG7X')
158
+ ```
159
+
160
+ | Argument | Description | Type | Required? |
134
161
  | --- | --- | --- |
135
- | `request_id` | The ID of transaction you wish to poll | `string`
162
+ | `request_id` | The ID of transaction you wish to poll | `string` | Yes |
163
+ | `token` | Merchant token generated at vPOS merchant portal | `string` | No (if set as env variable) |
136
164
 
137
165
  ### Have any doubts?
138
166
  In case of any doubts, bugs, or the like, please leave an issue. We would love to help.
data/bin/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 3.0.2
data/lib/vpos/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module VposModule
2
- VERSION = "1.0.3"
2
+ VERSION = "2.0.0"
3
3
  end
data/lib/vpos.rb CHANGED
@@ -1,40 +1,40 @@
1
1
  require_relative "vpos_module"
2
- require "concurrent"
3
2
 
4
3
  class Vpos
5
4
  include VposModule
6
- include Concurrent::Async
7
5
 
8
- 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)
6
+ def initialize(token: set_token, pos_id: default_pos_id, payment_callback_url: default_payment_callback_url, refund_callback_url: default_refund_callback_url)
9
7
  @token = token
10
8
  @pos_id = pos_id
11
- @supervisor_card = supervisor_card
12
9
  @payment_callback_url = payment_callback_url
13
10
  @refund_callback_url = refund_callback_url
14
11
  end
15
12
 
16
13
  private
17
-
18
- def default_pos_id
19
- pos_id = ENV['GPO_POS_ID']
20
- "#{pos_id}".to_i
21
- end
22
-
23
- def default_supervisor_card
24
- supervisor_card = ENV['GPO_SUPERVISOR_CARD']
25
- "#{supervisor_card}"
26
- end
27
-
28
- def set_token
29
- token = ENV['MERCHANT_VPOS_TOKEN']
30
- "Bearer #{token}"
31
- end
32
-
33
- def default_payment_callback_url
34
- ENV['PAYMENT_CALLBACK_URL']
35
- end
36
-
37
- def default_refund_callback_url
38
- ENV['REFUND_CALLBACK_URL']
39
- end
14
+ def default_pos_id
15
+ pos_id = ENV['GPO_POS_ID']
16
+ unless !pos_id.nil?
17
+ return 111
18
+ end
19
+ "#{pos_id}".to_i
20
+ end
21
+
22
+ def set_token
23
+ token = ENV['MERCHANT_VPOS_TOKEN']
24
+ "Bearer #{token}"
25
+ end
26
+
27
+ def default_payment_callback_url
28
+ url = ENV['PAYMENT_CALLBACK_URL']
29
+ unless !url.nil?
30
+ return ""
31
+ end
32
+ end
33
+
34
+ def default_refund_callback_url
35
+ url = ENV['REFUND_CALLBACK_URL']
36
+ unless !url.nil?
37
+ return ""
38
+ end
39
+ end
40
40
  end
data/lib/vpos_module.rb CHANGED
@@ -1,34 +1,49 @@
1
1
  require "vpos/version"
2
- require "httparty"
2
+ require "faraday"
3
+ require "json"
3
4
  require "securerandom"
4
5
 
5
6
  module VposModule
6
7
  class Error < StandardError; end
7
- include HTTParty
8
- follow_redirects false
9
8
 
10
- def new_payment(customer, amount, pos_id: @pos_id, callback_url: @payment_callback_url)
11
- content = set_headers
12
- content[:body] = {type:"payment", pos_id: pos_id, mobile: customer, amount: amount, callback_url: callback_url}.to_json
13
- request = HTTParty.post("#{host}/transactions", content)
14
- return_vpos_object(request)
9
+ def new_payment(
10
+ customer: required,
11
+ amount: required,
12
+ pos_id: @pos_id,
13
+ callback_url: @payment_callback_url,
14
+ token: @token
15
+ )
16
+ conn = connection
17
+ response = conn.post('transactions') do |req|
18
+ req.headers['Authorization'] = token
19
+ req.body = { type: "payment", pos_id: pos_id, mobile: customer, amount: amount, callback_url: callback_url }.to_json
20
+ end
21
+ return_vpos_object(response)
15
22
  end
16
23
 
17
- def new_refund(transaction_id, supervisor_card: @supervisor_card, callback_url: @refund_callback_url)
18
- content = set_headers
19
- content[:body] = {type: "refund", parent_transaction_id: transaction_id, supervisor_card: supervisor_card, callback_url: callback_url}.to_json
20
- request = HTTParty.post("#{host}/transactions", content)
21
- return_vpos_object(request)
24
+ def new_refund(parent_transaction_id: required, token: @token, callback_url: @refund_callback_url)
25
+ conn = connection
26
+ response = conn.post('transactions') do |req|
27
+ req.headers['Authorization'] = token
28
+ req.body = { type: "refund", parent_transaction_id: parent_transaction_id, callback_url: callback_url }.to_json
29
+ end
30
+ return_vpos_object(response)
22
31
  end
23
32
 
24
- def get_transaction(transaction_id)
25
- request = HTTParty.get("#{host}/transactions/#{transaction_id}", set_headers)
26
- return_vpos_object(request)
33
+ def get_transaction(transaction_id: required, token: @token)
34
+ conn = connection
35
+ response = conn.get("transactions/#{transaction_id}") do |req|
36
+ req.headers['Authorization'] = token
37
+ end
38
+ return_vpos_object(response)
27
39
  end
28
40
 
29
41
  def get_request_id(response)
30
42
  if response[:location].nil?
31
- HTTParty.get("#{host}/references/invalid", set_headers)
43
+ conn = connection
44
+ response = conn.get("references/invalid") do |req|
45
+ req.headers['Authorization'] = token
46
+ end
32
47
  else
33
48
  if response[:status_code] == 202
34
49
  response[:location].gsub("/api/v1/requests/", "")
@@ -38,31 +53,55 @@ module VposModule
38
53
  end
39
54
  end
40
55
 
41
- def get_request(request_id)
42
- request = HTTParty.get("#{host}/requests/#{request_id}", set_headers)
43
- return_vpos_object(request)
56
+ def get_request(request_id: required, token: @token)
57
+ conn = connection
58
+ response = conn.get("requests/#{request_id}") do |req|
59
+ req.headers['Authorization'] = token
60
+ end
61
+ return_vpos_object(response)
44
62
  end
45
63
 
46
64
  private
47
- def return_vpos_object(request)
48
- case request.response.code.to_i
49
- when 200, 201
50
- return {status_code: request.response.code.to_i, message: request.response.message, data: request.parsed_response}
65
+ def return_vpos_object(response)
66
+ case response.status
67
+ when 200
68
+ return { status_code: response.status, message: 'OK', data: JSON.parse(response.body).transform_keys(&:to_sym) }
69
+ when 201
70
+ return { status_code: response.status, message: 'CREATED', data: response.body }
51
71
  when 202, 303
52
- return {status_code: request.response.code.to_i, message: request.response.message, location: request.headers["location"]}
72
+ return { status_code: response.status, message: 'ACCEPTED', location: response.headers["location"]}
73
+ when 401
74
+ return { status_code: response.status, message: 'UNAUTHORIZED' }
75
+ when 404
76
+ return { status_code: response.status, message: 'NOT FOUND' }
53
77
  else
54
- return {status_code: request.response.code.to_i, message: request.response.message, details: request.parsed_response["errors"]}
78
+ return { status_code: response.status, message: response.status, details: JSON.parse(response.body).transform_keys(&:to_sym) }
55
79
  end
56
80
  end
57
81
 
58
82
  def set_headers
59
- content = {}
60
- headers = {'Content-Type' => "application/json", 'Accept' => "application/json", 'Authorization' => @token, 'Idempotency-Key' => SecureRandom.uuid}
61
- content[:headers] = headers
62
- content
83
+ headers = {'Content-Type' => "application/json", 'Accept' => "application/json", 'Idempotency-Key' => SecureRandom.uuid}
63
84
  end
64
85
 
65
86
  def host
66
- "https://api.vpos.ao/api/v1"
87
+ "https://vpos.ao/api/v1"
88
+ end
89
+
90
+ def params
91
+ params = {}
92
+ end
93
+
94
+ def connection
95
+ conn = Faraday.new(
96
+ url: host,
97
+ params: params,
98
+ headers: set_headers
99
+ )
100
+ end
101
+
102
+ def required
103
+ method = caller_locations(1,1)[0].label
104
+ raise ArgumentError,
105
+ "A required keyword argument was not specified when calling '#{method}'"
67
106
  end
68
107
  end
data/vpos.gemspec CHANGED
@@ -22,9 +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 'bundler', '~> 2.2', '>= 2.2.3'
25
+ spec.add_development_dependency 'bundler', '~> 2.2', '>= 2.3.14'
26
26
  spec.add_development_dependency 'rake', '~> 12.3', '>= 12.3.3'
27
- spec.add_dependency 'httparty', '~> 0.18.1'
28
- spec.add_dependency 'concurrent-ruby'
29
- spec.add_dependency 'rspec', '~> 3.9', ">= 3.9.0"
30
- end
27
+ spec.add_dependency 'faraday', '~> 2.3'
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.3
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sergio Maziano
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-09-20 00:00:00.000000000 Z
11
+ date: 2022-05-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '2.2'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 2.2.3
22
+ version: 2.3.14
23
23
  type: :development
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '2.2'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 2.2.3
32
+ version: 2.3.14
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: rake
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -51,53 +51,39 @@ dependencies:
51
51
  - !ruby/object:Gem::Version
52
52
  version: 12.3.3
53
53
  - !ruby/object:Gem::Dependency
54
- name: httparty
54
+ name: faraday
55
55
  requirement: !ruby/object:Gem::Requirement
56
56
  requirements:
57
57
  - - "~>"
58
58
  - !ruby/object:Gem::Version
59
- version: 0.18.1
59
+ version: '2.3'
60
60
  type: :runtime
61
61
  prerelease: false
62
62
  version_requirements: !ruby/object:Gem::Requirement
63
63
  requirements:
64
64
  - - "~>"
65
65
  - !ruby/object:Gem::Version
66
- version: 0.18.1
67
- - !ruby/object:Gem::Dependency
68
- name: concurrent-ruby
69
- requirement: !ruby/object:Gem::Requirement
70
- requirements:
71
- - - ">="
72
- - !ruby/object:Gem::Version
73
- version: '0'
74
- type: :runtime
75
- prerelease: false
76
- version_requirements: !ruby/object:Gem::Requirement
77
- requirements:
78
- - - ">="
79
- - !ruby/object:Gem::Version
80
- version: '0'
66
+ version: '2.3'
81
67
  - !ruby/object:Gem::Dependency
82
68
  name: rspec
83
69
  requirement: !ruby/object:Gem::Requirement
84
70
  requirements:
85
71
  - - "~>"
86
72
  - !ruby/object:Gem::Version
87
- version: '3.9'
73
+ version: '3.11'
88
74
  - - ">="
89
75
  - !ruby/object:Gem::Version
90
- version: 3.9.0
76
+ version: 3.11.0
91
77
  type: :runtime
92
78
  prerelease: false
93
79
  version_requirements: !ruby/object:Gem::Requirement
94
80
  requirements:
95
81
  - - "~>"
96
82
  - !ruby/object:Gem::Version
97
- version: '3.9'
83
+ version: '3.11'
98
84
  - - ">="
99
85
  - !ruby/object:Gem::Version
100
- version: 3.9.0
86
+ version: 3.11.0
101
87
  description: The one stop shop for online payments in Angola, allowing you to process
102
88
  payments requests from EMIS GPO through vPOS.
103
89
  email:
@@ -114,6 +100,7 @@ files:
114
100
  - LICENSE.txt
115
101
  - README.md
116
102
  - Rakefile
103
+ - bin/.ruby-version
117
104
  - bin/console
118
105
  - bin/setup
119
106
  - lib/vpos.rb
@@ -125,7 +112,7 @@ homepage: https://github.com/v-pos/vpos-ruby
125
112
  licenses:
126
113
  - MIT
127
114
  metadata: {}
128
- post_install_message:
115
+ post_install_message:
129
116
  rdoc_options: []
130
117
  require_paths:
131
118
  - lib
@@ -140,9 +127,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
140
127
  - !ruby/object:Gem::Version
141
128
  version: '0'
142
129
  requirements: []
143
- rubyforge_project:
144
- rubygems_version: 2.7.6.2
145
- signing_key:
130
+ rubygems_version: 3.2.22
131
+ signing_key:
146
132
  specification_version: 4
147
133
  summary: The one stop shop for online payments in Angola.
148
134
  test_files: []