EE-ID-verification 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.
- checksums.yaml +7 -0
- data/.rubocop.yml +57 -0
- data/CHANGELOG.md +5 -0
- data/CLAUDE.md +67 -0
- data/CODE_OF_CONDUCT.md +132 -0
- data/LICENSE +201 -0
- data/Makefile +98 -0
- data/README.md +752 -0
- data/Rakefile +13 -0
- data/lib/ee_id_verification/certificate_reader.rb +455 -0
- data/lib/ee_id_verification/models.rb +273 -0
- data/lib/ee_id_verification/version.rb +5 -0
- data/lib/ee_id_verification.rb +118 -0
- data/script/test_id_card.rb +255 -0
- metadata +73 -0
metadata
ADDED
@@ -0,0 +1,73 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: EE-ID-verification
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Angelos Kapsimanis
|
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: pkcs11
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
15
|
+
requirements:
|
16
|
+
- - "~>"
|
17
|
+
- !ruby/object:Gem::Version
|
18
|
+
version: '0.3'
|
19
|
+
type: :runtime
|
20
|
+
prerelease: false
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
22
|
+
requirements:
|
23
|
+
- - "~>"
|
24
|
+
- !ruby/object:Gem::Version
|
25
|
+
version: '0.3'
|
26
|
+
description: Simple Ruby library for authenticating users with Estonian ID cards using
|
27
|
+
local card readers.
|
28
|
+
email:
|
29
|
+
- angelos@sorbet.ee
|
30
|
+
executables: []
|
31
|
+
extensions: []
|
32
|
+
extra_rdoc_files: []
|
33
|
+
files:
|
34
|
+
- ".rubocop.yml"
|
35
|
+
- CHANGELOG.md
|
36
|
+
- CLAUDE.md
|
37
|
+
- CODE_OF_CONDUCT.md
|
38
|
+
- LICENSE
|
39
|
+
- Makefile
|
40
|
+
- README.md
|
41
|
+
- Rakefile
|
42
|
+
- lib/ee_id_verification.rb
|
43
|
+
- lib/ee_id_verification/certificate_reader.rb
|
44
|
+
- lib/ee_id_verification/models.rb
|
45
|
+
- lib/ee_id_verification/version.rb
|
46
|
+
- script/test_id_card.rb
|
47
|
+
homepage: https://github.com/sorbet-ee/EE-ID-verification
|
48
|
+
licenses:
|
49
|
+
- MIT
|
50
|
+
metadata:
|
51
|
+
allowed_push_host: https://rubygems.org
|
52
|
+
homepage_uri: https://github.com/sorbet-ee/EE-ID-verification
|
53
|
+
source_code_uri: https://github.com/sorbet-ee/EE-ID-verification
|
54
|
+
changelog_uri: https://github.com/sorbet-ee/EE-ID-verification/blob/main/CHANGELOG.md
|
55
|
+
rubygems_mfa_required: 'true'
|
56
|
+
rdoc_options: []
|
57
|
+
require_paths:
|
58
|
+
- lib
|
59
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
60
|
+
requirements:
|
61
|
+
- - ">="
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: 3.1.0
|
64
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
requirements: []
|
70
|
+
rubygems_version: 3.6.9
|
71
|
+
specification_version: 4
|
72
|
+
summary: Estonian ID card authentication for Ruby
|
73
|
+
test_files: []
|