ash_postgres/mix.exs

202 lines
5.4 KiB
Elixir
Raw Normal View History

2019-12-05 03:58:20 +13:00
defmodule AshPostgres.MixProject do
2019-10-07 09:36:18 +13:00
use Mix.Project
2019-12-05 04:13:24 +13:00
@description """
A postgres data layer for `Ash` resources. Leverages Ecto's postgres
support, and delegates to a configured repo.
"""
2023-02-10 11:49:52 +13:00
@version "1.3.10"
2020-06-01 17:36:43 +12:00
2019-10-07 09:36:18 +13:00
def project do
[
2019-12-05 03:58:20 +13:00
app: :ash_postgres,
2020-06-01 17:36:43 +12:00
version: @version,
2021-01-23 10:44:46 +13:00
elixir: "~> 1.11",
2019-10-07 09:36:18 +13:00
start_permanent: Mix.env() == :prod,
2019-12-05 04:13:24 +13:00
deps: deps(),
description: @description,
2020-06-03 14:47:41 +12:00
test_coverage: [tool: ExCoveralls],
2020-09-03 20:18:11 +12:00
elixirc_paths: elixirc_paths(Mix.env()),
2020-06-03 14:47:41 +12:00
preferred_cli_env: [
coveralls: :test,
"coveralls.github": :test,
"test.create": :test,
"test.migrate": :test,
"test.migrate_tenants": :test,
"test.check_migrations": :test,
"test.drop": :test,
"test.generate_migrations": :test,
"test.reset": :test
2020-06-03 14:47:41 +12:00
],
2020-06-03 15:29:11 +12:00
dialyzer: [
plt_add_apps: [:ecto, :ash, :mix]
2020-06-03 15:29:11 +12:00
],
docs: docs(),
2020-06-03 14:47:41 +12:00
aliases: aliases(),
2019-12-05 04:13:24 +13:00
package: package(),
source_url: "https://github.com/ash-project/ash_postgres",
homepage_url: "https://github.com/ash-project/ash_postgres",
consolidate_protocols: Mix.env() != :test
2019-12-05 04:13:24 +13:00
]
end
2021-01-27 14:21:53 +13:00
if Mix.env() == :test do
def application() do
[applications: [:ecto, :ecto_sql, :jason, :ash, :postgrex], mod: {AshPostgres.TestApp, []}]
end
end
2020-09-03 20:18:11 +12:00
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
2019-12-05 04:13:24 +13:00
defp package do
[
name: :ash_postgres,
licenses: ["MIT"],
files: ~w(lib .formatter.exs mix.exs README* LICENSE*
CHANGELOG* documentation),
2019-12-05 04:13:24 +13:00
links: %{
GitHub: "https://github.com/ash-project/ash_postgres"
}
2019-10-07 09:36:18 +13:00
]
end
2022-08-19 06:56:36 +12:00
defp extras() do
2022-08-24 11:56:46 +12:00
"documentation/**/*.md"
2022-08-19 06:56:36 +12:00
|> Path.wildcard()
|> Enum.map(fn path ->
title =
path
|> Path.basename(".md")
|> String.split(~r/[-_]/)
|> Enum.map(&String.capitalize/1)
|> Enum.join(" ")
|> case do
"F A Q" ->
"FAQ"
other ->
other
end
{String.to_atom(path),
[
title: title
]}
end)
end
defp groups_for_extras() do
2022-08-24 11:56:46 +12:00
"documentation/*"
2022-08-19 06:56:36 +12:00
|> Path.wildcard()
|> Enum.map(fn folder ->
name =
folder
|> Path.basename()
|> String.split(~r/[-_]/)
|> Enum.map(&String.capitalize/1)
|> Enum.join(" ")
{name, folder |> Path.join("**") |> Path.wildcard()}
end)
end
defp docs do
[
2022-08-24 11:56:46 +12:00
main: "get-started-with-postgres",
source_ref: "v#{@version}",
logo: "logos/small-logo.png",
2022-08-19 06:56:36 +12:00
extras: extras(),
2023-01-18 19:00:23 +13:00
spark: [
mix_tasks: [
Postgres: [
Mix.Tasks.AshPostgres.GenerateMigrations,
Mix.Tasks.AshPostgres.Create,
Mix.Tasks.AshPostgres.Drop,
Mix.Tasks.AshPostgres.Migrate,
Mix.Tasks.AshPostgres.Rollback
]
],
extensions: [
%{
module: AshPostgres.DataLayer,
name: "AshPostgres",
target: "Ash.Resource",
type: "DataLayer"
}
]
],
2022-08-19 06:56:36 +12:00
groups_for_extras: groups_for_extras(),
groups_for_modules: [
2022-08-24 11:56:46 +12:00
AshPostgres: [
AshPostgres,
2022-08-24 11:56:46 +12:00
AshPostgres.Repo,
AshPostgres.DataLayer
],
Introspection: [
AshPostgres.DataLayer.Info
],
"Postgres Expressions": [
AshPostgres.Functions.Fragment,
AshPostgres.Functions.TrigramSimilarity
2022-08-24 11:56:46 +12:00
],
"Custom Aggregates": [
AshPostgres.CustomAggregate
],
2022-08-24 11:56:46 +12:00
"Postgres Migrations": [
AshPostgres.Migration,
EctoMigrationDefault
],
2023-01-18 19:00:23 +13:00
Transformers: ~r/AshPostgres\.Transformers\..*/,
Internals: ~r/.*/
]
]
end
2019-10-07 09:36:18 +13:00
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ecto_sql, "~> 3.9"},
{:ecto, "~> 3.9"},
{:jason, "~> 1.0"},
2019-10-07 09:36:18 +13:00
{:postgrex, ">= 0.0.0"},
{:ash, ash_version("~> 2.6 and >= 2.6.1")},
2023-02-01 16:35:12 +13:00
{:git_ops, "~> 2.5", only: [:dev, :test]},
{:nimble_options, "~> 0.5"},
2023-02-01 16:35:12 +13:00
{:ex_doc, "~> 0.22", only: [:dev, :test], runtime: false},
{:ex_check, "~> 0.14", only: [:dev, :test]},
{:credo, ">= 0.0.0", only: [:dev, :test], runtime: false},
{:dialyxir, ">= 0.0.0", only: [:dev, :test], runtime: false},
{:sobelow, ">= 0.0.0", only: [:dev, :test], runtime: false},
{:excoveralls, "~> 0.14", only: [:dev, :test]}
2020-06-03 14:47:41 +12:00
]
end
defp ash_version(default_version) do
case System.get_env("ASH_VERSION") do
nil -> default_version
"local" -> [path: "../ash"]
2022-04-28 01:55:08 +12:00
"main" -> [git: "https://github.com/ash-project/ash.git"]
version -> "~> #{version}"
end
end
2020-06-03 14:47:41 +12:00
defp aliases do
[
sobelow:
"sobelow --skip -i Config.Secrets --ignore-files lib/migration_generator/migration_generator.ex",
2020-06-15 19:05:21 +12:00
credo: "credo --strict",
2022-11-04 06:02:31 +13:00
docs: ["docs", "ash.replace_doc_links"],
2022-09-09 05:28:58 +12:00
"spark.formatter": "spark.formatter --extensions AshPostgres.DataLayer",
"test.generate_migrations": "ash_postgres.generate_migrations",
"test.check_migrations": "ash_postgres.generate_migrations --check",
"test.migrate_tenants": "ash_postgres.migrate --tenants",
"test.migrate": "ash_postgres.migrate",
"test.create": "ash_postgres.create",
"test.reset": ["test.drop", "test.create", "test.migrate", "ash_postgres.migrate --tenants"],
"test.drop": "ash_postgres.drop"
2019-10-07 09:36:18 +13:00
]
end
end