README_for_rails2.textile in bullet-2.0.0.beta.2 vs README_for_rails2.textile in bullet-2.0.0.beta.3

- old
+ new

@@ -16,10 +16,11 @@ **************************************************************************** h2. Contributors +sriedel did a lot of awesome refactors, added xmpp notification support, and added Hacking.textile about how to extend to bullet plugin. flipsasser added Growl, console.log and Rails.log support, very awesome. And he also improved README. rainux added group style console.log. 2collegebums added some great specs to generate red bar. **************************************************************************** @@ -50,17 +51,33 @@ Bullet.bullet_logger = true Bullet.console = true Bullet.growl = true Bullet.rails_logger = true Bullet.disable_browser_cache = true + Bullet.xmpp = { :account => 'bullets_account@jabber.org', + :password => 'bullets_password_for_jabber', + :receiver => 'your_account@jabber.org', + :show_online_status => true } end </code></pre> It is recommended to config growl notification as follows if your collaborators are not using MacOS <pre><code> begin require 'ruby-growl' Bullet.growl = true + rescue MissingSourceFile + end +</code></pre> + +and similarly for XMPP: +<pre><code> + begin + require 'xmpp4r' + Bullet.xmpp = { :account => 'bullets_account@jabber.org', + :password => 'bullets_password_for_jabber', + :receiver => 'your_account@jabber.org', + :show_online_status => true } rescue MissingSourceFile end </code></pre> The code above will enable all five of the Bullet notification systems: