diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 0000000..e4303c5 --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,17 @@ + + +**Description of the issue**: + +**Expected behavior**: + +**Steps to reproduce**: + +**Output of `crystal env`**: + +**OS Information**: + + +**Additional Information**: + + + diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ec00989 --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +/docs/ +/lib/ +/bin/gpm +/.shards/ +*.dwarf + +# Libraries don't need dependency lock +# Dependencies will be locked in application that uses them +/shard.lock diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..9c5435f --- /dev/null +++ b/.travis.yml @@ -0,0 +1,7 @@ +language: crystal + +install: + - make deps +script: + - crystal env + - make build