Updated dependencies and corrected minor typo (#20)
* Updated deps that some what follows other ueberauth strategies versions. * Corrected simple typo
This commit is contained in:
parent
42dc50a220
commit
1cfa3e82a6
@ -63,7 +63,7 @@ _Note_: Sessions are required for this strategy.
|
|||||||
end
|
end
|
||||||
```
|
```
|
||||||
|
|
||||||
1. You controller needs to implement callbacks to deal with `Ueberauth.Auth` and `Ueberauth.Failure` responses.
|
1. Your controller needs to implement callbacks to deal with `Ueberauth.Auth` and `Ueberauth.Failure` responses.
|
||||||
|
|
||||||
For an example implementation see the [Überauth Example](https://github.com/ueberauth/ueberauth_example) application.
|
For an example implementation see the [Überauth Example](https://github.com/ueberauth/ueberauth_example) application.
|
||||||
|
|
||||||
|
10
mix.exs
10
mix.exs
@ -25,15 +25,15 @@ defmodule UeberauthTwitter.Mixfile do
|
|||||||
|
|
||||||
defp deps do
|
defp deps do
|
||||||
[
|
[
|
||||||
{:httpoison, "~> 0.7"},
|
{:httpoison, "~> 0.13"},
|
||||||
{:oauther, "~> 1.1"},
|
{:oauther, "~> 1.1"},
|
||||||
{:poison, "~> 1.3 or ~> 2.0"},
|
{:poison, "~> 3.0"},
|
||||||
{:ueberauth, "~> 0.2"},
|
{:ueberauth, "~> 0.4"},
|
||||||
|
|
||||||
# dev/test dependencies
|
# dev/test dependencies
|
||||||
{:earmark, ">= 0.0.0", only: :dev},
|
{:earmark, ">= 0.0.0", only: :dev},
|
||||||
{:ex_doc, "~> 0.1", only: :dev},
|
{:ex_doc, "~> 0.18", only: :dev},
|
||||||
{:credo, "~> 0.5", only: [:dev, :test]}
|
{:credo, "~> 0.8", only: [:dev, :test]}
|
||||||
]
|
]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user