iprog_otp_generator 0.1.9 → 0.1.11
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/lib/generators/install_generator.rb +23 -8
- data/lib/iprog_otp_generator/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 56552767b9e39c117671a495523924412d825818219dd8cb89531132d9a8988f
|
4
|
+
data.tar.gz: 1257deb87cd6e81846fca0b7bcdea7069a04b75d9e19bf6de41f38acc2ea57ff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 56e301c5a981e1f494cb7339b243e6228ec88123019844ca8bb72d007184e19b179b402c09d07cc3ae288e08a6a06366f4dfbaefddb179fdf85a0359a4098cdd
|
7
|
+
data.tar.gz: ecfe9de61fbf37528cdfdbb8d6228ac1ed87ac67b5c42477b27254af9b56ade75c286891ff1e8c44c9601507f1f474668ca07242d0d4396689e388d38c4448b3
|
@@ -1,24 +1,39 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
require 'rails/generators'
|
3
|
-
require 'rails/generators/migration'
|
4
3
|
|
5
4
|
module IprogOtpGenerator
|
6
5
|
module Generators
|
7
6
|
class InstallGenerator < Rails::Generators::Base
|
8
|
-
|
9
|
-
|
10
|
-
source_root File.expand_path('../', __dir__) # Make sure this points to your templates folder
|
7
|
+
source_root File.expand_path('..', __FILE__) # Make sure this points to your templates folder
|
11
8
|
|
12
9
|
argument :model_name, type: :string, default: "User", banner: "MODEL"
|
13
10
|
|
14
11
|
desc "Creates a migration to add OTP fields to the specified model's table"
|
15
12
|
|
16
13
|
def copy_migration
|
17
|
-
model
|
18
|
-
table_name =
|
19
|
-
|
20
|
-
|
14
|
+
# Define table name based on the model name
|
15
|
+
table_name = model_name.tableize
|
16
|
+
|
17
|
+
# Generate the migration file name
|
18
|
+
timestamp = Time.now.utc.strftime("%Y%m%d%H%M%S")
|
19
|
+
migration_filename = "db/migrate/#{timestamp}_add_otp_fields_to_#{table_name}.rb"
|
20
|
+
|
21
|
+
# Define the content of the migration file as a string
|
22
|
+
migration_content = <<-RUBY
|
23
|
+
class AddOtpFieldsTo#{table_name.camelize} < ActiveRecord::Migration#{migration_version}
|
24
|
+
def change
|
25
|
+
add_column :#{table_name}, :otp_code, :string
|
26
|
+
add_column :#{table_name}, :otp_code_expires_at, :datetime
|
27
|
+
add_column :#{table_name}, :otp_code_resend_interval, :integer, default: 60
|
28
|
+
add_column :#{table_name}, :otp_code_confirmed, :boolean, default: false
|
29
|
+
end
|
30
|
+
end
|
31
|
+
RUBY
|
32
|
+
|
33
|
+
# Create the migration file manually
|
34
|
+
create_file migration_filename, migration_content
|
21
35
|
end
|
36
|
+
|
22
37
|
|
23
38
|
# This method is required by Rails generators to create a unique timestamp for migration files
|
24
39
|
def self.next_migration_number(dirname)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: iprog_otp_generator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jayson Presto
|
@@ -80,7 +80,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
80
80
|
requirements:
|
81
81
|
- - ">="
|
82
82
|
- !ruby/object:Gem::Version
|
83
|
-
version:
|
83
|
+
version: 2.5.0
|
84
84
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
85
85
|
requirements:
|
86
86
|
- - ">="
|