Current section

40 Versions

Jump to

Compare versions

3 files changed
+5 additions
-10 deletions
  @@ -10,12 +10,7 @@
10 10 [{<<"GitHub">>,<<"https://github.com/RaymondLoranger/islands_request">>}]}.
11 11 {<<"name">>,<<"islands_request">>}.
12 12 {<<"requirements">>,
13 - [[{<<"app">>,<<"islands_config">>},
14 - {<<"name">>,<<"islands_config">>},
15 - {<<"optional">>,false},
16 - {<<"repository">>,<<"hexpm">>},
17 - {<<"requirement">>,<<"~> 0.1">>}],
18 - [{<<"app">>,<<"islands_coord">>},
13 + [[{<<"app">>,<<"islands_coord">>},
19 14 {<<"name">>,<<"islands_coord">>},
20 15 {<<"optional">>,false},
21 16 {<<"repository">>,<<"hexpm">>},
  @@ -35,4 +30,4 @@
35 30 {<<"optional">>,false},
36 31 {<<"repository">>,<<"hexpm">>},
37 32 {<<"requirement">>,<<"~> 0.1">>}]]}.
38 - {<<"version">>,<<"0.1.15">>}.
33 + {<<"version">>,<<"0.1.16">>}.
  @@ -4,7 +4,8 @@
4 4 defmodule Islands.Request do
5 5 @moduledoc """
6 6 Defines the `request` type for the _Game of Islands_.
7 - \n##### #{Islands.Config.get(:book_ref)}
7 +
8 + ##### Based on the book [Functional Web Development](https://pragprog.com/book/lhelph/functional-web-development-with-elixir-otp-and-phoenix) by Lance Halvorsen.
8 9 """
9 10
10 11 alias Islands.{Coord, Island, Player, PlayerID}
  @@ -4,7 +4,7 @@ defmodule Islands.Request.MixProject do
4 4 def project do
5 5 [
6 6 app: :islands_request,
7 - version: "0.1.15",
7 + version: "0.1.16",
8 8 elixir: "~> 1.11",
9 9 start_permanent: Mix.env() == :prod,
10 10 name: "Islands Request",
  @@ -46,7 +46,6 @@ defmodule Islands.Request.MixProject do
46 46 [
47 47 {:dialyxir, "~> 1.0", only: :dev, runtime: false},
48 48 {:ex_doc, "~> 0.22", only: :dev, runtime: false},
49 - {:islands_config, "~> 0.1", runtime: false},
50 49 {:islands_coord, "~> 0.1"},
51 50 {:islands_island, "~> 0.1"},
52 51 {:islands_player, "~> 0.1"},