Skip to content

Commit 6f8c745

Browse files
authored
Merge pull request #17 from agevio/master
Fixes Elixir 1.4 warnings
2 parents 9c25ba4 + 80613b0 commit 6f8c745

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

mix.exs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,21 @@ defmodule ESTree.Mixfile do
55
[app: :estree,
66
version: "2.5.0",
77
elixir: "~> 1.0",
8-
deps: deps,
9-
description: description,
10-
package: package,
8+
deps: deps(),
9+
description: description(),
10+
package: package(),
1111
source_url: "https://github.com/bryanjos/elixir-estree"]
1212
end
1313

1414
def application do
15-
[applications: [:logger]]
15+
[extra_applications: [:logger]]
1616
end
1717

1818
defp deps do
1919
[
2020
{:ex_doc, "~> 0.14", only: :dev},
2121
{:dialyze, "~> 0.2", only: :dev},
22-
{:shouldi, only: :test}
22+
{:shouldi, "~> 0.3.2", only: :test}
2323
]
2424
end
2525

mix.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
%{"dialyze": {:hex, :dialyze, "0.2.1", "9fb71767f96649020d769db7cbd7290059daff23707d6e851e206b1fdfa92f9d", [:mix], []},
22
"earmark": {:hex, :earmark, "1.0.3", "89bdbaf2aca8bbb5c97d8b3b55c5dd0cff517ecc78d417e87f1d0982e514557b", [:mix], []},
33
"ex_doc": {:hex, :ex_doc, "0.14.5", "c0433c8117e948404d93ca69411dd575ec6be39b47802e81ca8d91017a0cf83c", [:mix], [{:earmark, "~> 1.0", [hex: :earmark, optional: false]}]},
4-
"shouldi": {:hex, :shouldi, "0.3.0", "ae3fb3cec3328057377a0aa750aa1bb9f8b321ba054e1e2c7211512c383fb6ff", [:mix], []}}
4+
"shouldi": {:hex, :shouldi, "0.3.2", "971f614669b5f37c03507ba643bb8e59aa165ac50ca66d726c9db53be255e440", [:mix], []}}

test/test_helper.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
ExUnit.start(formatters: [ShouldI.CLIFormatter])
1+
ExUnit.start()
22

33
Code.require_file "support.ex", __DIR__

0 commit comments

Comments
 (0)