Class: Client::ProfileGenerator

Inherits:
Rails::Generators::Base
  • Object
show all
Includes:
Rails::Generators::Migration
Defined in:
lib/generators/profile_generator.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.next_migration_number(path) ⇒ Object



7
8
9
10
11
12
13
14
# File 'lib/generators/profile_generator.rb', line 7

def self.next_migration_number(path)
    unless @prev_migration_nr
        @prev_migration_nr = Time.now.utc.strftime("%Y%m%d%H%M%S").to_i
    else
        @prev_migration_nr += 1
    end
    @prev_migration_nr.to_s
end

Instance Method Details

#copy_migrationsObject



16
17
18
# File 'lib/generators/profile_generator.rb', line 16

def copy_migrations
    migration_template "create_client_profile.rb", "db/migrate/create_client_profile.rb"
end