Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Bamboo.Mixfile do
use Mix.Project
@project_url "https://github.com/paulcsmith/bamboo"
def project do
[app: :bamboo,
version: "0.3.2",
elixir: "~> 1.2",
source_url: @project_url,
homepage_url: @project_url,
compilers: compilers(Mix.env),
elixirc_paths: elixirc_paths(Mix.env),
description: "Elixir email for people that love piping. Comes with Phoenix support " <>
" and adapters for Mandrill, Sendgrid or anything you want.",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
package: package,
docs: [main: "readme", extras: ["README.md"]],
deps: deps]
end
defp compilers(:test), do: [:phoenix] ++ Mix.compilers
defp compilers(_), do: Mix.compilers
# Configuration for the OTP application
#
# Type "mix help compile.app" for more information
def application do
[
applications: [:logger, :httpoison, :poison],
mod: {Bamboo, []}
]
end
defp package do
[
maintainers: ["Paul Smith"],
licenses: ["MIT"],
links: %{"GitHub" => @project_url}
]
end
defp elixirc_paths(:test), do: elixirc_paths ++ ["test/support"]
defp elixirc_paths(_), do: elixirc_paths
defp elixirc_paths, do: ["lib"]
defp deps do
[
{:plug, "~> 1.0", only: [:test]},
{:cowboy, "~> 1.0", only: [:test]},
{:phoenix, "~> 1.1", only: [:test]},
{:phoenix_html, "~> 2.2", only: [:test]},
{:ex_doc, "~> 0.9", only: :dev},
{:earmark, ">= 0.0.0", only: :dev},
{:httpoison, "~> 0.8"},
{:poison, ">= 1.5.0"}
]
end
end