Skip to content

Instantly share code, notes, and snippets.

@JesseHerrick
Forked from dinge/gist:6983008
Last active August 29, 2015 14:04
Show Gist options
  • Save JesseHerrick/7170b5d1fdedb6d70364 to your computer and use it in GitHub Desktop.
Save JesseHerrick/7170b5d1fdedb6d70364 to your computer and use it in GitHub Desktop.
Call AppleScript from Ruby.
def osascript(script)
system 'osascript', *script.split(/\n/).map { |line| ['-e', line] }.flatten
end
osascript <<-END
tell application "Finder"
display dialog "Hello"
end tell
END
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment