devise-two-factor 6.4.0 → 6.4.1
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/.github/ISSUE_TEMPLATE/config.yml +5 -0
- data/.github/workflows/push.yml +3 -1
- data/CHANGELOG.md +4 -0
- data/SECURITY.md +1 -1
- data/devise-two-factor.gemspec +1 -0
- data/lib/devise_two_factor/version.rb +1 -1
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 117e9dee5b111c62c34a41cb965eb96c9cb7a05fc46adc8da8d6a23f157117a5
|
|
4
|
+
data.tar.gz: bfcecb1015658147320108493635e563e3d001e5a0a56949be00039a7d5b23c4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6f5564cbc19e08811adc66d2a8c1fadc7a8c0188d4ee4eae116c3c6695248ec3e31be992573e8a6621bdf8ef9605435bf703fcaf8d6fae212a256b2866a2f17e
|
|
7
|
+
data.tar.gz: 601cb2883ee69a0308b89b4ea2b21f30af835c3288b23fa4fe46a5e066bf19e30fcc378fb86fc136a4513f85a65f1495598f15628ed21fd25cb540f7ac7b0926
|
data/.github/workflows/push.yml
CHANGED
data/CHANGELOG.md
CHANGED
data/SECURITY.md
CHANGED
data/devise-two-factor.gemspec
CHANGED
|
@@ -8,6 +8,7 @@ Gem::Specification.new do |s|
|
|
|
8
8
|
s.license = 'MIT'
|
|
9
9
|
s.summary = 'Barebones two-factor authentication with Devise'
|
|
10
10
|
s.homepage = 'https://github.com/devise-two-factor/devise-two-factor'
|
|
11
|
+
s.metadata['source_code_uri'] = s.homepage
|
|
11
12
|
s.description = 'Devise-Two-Factor is a minimalist extension to Devise which offers support for two-factor authentication through the TOTP scheme.'
|
|
12
13
|
s.authors = ['Quinn Wilton']
|
|
13
14
|
|
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: 6.4.
|
|
4
|
+
version: 6.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Quinn Wilton
|
|
@@ -173,6 +173,7 @@ executables: []
|
|
|
173
173
|
extensions: []
|
|
174
174
|
extra_rdoc_files: []
|
|
175
175
|
files:
|
|
176
|
+
- ".github/ISSUE_TEMPLATE/config.yml"
|
|
176
177
|
- ".github/dependabot.yml"
|
|
177
178
|
- ".github/workflows/ci.yml"
|
|
178
179
|
- ".github/workflows/push.yml"
|
|
@@ -210,7 +211,8 @@ files:
|
|
|
210
211
|
homepage: https://github.com/devise-two-factor/devise-two-factor
|
|
211
212
|
licenses:
|
|
212
213
|
- MIT
|
|
213
|
-
metadata:
|
|
214
|
+
metadata:
|
|
215
|
+
source_code_uri: https://github.com/devise-two-factor/devise-two-factor
|
|
214
216
|
rdoc_options: []
|
|
215
217
|
require_paths:
|
|
216
218
|
- lib
|
|
@@ -225,7 +227,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
225
227
|
- !ruby/object:Gem::Version
|
|
226
228
|
version: '0'
|
|
227
229
|
requirements: []
|
|
228
|
-
rubygems_version: 4.0.
|
|
230
|
+
rubygems_version: 4.0.16
|
|
229
231
|
specification_version: 4
|
|
230
232
|
summary: Barebones two-factor authentication with Devise
|
|
231
233
|
test_files:
|