Skip to content

Commit

Permalink
Updates mix.exs
Browse files Browse the repository at this point in the history
  • Loading branch information
yrashk committed Jul 30, 2012
1 parent b2f701f commit 6a32e56
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
defmodule Mix.Project do
defmodule Lagerex.MixFile do
use Mix.Project

def project do
[project: "Lagerex", version: "0.1",
def project do
[app: :lagerex,
project: "Lagerex", version: "0.1",
deps: deps,
compile_options: [ignore_module_conflict: true, docs: true]]
end
end

def application, do: []
def application, do: []

defp deps do
[{:lager, %r(.*), git: "https://github.com/basho/lager"}]
end

end

0 comments on commit 6a32e56

Please sign in to comment.