Ruby and Mac scripting (rubyosa)

Nov 22, 2006 17:16

Check out this: "RubyOSA: The End of AppleScript?" http://www.clarkware.com/cgi/blosxom/2006/10/24#RubyOSA
which links to: "Rake Shame" http://codefluency.com/2006/10/23/rake-shame
and from which I scrawled song.rb:

require '~/Work/rubyosa/osa.bundle'
require '~/Work/rubyosa/rbosa.rb'

itunes = OSA.app('itunes')
track = itunes.current_track

p track.artist + " - " + track.name
With which and a dash of alias song="ruby ~/Work/song.rb" I now have a song command for posting to LJ:
song | pbcopy ... complete with Unicode escapes that no one likes, apparently...
and this with some inevitability leads to:

tunes = OSA.app('itunes')
ducktroller = OSA.app('adium').adium_controller
ducktroller.my_status_message= tunes.current_track.artist + " - " + tunes.current_track.name
.. which I'll shortly thrown in cron..

scripting, rubyosa, mac, ruby

Previous post Next post
Up