Current section
Files
Jump to
Current section
Files
bureaucrat
mix.exs
mix.exs
defmodule Bureaucrat.Mixfile do
use Mix.Project
def project do
[app: :bureaucrat,
version: "0.2.3",
elixir: "~> 1.6.1",
description: "Generate Phoenix API documentation from tests",
deps: deps(),
package: package()]
end
# Configuration for the OTP application
#
# Type `mix help compile.app` for more information
def application do
[registered: [Bureaucrat.Recorder],
mod: {Bureaucrat, []},
env: [
writer: Bureaucrat.MarkdownWriter,
default_path: "web/controllers/README.md",
paths: [],
titles: [],
env_var: "DOC"
]]
end
defp deps do
[
{:plug, ">= 1.0.0"},
{:poison, "~> 1.5 or ~> 2.0 or ~> 3.0"},
{:phoenix, ">= 1.2.0", optional: true},
{:ex_doc, ">= 0.0.0", only: :dev},
{:inflex, ">= 1.10.0"}
]
end
defp package do
[
files: ~w(lib mix.exs README.md UNLICENSE),
maintainers: ["Roman Kuznietsov", "Opak Alex", "Arno Dirlam"],
licenses: ["Unlicense"],
links: %{"GitHub" => "https://github.com/api-hogs/bureaucrat"}
]
end
end