omniauth-onetime 1.0.5 → 1.0.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 0e85bdc6ee5c9c9ab310e1413f99edf649bbdd81
4
- data.tar.gz: 6704b9a92227d5289fba78c2237d00039f13a921
2
+ SHA256:
3
+ metadata.gz: 616540124e963b07a3ae40ec4a1161d9a6335012c883fe69a56dcd7ac7df193a
4
+ data.tar.gz: dc2f2276505176fe27a0db0db83565fdbe806a431f824ccb3ace5fdc88f83c84
5
5
  SHA512:
6
- metadata.gz: 7b71cf561ebcc9bee91dd0dc1a4afd34d034416c0651bb0aefa2974655602627a85bb29200498cb772c78995f29376658297358c2777905b7e93ff16b66b6d38
7
- data.tar.gz: ef1ddba2ff02665ebf465a2a2fc9db343e6451f839cb74da05611a6cd12ef2eb3a7361b436436469486f7c66378af04323e312fa3ff35a70d46a2ae025249900
6
+ metadata.gz: 7542ebba5ba235cc22206ebc2acc134c66ace0765c6084e18bc5936e3ee14d31a0162dc6cee39d77373d3ff8f48b9f1d42329ae7eb4f9eabdbd8e19d8071d928
7
+ data.tar.gz: a15a7ebefb4cfd9f66032e230c61ef45e0793b10fbdf1264af482a39630a492111bc127abf729f5eaf484f898b18be8633967db4cfeb1ca2d131323587a2ee83
data/README.md CHANGED
@@ -3,6 +3,7 @@
3
3
  [![Code Climate](https://codeclimate.com/github/thoughtafter/omniauth-onetime/badges/gpa.svg)](https://codeclimate.com/github/thoughtafter/omniauth-onetime)
4
4
  [![Test Coverage](https://codeclimate.com/github/thoughtafter/omniauth-onetime/badges/coverage.svg)](https://codeclimate.com/github/thoughtafter/omniauth-onetime/coverage)
5
5
  [![Issue Count](https://codeclimate.com/github/thoughtafter/omniauth-onetime/badges/issue_count.svg)](https://codeclimate.com/github/thoughtafter/omniauth-onetime)
6
+ [![Known Vulnerabilities](https://snyk.io/test/github/thoughtafter/omniauth-onetime/badge.svg)](https://snyk.io/test/github/thoughtafter/omniauth-onetime)
6
7
 
7
8
  An [OmniAuth](https://github.com/omniauth/omniauth) strategy using secure
8
9
  onetime passwords.
@@ -121,11 +122,15 @@ Reading List:
121
122
  * 2012-07-29: [More on password-less login](http://notes.xoxco.com/post/28288684632/more-on-password-less-login)
122
123
  * 2014-04-12: [Passwords are Obsolete](https://medium.com/@ninjudd/passwords-are-obsolete-9ed56d483eb)
123
124
  * 2014-10-15: [Passwordless authentication: Secure, simple, and fast to deploy](https://hacks.mozilla.org/2014/10/passwordless-authentication-secure-simple-and-fast-to-deploy/)
125
+ * 2014-12-15: [Would You Implement Passwordless Login?](https://www.sitepoint.com/implement-passwordless-login/)
124
126
  * 2015-06-29: [Signing in to Medium by email](https://blog.medium.com/signing-in-to-medium-by-email-aacc21134fcd)
125
127
  * 2015-06-30: [Why passwords suck](https://medium.engineering/why-passwords-suck-d1d1f38c1bb4)
128
+ * 2015-09-30: [Log in without Passwords: Introducing Auth0 Passwordless](https://auth0.com/blog/auth0-passwordless-email-authentication-and-sms-login-without-passwords/)
126
129
  * 2016-05-12: [Password-less hassle-free authentication in Rails](https://masa331.github.io/2016/05/21/passwordless-authentication-in-rails.html)
127
130
  * 2016-08-12: [Securing access to genetic and personal information without a password](https://biogeniq.ca/en/articles/securing-access-to-genetic-and-personal-information-without-a-password/)
128
131
  * 2016-10-20: [Password-Less Authentication in Rails](https://www.sitepoint.com/password-less-authentication-in-rails/)
132
+ * 2017-04-29: [Forget password](http://sriku.org/blog/2017/04/29/forget-password/)
133
+ * 2018-04-17: [Is Passwordless Authentication Actually Secure?](https://www.okta.com/security-blog/2018/04/is-passwordless-authentication-actually-secure/)
129
134
  * [Passwordless](https://passwordless.net/)
130
135
 
131
136
  The nomenclature has been settling on calling this approach "passwordless".
@@ -19,6 +19,6 @@
19
19
  #
20
20
  module OmniAuth
21
21
  module Onetime
22
- VERSION = '1.0.5'.freeze
22
+ VERSION = '1.0.6'.freeze
23
23
  end
24
24
  end
@@ -21,9 +21,9 @@ Gem::Specification.new do |spec|
21
21
  spec.require_paths = ['lib']
22
22
 
23
23
  spec.add_development_dependency 'bundler', '~> 1.12'
24
- spec.add_development_dependency 'rake', '~> 10.0'
24
+ spec.add_development_dependency 'rake', '>= 10.0'
25
25
  spec.add_development_dependency 'minitest', '~> 5.0'
26
26
 
27
- spec.add_runtime_dependency 'omniauth', '~> 1.0'
27
+ spec.add_runtime_dependency 'omniauth', '~> 1.9'
28
28
  spec.add_runtime_dependency 'bcrypt', '~> 3.1'
29
29
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-onetime
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.5
4
+ version: 1.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - thoughtafter
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-03-24 00:00:00.000000000 Z
11
+ date: 2019-06-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -28,14 +28,14 @@ dependencies:
28
28
  name: rake
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
33
  version: '10.0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '10.0'
41
41
  - !ruby/object:Gem::Dependency
@@ -58,14 +58,14 @@ dependencies:
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: '1.0'
61
+ version: '1.9'
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: '1.0'
68
+ version: '1.9'
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: bcrypt
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -95,6 +95,7 @@ files:
95
95
  - COPYING
96
96
  - COPYING.LESSER
97
97
  - Gemfile
98
+ - Gemfile.lock
98
99
  - README.md
99
100
  - Rakefile
100
101
  - bin/console
@@ -123,7 +124,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
123
124
  version: '0'
124
125
  requirements: []
125
126
  rubyforge_project:
126
- rubygems_version: 2.5.1
127
+ rubygems_version: 2.7.6
127
128
  signing_key:
128
129
  specification_version: 4
129
130
  summary: An omniauth strategy using secure onetime passwords.