Add some files to gitignore; add some scripts

This commit is contained in:
Christopher Eby 2011-10-25 04:35:02 -05:00
parent 42901f1866
commit 924205bbad
3 changed files with 14 additions and 1 deletions

7
.gitignore vendored
View File

@ -1,6 +1,11 @@
*.apk
bin
gen
*.swp
.*
build.xml
local.properties
*.ipr
*.iws
*.iml
out
doc

6
doc.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
sdk=`grep sdk.dir= local.properties`
sdk=${sdk#sdk.dir=}
target=`grep target= project.properties`
target=${target#target=}
exec javadoc -classpath "$sdk/platforms/$target/android.jar" -d doc -sourcepath src -private org.kreed.vanilla

2
generate-authors.sh Executable file
View File

@ -0,0 +1,2 @@
#!/bin/sh
git log --pretty="format:%an %ae" | sort | uniq -c | sort -n -r | sed -e 's/^ *[0-9]* //g'