Created
November 22, 2009 19:32
-
-
Save kennethkalmer/240685 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Change this file to be a wrapper around your daemon code. | |
# Do your post daemonization configuration here | |
# At minimum you need just the first line (without the block), or a lot | |
# of strange things might start happening... | |
DaemonKit::Application.running! do |config| | |
# Trap signals with blocks or procs | |
# config.trap( 'INT' ) do | |
# # do something clever | |
# end | |
# config.trap( 'TERM', Proc.new { puts 'Going down' } ) | |
end | |
DaemonKit::XMPP.run do | |
when_ready { DaemonKit.logger.info "Connected as #{jid}" } | |
# Auto approve subscription requests | |
subscription :request? do |s| | |
write_to_stream s.approve! | |
end | |
# Echo back what was said | |
message :chat?, :body do |m| | |
write_to_stream m.reply | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'blather' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Jabber configuration file | |
# The configuration specifies the following keys: | |
# * jabber_id - Identidy (username) of the user | |
# * password - Password used to authenticate | |
# * resource - Multiple connections can be made with the same credentials and different resources | |
# * masters - Array of Jabber ID's whose messages will be processed | |
# * supporters - Additional 'buddies' to keep on roster, but messages won't be processed | |
defaults: &defaults | |
jabber_id: dk@jabber | |
password: secret | |
resource: daemon_kit | |
masters: | |
- [email protected] | |
supporters: | |
- [email protected] | |
development: | |
<<: *defaults | |
test: | |
<<: *defaults | |
production: | |
<<: *defaults |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment