mirror of
https://github.com/edgurgel/httparrot
synced 2025-04-05 00:02:41 -04:00
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.
62 lines
1.2 KiB
Elixir
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
|