Created
February 7, 2014 18:11
-
-
Save jfreeze/8868387 to your computer and use it in GitHub Desktop.
mix.exs for mix docs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule Curl.Mixfile do | |
use Mix.Project | |
def project do | |
[ app: :curl, | |
version: "0.0.1", | |
elixir: "~> 0.12.2", | |
name: "Curl", | |
source_url: "http:localhost:4000", deps: deps ] | |
end | |
# Configuration for the OTP application | |
def application do | |
[] | |
end | |
defp deps do | |
[ | |
{ :ex_doc, github: "elixir-lang/ex_doc", ref: "f9c1d88acf8211f41c786750d47e9459b885241f" } | |
] | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment