changes and hooks and junk

This commit is contained in:
John Bintz 2011-07-19 10:47:24 -04:00
parent 4c7e03dc57
commit 132d9355bd
3 changed files with 12 additions and 0 deletions

View File

@ -2,6 +2,7 @@
* File and line number information for failing specs * File and line number information for failing specs
* Try to build the runner if it's missing * Try to build the runner if it's missing
* Kill warnings and streamline includes
## 0.5.0 ## 0.5.0

5
dev-bin/hooks/pre-commit Executable file
View File

@ -0,0 +1,5 @@
#!/bin/bash
bundle exec rake
if [ $? -ne 0 ]; then exit 1; fi

6
dev-bin/install-hooks Executable file
View File

@ -0,0 +1,6 @@
#!/bin/bash
for i in $PWD/dev-bin/hooks/*; do
ln -sf $i .git/hooks/${i##*/}
done