Configure tools

This commit is contained in:
Anton Vakhrushev 2019-08-09 16:48:34 +03:00
parent 0533f0f1cf
commit 224748cb5a
5 changed files with 9 additions and 6 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
/.crystal/
/docs/
/lib/
/bin/

7
Makefile Normal file
View File

@ -0,0 +1,7 @@
.PHONY: format
format:
./cr tool format ./src ./spec
.PHONY: spec
spec:
./cr spec --warnings all --error-on-warnings

View File

@ -2,7 +2,7 @@ name: village
version: 0.1.0
authors:
- your-name-here <your-email-here>
- Anton Vakhrushev <anwinged@ya.ru>
targets:
village:

View File

@ -2,8 +2,4 @@ require "./spec_helper"
describe Village do
# TODO: Write tests
it "works" do
false.should eq(true)
end
end

View File

@ -1,4 +1,3 @@
# TODO: Write documentation for `Village`
module Village
VERSION = "0.1.0"