add missing 'rake emulator' task

This commit is contained in:
Laurent Sansonetti
2014-12-10 23:38:53 +01:00
parent 80bb4c2d9f
commit fb9dee1e5e

View File

@@ -579,11 +579,14 @@ namespace 'device' do
end
end
desc "Build the app then run it in the emulator"
task :emulator => ['build', 'emulator:install', 'emulator:start']
desc "Build the app then run it in the device"
task :device => ['build', 'device:install', 'device:start']
desc "Build the app then run it in the emulator"
task :default => 'emulator:start'
desc "Same as 'rake emulator'"
task :default => :emulator
desc "Same as 'spec:emulator'"
task :spec => 'spec:emulator'