issuer_response_codes 0.2.5 → 0.3.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 +4 -4
- data/.github/workflows/ci.yml +38 -0
- data/.rubocop.yml +3 -76
- data/.ruby-version +1 -1
- data/CHANGELOG.md +13 -0
- data/Gemfile +9 -1
- data/Gemfile.lock +54 -41
- data/README.md +7 -1
- data/Rakefile +8 -6
- data/bin/console +6 -4
- data/issuer_response_codes.gemspec +14 -20
- data/lib/issuer_response_codes/code.rb +20 -5
- data/lib/issuer_response_codes/context.rb +16 -0
- data/lib/issuer_response_codes/locale_library.rb +52 -27
- data/lib/issuer_response_codes/tds_code.rb +21 -4
- data/lib/issuer_response_codes/version.rb +2 -1
- data/lib/issuer_response_codes.rb +12 -7
- data/lib/locale/es.yml +300 -0
- data/lib/locale/fi.yml +300 -0
- data/lib/locale/fr.yml +300 -0
- data/lib/locale/hr.yml +300 -0
- data/lib/locale/it.yml +157 -157
- data/lib/locale/nl.yml +300 -0
- data/lib/locale/pt.yml +300 -0
- metadata +17 -108
- data/.travis.yml +0 -6
- data/LICENSE +0 -21
metadata
CHANGED
|
@@ -1,114 +1,16 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: issuer_response_codes
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Espago
|
|
8
8
|
- Mateusz Drewniak
|
|
9
|
-
autorequire:
|
|
9
|
+
autorequire:
|
|
10
10
|
bindir: exe
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
13
|
-
dependencies:
|
|
14
|
-
- !ruby/object:Gem::Dependency
|
|
15
|
-
name: bundler
|
|
16
|
-
requirement: !ruby/object:Gem::Requirement
|
|
17
|
-
requirements:
|
|
18
|
-
- - ">="
|
|
19
|
-
- !ruby/object:Gem::Version
|
|
20
|
-
version: '0'
|
|
21
|
-
type: :development
|
|
22
|
-
prerelease: false
|
|
23
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
24
|
-
requirements:
|
|
25
|
-
- - ">="
|
|
26
|
-
- !ruby/object:Gem::Version
|
|
27
|
-
version: '0'
|
|
28
|
-
- !ruby/object:Gem::Dependency
|
|
29
|
-
name: bundler-audit
|
|
30
|
-
requirement: !ruby/object:Gem::Requirement
|
|
31
|
-
requirements:
|
|
32
|
-
- - ">="
|
|
33
|
-
- !ruby/object:Gem::Version
|
|
34
|
-
version: '0'
|
|
35
|
-
type: :development
|
|
36
|
-
prerelease: false
|
|
37
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
38
|
-
requirements:
|
|
39
|
-
- - ">="
|
|
40
|
-
- !ruby/object:Gem::Version
|
|
41
|
-
version: '0'
|
|
42
|
-
- !ruby/object:Gem::Dependency
|
|
43
|
-
name: byebug
|
|
44
|
-
requirement: !ruby/object:Gem::Requirement
|
|
45
|
-
requirements:
|
|
46
|
-
- - ">="
|
|
47
|
-
- !ruby/object:Gem::Version
|
|
48
|
-
version: '0'
|
|
49
|
-
type: :development
|
|
50
|
-
prerelease: false
|
|
51
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
52
|
-
requirements:
|
|
53
|
-
- - ">="
|
|
54
|
-
- !ruby/object:Gem::Version
|
|
55
|
-
version: '0'
|
|
56
|
-
- !ruby/object:Gem::Dependency
|
|
57
|
-
name: minitest
|
|
58
|
-
requirement: !ruby/object:Gem::Requirement
|
|
59
|
-
requirements:
|
|
60
|
-
- - "~>"
|
|
61
|
-
- !ruby/object:Gem::Version
|
|
62
|
-
version: '5.0'
|
|
63
|
-
type: :development
|
|
64
|
-
prerelease: false
|
|
65
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
66
|
-
requirements:
|
|
67
|
-
- - "~>"
|
|
68
|
-
- !ruby/object:Gem::Version
|
|
69
|
-
version: '5.0'
|
|
70
|
-
- !ruby/object:Gem::Dependency
|
|
71
|
-
name: rake
|
|
72
|
-
requirement: !ruby/object:Gem::Requirement
|
|
73
|
-
requirements:
|
|
74
|
-
- - "~>"
|
|
75
|
-
- !ruby/object:Gem::Version
|
|
76
|
-
version: '12.0'
|
|
77
|
-
type: :development
|
|
78
|
-
prerelease: false
|
|
79
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
80
|
-
requirements:
|
|
81
|
-
- - "~>"
|
|
82
|
-
- !ruby/object:Gem::Version
|
|
83
|
-
version: '12.0'
|
|
84
|
-
- !ruby/object:Gem::Dependency
|
|
85
|
-
name: rubocop
|
|
86
|
-
requirement: !ruby/object:Gem::Requirement
|
|
87
|
-
requirements:
|
|
88
|
-
- - ">="
|
|
89
|
-
- !ruby/object:Gem::Version
|
|
90
|
-
version: '0'
|
|
91
|
-
type: :development
|
|
92
|
-
prerelease: false
|
|
93
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
94
|
-
requirements:
|
|
95
|
-
- - ">="
|
|
96
|
-
- !ruby/object:Gem::Version
|
|
97
|
-
version: '0'
|
|
98
|
-
- !ruby/object:Gem::Dependency
|
|
99
|
-
name: solargraph
|
|
100
|
-
requirement: !ruby/object:Gem::Requirement
|
|
101
|
-
requirements:
|
|
102
|
-
- - ">="
|
|
103
|
-
- !ruby/object:Gem::Version
|
|
104
|
-
version: '0'
|
|
105
|
-
type: :development
|
|
106
|
-
prerelease: false
|
|
107
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
108
|
-
requirements:
|
|
109
|
-
- - ">="
|
|
110
|
-
- !ruby/object:Gem::Version
|
|
111
|
-
version: '0'
|
|
12
|
+
date: 2023-07-24 00:00:00.000000000 Z
|
|
13
|
+
dependencies: []
|
|
112
14
|
description: A simple Ruby gem which provides Issuer Response Code descriptions and
|
|
113
15
|
suggestions for cardholders and merchants
|
|
114
16
|
email:
|
|
@@ -117,16 +19,16 @@ executables: []
|
|
|
117
19
|
extensions: []
|
|
118
20
|
extra_rdoc_files: []
|
|
119
21
|
files:
|
|
22
|
+
- ".github/workflows/ci.yml"
|
|
120
23
|
- ".gitignore"
|
|
121
24
|
- ".rubocop.yml"
|
|
122
25
|
- ".ruby-gemset"
|
|
123
26
|
- ".ruby-version"
|
|
124
|
-
- ".travis.yml"
|
|
125
27
|
- ".vscode/extensions.json"
|
|
126
28
|
- ".vscode/settings.json"
|
|
29
|
+
- CHANGELOG.md
|
|
127
30
|
- Gemfile
|
|
128
31
|
- Gemfile.lock
|
|
129
|
-
- LICENSE
|
|
130
32
|
- LICENSE.txt
|
|
131
33
|
- README.md
|
|
132
34
|
- Rakefile
|
|
@@ -143,10 +45,16 @@ files:
|
|
|
143
45
|
- lib/locale/de.yml
|
|
144
46
|
- lib/locale/ee.yml
|
|
145
47
|
- lib/locale/en.yml
|
|
48
|
+
- lib/locale/es.yml
|
|
49
|
+
- lib/locale/fi.yml
|
|
50
|
+
- lib/locale/fr.yml
|
|
51
|
+
- lib/locale/hr.yml
|
|
146
52
|
- lib/locale/it.yml
|
|
147
53
|
- lib/locale/lt.yml
|
|
148
54
|
- lib/locale/lv.yml
|
|
55
|
+
- lib/locale/nl.yml
|
|
149
56
|
- lib/locale/pl.yml
|
|
57
|
+
- lib/locale/pt.yml
|
|
150
58
|
- lib/locale/sv.yml
|
|
151
59
|
homepage: https://github.com/espago/issuer_response_codes
|
|
152
60
|
licenses:
|
|
@@ -154,7 +62,8 @@ licenses:
|
|
|
154
62
|
metadata:
|
|
155
63
|
homepage_uri: https://github.com/espago/issuer_response_codes
|
|
156
64
|
source_code_uri: https://github.com/espago/issuer_response_codes
|
|
157
|
-
|
|
65
|
+
rubygems_mfa_required: 'true'
|
|
66
|
+
post_install_message:
|
|
158
67
|
rdoc_options: []
|
|
159
68
|
require_paths:
|
|
160
69
|
- lib
|
|
@@ -162,15 +71,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
162
71
|
requirements:
|
|
163
72
|
- - ">="
|
|
164
73
|
- !ruby/object:Gem::Version
|
|
165
|
-
version: '
|
|
74
|
+
version: '3.0'
|
|
166
75
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
167
76
|
requirements:
|
|
168
77
|
- - ">="
|
|
169
78
|
- !ruby/object:Gem::Version
|
|
170
79
|
version: '0'
|
|
171
80
|
requirements: []
|
|
172
|
-
rubygems_version: 3.
|
|
173
|
-
signing_key:
|
|
81
|
+
rubygems_version: 3.3.26
|
|
82
|
+
signing_key:
|
|
174
83
|
specification_version: 4
|
|
175
84
|
summary: Issuer Response Code descriptions for cardholders and merchants
|
|
176
85
|
test_files: []
|
data/.travis.yml
DELETED
data/LICENSE
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2021 Espago
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|