<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>bin/daemon-kit</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,4 +1,10 @@
-== 0.1.7.10 (2009-08-12)
+== 0.2 (WIP)
+
+* Renamed 'daemon_kit' executable to 'daemon-kit'
+* Fixed some broken links in README.rdoc
+* Sneaked in &lt;&lt; on AbstractLogger for better Logger compatibility
+
+== 0.1.7.10 2009-08-12
 
 * Ruote remote participants
 * Allow process umask to be configured, defaults to 022</diff>
      <filename>History.txt</filename>
    </modified>
    <modified>
      <diff>@@ -26,7 +26,7 @@ app_generators/daemon_kit/templates/libexec/daemon.erb
 app_generators/daemon_kit/templates/script/console
 app_generators/daemon_kit/templates/script/destroy
 app_generators/daemon_kit/templates/script/generate
-bin/daemon_kit
+bin/daemon-kit
 daemon_generators/amqp/USAGE
 daemon_generators/amqp/amqp_generator.rb
 daemon_generators/amqp/templates/config/amqp.yml</diff>
      <filename>Manifest.txt</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,6 @@
 
 For more information on daemon-kit, see http://kit.rubyforge.org/daemon-kit
 
-To get started quickly run 'daemon_kit' without any arguments
+To get started quickly run 'daemon-kit' without any arguments
 
 </diff>
      <filename>PostInstall.txt</filename>
    </modified>
    <modified>
      <diff>@@ -26,15 +26,15 @@ Supported generators:
 
 == Synopsis
 
-  $ daemon_kit -h
+  $ daemon-kit -h
 
 Get some help
 
-  $ daemon_kit [/path/to/your/daemon] [options]
+  $ daemon-kit [/path/to/your/daemon] [options]
 
 The above command generates a skeleton daemon environment for you to adapt.
 
-  $ daemon_kit [/path/to/your/daemon] -i jabber
+  $ daemon-kit [/path/to/your/daemon] -i jabber
 
 Use the 'jabber' generator instead of the default one.
 
@@ -46,23 +46,23 @@ The default generator creates a simple daemon with an infinite loop inside that
 
 === Jabber Generator
 
-The jabber generator creates a simple daemon that leverages the &quot;xmpp4r-simple&quot;:http://xmpp4r-simple.rubyforge.org/ gem to process inbound messages. The daemon will manage the roster and other little tasks, leaving you to provide the hooks for processing messages, presence notifications and subscription request.
+The jabber generator creates a simple daemon that leverages the xmpp4r-simple[http://xmpp4r-simple.rubyforge.org/] gem to process inbound messages. The daemon will manage the roster and other little tasks, leaving you to provide the hooks for processing messages, presence notifications and subscription request.
 
 === Cron Generator
 
-The cron generator creates a simple daemon that leverages the &quot;rufus-scheduler&quot;:http://github.com/jmettraux/rufus-scheduler gem to create a simple cron-lie daemon. Please be aware that this daemon could never be a replacement for the battle-tested &quot;cron utility&quot;:http://www.gentoo.org/doc/en/cron-guide.xml shipped standard with most *nix distributions.
+The cron generator creates a simple daemon that leverages the rufus-scheduler[http://github.com/jmettraux/rufus-scheduler] gem to create a simple cron-lie daemon. Please be aware that this daemon could never be a replacement for the battle-tested cron[http://www.gentoo.org/doc/en/cron-guide.xml] utility shipped standard with most *nix distributions.
 
 === AMQP Consumer Generator
 
-The AMQP generator creates a simple daemon that has all the stub code and configuration in place to help you write AMQP consumers quickly and effectively. The generated daemon relies on the presence of the &quot;amqp&quot;:http://github.com/tmm1/amqp gem.
+The AMQP generator creates a simple daemon that has all the stub code and configuration in place to help you write AMQP consumers quickly and effectively. The generated daemon relies on the presence of the amqp[http://github.com/tmm1/amqp] gem.
 
 === Nanite Agent Generator
 
-The &quot;nanite&quot;:http://github.com/ezmobius/nanite agent generator gets you up and running with nanite agents very quickly.
+The nanite[http://github.com/ezmobius/nanite] agent generator gets you up and running with nanite agents very quickly.
 
 === ruote Remote Participants
 
-The &quot;ruote&quot;:http://openwfe.rubyforge.org remote participant generator speeds up the development of workflow participants that run outside of the Ruby process that houses the engine. Daemon-kit handles all the communication and delegation logic, allowing you to focus purely on your participant's activities.
+The ruote[http://openwfe.rubyforge.org] remote participant generator speeds up the development of workflow participants that run outside of the Ruby process that houses the engine. Daemon-kit handles all the communication and delegation logic, allowing you to focus purely on your participant's activities.
 
 == Requirements
 </diff>
      <filename>README.rdoc</filename>
    </modified>
    <modified>
      <diff>@@ -18,7 +18,7 @@ $:.unshift( File.dirname(__FILE__).to_absolute_path ) unless
   $:.include?( File.dirname(__FILE__).to_absolute_path )
 
 module DaemonKit
-  VERSION = '0.1.7.10'
+  VERSION = '0.2.0'
 
   autoload :Initializer,    'daemon_kit/initializer'
   autoload :Application,    'daemon_kit/application'</diff>
      <filename>lib/daemon_kit.rb</filename>
    </modified>
    <modified>
      <diff>@@ -63,6 +63,12 @@ module DaemonKit
       end
     end
 
+    # Write unformatted message to logging device, mostly useful for Logger interface
+    # compatibility and debugging soap4r (possibly others)
+    def &lt;&lt;( msg ) #:nodoc:
+      self.logger.write( msg ) if self.logger &amp;&amp; self.logger.respond_to?( :write )
+    end
+
     def debug( msg )
       add( :debug, msg )
     end</diff>
      <filename>lib/daemon_kit/abstract_logger.rb</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>bin/daemon_kit</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>b0c66bab0328c9748025ca840445d7ec21dd928f</id>
    </parent>
  </parents>
  <author>
    <name>Kenneth Kalmer</name>
    <email>kenneth.kalmer@gmail.com</email>
  </author>
  <url>http://github.com/kennethkalmer/daemon-kit/commit/fad9c0250a46a2b7bbc7120a19af2566c6011b30</url>
  <id>fad9c0250a46a2b7bbc7120a19af2566c6011b30</id>
  <committed-date>2009-08-14T07:07:54-07:00</committed-date>
  <authored-date>2009-08-14T07:07:54-07:00</authored-date>
  <message>Changed from daemon_kit to daemon-kit (generator)</message>
  <tree>f235ad4b89d97172d1b96152b5ddf016c3259e5a</tree>
  <committer>
    <name>Kenneth Kalmer</name>
    <email>kenneth.kalmer@gmail.com</email>
  </committer>
</commit>
