Skip to content

Commit 5f36df3

Browse files
committed
Merge pull request #4 from scrogson/include_ueberauth_and_oauth2
Include :ueberauth and :oauth2 in applications
2 parents 931c90e + 346305d commit 5f36df3

1 file changed

Lines changed: 5 additions & 7 deletions

File tree

mix.exs

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,26 +11,24 @@ defmodule UeberauthGithub.Mixfile do
1111
elixir: "~> 1.1",
1212
build_embedded: Mix.env == :prod,
1313
start_permanent: Mix.env == :prod,
14-
source_url: "https://github.com/hassox/ueberauth_github",
15-
homepage_url: "https://github.com/hassox/ueberauth_github",
14+
source_url: "https://github.com/ueberauth/ueberauth_github",
15+
homepage_url: "https://github.com/ueberauth/ueberauth_github",
1616
description: description,
1717
deps: deps,
1818
docs: docs]
1919
end
2020

2121
def application do
22-
[applications: [:logger]]
22+
[applications: [:logger, :ueberauth, :oauth2]]
2323
end
2424

2525
defp deps do
26-
[
27-
{:ueberauth, "~>0.1"},
26+
[{:ueberauth, "~> 0.1"},
2827
{:oauth2, "~> 0.5"},
2928

3029
# docs dependencies
3130
{:earmark, "~>0.1", only: :dev},
32-
{:ex_doc, "~>0.1", only: :dev}
33-
]
31+
{:ex_doc, "~>0.1", only: :dev}]
3432
end
3533

3634
defp docs do

0 commit comments

Comments
 (0)