Files
elixir-koans/mix.exs
Jeff Gandt 3742caf1b4 Convert from the retired ExFSWatch to FileSystem
Initial working commit. Use the new GenServer only API.
2017-12-13 09:39:54 -05:00

24 lines
469 B
Elixir

defmodule Koans.Mixfile do
use Mix.Project
def project do
[app: :elixir_koans,
version: "0.0.1",
elixir: ">= 1.3.0 and < 2.0.0",
elixirc_paths: elixirc_path(Mix.env),
deps: deps()]
end
def application do
[mod: {ElixirKoans, []},
applications: [:file_system, :logger]]
end
defp deps do
[{:file_system, "~> 0.2"}]
end
defp elixirc_path(:test), do: ["lib/", "test/support"]
defp elixirc_path(_), do: ["lib/"]
end