vpos 1.0.4 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4afd795dda51f97e50f6cd03781acca39a4f5d36619bddfe55d4515ad8506f5f
4
- data.tar.gz: 3f7553fc7b5705c86c074c0e76fce57528683cb81ca1c3ec1192e6ef6f00e9c0
3
+ metadata.gz: 4750800d8256bc530a0fb7ca21e03346c8e87088a7d808ee49e69904d2c199f3
4
+ data.tar.gz: 492e1c3dd74ad007b37104220fc22cdc17e489ce809da07ddfca2f6ff4d2db82
5
5
  SHA512:
6
- metadata.gz: d1d4d000a8aa386223660b120a015dd0bb45a7092355d22d7ad097a4add8bd31314891f976faca280c07c88bc2f8b234d0ce07db68265bb244331ca926ba10f2
7
- data.tar.gz: 817be562e7dfcacaf0bbad89a71bbd6a2e9f5c0b2385b360803795cb0d1293f3d0dcfb01ac3a55b11d4052af74dea307fa58ef56841426dbbd3377c6eb8be5ba
6
+ metadata.gz: 4af2aaafef72291b47a8523925bde9868e63a16d39aedac137d73d4fd3382cd903af108f0a589a334d6850affc71cc487f58cd6b218aef599b146d87cf14ef2b
7
+ data.tar.gz: 68c2abbd7e6e8cf39fa0ebcd462ebe34997362fec74538da9f6aa5c2d9b15079a08fdd95edf24f126f1db16a5196e6483cc8b2c530c458edd2b4682e5c77460c
data/.gitignore CHANGED
@@ -24,3 +24,4 @@ test/version_tmp
24
24
  tmp
25
25
  example.rb
26
26
  .idea
27
+ vendor/*
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- vpos (1.0.3)
4
+ vpos (1.0.4)
5
5
  httparty (~> 0.18.1)
6
6
  rspec (~> 3.9, >= 3.9.0)
7
7
 
@@ -17,19 +17,19 @@ GEM
17
17
  mime-types-data (3.2021.0225)
18
18
  multi_xml (0.6.0)
19
19
  rake (12.3.3)
20
- rspec (3.9.0)
21
- rspec-core (~> 3.9.0)
22
- rspec-expectations (~> 3.9.0)
23
- rspec-mocks (~> 3.9.0)
24
- rspec-core (3.9.3)
25
- rspec-support (~> 3.9.3)
26
- rspec-expectations (3.9.4)
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.9.0)
29
- rspec-mocks (3.9.1)
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.9.0)
32
- rspec-support (3.9.4)
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.6
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.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
@@ -1,3 +1,3 @@
1
1
  module VposModule
2
- VERSION = "1.0.4"
2
+ VERSION = "1.0.5"
3
3
  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)
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 "bundler", '~> 2.2', '>= 2.2.3'
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 "httparty", "~> 0.18.1"
28
- spec.add_dependency "rspec", '~> 3.9', ">= 3.9.0"
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
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: 2021-10-01 00:00:00.000000000 Z
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.9'
73
+ version: '3.11'
74
74
  - - ">="
75
75
  - !ruby/object:Gem::Version
76
- version: 3.9.0
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.9'
83
+ version: '3.11'
84
84
  - - ">="
85
85
  - !ruby/object:Gem::Version
86
- version: 3.9.0
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: