Skip to content

Commit

Permalink
Added a Rake task for cleaning up all generated source code and binar…
Browse files Browse the repository at this point in the history
…ies (very useful for troubleshooting).
  • Loading branch information
artob committed Sep 24, 2010
1 parent 0b425a8 commit 13512da
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ task :emulator do
sh "emulator -avd #{ANDROID_DEVICE}"
end

desc "Deletes all generated source code and binaries"
task :clean do
sh "rm -rf bin/* gen/*"
end

desc "Builds a debug release of the application."
task :build do
sh "ant debug"
Expand Down

0 comments on commit 13512da

Please sign in to comment.