Current section
Files
Jump to
Current section
Files
mix.exs
defmodule DBI.Mixfile do
use Mix.Project
def project do
[app: :dbi,
version: get_version(),
name: "DBI",
description: "DataBase Interface for Erlang",
package: package(),
source_url: "https://github.com/altenwald/dbi",
elixir: "~> 1.3",
compilers: Mix.compilers,
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps()]
end
def application do
env = if Mix.env == :test do
[testdb1: [type: :sqlite,
database: ':memory:'],
testdb2: [type: :sqlite,
database: ':memory:',
cache: 3],
testdb3: [type: :sqlite,
database: ':memory:',
delayed: :mydelayed]
]
else
[]
end
[applications: [:crypto, :public_key, :asn1, :ssl],
mod: {DBI, []},
env: env]
end
defp deps do
[{:epgsql, "~> 3.4.0"},
{:p1_mysql, "~> 1.0.4"},
{:esqlite, "~> 0.2.3"},
{:cache, "~> 2.2.0"},
{:poolboy, "~> 1.5.1"},
{:ex_doc, ">= 0.0.0", only: :dev}]
end
defp package do
[files: ["lib",
"include",
"test",
"src",
"rebar.*",
"mix.*",
"README*",
"COPYING"],
maintainers: ["Manuel Rubio"],
licenses: ["LGPL 2.1"],
links: %{"GitHub" => "https://github.com/altenwald/dbi"}]
end
defp get_version do
retrieve_version_from_git()
|> String.split("-")
|> case do
[tag] -> tag
[tag, _num_commits, commit] -> "#{tag}-#{commit}"
end
end
defp retrieve_version_from_git do
System.cmd("git", ["describe", "--always", "--tags"])
|> Tuple.to_list
|> List.first
|> String.strip
end
end