lib/generators/neighbor/vector_generator.rb



require "rails/generators"
require "rails/generators/active_record"

module Neighbor
  module Generators
    class VectorGenerator < Rails::Generators::Base
      include ActiveRecord::Generators::Migration
      source_root File.join(__dir__, "templates")

      def copy_migration
        migration_template "vector.rb", "db/migrate/install_neighbor_vector.rb", migration_version: migration_version
      end

      def migration_version
        "[#{ActiveRecord::VERSION::MAJOR}.#{ActiveRecord::VERSION::MINOR}]"
      end
    end
  end
end