Current section
Files
Jump to
Current section
Files
mix.exs
defmodule ExSync.Mixfile do
use Mix.Project
def project do
[ app: :exsync,
version: "0.1.2",
elixir: "~> 1.0",
elixirc_paths: ["lib", "web"],
deps: deps,
description: "Yet another Elixir reloader.",
source_url: "https://github.com/falood/exsync",
package: package,
]
end
def application do
[ mod: { ExSync, [] },
applications: [:exfswatch, :logger],
]
end
defp deps do
[ {:exfswatch, "~> 0.1"} ]
end
defp package do
%{ licenses: ["BSD 3-Clause"],
links: %{"Github" => "https://github.com/falood/exsync"}
}
end
end