Class: NaughtyWords::Generators::InstallGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- NaughtyWords::Generators::InstallGenerator
- Includes:
- Rails::Generators::Migration
- Defined in:
- lib/generators/naughty_words/install/install_generator.rb
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.next_migration_number(path) ⇒ Object
11 12 13 14 |
# File 'lib/generators/naughty_words/install/install_generator.rb', line 11 def self.next_migration_number(path) next_migration_number = current_migration_number(path) + 1 ActiveRecord::Migration.next_migration_number(next_migration_number) end |
Instance Method Details
#copy_initializer ⇒ Object
27 28 29 |
# File 'lib/generators/naughty_words/install/install_generator.rb', line 27 def copy_initializer template "initializer.rb", "config/initializers/naughty_words.rb" end |
#copy_migrations ⇒ Object
16 17 18 19 20 21 |
# File 'lib/generators/naughty_words/install/install_generator.rb', line 16 def copy_migrations migration_template( "create_naughty_words_lists.rb", "db/migrate/create_naughty_words_lists.rb" ) end |
#copy_models ⇒ Object
23 24 25 |
# File 'lib/generators/naughty_words/install/install_generator.rb', line 23 def copy_models template "word_list.rb", "app/models/naughty_words/word_list.rb" end |