Configure tools
This commit is contained in:
parent
0533f0f1cf
commit
224748cb5a
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,3 +1,4 @@
|
|||||||
|
/.crystal/
|
||||||
/docs/
|
/docs/
|
||||||
/lib/
|
/lib/
|
||||||
/bin/
|
/bin/
|
||||||
|
7
Makefile
Normal file
7
Makefile
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
.PHONY: format
|
||||||
|
format:
|
||||||
|
./cr tool format ./src ./spec
|
||||||
|
|
||||||
|
.PHONY: spec
|
||||||
|
spec:
|
||||||
|
./cr spec --warnings all --error-on-warnings
|
@ -2,7 +2,7 @@ name: village
|
|||||||
version: 0.1.0
|
version: 0.1.0
|
||||||
|
|
||||||
authors:
|
authors:
|
||||||
- your-name-here <your-email-here>
|
- Anton Vakhrushev <anwinged@ya.ru>
|
||||||
|
|
||||||
targets:
|
targets:
|
||||||
village:
|
village:
|
||||||
|
@ -2,8 +2,4 @@ require "./spec_helper"
|
|||||||
|
|
||||||
describe Village do
|
describe Village do
|
||||||
# TODO: Write tests
|
# TODO: Write tests
|
||||||
|
|
||||||
it "works" do
|
|
||||||
false.should eq(true)
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
# TODO: Write documentation for `Village`
|
|
||||||
module Village
|
module Village
|
||||||
VERSION = "0.1.0"
|
VERSION = "0.1.0"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user