Skip to content

Instantly share code, notes, and snippets.

@yurikoval
Created May 22, 2013 02:21
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save yurikoval/5624834 to your computer and use it in GitHub Desktop.
Save yurikoval/5624834 to your computer and use it in GitHub Desktop.
Rake task to Reset Content and Settings of iOS Simulator
# encoding: UTF-8
namespace :simulator do
desc "Call 'Reset Content and Settings' in iOS Simulator menu"
task :reset do
%x{
osascript <<-END
tell application "iPhone Simulator" to activate
tell application "System Events"
tell process "iPhone Simulator"
tell menu bar 1
tell menu bar item "iOS Simulator"
tell menu "iOS Simulator" to click menu item "Reset Content and Settings…"
end tell
end tell
tell window 1 to click button "Reset"
end tell
end tell
END
}
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment