Skip to content

Instantly share code, notes, and snippets.

@inohiro
inohiro / gist:1102460
Created July 24, 2011 09:52
script that find recently chat topics, and p that name(But It's not work :(
require 'rubygems'
require 'skype'
Skype.init 'sample_application'
Skype.start_messageloop
chats = Skype::searchRecentChats
chats.each do |chat|
p chat.getName
end