Current section

Files

Jump to
balanced mix.exs
Raw

mix.exs

Code.ensure_loaded?(Hex) and Hex.start
defmodule Balanced.Mixfile do
use Mix.Project
def project do
[ app: :balanced,
version: "2.0.0",
elixir: "~> 0.15.1",
deps: deps,
description: "Balanced API for Elixir",
package: package,
source_url: "https://github.com/bryanjos/balanced-elixir" ]
end
def application do
[applications: [:httpotion, :logger]]
end
defp deps do
[
{:httpotion, github: "myfreeweb/httpotion"},
{:jsex, "~> 2.0.0"}
]
end
defp package do
[ # These are the default files included in the package
files: ["lib", "mix.exs", "README*", "readme*", "LICENSE*", "license*"],
contributors: ["Bryan Joseph"],
licenses: ["MIT"],
links: [ { "GitHub", "https://github.com/bryanjos/balanced-elixir" }]
]
end
end