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:
Chad Gorshing 2018-02-13 12:29:42 -06:00 committed by Sean Callan
parent 42dc50a220
commit 1cfa3e82a6
2 changed files with 6 additions and 6 deletions

View File

@ -63,7 +63,7 @@ _Note_: Sessions are required for this strategy.
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.

10
mix.exs
View File

@ -25,15 +25,15 @@ defmodule UeberauthTwitter.Mixfile do
defp deps do
[
{:httpoison, "~> 0.7"},
{:httpoison, "~> 0.13"},
{:oauther, "~> 1.1"},
{:poison, "~> 1.3 or ~> 2.0"},
{:ueberauth, "~> 0.2"},
{:poison, "~> 3.0"},
{:ueberauth, "~> 0.4"},
# dev/test dependencies
{:earmark, ">= 0.0.0", only: :dev},
{:ex_doc, "~> 0.1", only: :dev},
{:credo, "~> 0.5", only: [:dev, :test]}
{:ex_doc, "~> 0.18", only: :dev},
{:credo, "~> 0.8", only: [:dev, :test]}
]
end