Skip to content

Commit

Permalink
Add hex package definition
Browse files Browse the repository at this point in the history
  • Loading branch information
edgurgel committed Feb 11, 2015
1 parent d9a960b commit 2aab551
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
defmodule Pusher.Mixfile do
use Mix.Project

@description """
Pusher HTTP client
"""

def project do
[ app: :pusher,
version: "0.0.1",
elixir: "~> 1.0.0",
name: "Pusher",
description: @description,
package: package,
deps: deps ]
end

Expand All @@ -28,4 +35,9 @@ defmodule Pusher.Mixfile do
{:meck, "~> 0.8.2", only: :test } ]
end

defp package do
[ contributors: ["Eduardo Gurgel Pinho"],
licenses: ["MIT"],
links: %{"Github" => "https://github.com/edgurgel/pusher"} ]
end
end

0 comments on commit 2aab551

Please sign in to comment.