iprog_otp_generator 0.1.7 → 0.1.9

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: 917b63e25795679bdfa4746819e055d8460c00c995f48a98dcf5391ac14e6f65
4
- data.tar.gz: d904ebab398829de90f5e51c4b57b7569185a9552de48fcc69498b8d26063b61
3
+ metadata.gz: fa66607446cd7a6261c70e60cb747b11bb34b5a2999ae07a58c9c9df305b7df1
4
+ data.tar.gz: 1dbabeabf55f99190992098a7a787c30f6a41ec3c86d0965d42f5afb9cbed2ba
5
5
  SHA512:
6
- metadata.gz: 8610b95b8da7aeca0312183e08d08001448a2a1f9c841609d0c0e0bac542bdc3b0aee20d48715fd9b9df4cffb3ad854b029636ff4d7d1b0cb9d54516e0e08450
7
- data.tar.gz: dc2ff43c8a64d0ab8ce6ea114e0c27617f67b1210e0298f7fc039f69bcd3ade1d0c2c3a63cc3e4b4283a3c08c778adf56cc95349d9363c144b623e6950a1b48d
6
+ metadata.gz: 41e4b462bbbd5739a1f119ec28eb293c66a0db65870c97b6ba269a56111b11f8a35ae5d2e383787f1fbbbae2e33dee5e8ee9044882cffe7ce89f577af1d3f7e6
7
+ data.tar.gz: '09d20261de58d30a5d1c0f4a69ffd46b1a70477264a89bbe3dcdf0090b7d458092b03d655364dba421d512f79fefafe2a155cf8432390414d06a8b1fd734a714'
@@ -1,29 +1,41 @@
1
1
  # frozen_string_literal: true
2
2
  require 'rails/generators'
3
+ require 'rails/generators/migration'
3
4
 
4
5
  module IprogOtpGenerator
5
- module Generators
6
- class InstallGenerator < Rails::Generators::Base
7
- source_root File.expand_path('..', __FILE__)
6
+ module Generators
7
+ class InstallGenerator < Rails::Generators::Base
8
+ include Rails::Generators::Migration # Place it here to include migration support
8
9
 
9
- argument :model_name, type: :string, default: "User", banner: "MODEL"
10
+ source_root File.expand_path('../', __dir__) # Make sure this points to your templates folder
10
11
 
11
- desc "Creates a migration to add OTP fields to the specified model's table"
12
+ argument :model_name, type: :string, default: "User", banner: "MODEL"
12
13
 
13
- def copy_migration
14
- model = model_name.constantize
15
- table_name = model.table_name
16
- timestamp = Time.now.utc.strftime("%Y%m%d%H%M%S")
14
+ desc "Creates a migration to add OTP fields to the specified model's table"
17
15
 
18
- migration_template "migration.rb.tt", "db/migrate/add_otp_fields_to#{table_name}.rb", migration_version: migration_version, table_name: table_name
19
- end
16
+ def copy_migration
17
+ model = model_name.constantize
18
+ table_name = model.table_name
20
19
 
21
- private
22
- def migration_version
23
- if Rails::VERSION::MAJOR >= 5
24
- "[#{Rails::VERSION::MAJOR}.#{Rails::VERSION::MINOR}]"
20
+ migration_template "migration.rb.tt", "db/migrate/add_otp_fields_to_#{table_name}.rb", table_name: table_name, migration_version: migration_version
21
+ end
22
+
23
+ # This method is required by Rails generators to create a unique timestamp for migration files
24
+ def self.next_migration_number(dirname)
25
+ if ActiveRecord::Base.timestamped_migrations
26
+ Time.now.utc.strftime("%Y%m%d%H%M%S")
27
+ else
28
+ "%.3d" % (current_migration_number(dirname) + 1)
29
+ end
30
+ end
31
+
32
+ private
33
+
34
+ def migration_version
35
+ if Rails::VERSION::MAJOR >= 5
36
+ "[#{Rails::VERSION::MAJOR}.#{Rails::VERSION::MINOR}]"
37
+ end
38
+ end
25
39
  end
26
- end
27
40
  end
28
- end
29
41
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module IprogOtpGenerator
4
- VERSION = "0.1.7"
4
+ VERSION = "0.1.9"
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.7
4
+ version: 0.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jayson Presto