elight/acts_as_commentable_with_threading

View on GitHub
lib/generators/acts_as_commentable_with_threading_migration/acts_as_commentable_with_threading_migration_generator.rb

Summary

Maintainability
A
0 mins
Test Coverage
class ActsAsCommentableWithThreadingMigrationGenerator < Rails::Generators::Base
  include Rails::Generators::Migration

  source_root File.expand_path('../templates', __FILE__)

  # Complete wtf that this isn't provided elsewhere.
  def self.next_migration_number(dirname)
    if ActiveRecord::Base.timestamped_migrations
      Time.now.utc.strftime('%Y%m%d%H%M%S')
    else
      format('%.3d', (current_migration_number(dirname) + 1))
    end
  end

  def manifest
    migration_template 'migration.rb',
                       'db/migrate/acts_as_commentable_with_threading_migration.rb'
    copy_file 'comment.rb', 'app/models/comment.rb'
  end
end