Packages

Plug that allows to add version compatibility layers via API request/response gateways.

Current section

Files

Jump to
multiverse mix.exs
Raw

mix.exs

defmodule Multiverse.Mixfile do
use Mix.Project
@version "0.4.1"
def project do
[app: :multiverse,
description: "Plug that allows to add version compatibility layers via API request/response Gateways.",
package: package,
version: @version,
elixir: "~> 1.3",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps(),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [coveralls: :test],
docs: [source_ref: "v#{@version}", main: "readme", extras: ["README.md"]]]
end
def application do
[applications: [:timex, :plug]]
end
defp deps do
[{:timex, "~> 3.0"},
{:plug, "~> 1.0"},
{:ex_doc, ">= 0.0.0", only: [:dev, :test]},
{:excoveralls, "~> 0.5", only: [:dev, :test]},
{:dogma, "~> 0.1", only: [:dev, :test]},
{:credo, "~> 0.4", only: [:dev, :test]}]
end
defp package do
[contributors: ["Andrew Dryga"],
maintainers: ["Andrew Dryga"],
licenses: ["MIT"],
links: %{github: "https://github.com/Nebo15/multiverse"},
files: ~w(lib LICENSE.md mix.exs README.md)]
end
end