devise-twilio-verify 0.2.1 → 0.2.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
- data/CHANGELOG.md +12 -0
- data/devise-twilio-verify.gemspec +2 -2
- data/lib/devise-twilio-verify/version.rb +1 -1
- metadata +9 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f54f70efaa1953f0f3a65a2de88a123ca0a8492dc58c05b2cae8542c18034ff2
|
4
|
+
data.tar.gz: bad590481fa72f43a8335bc17cc0aad925198b65593c91cab5211383b3bed766
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6494b077ea4ac06de91f91bc277dac48d2f4b38c93303f71ca9c77b9aa124d98a75e97a1965222b446d1b892ce1fe4401325feb7572cfde246ca0a1a54968f72
|
7
|
+
data.tar.gz: 665e5c5145d61192f84b649488f25aa74929560ea7e201f84c84e474068959106a18d9fb2ab2eebacd64b73f1a889cfcec5d615c9708a34e78dd4f78c9ecafe4
|
data/CHANGELOG.md
CHANGED
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
|
|
5
5
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
6
6
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
7
7
|
|
8
|
+
## [0.2.3] - 2024-12-29
|
9
|
+
|
10
|
+
### Changed
|
11
|
+
|
12
|
+
- Updated gemspec description
|
13
|
+
|
14
|
+
## [0.2.2] - 2024-12-29
|
15
|
+
|
16
|
+
### Changed
|
17
|
+
|
18
|
+
- Updated gemspec summary/description
|
19
|
+
|
8
20
|
## [0.2.1] - 2024-12-29
|
9
21
|
|
10
22
|
### Changed
|
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.version = DeviseTwilioVerify::VERSION
|
10
10
|
spec.authors = ["Jay Wolff"]
|
11
11
|
|
12
|
-
spec.summary = %q{Twilio
|
13
|
-
spec.description = %q{Twilio Verify
|
12
|
+
spec.summary = %q{Devise-Twilio-Verify is a Devise extension that adds two-factor authentication (2FA) support using SMS and/or TOTP via the Twilio Verify API}
|
13
|
+
spec.description = %q{The devise-twilio-verify gem is an extension for the Devise authentication system that adds extra security with two-factor authentication (2FA). It works by using Twilio's Verify API to send verification codes to users via SMS or TOTP (time-based codes). This gem makes it easy to set up 2FA in your Devise-powered Rails app, helping to keep user accounts secure. This gem is meant to make migrating from authy to twilio verify as simple as possible, please see the README for details.}
|
14
14
|
spec.homepage = "https://github.com/jayywolff/twilio-verify-devise"
|
15
15
|
spec.license = "MIT"
|
16
16
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: devise-twilio-verify
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jay Wolff
|
@@ -304,9 +304,12 @@ dependencies:
|
|
304
304
|
- - "~>"
|
305
305
|
- !ruby/object:Gem::Version
|
306
306
|
version: 0.1.2
|
307
|
-
description:
|
308
|
-
|
309
|
-
|
307
|
+
description: The devise-twilio-verify gem is an extension for the Devise authentication
|
308
|
+
system that adds extra security with two-factor authentication (2FA). It works by
|
309
|
+
using Twilio's Verify API to send verification codes to users via SMS or TOTP (time-based
|
310
|
+
codes). This gem makes it easy to set up 2FA in your Devise-powered Rails app, helping
|
311
|
+
to keep user accounts secure. This gem is meant to make migrating from authy to
|
312
|
+
twilio verify as simple as possible, please see the README for details.
|
310
313
|
email:
|
311
314
|
executables: []
|
312
315
|
extensions: []
|
@@ -383,5 +386,6 @@ requirements: []
|
|
383
386
|
rubygems_version: 3.1.6
|
384
387
|
signing_key:
|
385
388
|
specification_version: 4
|
386
|
-
summary: Twilio
|
389
|
+
summary: Devise-Twilio-Verify is a Devise extension that adds two-factor authentication
|
390
|
+
(2FA) support using SMS and/or TOTP via the Twilio Verify API
|
387
391
|
test_files: []
|