Initial mix new

This commit is contained in:
Mikko Ahlroth 2013-06-13 20:38:30 +03:00
parent 817e0d4ef9
commit e6edcec903
6 changed files with 38 additions and 0 deletions

3
.gitignore vendored
View file

@ -1,2 +1,5 @@
nulform.sublime-project
nulform.sublime-workspace
/ebin
/deps
erl_crash.dump

3
README.md Normal file
View file

@ -0,0 +1,3 @@
# Nulform
** TODO: Add description **

2
lib/nulform.ex Normal file
View file

@ -0,0 +1,2 @@
defmodule Nulform do
end

20
mix.exs Normal file
View file

@ -0,0 +1,20 @@
defmodule Nulform.Mixfile do
use Mix.Project
def project do
[ app: :nulform,
version: "0.0.1",
deps: deps ]
end
# Configuration for the OTP application
def application do
[]
end
# Returns the list of dependencies in the format:
# { :foobar, "0.1", git: "https://github.com/elixir-lang/foobar.git" }
defp deps do
[]
end
end

9
test/nulform_test.exs Normal file
View file

@ -0,0 +1,9 @@
Code.require_file "test_helper.exs", __DIR__
defmodule NulformTest do
use ExUnit.Case
test "the truth" do
assert(true)
end
end

1
test/test_helper.exs Normal file
View file

@ -0,0 +1 @@
ExUnit.start