Packages
yacto
1.2.2
2.1.1
2.1.0
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
2.0.0-rc.1
2.0.0-rc.0
2.0.0-pre.15
2.0.0-pre.14
2.0.0-pre.13
2.0.0-pre.12
2.0.0-pre.11
2.0.0-pre.10
2.0.0-pre.9
2.0.0-pre.8
2.0.0-pre.7
2.0.0-pre.6
2.0.0-pre.5
2.0.0-pre.4
2.0.0-pre.3
2.0.0-pre.2
2.0.0-pre.1
2.0.0-pre.0
1.2.6
1.2.5
1.2.4
1.2.3
1.2.2
1.2.1
1.2.0
1.1.3
1.1.1
1.1.0
1.0.7
1.0.6
1.0.5
A library for automatically generating a migration file and horizontally partitioning databases
Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Yacto.Mixfile do
use Mix.Project
def project do
[
app: :yacto,
version: "1.2.2",
elixir: "~> 1.5",
elixirc_paths: elixirc_paths(Mix.env()),
elixirc_options: [all_warnings: true, warnings_as_errors: true],
description:
"A library for automatically generating a migration file and horizontally partitioning databases",
package: [
maintainers: ["melpon", "kenichirow"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => "https://github.com/gumi/yacto"}
],
docs: [main: "Yacto"],
test_paths: ["test/yacto"],
start_permanent: Mix.env() == :prod,
deps: deps(),
source_url: "https://github.com/gumi/yacto"
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ecto, "~> 2.2"},
{:ex_doc, "~> 0.18.3", only: :dev, runtime: false},
{:db_connection, "~> 1.1"},
{:mariaex, "~> 0.8.4"},
{:uuid, "~> 1.1"},
{:power_assert, "~> 0.1.1", only: :test}
]
end
end