payu_pl 0.1.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.
metadata ADDED
@@ -0,0 +1,117 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: payu_pl
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Dmytro Koval
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: dry-initializer
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - "~>"
17
+ - !ruby/object:Gem::Version
18
+ version: '3.1'
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - "~>"
24
+ - !ruby/object:Gem::Version
25
+ version: '3.1'
26
+ - !ruby/object:Gem::Dependency
27
+ name: dry-validation
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - "~>"
31
+ - !ruby/object:Gem::Version
32
+ version: '1.10'
33
+ type: :runtime
34
+ prerelease: false
35
+ version_requirements: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '1.10'
40
+ - !ruby/object:Gem::Dependency
41
+ name: i18n
42
+ requirement: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: '1.14'
47
+ type: :runtime
48
+ prerelease: false
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: '1.14'
54
+ description: A small Ruby client for the PayU GPO Europe REST API (Poland), with basic
55
+ operations, validation and error handling.
56
+ email:
57
+ - dawidofdk@o2.pl
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - CHANGELOG.md
63
+ - CODE_OF_CONDUCT.md
64
+ - LICENSE.txt
65
+ - README.md
66
+ - Rakefile
67
+ - config/locales/en.yml
68
+ - config/locales/pl.yml
69
+ - lib/payu_pl.rb
70
+ - lib/payu_pl/authorize/oauth_token.rb
71
+ - lib/payu_pl/client.rb
72
+ - lib/payu_pl/configuration.rb
73
+ - lib/payu_pl/contracts/capture_contract.rb
74
+ - lib/payu_pl/contracts/id_contract.rb
75
+ - lib/payu_pl/contracts/order_create_contract.rb
76
+ - lib/payu_pl/contracts/refund_create_contract.rb
77
+ - lib/payu_pl/endpoints.rb
78
+ - lib/payu_pl/errors.rb
79
+ - lib/payu_pl/operations/base.rb
80
+ - lib/payu_pl/orders/cancel.rb
81
+ - lib/payu_pl/orders/capture.rb
82
+ - lib/payu_pl/orders/create.rb
83
+ - lib/payu_pl/orders/retrieve.rb
84
+ - lib/payu_pl/orders/transactions.rb
85
+ - lib/payu_pl/refunds/create.rb
86
+ - lib/payu_pl/refunds/list.rb
87
+ - lib/payu_pl/refunds/retrieve.rb
88
+ - lib/payu_pl/transport.rb
89
+ - lib/payu_pl/version.rb
90
+ - sig/payu_pl.rbs
91
+ homepage: https://developers.payu.com/europe/
92
+ licenses:
93
+ - MIT
94
+ metadata:
95
+ allowed_push_host: https://rubygems.org
96
+ homepage_uri: https://developers.payu.com/europe/
97
+ source_code_uri: https://github.com/dawidof/payu_pl
98
+ changelog_uri: https://github.com/dawidof/payu_pl/blob/main/CHANGELOG.md
99
+ rubygems_mfa_required: 'true'
100
+ rdoc_options: []
101
+ require_paths:
102
+ - lib
103
+ required_ruby_version: !ruby/object:Gem::Requirement
104
+ requirements:
105
+ - - ">="
106
+ - !ruby/object:Gem::Version
107
+ version: 2.7.0
108
+ required_rubygems_version: !ruby/object:Gem::Requirement
109
+ requirements:
110
+ - - ">="
111
+ - !ruby/object:Gem::Version
112
+ version: '0'
113
+ requirements: []
114
+ rubygems_version: 3.7.2
115
+ specification_version: 4
116
+ summary: PayU Poland (PayU GPO Europe) REST API client
117
+ test_files: []