Sha256: 7ca5ac01bf032f7a630358ba461f8a188ef1cdae79b5ecf7067a6f98a524b033

Contents?: true

Size: 883 Bytes

Versions: 2

Compression:

Stored size: 883 Bytes

Contents

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

class FollowableBehaviourGenerator < 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 https://github.com/rails/rails/blob/master/activerecord/lib/rails/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/followable_behaviour_migration.rb'
  end
  
  def create_model
    template "model.rb", File.join('app/models', "follow.rb")
  end
  
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
followable_behaviour-0.2.0 lib/generators/followable_generator.rb
followable_behaviour-0.1.0 lib/generators/followable_generator.rb