Sha256: b128fb78394ce41e4b792cc0c9774b78f492b8d901ae690466a4ab269f472734
Contents?: true
Size: 1.76 KB
Versions: 4
Compression:
Stored size: 1.76 KB
Contents
= Tinder - get the Campfire started Tinder is a library for interfacing with Campfire, the chat application from 37Signals, allowing you to programmatically manage and speak/listen in chat rooms. As of December 2009, thanks to initial work from Joshua Peek at 37signals, it now makes use of the official Campfire API (described at: http://developer.37signals.com/campfire/). == Usage campfire = Tinder::Campfire.new 'mysubdomain', :token => '546884b3d8fee4d80665g561caf7h9f3ea7b999e' # or you can still use username/password and Tinder will look up your token # campfire = Tinder::Campfire.new 'mysubdomain', :username => 'user', :password => 'pass' room = campfire.rooms.first room.rename 'New Room Names' room.speak 'Hello world!' room.paste "my pasted\ncode" room = campfire.find_room_by_guest_hash 'abc123', 'John Doe' room.speak 'Hello world!' See the RDoc for more details. == Installation Tinder can be installed as a gem or a Rails plugin: gem install tinder script/plugin install git://github.com/collectiveidea/tinder.git == How to contribute If you find what looks like a bug: 1. Check the GitHub issue tracker to see if anyone else has had the same issue. http://github.com/collectiveidea/tinder/issues/ 2. If you don't see anything, create an issue with information on how to reproduce it. If you want to contribute an enhancement or a fix: 1. Fork the project on github. http://github.com/collectiveidea/tinder 2. Make your changes with tests. 3. Commit the changes without making changes to the Rakefile, VERSION, or any other files that aren't related to your enhancement or fix 4. Send a pull request. == ToDo * Tests! (unit and remote) * Marshmallow-style integration scripts for exception notification and continuous integration
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
cerberus-0.8.0 | lib/vendor/tinder/README.txt |
cerberus-0.7.9 | lib/vendor/tinder/README.txt |
cerberus-0.7.8 | lib/vendor/tinder/README.txt |
cerberus-0.7.7 | lib/vendor/tinder/README.txt |