Current section
29 Versions
Jump to
Current section
29 Versions
Compare versions
3
files changed
+5
additions
-10
deletions
| @@ -9,10 +9,5 @@ | |
| 9 9 | {<<"links">>, |
| 10 10 | [{<<"GitHub">>,<<"https://github.com/RaymondLoranger/islands_player_id">>}]}. |
| 11 11 | {<<"name">>,<<"islands_player_id">>}. |
| 12 | - {<<"requirements">>, |
| 13 | - [[{<<"app">>,<<"islands_config">>}, |
| 14 | - {<<"name">>,<<"islands_config">>}, |
| 15 | - {<<"optional">>,false}, |
| 16 | - {<<"repository">>,<<"hexpm">>}, |
| 17 | - {<<"requirement">>,<<"~> 0.1">>}]]}. |
| 18 | - {<<"version">>,<<"0.1.6">>}. |
| 12 | + {<<"requirements">>,[]}. |
| 13 | + {<<"version">>,<<"0.1.7">>}. |
| @@ -4,7 +4,8 @@ | |
| 4 4 | defmodule Islands.PlayerID do |
| 5 5 | @moduledoc """ |
| 6 6 | Defines the `player ID` 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 | @type t :: :player1 | :player2 |
| @@ -4,7 +4,7 @@ defmodule Islands.PlayerId.MixProject do | |
| 4 4 | def project do |
| 5 5 | [ |
| 6 6 | app: :islands_player_id, |
| 7 | - version: "0.1.6", |
| 7 | + version: "0.1.7", |
| 8 8 | elixir: "~> 1.11", |
| 9 9 | start_permanent: Mix.env() == :prod, |
| 10 10 | name: "Islands Player ID", |
| @@ -46,7 +46,6 @@ defmodule Islands.PlayerId.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 | {:mix_tasks, |
| 51 50 | github: "RaymondLoranger/mix_tasks", only: :dev, runtime: false} |
| 52 51 | ] |