1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-05 08:12:31 -04:00
httparrot/mix.exs
Kian-Meng, Ang 3b7d5d5eea Misc doc changes
Besides other documentation changes, this commit ensures the generated
HTML doc for HexDocs.pm will become the source of truth for this Elixir
library and leverage on latest features of ExDoc.
2021-08-30 23:08:45 +08:00

62 lines
1.2 KiB
Elixir

defmodule Httparrot.Mixfile do
use Mix.Project
@source_url "https://github.com/edgurgel/httparrot"
@version "1.3.0"
def project do
[
app: :httparrot,
version: @version,
elixir: "~> 1.7",
name: "HTTParrot",
package: package(),
deps: deps(),
docs: docs()
]
end
def application do
[
extra_applications: [:logger],
mod: {HTTParrot, []}
]
end
defp deps do
[
{:cowboy, "~> 2.8.0"},
{:exjsx, "~> 3.0 or ~> 4.0"},
{:con_cache, "~> 0.14.0"},
{:earmark, "~> 1.0", only: :dev},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:meck, "~> 0.8.13", only: :test}
]
end
defp package do
[
description: "https://github.com/edgurgel/httparrot",
maintainers: ["Eduardo Gurgel Pinho"],
licenses: ["MIT"],
links: %{
"Github" => @source_url,
"HTTParrot" => "http://httparrot.herokuapp.com",
"httpbin" => "http://httpbin.org"
}
]
end
defp docs do
[
extras: [
"LICENSE.md": [title: "License"],
"README.md": [title: "Overview"]
],
main: "readme",
source_url: @source_url,
source_ref: "v{@version}",
formatters: ["html"]
]
end
end