An open API service indexing awesome lists of open source software.

https://github.com/foca/transporter-campfire

Deliver messages to your Campfire room using Transporter
https://github.com/foca/transporter-campfire

Last synced: 11 months ago
JSON representation

Deliver messages to your Campfire room using Transporter

Awesome Lists containing this project

README

          

= Transporter::Campfire

Notify your Campfire from Transporter

See Transporter[http://github.com/foca/transporter] for a description of the
library.

== How to use

require "transporter/campfire"

Transporter.deliver(
:message => { :short => "..." },
:using => {
:campfire => {
:subdomain => "myaccount", # account/subdomain your campfire uses
:ssl => true, # either true or false (optional)
:proxy => "proxy url", # see Tinder's API docs (optional)
:login => "your email",
:password => "your password",
:room => "room name"
}
}
)

== Install

gem install transporter-campfire

== Credits

Author:: Nicolás Sanguinetti (foca[http://github.com/foca])
License:: MIT (see LICENSE file)