Adium

Profile: Richard Bronosky (RichardBronosky)

AIM
Website http://bronosky.com
Comment Count 1 comments
0 xtras

Latest comments

# by RichardBronosky on 12/01/08 at 13:29:08

A few problems...

I didn't get any status updates so I looked into the Apple Script. It seems to just call the rb, so I decided to do that myself to see the stdout. I got:
[code]
~/Library/Application Support/Adium 2.0/Scripts/TwitterIt$ ruby ./twitterit.rb
Updating.
Status: Blah Blah
Created at: Sun Nov 30 18:45:50 UTC 2008
ERROR: Unknown property, element or command: 'message'
At line: /Library/Ruby/Gems/1.8/gems/rb-appscript-0.5.1/lib/appscript.rb:676:in `method_missing'./twitterit.rb:114:in `status'./twitterit.rb:111:in `each'./twitterit.rb:111:in `status'./twitterit.rb:138
^C./twitterit.rb:169:in `sleep': Interrupt
from ./twitterit.rb:169
[/code]

I poked around at it in rdebug and thought maybe you should change line 114 like so:
[code]
- @status = account.status.message.get
=====
+ @status = account.status_message.get
[/code]