summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Schoenfelder <paulschoenfelder@gmail.com>2017-04-19 11:25:46 -0500
committerGitHub <noreply@github.com>2017-04-19 11:25:46 -0500
commit7115aa12f98dbe7d7f68278f37a4ce250871f3b3 (patch)
tree07b2e89fc2b0a573513c357185a54ce86af1b24f
parentMerge pull request #61 from w1gz/avoid-latin1-charset (diff)
parentFix lint errors with mix (diff)
Merge pull request #63 from shymega/fix-lint-errors
Fix lint errors with mix
-rw-r--r--mix.exs6
1 files changed, 3 insertions, 3 deletions
diff --git a/mix.exs b/mix.exs
index e5a132f..4c1bea3 100644
--- a/mix.exs
+++ b/mix.exs
@@ -2,14 +2,14 @@ defmodule ExIrc.Mixfile do
use Mix.Project
def project do
- [ app: :exirc,
+ [app: :exirc,
version: "1.0.0",
elixir: "~> 1.0",
description: "An IRC client library for Elixir.",
- package: package,
+ package: package(),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: ["coveralls": :test, "coveralls.detail": :test, "coveralls.html": :test, "coveralls.post": :test],
- deps: deps ]
+ deps: deps()]
end
# Configuration for the OTP application