Skip to content
This repository was archived by the owner on Jun 24, 2018. It is now read-only.

Commit 8e471d3

Browse files
committed
Add apex (for just in case :-))
1 parent 5f9734e commit 8e471d3

File tree

3 files changed

+23
-0
lines changed

3 files changed

+23
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
deps/*
2+
_build/*

mix.exs

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
defmodule Metaprogramming.Mixfile do
2+
use Mix.Project
3+
4+
def project do
5+
[app: :metaprogramming,
6+
version: "0.0.1",
7+
elixir: "~> 1.2",
8+
build_embedded: Mix.env == :prod,
9+
start_permanent: Mix.env == :prod,
10+
deps: deps]
11+
end
12+
13+
def application do
14+
[applications: [:logger]]
15+
end
16+
17+
defp deps do
18+
[{:apex, "~> 0.4.0"}]
19+
end
20+
end

mix.lock

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
%{"apex": {:hex, :apex, "0.4.0"}}

0 commit comments

Comments
 (0)