Class: ActsAsFollowableGenerator
Instance Method Summary
collapse
next_migration_number, source_root
Instance Method Details
#create_migration_file ⇒ Object
4
5
6
|
# File 'lib/generators/acts_as_followable_generator.rb', line 4
def create_migration_file
migration_template 'follow_migration.rb', 'db/migrate/acts_as_followable_migration.rb'
end
|
#create_model ⇒ Object
8
9
10
|
# File 'lib/generators/acts_as_followable_generator.rb', line 8
def create_model
template "follow.rb", File.join('app/models', "follow.rb")
end
|