https://github.com/manfred/broach
Ruby implementation of 37signals' Campfire API.
https://github.com/manfred/broach
Last synced: 9 months ago
JSON representation
Ruby implementation of 37signals' Campfire API.
- Host: GitHub
- URL: https://github.com/manfred/broach
- Owner: Manfred
- License: mit
- Created: 2009-12-15T14:57:05.000Z (over 16 years ago)
- Default Branch: master
- Last Pushed: 2013-09-26T21:36:16.000Z (almost 13 years ago)
- Last Synced: 2025-04-30T18:34:41.559Z (about 1 year ago)
- Language: Ruby
- Homepage:
- Size: 160 KB
- Stars: 33
- Watchers: 2
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Broach
Broach is an implementation of the Campfire API. It was written to do
incidental notifications from an application. For instance a Subversion
post-commit hook or a deploy script.
You can find more information about the API on
[the Campfire developer site](http://developer.37signals.com/campfire).
## Say something real quick
The fastest way to say something in a Campfire room is to set the
authentication credentials and use the speak class method.
Broach.settings = {
'account' => 'myaccount',
'token' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
'use_ssl' => true
}
Broach.speak('Office', 'Manfred just deployed a new version of the weblog (http://www.fngtps.com)')
## Install
The easiest way to install Broach and its dependencies is to install the gem.
$ gem install broach
## Contributors
* Eloy Duran
* Ilya Sabanin
* Todd Eichel
* Anton Mironov
* Rich Meyers