devise-twilio-verify 0.2.3 → 0.2.4
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 +6 -0
- data/devise-twilio-verify.gemspec +1 -1
- data/lib/devise-twilio-verify/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7654389c112199e8b4f4dc30ed804521a80364b24e842c4dcf1ce481aceec1cd
|
4
|
+
data.tar.gz: c6b479ed1bff4352fb5a30289af913c372b6f726e9f09e0ef53d4085f8e7323d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 04de5a355453a3871c670d41029ae71ea6e7ade3415483e9bb085639fe5041fd96f10fa1f5f5ee5fcf917e62279652d268625d0a75621c4e5329db51f777e3ee
|
7
|
+
data.tar.gz: 7930511c023307bbe3cb8ecb2ca1b6f51cc474a8fd60e970346c5fee211588d5cc9fd0cda033d9fb9d07e232ab922ad6dc22e6825e070369c18c71b860d18bab
|
data/CHANGELOG.md
CHANGED
@@ -5,6 +5,12 @@ 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.4] - 2024-12-29
|
9
|
+
|
10
|
+
### Changed
|
11
|
+
|
12
|
+
- Updated gemspec description for better SEO
|
13
|
+
|
8
14
|
## [0.2.3] - 2024-12-29
|
9
15
|
|
10
16
|
### Changed
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.authors = ["Jay Wolff"]
|
11
11
|
|
12
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
|
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 leverages the Twilio 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.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jay Wolff
|
@@ -305,8 +305,8 @@ dependencies:
|
|
305
305
|
- !ruby/object:Gem::Version
|
306
306
|
version: 0.1.2
|
307
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
|
309
|
-
|
308
|
+
system that adds extra security with two-factor authentication (2FA). It leverages
|
309
|
+
the Twilio Verify API to send verification codes to users via SMS or TOTP (time-based
|
310
310
|
codes). This gem makes it easy to set up 2FA in your Devise-powered Rails app, helping
|
311
311
|
to keep user accounts secure. This gem is meant to make migrating from authy to
|
312
312
|
twilio verify as simple as possible, please see the README for details.
|