Class: PreferencesGenerator

Inherits:
Rails::Generators::NamedBase
  • Object
show all
Includes:
Rails::Generators::Migration
Defined in:
lib/generators/preferences/preferences_generator.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.next_migration_number(path) ⇒ Object



10
11
12
# File 'lib/generators/preferences/preferences_generator.rb', line 10

def self.next_migration_number(path)
  Time.now.utc.strftime("%Y%m%d%H%M%S")
end

.source_rootObject



14
15
16
# File 'lib/generators/preferences/preferences_generator.rb', line 14

def self.source_root
  @_devise_source_root ||= File.expand_path("../templates", __FILE__)
end

Instance Method Details

#install_preferencesObject



6
7
8
# File 'lib/generators/preferences/preferences_generator.rb', line 6

def install_preferences
  migration_template "001_create_preferences.rb", "db/migrate/create_preferences"
end