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:
parent
65ff2379db
commit
16c4673ce1
1 changed files with 16 additions and 2 deletions
18
mix.exs
18
mix.exs
|
@ -1,11 +1,17 @@
|
||||||
defmodule Httparrot.Mixfile do
|
defmodule Httparrot.Mixfile do
|
||||||
use Mix.Project
|
use Mix.Project
|
||||||
|
|
||||||
|
@description """
|
||||||
|
HTTP Request & Response Server. An incomplete clone of http://httpbin.org
|
||||||
|
"""
|
||||||
|
|
||||||
def project do
|
def project do
|
||||||
[ app: :httparrot,
|
[ app: :httparrot,
|
||||||
version: "0.3.0",
|
version: "0.3.1",
|
||||||
name: "HTTParrot",
|
|
||||||
elixir: "~> 0.14.1 or ~> 0.15.0",
|
elixir: "~> 0.14.1 or ~> 0.15.0",
|
||||||
|
name: "HTTParrot",
|
||||||
|
description: @description,
|
||||||
|
package: package,
|
||||||
deps: deps ]
|
deps: deps ]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -23,4 +29,12 @@ defmodule Httparrot.Mixfile do
|
||||||
{:jsex, "~> 2.0"},
|
{:jsex, "~> 2.0"},
|
||||||
{:meck, github: "eproxus/meck", tag: "0.8.2", only: :test } ]
|
{:meck, github: "eproxus/meck", tag: "0.8.2", only: :test } ]
|
||||||
end
|
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
|
end
|
||||||
|
|
Loading…
Add table
Reference in a new issue