Current section

Files

Jump to
slim_fast mix.exs
Raw

mix.exs

defmodule SlimFast.Mixfile do
use Mix.Project
@version "0.8.0"
def project do
[app: :slim_fast,
build_embedded: Mix.env == :prod,
deps: deps,
description: """
An Elixir library for rendering slim templates.
""",
elixir: "~> 1.0",
package: package,
source_url: "https://github.com/doomspork/slim_fast",
start_permanent: Mix.env == :prod,
version: @version]
end
def package do
[maintainers: ["Sean Callan", "Alexander Stanko"],
files: ["lib", "mix.exs", "README*", "LICENSE*"],
licenses: ["MIT"],
links: %{github: "https://github.com/doomspork/slim_fast"}]
end
def deps do
[
{:phoenix_html, "~> 2.2", only: :test}
]
end
end