1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-05 16:22:32 -04:00

Add hex package definition

And bump version
This commit is contained in:
Eduardo Gurgel 2014-08-03 16:13:23 +12:00
parent 65ff2379db
commit 16c4673ce1

18
mix.exs
View file

@ -1,11 +1,17 @@
defmodule Httparrot.Mixfile do
use Mix.Project
@description """
HTTP Request & Response Server. An incomplete clone of http://httpbin.org
"""
def project do
[ app: :httparrot,
version: "0.3.0",
name: "HTTParrot",
version: "0.3.1",
elixir: "~> 0.14.1 or ~> 0.15.0",
name: "HTTParrot",
description: @description,
package: package,
deps: deps ]
end
@ -23,4 +29,12 @@ defmodule Httparrot.Mixfile do
{:jsex, "~> 2.0"},
{:meck, github: "eproxus/meck", tag: "0.8.2", only: :test } ]
end
defp package do
[ contributors: ["Eduardo Gurgel Pinho"],
licenses: ["MIT"],
links: [ { "Github", "https://github.com/edgurgel/httparrot" },
{ "HTTParrot", "http://httparrot.herokuapp.com" },
{ "httpbin", "http://httpbin.org" } ] ]
end
end