Skip to content

Commit

Permalink
Merge pull request #74 from ueberauth/update-mix-for-ueberauth
Browse files Browse the repository at this point in the history
Get mix ready for ueberauth
  • Loading branch information
Daniel Neighman committed Dec 24, 2015
2 parents ac38e93 + 67f9b43 commit 70f4895
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ defmodule Guardian.Mixfile do
use Mix.Project

@version "0.8.0"
@url "https://github.com/ueberauth/guardian"
@maintainers ["Daniel Neighman", "Sonny Scroggin", "Sean Callan"]

def project do
[
Expand All @@ -11,9 +13,9 @@ defmodule Guardian.Mixfile do
package: package,
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
maintainers: ["Daniel Neighman"],
maintainers: @maintainers,
description: "Elixir Authentication framework",
homepage_url: "https://github.com/hassox/guardian",
homepage_url: @url,
docs: [source_ref: "v#{@version}", main: "overview"],
deps: deps
]
Expand All @@ -34,9 +36,9 @@ defmodule Guardian.Mixfile do

defp package do
[
maintainers: ["Daniel Neighman"],
maintainers: @maintainers,
licenses: ["MIT"],
links: %{github: "https://github.com/hassox/guardian"},
links: %{github: @url},
files: ~w(lib) ++ ~w(CHANGELOG.md LICENSE mix.exs README.md)
]
end
Expand Down

0 comments on commit 70f4895

Please sign in to comment.