Skip to content

Commit 461474d

Browse files
author
Bernard Pietraga
committed
Add release 0.0.1
1 parent d9485d0 commit 461474d

File tree

4 files changed

+16
-2
lines changed

4 files changed

+16
-2
lines changed

chapter_18/sequence/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
# Ignore .fetch files in case you like to edit your project deps locally.
1414
/.fetch
1515

16+
# Where releases are stored.
17+
/rel
18+
1619
# If the VM crashes, it generates a dump, let's ignore it too.
1720
erl_crash.dump
1821

chapter_18/sequence/lib/sequence/server.ex

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
defmodule Sequence.Server do
22
use GenServer
33

4+
@vsn "0"
5+
46
# API
57
def start_link(stash_pid), do:
68
GenServer.start_link(__MODULE__, stash_pid, name: __MODULE__)

chapter_18/sequence/mix.exs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ defmodule Sequence.Mixfile do
33

44
def project do
55
[app: :sequence,
6-
version: "0.1.0",
6+
version: "0.0.1",
77
elixir: "~> 1.4",
88
build_embedded: Mix.env == :prod,
99
start_permanent: Mix.env == :prod,
@@ -32,6 +32,8 @@ defmodule Sequence.Mixfile do
3232
#
3333
# Type "mix help deps" for more examples and options
3434
defp deps do
35-
[]
35+
[
36+
{:exrm, "~> 1.0.0-rc7"}
37+
]
3638
end
3739
end

chapter_18/sequence/mix.lock

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
%{"bbmustache": {:hex, :bbmustache, "1.0.4", "7ba94f971c5afd7b6617918a4bb74705e36cab36eb84b19b6a1b7ee06427aa38", [:rebar], []},
2+
"cf": {:hex, :cf, "0.2.2", "7f2913fff90abcabd0f489896cfeb0b0674f6c8df6c10b17a83175448029896c", [:rebar3], []},
3+
"erlware_commons": {:hex, :erlware_commons, "0.22.0", "051bed79a34e66678c1cbeebc7b66360c827d081a0c5e2528878011e31ddcdca", [:rebar3], [{:cf, "0.2.2", [hex: :cf, optional: false]}]},
4+
"exrm": {:hex, :exrm, "1.0.8", "5aa8990cdfe300282828b02cefdc339e235f7916388ce99f9a1f926a9271a45d", [:mix], [{:relx, "~> 3.5", [hex: :relx, optional: false]}]},
5+
"getopt": {:hex, :getopt, "0.8.2", "b17556db683000ba50370b16c0619df1337e7af7ecbf7d64fbf8d1d6bce3109b", [:rebar], []},
6+
"providers": {:hex, :providers, "1.6.0", "db0e2f9043ae60c0155205fcd238d68516331d0e5146155e33d1e79dc452964a", [:rebar3], [{:getopt, "0.8.2", [hex: :getopt, optional: false]}]},
7+
"relx": {:hex, :relx, "3.22.2", "aee2ef6e9ac6d21d6661133b7a0be6e81424de9cdca0012fc008bc677297c469", [:rebar3], [{:bbmustache, "1.0.4", [hex: :bbmustache, optional: false]}, {:cf, "0.2.2", [hex: :cf, optional: false]}, {:erlware_commons, "0.22.0", [hex: :erlware_commons, optional: false]}, {:getopt, "0.8.2", [hex: :getopt, optional: false]}, {:providers, "1.6.0", [hex: :providers, optional: false]}]}}

0 commit comments

Comments
 (0)