devise-twilio-verify 0.2.0 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 474f80f30182d50c461662ac4927abeb8a7e896b7f2bc92b538073e1538db06f
4
- data.tar.gz: 27dfc2219f247de90a1bfb7d32546050cfb505f1f0afefe1b5d442ce00500a6b
3
+ metadata.gz: 6e2dc87050d08efb2621ee7de3931552c37b008a8dc4173ab7703bbf93ae6ee2
4
+ data.tar.gz: 944943aafe21f00cdd7ac4eb6dfdd0cca830449915ad6d055cbbc46377e6d80b
5
5
  SHA512:
6
- metadata.gz: 5c553ebfcecf53b015eb4767c4ff3acba7386eb861ad1854ee9c712d53b7d20f1fdf37e6a657837730ffa7a60c2fc4cd604b7cd3c49dadc4854b14427659fe01
7
- data.tar.gz: 2b31f9e9319e89a49db84b6aa6cf34e022c781dba6ed14d185ebf37446928e37379589b42c5ced9f4b939124896c9ca6a76e6a37ca140681b47d379697eb20c9
6
+ metadata.gz: aee70ac3e6df7704c3415a29b15725ecf367a026b56e8a983acf9b40a81cc53421443bdae113a4aac03531742216c63878fb4de5b08208649effcc6b575e48ff
7
+ data.tar.gz: 847f60d57d832ce3414e8080db98bff200ac3a79223fc76686e6cf8bd20fe524a3ac5fb2fe22570975301ad4c6f63c9360ee223c33b38061798f7b80a1b34f6c
data/.gitignore CHANGED
@@ -37,6 +37,7 @@ gemfiles/*.lock
37
37
  .rvmrc
38
38
 
39
39
  **/*.sqlite
40
+ **/*.sqlite-*
40
41
  **/*.log
41
42
 
42
43
  initializers/twilio_verify.rb
data/Appraisals CHANGED
@@ -3,9 +3,9 @@ appraise "rails-5-2" do
3
3
  gem "sqlite3", "~> 1.3.13"
4
4
 
5
5
  group :development, :test do
6
- gem 'factory_girl_rails', :require => false
7
- gem 'rspec-rails', "~>4.0.0.beta3", :require => false
8
- gem 'database_cleaner', :require => false
6
+ gem 'factory_girl_rails', require: false
7
+ gem 'rspec-rails', "~> 5.0.0", require: false
8
+ gem 'database_cleaner', require: false
9
9
  end
10
10
  end if RUBY_VERSION.to_f < 3.0
11
11
 
@@ -15,8 +15,32 @@ appraise "rails-6" do
15
15
  gem "net-smtp"
16
16
 
17
17
  group :development, :test do
18
- gem 'factory_girl_rails', :require => false
19
- gem 'rspec-rails', "~>4.0.0.beta3", :require => false
20
- gem 'database_cleaner', :require => false
18
+ gem 'factory_girl_rails', require: false
19
+ gem 'rspec-rails', "~> 5.0.0", require: false
20
+ gem 'database_cleaner', require: false
21
21
  end
22
- end if RUBY_VERSION.to_f >= 2.5
22
+ end if RUBY_VERSION.to_f >= 2.5
23
+
24
+ appraise "rails-7" do
25
+ gem "rails", "~> 7.0.8"
26
+ gem "sqlite3", "~> 1.4"
27
+ gem "net-smtp"
28
+
29
+ group :development, :test do
30
+ gem 'factory_girl_rails', require: false
31
+ gem 'rspec-rails', "~> 7.0.0", require: false
32
+ gem 'database_cleaner', require: false
33
+ end
34
+ end if RUBY_VERSION.to_f >= 2.7
35
+
36
+ appraise "rails-7-1" do
37
+ gem "rails", "~> 7.1.5"
38
+ gem "sqlite3", "~> 1.4"
39
+ gem "net-smtp"
40
+
41
+ group :development, :test do
42
+ gem 'factory_girl_rails', require: false
43
+ gem 'rspec-rails', "~> 7.1.0", require: false
44
+ gem 'database_cleaner', require: false
45
+ end
46
+ end if RUBY_VERSION.to_f >= 2.7
data/CHANGELOG.md CHANGED
@@ -5,6 +5,20 @@ 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
+
14
+ ## [0.2.1] - 2024-12-29
15
+
16
+ ### Changed
17
+
18
+ - Added apprasials for testing against Rails 7 and Rails 7.1
19
+ - Bump rspec-rails version from "~>4.0.0.beta3" to "~> 5.0.0" for Rails 5.2 and Rails 6 testing
20
+ - Updated README to move the authy migration instructions a bit below the README gem introduction / instructions
21
+
8
22
  ## [0.2.0] - 2024-12-21
9
23
 
10
24
  ### Changed
data/README.md CHANGED
@@ -1,45 +1,4 @@
1
- # Migrate Authy to Twilio Verify API (for SMS and TOTP 2FA)
2
-
3
- ### This gem is meant to be a drop-in replacement for devise-authy in a Rails app (minus the following features)
4
- - Currently only support mobile phones with US country codes
5
- - Removed Onetouch support
6
- - Removed ability to request a phone call
7
-
8
- ### Just follow the steps below to migrate:
9
- - Swap out `devise-authy` in your Gemfile with `devise-twilio-verify`
10
- - `gem 'devise-twilio-verify'
11
- - Setup a Twilio Verify account
12
- - Add env vars and/or Rails credentials for:
13
- - `TWILIO_AUTH_TOKEN`
14
- - `TWILIO_ACCOUNT_SID`
15
- - `TWILIO_VERIFY_SERVICE_SID`
16
- - Create/run a migration to rename and add the following columns
17
- ```ruby
18
- class MigrateAuthyToTwilioVerify < ActiveRecord::Migration[6.1]
19
- def change
20
- rename_column :users, :authy_sms, :twilio_verify_sms
21
- rename_column :users, :authy_enabled, :twilio_verify_enabled
22
- rename_column :users, :last_sign_in_with_authy, :last_sign_in_with_twilio_verify
23
- add_column :users, :twilio_totp_factor_sid, :string
24
- end
25
- end
26
-
27
- ```
28
- - you can also delete the `users.authy_id` column if you choose
29
- - Twilio Verify service sms will be sent to `users.mobile_phone`, so make sure you store the users 2fa phone number in this column, can make this field name dynamic in the future
30
- - Do a project code wide search & replace of these terms
31
- - `devise-authy` -> `devise-twilio-verify`
32
- - `authy_` -> `twilio_verify_`
33
- - `_authy` -> `_twilio_verify`
34
- - `authy-` -> `twilio-verify-`
35
- - `-authy` -> `-twilio-verify`
36
- - `Authy` -> `TwilioVerify`
37
- - Do a project file search & replace of any file with authy in the name (here's a few examples to replace)
38
- - app/javascript/src/deviseTwilioVerify.js
39
- - app/assets/stylesheets/devise_twilio_verify.scss
40
- - config/locales/devise.twilio_verify.en.yml
41
-
42
- # Twilio Verify Devise [![Build Status](https://github.com/twilio/authy-devise/workflows/build/badge.svg)](https://github.com/twilio/authy-devise/actions)
1
+ # Twilio Verify Devise [![Build Status](https://github.com/jayywolff/twilio-verify-devise/workflows/build/badge.svg)](https://github.com/jayywolff/twilio-verify-devise/actions)
43
2
 
44
3
  This is a [Devise](https://github.com/heartcombo/devise) extension to add [Two-Factor Authentication with Twilio Verify](https://www.twilio.com/docs/verify) to your Rails application.
45
4
 
@@ -48,10 +7,9 @@ Please visit the Twilio Docs for more information:
48
7
  * [Verify + Ruby (Rails) quickstart](https://www.twilio.com/docs/verify/quickstarts/ruby-rails)
49
8
  * [Twilio Ruby helper library](https://www.twilio.com/docs/libraries/ruby)
50
9
  * [Verify API reference](https://www.twilio.com/docs/verify/api)
51
-
52
-
10
+ * [Migrate Authy to Twilio Verify API](#migrate-authy-to-twilio-verify-api)
53
11
  * [Pre-requisites](#pre-requisites)
54
- * [Demo](#demo)
12
+ * [Demo (TODO)](#demo)
55
13
  * [Getting started](#getting-started)
56
14
  * [Configuring Models](#configuring-models)
57
15
  * [With the generator](#with-the-generator)
@@ -246,7 +204,7 @@ This will display a QR code on the verification screen (you still need to take a
246
204
 
247
205
  In Rails 5 `protect_from_forgery` is no longer prepended to the `before_action` chain. If you call `authenticate_user` before `protect_from_forgery` your request will result in a "Can't verify CSRF token authenticity" error.
248
206
 
249
- To remedy this, add `prepend: true` to your `protect_from_forgery` call, like in this example from the [Twilio Verify Devise demo app](https://github.com/twilio/authy-devise-demo):
207
+ To remedy this, add `prepend: true` to your `protect_from_forgery` call
250
208
 
251
209
  ```ruby
252
210
  class ApplicationController < ActionController::Base
@@ -262,5 +220,47 @@ Run the following command:
262
220
  $ bundle exec rspec
263
221
  ```
264
222
 
223
+ ## Migrate Authy to Twilio Verify API
224
+
225
+ ### This gem is meant to be a drop-in replacement for devise-authy in a Rails app (minus the following features)
226
+ - Currently supports SMS and TOTP 2FA
227
+ - Currently only support mobile phones with US country codes
228
+ - Removed Onetouch support
229
+ - Removed ability to request a phone call
230
+
231
+ ### Just follow the steps below to migrate:
232
+ - Swap out `devise-authy` in your Gemfile with `devise-twilio-verify`
233
+ - `gem 'devise-twilio-verify'
234
+ - Setup a Twilio Verify account
235
+ - Add env vars and/or Rails credentials for:
236
+ - `TWILIO_AUTH_TOKEN`
237
+ - `TWILIO_ACCOUNT_SID`
238
+ - `TWILIO_VERIFY_SERVICE_SID`
239
+ - Create/run a migration to rename and add the following columns
240
+ ```ruby
241
+ class MigrateAuthyToTwilioVerify < ActiveRecord::Migration[6.1]
242
+ def change
243
+ rename_column :users, :authy_sms, :twilio_verify_sms
244
+ rename_column :users, :authy_enabled, :twilio_verify_enabled
245
+ rename_column :users, :last_sign_in_with_authy, :last_sign_in_with_twilio_verify
246
+ add_column :users, :twilio_totp_factor_sid, :string
247
+ end
248
+ end
249
+
250
+ ```
251
+ - you can also delete the `users.authy_id` column if you choose
252
+ - Twilio Verify service sms will be sent to `users.mobile_phone`, so make sure you store the users 2fa phone number in this column, can make this field name dynamic in the future
253
+ - Do a project code wide search & replace of these terms
254
+ - `devise-authy` -> `devise-twilio-verify`
255
+ - `authy_` -> `twilio_verify_`
256
+ - `_authy` -> `_twilio_verify`
257
+ - `authy-` -> `twilio-verify-`
258
+ - `-authy` -> `-twilio-verify`
259
+ - `Authy` -> `TwilioVerify`
260
+ - Do a project file search & replace of any file with authy in the name (here's a few examples to replace)
261
+ - app/javascript/src/deviseTwilioVerify.js
262
+ - app/assets/stylesheets/devise_twilio_verify.scss
263
+ - config/locales/devise.twilio_verify.en.yml
264
+
265
265
  ## Copyright
266
266
  See LICENSE.txt for further details.
@@ -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 Verify plugin to add two factor authentication to Devise.}
13
- spec.description = %q{Twilio Verify plugin to add two factor authentication to Devise. This gem is meant to make migrating from authy to twilio verify as simple as possible, please see the README for details.}
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
 
@@ -7,7 +7,7 @@ gem "sqlite3", "~> 1.3.13"
7
7
 
8
8
  group :development, :test do
9
9
  gem "factory_girl_rails", require: false
10
- gem "rspec-rails", "~>4.0.0.beta3", require: false
10
+ gem "rspec-rails", "~> 5.0.0", require: false
11
11
  gem "database_cleaner", require: false
12
12
  end
13
13
 
@@ -8,7 +8,7 @@ gem "net-smtp"
8
8
 
9
9
  group :development, :test do
10
10
  gem "factory_girl_rails", require: false
11
- gem "rspec-rails", "~>4.0.0.beta3", require: false
11
+ gem "rspec-rails", "~> 5.0.0", require: false
12
12
  gem "database_cleaner", require: false
13
13
  end
14
14
 
@@ -0,0 +1,15 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "~> 7.0.8"
6
+ gem "sqlite3", "~> 1.4"
7
+ gem "net-smtp"
8
+
9
+ group :development, :test do
10
+ gem "factory_girl_rails", require: false
11
+ gem "rspec-rails", "~> 7.0.0", require: false
12
+ gem "database_cleaner", require: false
13
+ end
14
+
15
+ gemspec path: "../"
@@ -0,0 +1,15 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "~> 7.1.5"
6
+ gem "sqlite3", "~> 1.4"
7
+ gem "net-smtp"
8
+
9
+ group :development, :test do
10
+ gem "factory_girl_rails", require: false
11
+ gem "rspec-rails", "~> 7.1.0", require: false
12
+ gem "database_cleaner", require: false
13
+ end
14
+
15
+ gemspec path: "../"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DeviseTwilioVerify
4
- VERSION = '0.2.0'
4
+ VERSION = '0.2.2'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: devise-twilio-verify
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jay Wolff
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-12-22 00:00:00.000000000 Z
11
+ date: 2024-12-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: devise
@@ -304,9 +304,15 @@ dependencies:
304
304
  - - "~>"
305
305
  - !ruby/object:Gem::Version
306
306
  version: 0.1.2
307
- description: Twilio Verify plugin to add two factor authentication to Devise. This
308
- gem is meant to make migrating from authy to twilio verify as simple as possible,
309
- please see the README for details.
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: []
@@ -340,6 +346,8 @@ files:
340
346
  - gemfiles/.bundle/config
341
347
  - gemfiles/rails_5_2.gemfile
342
348
  - gemfiles/rails_6.gemfile
349
+ - gemfiles/rails_7.gemfile
350
+ - gemfiles/rails_7_1.gemfile
343
351
  - lib/devise-twilio-verify.rb
344
352
  - lib/devise-twilio-verify/controllers/helpers.rb
345
353
  - lib/devise-twilio-verify/controllers/view_helpers.rb
@@ -381,5 +389,6 @@ requirements: []
381
389
  rubygems_version: 3.1.6
382
390
  signing_key:
383
391
  specification_version: 4
384
- summary: Twilio Verify plugin to add two factor authentication to Devise.
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
385
394
  test_files: []