From 1d01a149b38be930d8649e97ff30cbf5030299be Mon Sep 17 00:00:00 2001 From: cbrnrd Date: Sun, 30 Sep 2018 17:46:47 -0400 Subject: [PATCH] Add some other additional files --- .github/ISSUE_TEMPLATE.md | 17 +++++++++++++++++ .gitignore | 9 +++++++++ .travis.yml | 7 +++++++ 3 files changed, 33 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE.md create mode 100644 .gitignore create mode 100644 .travis.yml 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