Sha256: af4442c02e4c9beedf41b5f9f4664d3faea18ed87abd9a80ea553ab3be283f28

Contents?: true

Size: 867 Bytes

Versions: 4

Compression:

Stored size: 867 Bytes

Contents

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

class ActsAsFollowerGenerator < 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_follower_migration.rb'
  end
  
  def create_model
    template "model.rb", File.join('app/models', "follow.rb")
  end
  
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
acts_as_follower-0.2.1 lib/generators/acts_as_follower_generator.rb
acts_as_follower-0.2.0 lib/generators/acts_as_follower_generator.rb
acts_as_follower-0.1.1 lib/generators/acts_as_follower_generator.rb
acts_as_follower-0.1.0 lib/generators/acts_as_follower_generator.rb