Current section
Files
Jump to
Current section
Files
plug_static_ls
mix.exs
mix.exs
defmodule PlugStaticLs.Mixfile do
use Mix.Project
@version "0.4.0"
def project do
[app: :plug_static_ls,
version: @version,
elixir: "~> 1.3",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps(),
package: package(),
description: "Directory Index for Plug/Phoenix Static Assets",
name: "Plug_Static_Ls",
source_url: "https://github.com/jj1bdx/plug_static_ls",
homepage_url: "http://github.com/jj1bdx/plug_static_ls",
docs: [extras: ["README.md"], main: "readme",
source_ref: "v#{@version}",
source_url: "https://github.com/jj1bdx/plug_static_ls"]]
end
defp package do
[licenses: ["Apache 2"],
maintainers: ["Kenji Rikitake"],
links: %{"GitHub" => "https://github.com/jj1bdx/plug_static_ls"}]
end
def application do
[applications: []]
end
defp deps do
[
{:plug, "~> 1.0"},
{:ex_doc, "~> 0.14", only: :dev}
]
end
end