Skip to content

Commit d93fbcb

Browse files
committed
Update README and docs
1 parent 50b78c3 commit d93fbcb

File tree

9 files changed

+16
-11
lines changed

9 files changed

+16
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Create a `demo_live.exs` file:
1212

1313
```elixir
1414
Mix.install([
15-
{:phoenix_playground, "~> 0.1.0"}
15+
{:phoenix_playground, "~> 0.1.5"}
1616
])
1717

1818
defmodule DemoLive do

examples/demo_controller.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env elixir
22
Mix.install([
3-
{:phoenix_playground, "~> 0.1.3"}
3+
{:phoenix_playground, "~> 0.1.5"}
44
])
55

66
defmodule DemoController do

examples/demo_controller_test.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env elixir
22
Mix.install([
3-
{:phoenix_playground, "~> 0.1.3"}
3+
{:phoenix_playground, "~> 0.1.5"}
44
])
55

66
defmodule DemoController do
@@ -28,7 +28,7 @@ defmodule DemoController do
2828
end
2929
end
3030

31-
Logger.configure(level: :info)
31+
Logger.configure(level: :warning)
3232
ExUnit.start()
3333

3434
defmodule DemoControllerTest do

examples/demo_hooks.exs

100644100755
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env elixir
22
Mix.install([
3-
{:phoenix_playground, "~> 0.1.4"}
3+
{:phoenix_playground, "~> 0.1.5"}
44
])
55

66
defmodule DemoHooks do
@@ -30,4 +30,4 @@ defmodule DemoHooks do
3030
end
3131
end
3232

33-
PhoenixPlayground.start(live: DemoHook)
33+
PhoenixPlayground.start(live: DemoHooks)

examples/demo_live.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env elixir
22
Mix.install([
3-
{:phoenix_playground, "~> 0.1.3"}
3+
{:phoenix_playground, "~> 0.1.5"}
44
])
55

66
defmodule DemoLive do

examples/demo_live.livemd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
```elixir
44
Mix.install([
5-
{:phoenix_playground, "~> 0.1.3"}
5+
{:phoenix_playground, "~> 0.1.5"}
66
])
77
```
88

examples/demo_live_test.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env elixir
22
Mix.install([
3-
{:phoenix_playground, "~> 0.1.3"}
3+
{:phoenix_playground, "~> 0.1.5"}
44
])
55

66
defmodule DemoLive do
@@ -27,7 +27,7 @@ defmodule DemoLive do
2727
end
2828
end
2929

30-
Logger.configure(level: :info)
30+
Logger.configure(level: :warning)
3131
ExUnit.start()
3232

3333
defmodule DemoLiveTest do

examples/demo_plug.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env elixir
22
Mix.install([
3-
{:phoenix_playground, "~> 0.1.3"}
3+
{:phoenix_playground, "~> 0.1.5"}
44
])
55

66
PhoenixPlayground.start(

examples/demo_router.exs

100644100755
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
#!/usr/bin/env elixir
2+
Mix.install([
3+
{:phoenix_playground, "~> 0.1.5"}
4+
])
5+
16
defmodule CounterLive do
27
use Phoenix.LiveView
38

0 commit comments

Comments
 (0)