<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,4 +1,4 @@
-== 1.2 (in git)
+== 1.2 (in progress -- see github)
 
 === Major Changes
 * Reek's RDoc is now hosted at http://rdoc.info/projects/kevinrutherford/reek</diff>
      <filename>History.txt</filename>
    </modified>
    <modified>
      <diff>@@ -81,6 +81,9 @@ spec/samples/masked/dirty.rb
 spec/samples/masked/masked.reek
 spec/samples/optparse.rb
 spec/samples/redcloth.rb
+spec/samples/three_clean_files/clean_one.rb
+spec/samples/three_clean_files/clean_three.rb
+spec/samples/three_clean_files/clean_two.rb
 spec/samples/two_smelly_files/dirty_one.rb
 spec/samples/two_smelly_files/dirty_two.rb
 spec/slow/inline_spec.rb</diff>
      <filename>Manifest.txt</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 $:.unshift File.dirname(__FILE__)
 
 module Reek # :doc:
-  VERSION = '1.1.3.6'
+  VERSION = '1.1.3.7'
 end</diff>
      <filename>lib/reek.rb</filename>
    </modified>
    <modified>
      <diff>@@ -73,7 +73,7 @@ module Reek
         &quot;Expected #{@source} to reek of #{@klass}, but it didn't&quot;
       end
       def failure_message_for_should_not
-        &quot;Expected #{@source} not to reek of #{@klass}, but got:\n#{@source.freport}&quot;
+        &quot;Expected #{@source} not to reek of #{@klass}, but got:\n#{@source.full_report}&quot;
       end
     end
 
@@ -96,7 +96,7 @@ module Reek
         @source.report.length == 1 and @source.has_smell?(@klass, @patterns)
       end
       def failure_message_for_should
-        &quot;Expected source to reek only of #{@klass}, but got:\n#{@source.report}&quot;
+        &quot;Expected source to reek only of #{@klass}, but got:\n#{@source.full_report}&quot;
       end
       def failure_message_for_should_not
         &quot;Expected source not to reek only of #{@klass}, but it did&quot;</diff>
      <filename>lib/reek/spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -2,17 +2,17 @@
 
 Gem::Specification.new do |s|
   s.name = %q{reek}
-  s.version = &quot;1.1.3.6&quot;
+  s.version = &quot;1.1.3.7&quot;
 
   s.required_rubygems_version = Gem::Requirement.new(&quot;&gt;= 0&quot;) if s.respond_to? :required_rubygems_version=
   s.authors = [&quot;Kevin Rutherford&quot;]
-  s.date = %q{2009-06-30}
+  s.date = %q{2009-07-02}
   s.default_executable = %q{reek}
   s.description = %q{Code smell detector for Ruby}
   s.email = [&quot;kevin@rutherford-software.com&quot;]
   s.executables = [&quot;reek&quot;]
   s.extra_rdoc_files = [&quot;History.txt&quot;, &quot;README.txt&quot;]
-  s.files = [&quot;History.txt&quot;, &quot;README.txt&quot;, &quot;Rakefile&quot;, &quot;bin/reek&quot;, &quot;config/defaults.reek&quot;, &quot;features/masking_smells.feature&quot;, &quot;features/options.feature&quot;, &quot;features/rake_task.feature&quot;, &quot;features/reports.feature&quot;, &quot;features/samples.feature&quot;, &quot;features/stdin.feature&quot;, &quot;features/step_definitions/reek_steps.rb&quot;, &quot;features/support/env.rb&quot;, &quot;lib/reek.rb&quot;, &quot;lib/reek/block_context.rb&quot;, &quot;lib/reek/class_context.rb&quot;, &quot;lib/reek/code_context.rb&quot;, &quot;lib/reek/code_parser.rb&quot;, &quot;lib/reek/exceptions.reek&quot;, &quot;lib/reek/if_context.rb&quot;, &quot;lib/reek/method_context.rb&quot;, &quot;lib/reek/module_context.rb&quot;, &quot;lib/reek/name.rb&quot;, &quot;lib/reek/object_refs.rb&quot;, &quot;lib/reek/object_source.rb&quot;, &quot;lib/reek/options.rb&quot;, &quot;lib/reek/rake_task.rb&quot;, &quot;lib/reek/report.rb&quot;, &quot;lib/reek/sexp_formatter.rb&quot;, &quot;lib/reek/singleton_method_context.rb&quot;, &quot;lib/reek/smell_warning.rb&quot;, &quot;lib/reek/smells/control_couple.rb&quot;, &quot;lib/reek/smells/duplication.rb&quot;, &quot;lib/reek/smells/feature_envy.rb&quot;, &quot;lib/reek/smells/large_class.rb&quot;, &quot;lib/reek/smells/long_method.rb&quot;, &quot;lib/reek/smells/long_parameter_list.rb&quot;, &quot;lib/reek/smells/long_yield_list.rb&quot;, &quot;lib/reek/smells/nested_iterators.rb&quot;, &quot;lib/reek/smells/smell_detector.rb&quot;, &quot;lib/reek/smells/uncommunicative_name.rb&quot;, &quot;lib/reek/smells/utility_function.rb&quot;, &quot;lib/reek/sniffer.rb&quot;, &quot;lib/reek/source.rb&quot;, &quot;lib/reek/spec.rb&quot;, &quot;lib/reek/stop_context.rb&quot;, &quot;lib/reek/yield_call_context.rb&quot;, &quot;reek.gemspec&quot;, &quot;spec/reek/block_context_spec.rb&quot;, &quot;spec/reek/class_context_spec.rb&quot;, &quot;spec/reek/code_context_spec.rb&quot;, &quot;spec/reek/code_parser_spec.rb&quot;, &quot;spec/reek/config_spec.rb&quot;, &quot;spec/reek/if_context_spec.rb&quot;, &quot;spec/reek/method_context_spec.rb&quot;, &quot;spec/reek/module_context_spec.rb&quot;, &quot;spec/reek/name_spec.rb&quot;, &quot;spec/reek/object_refs_spec.rb&quot;, &quot;spec/reek/object_source_spec.rb&quot;, &quot;spec/reek/options_spec.rb&quot;, &quot;spec/reek/report_spec.rb&quot;, &quot;spec/reek/singleton_method_context_spec.rb&quot;, &quot;spec/reek/smell_warning_spec.rb&quot;, &quot;spec/reek/smells/control_couple_spec.rb&quot;, &quot;spec/reek/smells/duplication_spec.rb&quot;, &quot;spec/reek/smells/feature_envy_spec.rb&quot;, &quot;spec/reek/smells/large_class_spec.rb&quot;, &quot;spec/reek/smells/long_method_spec.rb&quot;, &quot;spec/reek/smells/long_parameter_list_spec.rb&quot;, &quot;spec/reek/smells/nested_iterators_spec.rb&quot;, &quot;spec/reek/smells/smell_detector_spec.rb&quot;, &quot;spec/reek/smells/uncommunicative_name_spec.rb&quot;, &quot;spec/reek/smells/utility_function_spec.rb&quot;, &quot;spec/samples/corrupt_config_file/corrupt.reek&quot;, &quot;spec/samples/corrupt_config_file/dirty.rb&quot;, &quot;spec/samples/empty_config_file/dirty.rb&quot;, &quot;spec/samples/empty_config_file/empty.reek&quot;, &quot;spec/samples/inline.rb&quot;, &quot;spec/samples/masked/dirty.rb&quot;, &quot;spec/samples/masked/masked.reek&quot;, &quot;spec/samples/optparse.rb&quot;, &quot;spec/samples/redcloth.rb&quot;, &quot;spec/samples/two_smelly_files/dirty_one.rb&quot;, &quot;spec/samples/two_smelly_files/dirty_two.rb&quot;, &quot;spec/slow/inline_spec.rb&quot;, &quot;spec/slow/optparse_spec.rb&quot;, &quot;spec/slow/redcloth_spec.rb&quot;, &quot;spec/slow/reek_source_spec.rb&quot;, &quot;spec/slow/source_list_spec.rb&quot;, &quot;spec/spec.opts&quot;, &quot;spec/spec_helper.rb&quot;, &quot;tasks/reek.rake&quot;, &quot;tasks/test.rake&quot;]
+  s.files = [&quot;History.txt&quot;, &quot;README.txt&quot;, &quot;Rakefile&quot;, &quot;bin/reek&quot;, &quot;config/defaults.reek&quot;, &quot;features/masking_smells.feature&quot;, &quot;features/options.feature&quot;, &quot;features/rake_task.feature&quot;, &quot;features/reports.feature&quot;, &quot;features/samples.feature&quot;, &quot;features/stdin.feature&quot;, &quot;features/step_definitions/reek_steps.rb&quot;, &quot;features/support/env.rb&quot;, &quot;lib/reek.rb&quot;, &quot;lib/reek/block_context.rb&quot;, &quot;lib/reek/class_context.rb&quot;, &quot;lib/reek/code_context.rb&quot;, &quot;lib/reek/code_parser.rb&quot;, &quot;lib/reek/exceptions.reek&quot;, &quot;lib/reek/if_context.rb&quot;, &quot;lib/reek/method_context.rb&quot;, &quot;lib/reek/module_context.rb&quot;, &quot;lib/reek/name.rb&quot;, &quot;lib/reek/object_refs.rb&quot;, &quot;lib/reek/object_source.rb&quot;, &quot;lib/reek/options.rb&quot;, &quot;lib/reek/rake_task.rb&quot;, &quot;lib/reek/report.rb&quot;, &quot;lib/reek/sexp_formatter.rb&quot;, &quot;lib/reek/singleton_method_context.rb&quot;, &quot;lib/reek/smell_warning.rb&quot;, &quot;lib/reek/smells/control_couple.rb&quot;, &quot;lib/reek/smells/duplication.rb&quot;, &quot;lib/reek/smells/feature_envy.rb&quot;, &quot;lib/reek/smells/large_class.rb&quot;, &quot;lib/reek/smells/long_method.rb&quot;, &quot;lib/reek/smells/long_parameter_list.rb&quot;, &quot;lib/reek/smells/long_yield_list.rb&quot;, &quot;lib/reek/smells/nested_iterators.rb&quot;, &quot;lib/reek/smells/smell_detector.rb&quot;, &quot;lib/reek/smells/uncommunicative_name.rb&quot;, &quot;lib/reek/smells/utility_function.rb&quot;, &quot;lib/reek/sniffer.rb&quot;, &quot;lib/reek/source.rb&quot;, &quot;lib/reek/spec.rb&quot;, &quot;lib/reek/stop_context.rb&quot;, &quot;lib/reek/yield_call_context.rb&quot;, &quot;reek.gemspec&quot;, &quot;spec/reek/block_context_spec.rb&quot;, &quot;spec/reek/class_context_spec.rb&quot;, &quot;spec/reek/code_context_spec.rb&quot;, &quot;spec/reek/code_parser_spec.rb&quot;, &quot;spec/reek/config_spec.rb&quot;, &quot;spec/reek/if_context_spec.rb&quot;, &quot;spec/reek/method_context_spec.rb&quot;, &quot;spec/reek/module_context_spec.rb&quot;, &quot;spec/reek/name_spec.rb&quot;, &quot;spec/reek/object_refs_spec.rb&quot;, &quot;spec/reek/object_source_spec.rb&quot;, &quot;spec/reek/options_spec.rb&quot;, &quot;spec/reek/report_spec.rb&quot;, &quot;spec/reek/singleton_method_context_spec.rb&quot;, &quot;spec/reek/smell_warning_spec.rb&quot;, &quot;spec/reek/smells/control_couple_spec.rb&quot;, &quot;spec/reek/smells/duplication_spec.rb&quot;, &quot;spec/reek/smells/feature_envy_spec.rb&quot;, &quot;spec/reek/smells/large_class_spec.rb&quot;, &quot;spec/reek/smells/long_method_spec.rb&quot;, &quot;spec/reek/smells/long_parameter_list_spec.rb&quot;, &quot;spec/reek/smells/nested_iterators_spec.rb&quot;, &quot;spec/reek/smells/smell_detector_spec.rb&quot;, &quot;spec/reek/smells/uncommunicative_name_spec.rb&quot;, &quot;spec/reek/smells/utility_function_spec.rb&quot;, &quot;spec/reek/spec_spec.rb&quot;, &quot;spec/samples/corrupt_config_file/corrupt.reek&quot;, &quot;spec/samples/corrupt_config_file/dirty.rb&quot;, &quot;spec/samples/empty_config_file/dirty.rb&quot;, &quot;spec/samples/empty_config_file/empty.reek&quot;, &quot;spec/samples/inline.rb&quot;, &quot;spec/samples/masked/dirty.rb&quot;, &quot;spec/samples/masked/masked.reek&quot;, &quot;spec/samples/optparse.rb&quot;, &quot;spec/samples/redcloth.rb&quot;, &quot;spec/samples/three_clean_files/clean_one.rb&quot;, &quot;spec/samples/three_clean_files/clean_three.rb&quot;, &quot;spec/samples/three_clean_files/clean_two.rb&quot;, &quot;spec/samples/two_smelly_files/dirty_one.rb&quot;, &quot;spec/samples/two_smelly_files/dirty_two.rb&quot;, &quot;spec/slow/inline_spec.rb&quot;, &quot;spec/slow/optparse_spec.rb&quot;, &quot;spec/slow/redcloth_spec.rb&quot;, &quot;spec/slow/reek_source_spec.rb&quot;, &quot;spec/slow/source_list_spec.rb&quot;, &quot;spec/spec.opts&quot;, &quot;spec/spec_helper.rb&quot;, &quot;tasks/reek.rake&quot;, &quot;tasks/test.rake&quot;]
   s.homepage = %q{http://wiki.github.com/kevinrutherford/reek}
   s.post_install_message = %q{
 For more information on reek, see http://wiki.github.com/kevinrutherford/reek</diff>
      <filename>reek.gemspec</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>f37fa4b2bdc781e2e191a2c9ac5225dc0626ba62</id>
    </parent>
  </parents>
  <author>
    <name>Kevin Rutherford</name>
    <email>kevin@rutherford-software.com</email>
  </author>
  <url>http://github.com/kevinrutherford/reek/commit/8107deccf86577d22700609579942a3b23ca6a08</url>
  <id>8107deccf86577d22700609579942a3b23ca6a08</id>
  <committed-date>2009-07-02T13:14:59-07:00</committed-date>
  <authored-date>2009-07-02T13:14:59-07:00</authored-date>
  <message>Release 1.1.3.7</message>
  <tree>b17a7b6782caef884acf81852ecb6c98dda1656c</tree>
  <committer>
    <name>Kevin Rutherford</name>
    <email>kevin@rutherford-software.com</email>
  </committer>
</commit>
