Sha256: 48c1b9ef66d9c03b33d47f7d0ba9170a69ca7a2a584e79eda212c362e8a45129

Contents?: true

Size: 781 Bytes

Versions: 10

Compression:

Stored size: 781 Bytes

Contents

require 'rails/generators'
require 'rails/generators/migration'

class ActsAsFollowableGenerator < Rails::Generators::Base
  
  include Rails::Generators::Migration
  
  def self.source_root
    @source_root ||= File.join(File.dirname(__FILE__), 'templates')
  end
  
  # Implement the required interface for Rails::Generators::Migration.
  # taken from http://github.com/rails/rails/blob/master/activerecord/lib/generators/active_record.rb
  def self.next_migration_number(dirname)
    if ActiveRecord::Base.timestamped_migrations
      Time.now.utc.strftime("%Y%m%d%H%M%S")
    else
     "%.3d" % (current_migration_number(dirname) + 1)
    end
  end
  
  def create_migration_file
    migration_template 'migration.rb', 'db/migrate/acts_as_followable_migration.rb'
  end
  
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
acts_as_followable-0.1.9 lib/generators/acts_as_followable_generator.rb
acts_as_followable-0.1.8 lib/generators/acts_as_followable_generator.rb
acts_as_followable-0.1.7 lib/generators/acts_as_followable_generator.rb
acts_as_followable-0.1.6 lib/generators/acts_as_followable_generator.rb
acts_as_followable-0.1.5 lib/generators/acts_as_followable_generator.rb
acts_as_followable-0.1.4 lib/generators/acts_as_followable_generator.rb
acts_as_followable-0.1.3 lib/generators/acts_as_followable_generator.rb
acts_as_followable-0.1.2 lib/generators/acts_as_followable_generator.rb
acts_as_followable-0.1.1 lib/generators/acts_as_followable_generator.rb
acts_as_followable-0.1.0 lib/generators/acts_as_followable_generator.rb