-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Daniel Neighman
committed
Nov 15, 2015
1 parent
843cfae
commit d69cca9
Showing
4 changed files
with
56 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ | |
/deps | ||
erl_crash.dump | ||
*.ez | ||
/doc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,54 @@ | ||
defmodule UeberIdentity.Mixfile do | ||
use Mix.Project | ||
|
||
@version "0.1.0" | ||
|
||
def project do | ||
[app: :ueber_identity, | ||
version: "0.0.1", | ||
version: @version, | ||
name: "Ueber Identity", | ||
package: package, | ||
elixir: "~> 1.1", | ||
build_embedded: Mix.env == :prod, | ||
start_permanent: Mix.env == :prod, | ||
deps: deps] | ||
source_url: "https://github.com/hassox/ueber_identity", | ||
homepage_url: "https://github.com/hassox/ueber_identity", | ||
description: description, | ||
deps: deps, | ||
docs: docs] | ||
end | ||
|
||
# Configuration for the OTP application | ||
# | ||
# Type "mix help compile.app" for more information | ||
def application do | ||
[applications: [:logger]] | ||
end | ||
|
||
# Dependencies can be Hex packages: | ||
# | ||
# {:mydep, "~> 0.3.0"} | ||
# | ||
# Or git/path repositories: | ||
# | ||
# {:mydep, git: "https://github.com/elixir-lang/mydep.git", tag: "0.1.0"} | ||
# | ||
# Type "mix help deps" for more examples and options | ||
defp deps do | ||
[ | ||
{:ueberauth, path: "/Users/dneighman/Code/ueberauth"}, | ||
{:plug, "~> 1.0"} | ||
{:ueberauth, "~> 0.1"}, | ||
{:plug, "~> 1.0"}, | ||
|
||
# docs dependencies | ||
{:earmark, "~> 0.1", only: :dev}, | ||
{:ex_doc, "~> 0.1", only: :dev} | ||
] | ||
end | ||
|
||
defp docs do | ||
[extras: docs_extras, main: "extra-readme"] | ||
end | ||
|
||
defp docs_extras do | ||
["README.md"] | ||
end | ||
|
||
defp description do | ||
"An Ueberauth strategy for basic username/password" | ||
end | ||
|
||
defp package do | ||
[files: ["lib", "mix.ex", "README.md", "LICENSE"], | ||
maintainers: ["Daniel Neighman"], | ||
licenses: ["MIT"], | ||
links: %{github: "https://github.com/hassox/ueber_identity"}] | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
%{"plug": {:hex, :plug, "1.0.2"}} | ||
%{"earmark": {:hex, :earmark, "0.1.19"}, | ||
"ex_doc": {:hex, :ex_doc, "0.10.0"}, | ||
"plug": {:hex, :plug, "1.0.2"}, | ||
"ueberauth": {:hex, :ueberauth, "0.1.0"}} |