Skip to content

Instantly share code, notes, and snippets.

@zuk
Created February 15, 2012 15:08
Show Gist options
  • Select an option

  • Save zuk/1836519 to your computer and use it in GitHub Desktop.

Select an option

Save zuk/1836519 to your computer and use it in GitHub Desktop.
event :do_magic_stuff? do
f = File.open('myfile.txt','r')
f.each_line do |line|
msg = Blather::Stanza::Message.new
msg.to = "somerooom@conference.aardvark.encorelab.org"
msg.type = :groupchat
msg.body = line
client.write(msg)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment