Tinder fixed after Campfire update
A week or so ago, 37 Signals released an update to Campfire that broke the ability to listen in a room with Tinder. Version 0.1.5 of Tinder has been released, which fixes the Room#listen method.
A week or so ago, 37 Signals released an update to Campfire that broke the ability to listen in a room with Tinder. Version 0.1.5 of Tinder has been released, which fixes the Room#listen method.
My name is Brandon Keepers. I like to build things, usually in Ruby or JavaScript. I work at GitHub and live in Holland, MI.
1 Comment
Hey, I needed a way to read the topic as well as assign it. This seems ok well:
module Tinder
class Room
def topic
join
h = (Hpricot(@room.body)/“#topic”)
h.inner_text.strip if h
end
end
end
Post a Comment