Skip to content

Instantly share code, notes, and snippets.

@mixflame
Created October 28, 2012 10:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mixflame/3968267 to your computer and use it in GitHub Desktop.
Save mixflame/3968267 to your computer and use it in GitHub Desktop.
Useful Rakefile for Ruboto
# hope you're using HAXM
task :boot do
puts "booting"
`emulator -avd Android_4.1`
end
task :off do
puts "shutdown"
`taskkill /IM emulator-x86.exe`
end
task :recompile do
puts "recompile"
`rake install:clean start`
end
task :transfer do
puts 'sending scripts'
`rake update_scripts`
end
task :subl do
`sublime_text .`
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment