devise-two-factor 3.0.2 → 3.0.3
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
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/.travis.yml +5 -0
- data/Appraisals +5 -0
- data/CHANGELOG.md +3 -0
- data/README.md +4 -1
- data/devise-two-factor.gemspec +2 -2
- data/gemfiles/rails_5_2.gemfile +8 -0
- data/lib/devise_two_factor/version.rb +1 -1
- metadata +8 -7
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c04dc39cfa1edd3a22803af905b07172478369c3
|
|
4
|
+
data.tar.gz: 5092c3aeb1987ca292465c53dfea6177a2d060c8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0ac992b549d87689ea76cbad62978ac9b45c434e7dcbf35976f9a78ee7609cb54a8fd25ba7e02bcd204831eb87567deebfe637d9ae2e43d9ea56da7b6fb63401
|
|
7
|
+
data.tar.gz: d602d6cf21ed8679142ce8a7d6d3f77032b8cb9c806a1bddea3e19da1b57cf446c04e60544a74e2efffe8cccfae8072aebe85abcba4710d5798699d0b5216be4
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data.tar.gz.sig
CHANGED
|
Binary file
|
data/.travis.yml
CHANGED
|
@@ -10,6 +10,7 @@ gemfile:
|
|
|
10
10
|
- gemfiles/rails_4_2.gemfile
|
|
11
11
|
- gemfiles/rails_5_0.gemfile
|
|
12
12
|
- gemfiles/rails_5_1.gemfile
|
|
13
|
+
- gemfiles/rails_5_2.gemfile
|
|
13
14
|
rvm:
|
|
14
15
|
- "2.1"
|
|
15
16
|
- "2.2"
|
|
@@ -26,3 +27,7 @@ matrix:
|
|
|
26
27
|
gemfile: gemfiles/rails_5_1.gemfile
|
|
27
28
|
- rvm: "2.2"
|
|
28
29
|
gemfile: gemfiles/rails_5_1.gemfile
|
|
30
|
+
- rvm: "2.1"
|
|
31
|
+
gemfile: gemfiles/rails_5_2.gemfile
|
|
32
|
+
- rvm: "2.2"
|
|
33
|
+
gemfile: gemfiles/rails_5_2.gemfile
|
data/Appraisals
CHANGED
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Devise-Two-Factor Authentication
|
|
2
|
-
By [Tinfoil Security](
|
|
2
|
+
By [Tinfoil Security](https://www.tinfoilsecurity.com/). Interested in [working with us](https://www.tinfoilsecurity.com/jobs)? We're hiring!
|
|
3
3
|
|
|
4
4
|
[](https://travis-ci.org/tinfoil/devise-two-factor)
|
|
5
5
|
|
|
@@ -10,6 +10,9 @@ Devise-Two-Factor is a minimalist extension to Devise which offers support for t
|
|
|
10
10
|
* Integrates easily with two-factor applications like [Google Authenticator](https://support.google.com/accounts/answer/1066447?hl=en) and [Authy](https://authy.com/)
|
|
11
11
|
* Is extensible, and includes two-factor backup codes as an example of how plugins can be structured
|
|
12
12
|
|
|
13
|
+
## Contributing
|
|
14
|
+
We welcome pull requests, bug reports, and other contributions. We're especially looking for help getting this gem fully compatible with Rails 5+ and squashing any deprecation messages.
|
|
15
|
+
|
|
13
16
|
## Example App
|
|
14
17
|
An example Rails 4 application is provided in the `demo` directory. It showcases a minimal example of Devise-Two-Factor in action, and can act as a reference for integrating the gem into your own application.
|
|
15
18
|
|
data/devise-two-factor.gemspec
CHANGED
|
@@ -24,8 +24,8 @@ Gem::Specification.new do |s|
|
|
|
24
24
|
s.test_files = `git ls-files -- spec/*`.split("\n")
|
|
25
25
|
s.require_paths = ['lib']
|
|
26
26
|
|
|
27
|
-
s.add_runtime_dependency 'railties', '< 5.
|
|
28
|
-
s.add_runtime_dependency 'activesupport', '< 5.
|
|
27
|
+
s.add_runtime_dependency 'railties', '< 5.3'
|
|
28
|
+
s.add_runtime_dependency 'activesupport', '< 5.3'
|
|
29
29
|
s.add_runtime_dependency 'attr_encrypted', '>= 1.3', '< 4', '!= 2'
|
|
30
30
|
s.add_runtime_dependency 'devise', '~> 4.0'
|
|
31
31
|
s.add_runtime_dependency 'rotp', '~> 2.0'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: devise-two-factor
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Shane Wilton
|
|
@@ -86,7 +86,7 @@ cert_chain:
|
|
|
86
86
|
PaA022yxKoh+TitCDcZLQC7ewl554vH1xWicHaLNuuhy6yKmqKiVR8kqtYLrijgo
|
|
87
87
|
ztlV910=
|
|
88
88
|
-----END CERTIFICATE-----
|
|
89
|
-
date:
|
|
89
|
+
date: 2018-04-12 00:00:00.000000000 Z
|
|
90
90
|
dependencies:
|
|
91
91
|
- !ruby/object:Gem::Dependency
|
|
92
92
|
name: railties
|
|
@@ -94,28 +94,28 @@ dependencies:
|
|
|
94
94
|
requirements:
|
|
95
95
|
- - "<"
|
|
96
96
|
- !ruby/object:Gem::Version
|
|
97
|
-
version: '5.
|
|
97
|
+
version: '5.3'
|
|
98
98
|
type: :runtime
|
|
99
99
|
prerelease: false
|
|
100
100
|
version_requirements: !ruby/object:Gem::Requirement
|
|
101
101
|
requirements:
|
|
102
102
|
- - "<"
|
|
103
103
|
- !ruby/object:Gem::Version
|
|
104
|
-
version: '5.
|
|
104
|
+
version: '5.3'
|
|
105
105
|
- !ruby/object:Gem::Dependency
|
|
106
106
|
name: activesupport
|
|
107
107
|
requirement: !ruby/object:Gem::Requirement
|
|
108
108
|
requirements:
|
|
109
109
|
- - "<"
|
|
110
110
|
- !ruby/object:Gem::Version
|
|
111
|
-
version: '5.
|
|
111
|
+
version: '5.3'
|
|
112
112
|
type: :runtime
|
|
113
113
|
prerelease: false
|
|
114
114
|
version_requirements: !ruby/object:Gem::Requirement
|
|
115
115
|
requirements:
|
|
116
116
|
- - "<"
|
|
117
117
|
- !ruby/object:Gem::Version
|
|
118
|
-
version: '5.
|
|
118
|
+
version: '5.3'
|
|
119
119
|
- !ruby/object:Gem::Dependency
|
|
120
120
|
name: attr_encrypted
|
|
121
121
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -292,6 +292,7 @@ files:
|
|
|
292
292
|
- gemfiles/rails_4_2.gemfile
|
|
293
293
|
- gemfiles/rails_5_0.gemfile
|
|
294
294
|
- gemfiles/rails_5_1.gemfile
|
|
295
|
+
- gemfiles/rails_5_2.gemfile
|
|
295
296
|
- lib/devise-two-factor.rb
|
|
296
297
|
- lib/devise_two_factor/models.rb
|
|
297
298
|
- lib/devise_two_factor/models/two_factor_authenticatable.rb
|
|
@@ -327,7 +328,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
327
328
|
version: '0'
|
|
328
329
|
requirements: []
|
|
329
330
|
rubyforge_project: devise-two-factor
|
|
330
|
-
rubygems_version: 2.
|
|
331
|
+
rubygems_version: 2.4.5.1
|
|
331
332
|
signing_key:
|
|
332
333
|
specification_version: 4
|
|
333
334
|
summary: Barebones two-factor authentication with Devise
|
metadata.gz.sig
CHANGED
|
Binary file
|