Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
nalundgaard committed Feb 5, 2016
0 parents commit f13d57a
Show file tree
Hide file tree
Showing 12 changed files with 2,339 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/deps
/ebin
.rebar
*.beam
erl_crash.dump

# vim
*.swp

# dailyzer
/.dialyzer_deps_plt
/dialyzer.output

# test
/.eunit
*.coverage.xml
*.coverdata

# ct
/logs

# developers copy
erl.config
13 changes: 13 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Copyright 2016 Nicholas Lundgaard <[email protected]>

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
38 changes: 38 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
REBAR=./rebar

.PHONY: all compile deps clean clean-deps test


all: compile


deps:
$(REBAR) get-deps


compile:
$(REBAR) compile


test: eunit


eunit:
ERL_AFLAGS="-config erl" $(REBAR) eunit skip_deps=true


dialyzer:
./dialyzer.sh


clean:
$(REBAR) clean
rm -rf ebin dialyzer.output .eunit


clean-deps:
$(REBAR) delete-deps
rm -rf deps .dialyzer_deps_plt


fresh: clean clean-deps deps compile test
Loading

0 comments on commit f13d57a

Please sign in to comment.