class ActsAsGeocodableGenerator

Public Class Methods

next_migration_number(dirname) click to toggle source

Implement the required interface for Rails::Generators::Migration.

# File lib/generators/acts_as_geocodable/acts_as_geocodable_generator.rb, line 13
def self.next_migration_number(dirname)
  next_migration_number = current_migration_number(dirname) + 1
  if ActiveRecord::Base.timestamped_migrations
    [Time.now.utc.strftime("%Y%m%d%H%M%S"), "%.14d" % next_migration_number].max
  else
    "%.3d" % next_migration_number
  end
end
source_root() click to toggle source
# File lib/generators/acts_as_geocodable/acts_as_geocodable_generator.rb, line 7
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/acts_as_geocodable/acts_as_geocodable_generator.rb, line 22
def create_migration_file
  if defined?(ActiveRecord)
    migration_template "migration.rb", "db/migrate/add_geocodable_tables.rb"
  end
end