Packages

The first Elixir notifier to the Airbrake/Errbit. System-wide error reporting enriched with the information from Plug and Phoenix channels.

Current section

Files

Jump to
airbrake mix.exs
Raw

mix.exs

defmodule Airbrake.Mixfile do
use Mix.Project
def project do
[app: :airbrake,
version: "0.2.2",
elixir: "~> 1.2",
package: package,
description: """
An Elixir notifier to the Airbrake
""",
deps: deps]
end
def package do
[contributors: ["Roman Smirnov"],
maintainers: ["Roman Smirnov"],
licenses: ["MIT"],
links: %{github: "https://github.com/romul/airbrake-elixir"}]
end
def application do
[applications: []]
end
defp deps do
[{:httpoison, "~> 0.9"},
{:poison, "~> 2.0"},
{:ex_doc, ">= 0.0.0", only: :dev}]
end
end