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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fa66607446cd7a6261c70e60cb747b11bb34b5a2999ae07a58c9c9df305b7df1
4
- data.tar.gz: 1dbabeabf55f99190992098a7a787c30f6a41ec3c86d0965d42f5afb9cbed2ba
3
+ metadata.gz: 56552767b9e39c117671a495523924412d825818219dd8cb89531132d9a8988f
4
+ data.tar.gz: 1257deb87cd6e81846fca0b7bcdea7069a04b75d9e19bf6de41f38acc2ea57ff
5
5
  SHA512:
6
- metadata.gz: 41e4b462bbbd5739a1f119ec28eb293c66a0db65870c97b6ba269a56111b11f8a35ae5d2e383787f1fbbbae2e33dee5e8ee9044882cffe7ce89f577af1d3f7e6
7
- data.tar.gz: '09d20261de58d30a5d1c0f4a69ffd46b1a70477264a89bbe3dcdf0090b7d458092b03d655364dba421d512f79fefafe2a155cf8432390414d06a8b1fd734a714'
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
- include Rails::Generators::Migration # Place it here to include migration support
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 = model_name.constantize
18
- table_name = model.table_name
19
-
20
- migration_template "migration.rb.tt", "db/migrate/add_otp_fields_to_#{table_name}.rb", table_name: table_name, migration_version: migration_version
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)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module IprogOtpGenerator
4
- VERSION = "0.1.9"
4
+ VERSION = "0.1.11"
5
5
  end
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.9
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: 3.0.0
83
+ version: 2.5.0
84
84
  required_rubygems_version: !ruby/object:Gem::Requirement
85
85
  requirements:
86
86
  - - ">="