Current section

Files

Jump to
plug_wait1 mix.exs
Raw

mix.exs

defmodule PlugWait1.Mixfile do
use Mix.Project
def project do
[app: :plug_wait1,
version: "0.1.5",
elixir: "~> 1.0",
description: "Plug adapter for the wait1 protocol",
package: package,
deps: deps]
end
def application do
[applications: [:logger]]
end
defp deps do
[{ :cowboy, ">= 1.0.0" },
{ :plug, "~> 0.13.0" },
{ :poison, "~> 1.3.1" },
{ :websocket_client, github: "jeremyong/websocket_client", only: [:test]}]
end
defp package do
[files: ["lib", "mix.exs", "README*"],
maintainers: ["Cameron Bytheway"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/wait1/plug_wait1"}]
end
end