Skip to content

Instantly share code, notes, and snippets.

@johnhamelink
Created February 19, 2016 15:54
Show Gist options
  • Select an option

  • Save johnhamelink/534033e74fa250e1d195 to your computer and use it in GitHub Desktop.

Select an option

Save johnhamelink/534033e74fa250e1d195 to your computer and use it in GitHub Desktop.
defmodule Slack.Mixfile do
use Mix.Project
def project do
[app: :slack,
version: "0.0.3",
build_path: "../../_build",
config_path: "../../config/config.exs",
deps_path: "../../deps",
lockfile: "../../mix.lock",
elixir: "~> 1.2",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps]
end
def application do
[
applications: [
:db, :ecto, :httpoison,
:websocket_client, :inflex,
:slacker, :porcelain
],
mod: {Slack, []}
]
end
defp deps do
[
{:db, in_umbrella: true},
{:ecto, "~> 1.1.2", override: true},
{:httpoison, "~> 0.6", override: true},
{:websocket_client, github: "jeremyong/websocket_client"},
{:inflex, "~> 1.5.0", override: true},
{:slacker, "~> 0.0.1"},
{:porcelain, "~> 2.0"}
]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment