Initial commit

This commit is contained in:
Uku Taht
2015-12-15 17:53:27 +00:00
commit ae6b5a7f19
10 changed files with 168 additions and 0 deletions

18
mix.exs Normal file
View File

@@ -0,0 +1,18 @@
defmodule Koans.Mixfile do
use Mix.Project
def project do
[app: :elixir_koans,
version: "0.0.1",
elixir: "~> 1.1",
deps: deps]
end
def application do
[applications: [:logger]]
end
defp deps do
[{:exfswatch, "~> 0.1.0"}]
end
end