Class: SocialConnections::Generators::InstallGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- SocialConnections::Generators::InstallGenerator
- Includes:
- Rails::Generators::Migration
- Defined in:
- lib/generators/social_connections/install/install_generator.rb
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.next_migration_number(path) ⇒ Object
12 13 14 15 16 17 18 19 |
# File 'lib/generators/social_connections/install/install_generator.rb', line 12 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_migrations ⇒ Object
21 22 23 24 |
# File 'lib/generators/social_connections/install/install_generator.rb', line 21 def copy_migrations migration_template "create_social_connections_tables.rb", "db/migrate/create_social_connections.rb" migration_template "create_mute_and_curious_guests.rb", "db/migrate/create_mute_and_curious_guests.rb" end |