Packages

Elixir wrapper for the Untappd API

Current section

Files

Jump to
untappd mix.exs
Raw

mix.exs

defmodule Untappd.Mixfile do
use Mix.Project
@description """
Elixir wrapper for the Untappd API
"""
def project do
[app: :untappd,
version: "0.0.1",
elixir: "~> 1.2",
name: "untappd",
description: @description,
package: package,
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
test_coverage: [tool: ExCoveralls],
preferred_cli_env: ["coveralls": :test, "coveralls.detail": :test, "coveralls.post": :test],
deps: deps]
end
# Configuration for the OTP application
#
# Type "mix help compile.app" for more information
def application do
[applications: [:httpoison, :exjsx]]
end
defp deps do
[ {:httpoison, "~> 0.8.1"},
{:exjsx, "~> 3.2"},
{:earmark, "~> 0.2.1", only: :docs},
{:ex_doc, "~> 0.11.4", only: :docs},
{:inch_ex, "~> 0.5", only: :docs},
{:excoveralls, "~> 0.4", only: :test},
{:exvcr, "~> 0.6", only: :test},
{ :meck, "~> 0.8", only: :test } ]
end
defp package do
[ maintainers: ["Nicholas Mitchell"],
licenses: ["MIT"],
links: %{ "Github" => "https://github.com/nimi/untappd" } ]
end
end