devise-twilio-verify 0.2.1 → 0.2.2
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 +2 -2
- data/lib/devise-twilio-verify/version.rb +1 -1
- metadata +12 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6e2dc87050d08efb2621ee7de3931552c37b008a8dc4173ab7703bbf93ae6ee2
|
4
|
+
data.tar.gz: 944943aafe21f00cdd7ac4eb6dfdd0cca830449915ad6d055cbbc46377e6d80b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aee70ac3e6df7704c3415a29b15725ecf367a026b56e8a983acf9b40a81cc53421443bdae113a4aac03531742216c63878fb4de5b08208649effcc6b575e48ff
|
7
|
+
data.tar.gz: 847f60d57d832ce3414e8080db98bff200ac3a79223fc76686e6cf8bd20fe524a3ac5fb2fe22570975301ad4c6f63c9360ee223c33b38061798f7b80a1b34f6c
|
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.2] - 2024-12-29
|
9
|
+
|
10
|
+
### Changed
|
11
|
+
|
12
|
+
- Updated gemspec summary/description
|
13
|
+
|
8
14
|
## [0.2.1] - 2024-12-29
|
9
15
|
|
10
16
|
### 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 integrates the Twilio Verify API with Twilio's two-factor authentication (2FA) capabilities with the popular Ruby on Rails authentication framework, Devise. This gem allows you to easily add phone number verification via SMS using Twilio to your Devise-powered application. It provides seamless integration for sending one-time passcodes (OTPs) to users' mobile phones and verifies them during sign-in or account registration. The gem supports customizable settings, ensuring a secure and user-friendly authentication experience by utilizing Twilio's reliable messaging infrastructure. 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.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jay Wolff
|
@@ -304,9 +304,15 @@ 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 integrates the Twilio Verify API with Twilio's
|
308
|
+
two-factor authentication (2FA) capabilities with the popular Ruby on Rails authentication
|
309
|
+
framework, Devise. This gem allows you to easily add phone number verification via
|
310
|
+
SMS using Twilio to your Devise-powered application. It provides seamless integration
|
311
|
+
for sending one-time passcodes (OTPs) to users' mobile phones and verifies them
|
312
|
+
during sign-in or account registration. The gem supports customizable settings,
|
313
|
+
ensuring a secure and user-friendly authentication experience by utilizing Twilio's
|
314
|
+
reliable messaging infrastructure. This gem is meant to make migrating from authy
|
315
|
+
to twilio verify as simple as possible, please see the README for details.
|
310
316
|
email:
|
311
317
|
executables: []
|
312
318
|
extensions: []
|
@@ -383,5 +389,6 @@ requirements: []
|
|
383
389
|
rubygems_version: 3.1.6
|
384
390
|
signing_key:
|
385
391
|
specification_version: 4
|
386
|
-
summary: Twilio
|
392
|
+
summary: Devise-Twilio-Verify is a Devise extension that adds two-factor authentication
|
393
|
+
(2FA) support using SMS and/or TOTP via the Twilio Verify API
|
387
394
|
test_files: []
|