Class: ActsAsFriendable::Generators::InstallGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- ActsAsFriendable::Generators::InstallGenerator
- Includes:
- Rails::Generators::Migration
- Defined in:
- lib/generators/acts_as_friendable/install/install_generator.rb
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.next_migration_number(path) ⇒ Object
10 11 12 13 14 15 16 17 |
# File 'lib/generators/acts_as_friendable/install/install_generator.rb', line 10 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_migration ⇒ Object
19 20 21 |
# File 'lib/generators/acts_as_friendable/install/install_generator.rb', line 19 def copy_migration migration_template 'friendships.rb', 'db/migrate/create_acts_as_friendable_friendships.rb' end |