class ActAsBuddyGenerator

Public Class Methods

next_migration_number(dirname) click to toggle source
Implement the required interface for Rails::Generators::Migration.
taken from http://github.com/rails/rails/blob/master/activerecord/lib/generators/active_record.rb

end

# File lib/generators/act_as_buddy_generator.rb, line 20
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
source_root() click to toggle source
# File lib/generators/act_as_buddy_generator.rb, line 12
def self.source_root
  @source_root ||= File.join(File.dirname(__FILE__), 'templates')
end

Public Instance Methods

create_migration_file() click to toggle source
# File lib/generators/act_as_buddy_generator.rb, line 28
def create_migration_file
  migration_template 'migration.rb', 'db/migrate/act_as_buddy_migration.rb'
end
create_model() click to toggle source
# File lib/generators/act_as_buddy_generator.rb, line 32
def create_model
  template "model.rb", File.join('app/models', "buddy_mapper.rb")
end