1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-05 08:12:31 -04:00
httparrot/mix.exs
Eduardo Gurgel e087b786fb Update dependencies
Change the way test deps are fetched as well
2014-05-07 18:53:20 +12:00

26 lines
618 B
Elixir

defmodule Httparrot.Mixfile do
use Mix.Project
def project do
[ app: :httparrot,
version: "0.1.0",
name: "HTTParrot",
elixir: "~> 0.13.1",
deps: deps ]
end
def application do
[ applications: [ :compiler,
:syntax_tools,
:cowboy,
:jsex ],
mod: { HTTParrot, [] },
env: [ http_port: 8080, ssl: true, https_port: 8433 ] ]
end
defp deps do
[ {:cowboy, github: "extend/cowboy", tag: "0.9.0"},
{:jsex, '~> 2.0'},
{:meck, github: "eproxus/meck", tag: "0.8.2", only: :test } ]
end
end