Skip to content

Commit

Permalink
Switched requirement to Plug 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanjos committed Sep 26, 2014
1 parent 5892853 commit 75842f9
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ defmodule PlugJwt.Mixfile do
defp deps do
[
{:joken, "~> 0.1.0"},
{:plug, "~> 0.8.0"},
{:plug, "~> 0.7.0"},
{:cowboy, "~> 1.0.0"}
]
end
Expand Down
2 changes: 1 addition & 1 deletion mix.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"cowlib": {:package, "1.0.0"},
"jazz": {:package, "0.2.1"},
"joken": {:package, "0.1.0"},
"plug": {:package, "0.8.0"},
"plug": {:package, "0.7.0"},
"ranch": {:package, "1.0.0"}}
1 change: 0 additions & 1 deletion test/plug_jwt_route_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ defmodule PlugJwtRouteTest do
plug :dispatch

get "/" do
IO.inspect(conn)
conn
|> PlugJwt.call({"secret", &PlugJwtRouteTest.TestRoutePlug.verify/1})
|> send_resp(200, "Hello Tester")
Expand Down

0 comments on commit 75842f9

Please sign in to comment.