# SPDX-FileCopyrightText: 2019 ash_postgres contributors # # SPDX-License-Identifier: MIT defmodule Mix.Tasks.AshPostgres.SetupVector.Docs do @moduledoc false def short_doc do "Sets up pgvector for AshPostgres" end def example do "mix ash_postgres.setup_vector" end def long_doc do """ #{short_doc()} ## Example ```bash #{example()} ``` """ end end if Code.ensure_loaded?(Igniter) do defmodule Mix.Tasks.AshPostgres.SetupVector do @shortdoc "#{__MODULE__.Docs.short_doc()}" @moduledoc __MODULE__.Docs.long_doc() use Igniter.Mix.Task @impl Igniter.Mix.Task def info(_argv, _composing_task) do %Igniter.Mix.Task.Info{ group: :ash_postgres, example: __MODULE__.Docs.example() } end @impl Igniter.Mix.Task def igniter(igniter) do # Do your work here and return an updated igniter igniter # |> Igniter.add_warning("mix ash_postgres.setup_vector is not yet implemented") end end else defmodule Mix.Tasks.AshPostgres.SetupVector do @shortdoc "#{__MODULE__.Docs.short_doc()} | Install `igniter` to use" @moduledoc __MODULE__.Docs.long_doc() use Mix.Task def run(_argv) do Mix.shell().error(""" The task 'ash_postgres.setup_vector' requires igniter. Please install igniter and try again. For more information, see: https://hexdocs.pm/igniter/readme.html#installation """) exit({:shutdown, 1}) end end end