web_authn 0.0.6 → 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 +4 -4
- data/VERSION +1 -1
- data/web_authn.gemspec +7 -7
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 90fa59a9c5c84e8af4b97f36556519d95bb90a2d
|
|
4
|
+
data.tar.gz: 1fa4312c262df939a5206beac7649aa95c2cd3ed
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 40d5722f816201ed293e16c43761b58583278ab66ffd39b1065bb8ef022730ab55d4ae02ef35851f9e87e26745f9dea9ccc5ce381c2727ce27e370180708211e
|
|
7
|
+
data.tar.gz: '04638e31e160fa8267975af7c3d152428a6485ea8724049d62a8a1e6b5d2e651732863c0c43fc74ff8a1dfc294c0543efc145e6c80ec08e6a0a820643d8cfba9'
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0
|
|
1
|
+
0.1.0
|
data/web_authn.gemspec
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Gem::Specification.new do |gem|
|
|
2
2
|
gem.name = 'web_authn'
|
|
3
|
-
gem.version
|
|
4
|
-
gem.authors
|
|
5
|
-
gem.email
|
|
6
|
-
gem.homepage
|
|
7
|
-
gem.summary
|
|
8
|
-
gem.description
|
|
9
|
-
gem.license
|
|
3
|
+
gem.version = File.read('VERSION')
|
|
4
|
+
gem.authors = ['nov matake']
|
|
5
|
+
gem.email = ['nov@matake.jp']
|
|
6
|
+
gem.homepage = 'https://github.com/nov/web_authn'
|
|
7
|
+
gem.summary = %q{WebAuthn RP library}
|
|
8
|
+
gem.description = %q{W3C Web Authentication API (a.k.a. WebAuthN / FIDO 2.0) RP library in Ruby}
|
|
9
|
+
gem.license = 'MIT'
|
|
10
10
|
gem.files = `git ls-files`.split("\n")
|
|
11
11
|
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
12
12
|
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: web_authn
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 0.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- nov matake
|
|
@@ -108,7 +108,8 @@ dependencies:
|
|
|
108
108
|
- - ">="
|
|
109
109
|
- !ruby/object:Gem::Version
|
|
110
110
|
version: '0'
|
|
111
|
-
description: W3C
|
|
111
|
+
description: W3C Web Authentication API (a.k.a. WebAuthN / FIDO 2.0) RP library in
|
|
112
|
+
Ruby
|
|
112
113
|
email:
|
|
113
114
|
- nov@matake.jp
|
|
114
115
|
executables: []
|
|
@@ -165,7 +166,7 @@ rubyforge_project:
|
|
|
165
166
|
rubygems_version: 2.6.11
|
|
166
167
|
signing_key:
|
|
167
168
|
specification_version: 4
|
|
168
|
-
summary:
|
|
169
|
+
summary: WebAuthn RP library
|
|
169
170
|
test_files:
|
|
170
171
|
- spec/authenticator_data/flags_spec.rb
|
|
171
172
|
- spec/context/authentication_spec.rb
|