konto_check_ruby 1.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.
metadata ADDED
@@ -0,0 +1,112 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: konto_check_ruby
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - tickettoaster GmbH
8
+ - Peter Horn
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2026-09-22 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: minitest
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - "~>"
19
+ - !ruby/object:Gem::Version
20
+ version: '5.0'
21
+ type: :development
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - "~>"
26
+ - !ruby/object:Gem::Version
27
+ version: '5.0'
28
+ - !ruby/object:Gem::Dependency
29
+ name: rake
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - "~>"
33
+ - !ruby/object:Gem::Version
34
+ version: '13.0'
35
+ type: :development
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - "~>"
40
+ - !ruby/object:Gem::Version
41
+ version: '13.0'
42
+ description: |
43
+ konto_check_ruby is a plain Ruby port (no C extension) of Michael Plugge's
44
+ C library konto_check. It validates German bank account numbers with all
45
+ check digit methods of the Deutsche Bundesbank (00 to E4), generates and
46
+ validates IBANs including the Bundesbank IBAN rules, and looks up bank
47
+ data (name, BIC, place, ...). It reads the LUT files of the original
48
+ library as well as the bank code files (Bankleitzahlendatei) published by
49
+ the Deutsche Bundesbank and can generate LUT files itself. The modules
50
+ KontoCheck and KontoCheckRaw are compatible with the original konto_check gem.
51
+ email:
52
+ - ph@tickettoaster.de
53
+ executables:
54
+ - konto_check_ruby
55
+ extensions: []
56
+ extra_rdoc_files: []
57
+ files:
58
+ - CHANGELOG.md
59
+ - COPYRIGHT
60
+ - LICENSE
61
+ - README.md
62
+ - bin/konto_check_ruby
63
+ - data/README.md
64
+ - data/blz.lut2f
65
+ - data/iban_regeln.txt
66
+ - lib/konto_check_ruby.rb
67
+ - lib/konto_check_ruby/bank_data.rb
68
+ - lib/konto_check_ruby/blz_file.rb
69
+ - lib/konto_check_ruby/check_methods.rb
70
+ - lib/konto_check_ruby/check_methods/part1.rb
71
+ - lib/konto_check_ruby/check_methods/part2.rb
72
+ - lib/konto_check_ruby/check_methods/part3.rb
73
+ - lib/konto_check_ruby/check_methods/part4.rb
74
+ - lib/konto_check_ruby/check_methods/part5.rb
75
+ - lib/konto_check_ruby/collation.rb
76
+ - lib/konto_check_ruby/engine.rb
77
+ - lib/konto_check_ruby/iban_rules.rb
78
+ - lib/konto_check_ruby/konto_check.rb
79
+ - lib/konto_check_ruby/lut_file.rb
80
+ - lib/konto_check_ruby/raw.rb
81
+ - lib/konto_check_ruby/retvals.rb
82
+ - lib/konto_check_ruby/search.rb
83
+ - lib/konto_check_ruby/update.rb
84
+ - lib/konto_check_ruby/version.rb
85
+ homepage: https://github.com/provideal/konto_check_ruby
86
+ licenses:
87
+ - LGPL-2.1-or-later
88
+ metadata:
89
+ source_code_uri: https://github.com/provideal/konto_check_ruby
90
+ changelog_uri: https://github.com/provideal/konto_check_ruby/blob/main/CHANGELOG.md
91
+ bug_tracker_uri: https://github.com/provideal/konto_check_ruby/issues
92
+ rubygems_mfa_required: 'true'
93
+ post_install_message:
94
+ rdoc_options: []
95
+ require_paths:
96
+ - lib
97
+ required_ruby_version: !ruby/object:Gem::Requirement
98
+ requirements:
99
+ - - ">="
100
+ - !ruby/object:Gem::Version
101
+ version: '3.0'
102
+ required_rubygems_version: !ruby/object:Gem::Requirement
103
+ requirements:
104
+ - - ">="
105
+ - !ruby/object:Gem::Version
106
+ version: '0'
107
+ requirements: []
108
+ rubygems_version: 3.5.22
109
+ signing_key:
110
+ specification_version: 4
111
+ summary: 'Pure Ruby port of konto_check: German bank account and IBAN validation'
112
+ test_files: []