Current section
Files
Jump to
Current section
Files
pretty_print_formatter
mix.exs
mix.exs
defmodule PrettyPrintFormatter.Mixfile do
use Mix.Project
def project do
[
app: :pretty_print_formatter,
version: "0.1.2",
elixir: "~> 1.5",
start_permanent: Mix.env == :prod,
deps: deps(),
description: description(),
package: package(),
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev},
]
end
defp package do
[
files: ["lib", "src", "mix.exs", "README.md", "LICENSE"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/san650/pretty_print_formatter"},
maintainers: ["Santiago Ferreira", "Juan Azambuja"],
name: :pretty_print_formatter,
]
end
defp description do
"""
Library for coloring the output of the logger. Right now it colorizes Ecto SQL statements and Phoenix's request id metadata.
"""
end
end