<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>examples/example_helper.rb</filename>
    </added>
    <added>
      <filename>examples/log_buddy_example.rb</filename>
    </added>
    <added>
      <filename>examples/log_buddy_init_example.rb</filename>
    </added>
    <added>
      <filename>examples/log_example.rb</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,3 +1,5 @@
+v0.1.4  Micronauts Unite! Test Suite now runs via Micronaut
+
 v0.1.3  Use plain old echoe; really fix rubygems errors (I hope)
 
 v0.1.2  Attempting to fix rubygems errors</diff>
      <filename>CHANGELOG</filename>
    </modified>
    <modified>
      <diff>@@ -7,6 +7,6 @@ log_buddy.gemspec
 Manifest
 Rakefile
 README.rdoc
-spec/helper.rb
-spec/log_buddy_init_spec.rb
-spec/log_buddy_spec.rb
+examples/example_helper.rb
+examples/log_buddy_init_example.rb
+examples/log_buddy_example.rb</diff>
      <filename>Manifest</filename>
    </modified>
    <modified>
      <diff>@@ -1,7 +1,6 @@
 require 'rubygems'
 gem 'echoe'
 require 'echoe'
-require 'spec/rake/spectask'
 require File.join(File.dirname(__FILE__), *%w[lib log_buddy version])
 
 echoe = Echoe.new('log_buddy', LogBuddy::VERSION::STRING) do |p|
@@ -19,10 +18,25 @@ end
 Rake.application.instance_variable_get(:@tasks).delete(&quot;default&quot;)
 Rake.application.instance_variable_get(:@tasks).delete(&quot;test&quot;)
 
-desc &quot;Run examples&quot;
-Spec::Rake::SpecTask.new
+namespace :micronaut do
+  
+  desc 'Run all examples'
+  task :examples do
+    examples = Dir[&quot;examples/**/*_example.rb&quot;].map { |g| Dir.glob(g) }.flatten
+    examples.map! {|f| %Q(require &quot;#{f}&quot;)}
+    command = &quot;-e '#{examples.join(&quot;; &quot;)}'&quot;
+    ruby command
+  end
+  
+  desc &quot;Run all examples using rcov&quot;
+  task :coverage do
+    examples = Dir[&quot;examples/**/*_example.rb&quot;].map { |g| Dir.glob(g) }.flatten
+    system &quot;rcov --exclude \&quot;examples/*,gems/*,db/*,/Library/Ruby/*,config/*\&quot; --text-report --sort coverage --no-validator-links #{examples.join(' ')}&quot;
+  end
+  
+end
 
-task :default =&gt; :spec
+task :default =&gt; 'micronaut:coverage'
 
 # The below results in 'input stream exhausted' - dunno why?
 # task :release =&gt; [:test, :publish_docs, :announce]</diff>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -25,7 +25,7 @@ module LogBuddy
   # 
   # * &lt;tt&gt;:logger&lt;/tt&gt; - the logger instance that LogBuddy should use (if not provided, 
   #   tries to default to RAILS_DEFAULT_LOGGER, and then to a STDOUT logger).
-  # * &lt;tt):stdout&lt;/tt&gt; - whether LogBuddy should _also_ log to STDOUT, very helpful for Autotest (default is +true+).
+  # * &lt;tt):log_to_stdout&lt;/tt&gt; - whether LogBuddy should _also_ log to STDOUT, very helpful for Autotest (default is +true+).
   def self.init(options = {})
     @logger = options[:logger]
     @log_to_stdout = options.has_key?(:log_to_stdout) ? options[:log_to_stdout] : true</diff>
      <filename>lib/log_buddy.rb</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,7 @@ module LogBuddy
   module Utils
   
     def debug(str)
-      stdout_puts(str) if @stdout
+      stdout_puts(str) if log_to_stdout?
       logger.debug(str)
     end
   </diff>
      <filename>lib/log_buddy/utils.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,8 +1,8 @@
 module LogBuddy
   module VERSION #:nodoc:
     MAJOR = 0
-    MINOR = 1
-    TINY  = 4
+    MINOR = 0
+    TINY  = 2
 
     STRING = [MAJOR, MINOR, TINY].join('.')
   end</diff>
      <filename>lib/log_buddy/version.rb</filename>
    </modified>
    <modified>
      <diff>@@ -2,15 +2,15 @@
 
 Gem::Specification.new do |s|
   s.name = %q{log_buddy}
-  s.version = &quot;0.1.3&quot;
+  s.version = &quot;0.0.2&quot;
 
   s.required_rubygems_version = Gem::Requirement.new(&quot;&gt;= 1.2&quot;) if s.respond_to? :required_rubygems_version=
   s.authors = [&quot;Rob Sanheim - Relevance&quot;]
-  s.date = %q{2008-11-08}
+  s.date = %q{2008-11-26}
   s.description = %q{Log statements along with their name easily.  Mixin a logger everywhere when you need it.}
   s.email = %q{opensource@thinkrelevance.com}
   s.extra_rdoc_files = [&quot;CHANGELOG&quot;, &quot;lib/log_buddy.rb&quot;, &quot;LICENSE&quot;, &quot;README.rdoc&quot;]
-  s.files = [&quot;CHANGELOG&quot;, &quot;examples.rb&quot;, &quot;init.rb&quot;, &quot;lib/log_buddy.rb&quot;, &quot;LICENSE&quot;, &quot;log_buddy.gemspec&quot;, &quot;Manifest&quot;, &quot;Rakefile&quot;, &quot;README.rdoc&quot;, &quot;spec/helper.rb&quot;, &quot;spec/log_buddy_init_spec.rb&quot;, &quot;spec/log_buddy_spec.rb&quot;]
+  s.files = [&quot;CHANGELOG&quot;, &quot;examples.rb&quot;, &quot;init.rb&quot;, &quot;lib/log_buddy.rb&quot;, &quot;LICENSE&quot;, &quot;log_buddy.gemspec&quot;, &quot;Manifest&quot;, &quot;Rakefile&quot;, &quot;README.rdoc&quot;, &quot;examples/example_helper.rb&quot;, &quot;examples/log_buddy_init_example.rb&quot;, &quot;examples/log_buddy_example.rb&quot;]
   s.has_rdoc = true
   s.homepage = %q{http://opensource.thinkrelevance.com/wiki/log_buddy}
   s.rdoc_options = [&quot;--line-numbers&quot;, &quot;--inline-source&quot;, &quot;--title&quot;, &quot;Log_buddy&quot;, &quot;--main&quot;, &quot;README.rdoc&quot;]</diff>
      <filename>log_buddy.gemspec</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>spec/helper.rb</filename>
    </removed>
    <removed>
      <filename>spec/log_buddy_init_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/log_buddy_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/log_spec.rb</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>aac36d7555738897d5379a48e275315a7b8453dc</id>
    </parent>
    <parent>
      <id>ab4d3296ef04ee979f8041c572348d5fcb8b78db</id>
    </parent>
  </parents>
  <author>
    <name>Rob Sanheim</name>
    <email>rsanheim@gmail.com</email>
  </author>
  <url>http://github.com/relevance/log_buddy/commit/a44b5f347be08fcccb8cf729fc9a7276141d56a2</url>
  <id>a44b5f347be08fcccb8cf729fc9a7276141d56a2</id>
  <committed-date>2008-12-05T06:21:51-08:00</committed-date>
  <authored-date>2008-12-05T06:21:51-08:00</authored-date>
  <message>Merge branch 'spicycode/master'</message>
  <tree>fbf9115517f54c91aa99f71f0802bb5b25fa3ffd</tree>
  <committer>
    <name>Rob Sanheim</name>
    <email>rsanheim@gmail.com</email>
  </committer>
</commit>
