Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Bugsnag.Mixfile do
use Mix.Project
def project do
[
app: :bugsnag,
version: "1.6.0",
elixir: "~> 1.3",
package: package(),
description: "An Elixir interface to the Bugsnag API.",
deps: deps()
]
end
def package do
[
contributors: ["Jared Norman", "Andrew Harvey", "Alex Grant", "Coburn Berry"],
maintainers: ["Alex Grant", "Coburn Berry"],
licenses: ["MIT"],
links: %{github: "https://github.com/jarednorman/bugsnag-elixir"}
]
end
def application do
[applications: [:httpoison, :logger], mod: {Bugsnag, []}]
end
defp deps do
[
{:httpoison, "~> 0.13 or ~> 1.0"},
{:poison, "~> 1.5 or ~> 2.0 or ~> 3.0"},
{:ex_doc, ">= 0.0.0", only: :dev},
{:meck, "~> 0.8.3", only: :test}
]
end
end