diff --git a/mix.exs b/mix.exs index af599c3..132a969 100644 --- a/mix.exs +++ b/mix.exs @@ -1,24 +1,26 @@ defmodule ExIrc.Mixfile do use Mix.Project def project do [ app: :exirc, version: "0.1.0", - elixir: "~> 0.11.2", + name: "ExIrc", + source_url: "https://github.com/bitwalker/exirc", + homepage_url: "http://bitwalker.github.io/exirc", deps: deps ] end # Configuration for the OTP application def application do [mod: {ExIrc.App, []}] end # Returns the list of dependencies in the format: # { :foobar, git: "https://github.com/elixir-lang/foobar.git", tag: "0.1" } # # To specify particular versions, regardless of the tag, do: # { :barbat, "~> 0.1", github: "elixir-lang/barbat.git" } defp deps do - [] + [{:ex_doc, github: "elixir-lang/ex_doc"}] end end diff --git a/mix.lock b/mix.lock new file mode 100644 index 0000000..23e3f44 --- /dev/null +++ b/mix.lock @@ -0,0 +1 @@ +[ "ex_doc": {:git, "git://github.com/elixir-lang/ex_doc.git", "2e0716ac0450a029dce2a30c871b50d98baf4aee", []} ]