<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>lib/rspec/core.rb</filename>
    </added>
    <added>
      <filename>lib/rspec/core/behaviour.rb</filename>
    </added>
    <added>
      <filename>lib/rspec/core/configuration.rb</filename>
    </added>
    <added>
      <filename>lib/rspec/core/example.rb</filename>
    </added>
    <added>
      <filename>lib/rspec/core/formatters.rb</filename>
    </added>
    <added>
      <filename>lib/rspec/core/formatters/base_formatter.rb</filename>
    </added>
    <added>
      <filename>lib/rspec/core/formatters/base_text_formatter.rb</filename>
    </added>
    <added>
      <filename>lib/rspec/core/formatters/documentation_formatter.rb</filename>
    </added>
    <added>
      <filename>lib/rspec/core/formatters/progress_formatter.rb</filename>
    </added>
    <added>
      <filename>lib/rspec/core/kernel_extensions.rb</filename>
    </added>
    <added>
      <filename>lib/rspec/core/mocking/with_absolutely_nothing.rb</filename>
    </added>
    <added>
      <filename>lib/rspec/core/mocking/with_mocha.rb</filename>
    </added>
    <added>
      <filename>lib/rspec/core/mocking/with_rr.rb</filename>
    </added>
    <added>
      <filename>lib/rspec/core/mocking/with_rspec.rb</filename>
    </added>
    <added>
      <filename>lib/rspec/core/rake_task.rb</filename>
    </added>
    <added>
      <filename>lib/rspec/core/runner.rb</filename>
    </added>
    <added>
      <filename>lib/rspec/core/world.rb</filename>
    </added>
    <added>
      <filename>spec/lib/rspec/core/behaviour_spec.rb</filename>
    </added>
    <added>
      <filename>spec/lib/rspec/core/configuration_spec.rb</filename>
    </added>
    <added>
      <filename>spec/lib/rspec/core/example_spec.rb</filename>
    </added>
    <added>
      <filename>spec/lib/rspec/core/formatters/base_formatter_spec.rb</filename>
    </added>
    <added>
      <filename>spec/lib/rspec/core/formatters/documentation_formatter_spec.rb</filename>
    </added>
    <added>
      <filename>spec/lib/rspec/core/formatters/progress_formatter_spec.rb</filename>
    </added>
    <added>
      <filename>spec/lib/rspec/core/kernel_extensions_spec.rb</filename>
    </added>
    <added>
      <filename>spec/lib/rspec/core/mocha_spec.rb</filename>
    </added>
    <added>
      <filename>spec/lib/rspec/core/runner_spec.rb</filename>
    </added>
    <added>
      <filename>spec/lib/rspec/core/world_spec.rb</filename>
    </added>
    <added>
      <filename>spec/lib/rspec/core_spec.rb</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -16,13 +16,13 @@ rescue LoadError
   puts &quot;Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler&quot;
 end
 
-require 'lib/spec/core/rake_task'
-Spec::Core::RakeTask.new :spec do |t|
+require 'lib/rspec/core/rake_task'
+Rspec::Core::RakeTask.new :spec do |t|
   t.pattern = &quot;spec/**/*_spec.rb&quot;
 end
 
 desc &quot;Run all examples using rcov&quot;
-Spec::Core::RakeTask.new :coverage do |t|
+Rspec::Core::RakeTask.new :coverage do |t|
   t.pattern = &quot;spec/**/*_spec.rb&quot;
   t.rcov = true
   t.rcov_opts = %[--exclude &quot;mocks,expectations,gems/*,spec/resources,spec/lib,spec/spec_helper.rb,db/*,/Library/Ruby/*,config/*&quot; --text-summary  --sort coverage]</diff>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
 #!/usr/bin/env ruby
 $LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__) + '/../lib'))
-require 'spec/core'
-Spec::Core.configuration.autorun!
\ No newline at end of file
+require 'rspec/core'
+Rspec::Core.configuration.autorun!
\ No newline at end of file</diff>
      <filename>bin/rspec</filename>
    </modified>
    <modified>
      <diff>@@ -3,6 +3,6 @@ require &quot;irb&quot;
 lib_path = File.expand_path(File.dirname(__FILE__) + &quot;/../lib&quot;)
 $LOAD_PATH.unshift lib_path unless $LOAD_PATH.include?(lib_path)
 
-require 'spec/core'
+require 'rspec/core'
 
 IRB.start(__FILE__)</diff>
      <filename>script/console</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 # This file contains various classes used by the specs.
-module Spec::Core
+module Rspec::Core
   module Expectations
     class Person
       attr_reader :name</diff>
      <filename>spec/resources/example_classes.rb</filename>
    </modified>
    <modified>
      <diff>@@ -5,9 +5,9 @@ require 'spec/expectations'
 $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '/../../mocks/lib'))
 require 'spec/mocks'
 $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
-require 'spec/core'
+require 'rspec/core'
 
-Spec::Core::Behaviour.send(:include, Spec::Matchers)
+Rspec::Core::Behaviour.send(:include, Spec::Matchers)
 
 def with_ruby(version)
   yield if RUBY_PLATFORM =~ Regexp.compile(&quot;^#{version}&quot;)
@@ -18,7 +18,7 @@ require 'mocha'
 
 require File.expand_path(File.dirname(__FILE__) + &quot;/resources/example_classes&quot;)
 
-module Spec
+module Rspec
   module Core
     module Matchers
       def fail
@@ -33,29 +33,29 @@ module Spec
 end
 
 def remove_last_describe_from_world
-  Spec::Core.world.behaviours.pop
+  Rspec::Core.world.behaviours.pop
 end
 
 def isolate_behaviour
   if block_given?
     yield
-    Spec::Core.world.behaviours.pop
+    Rspec::Core.world.behaviours.pop
   end
 end
 
 def use_formatter(new_formatter)
-  original_formatter = Spec::Core.configuration.formatter
-  Spec::Core.configuration.instance_variable_set(:@formatter, new_formatter)
+  original_formatter = Rspec::Core.configuration.formatter
+  Rspec::Core.configuration.instance_variable_set(:@formatter, new_formatter)
   yield
 ensure
-  Spec::Core.configuration.instance_variable_set(:@formatter, original_formatter)
+  Rspec::Core.configuration.instance_variable_set(:@formatter, original_formatter)
 end
 
 def not_in_editor?
   !(ENV.has_key?('TM_MODE') || ENV.has_key?('EMACS') || ENV.has_key?('VIM'))
 end
 
-Spec::Core.configure do |c|
+Rspec::Core.configure do |c|
   c.mock_with :mocha
   c.color_enabled = not_in_editor?
   c.filter_run :focused =&gt; true</diff>
      <filename>spec/spec_helper.rb</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>lib/spec/core.rb</filename>
    </removed>
    <removed>
      <filename>lib/spec/core/behaviour.rb</filename>
    </removed>
    <removed>
      <filename>lib/spec/core/configuration.rb</filename>
    </removed>
    <removed>
      <filename>lib/spec/core/example.rb</filename>
    </removed>
    <removed>
      <filename>lib/spec/core/formatters.rb</filename>
    </removed>
    <removed>
      <filename>lib/spec/core/formatters/base_formatter.rb</filename>
    </removed>
    <removed>
      <filename>lib/spec/core/formatters/base_text_formatter.rb</filename>
    </removed>
    <removed>
      <filename>lib/spec/core/formatters/documentation_formatter.rb</filename>
    </removed>
    <removed>
      <filename>lib/spec/core/formatters/progress_formatter.rb</filename>
    </removed>
    <removed>
      <filename>lib/spec/core/kernel_extensions.rb</filename>
    </removed>
    <removed>
      <filename>lib/spec/core/mocking/with_absolutely_nothing.rb</filename>
    </removed>
    <removed>
      <filename>lib/spec/core/mocking/with_mocha.rb</filename>
    </removed>
    <removed>
      <filename>lib/spec/core/mocking/with_rr.rb</filename>
    </removed>
    <removed>
      <filename>lib/spec/core/mocking/with_rspec.rb</filename>
    </removed>
    <removed>
      <filename>lib/spec/core/rake_task.rb</filename>
    </removed>
    <removed>
      <filename>lib/spec/core/runner.rb</filename>
    </removed>
    <removed>
      <filename>lib/spec/core/world.rb</filename>
    </removed>
    <removed>
      <filename>spec/lib/spec/core/behaviour_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/lib/spec/core/configuration_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/lib/spec/core/example_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/lib/spec/core/formatters/base_formatter_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/lib/spec/core/formatters/documentation_formatter_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/lib/spec/core/formatters/progress_formatter_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/lib/spec/core/kernel_extensions_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/lib/spec/core/mocha_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/lib/spec/core/runner_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/lib/spec/core/world_spec.rb</filename>
    </removed>
    <removed>
      <filename>spec/lib/spec/core_spec.rb</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>6785d2b5c91a8ae69dcc54fa65b8a8a363a17e35</id>
    </parent>
  </parents>
  <author>
    <name>Chad Humphries</name>
    <email>chad@spicycode.com</email>
  </author>
  <url>http://github.com/rspec/core/commit/4c37c385f6d821d5fea5c0635838987011eabc04</url>
  <id>4c37c385f6d821d5fea5c0635838987011eabc04</id>
  <committed-date>2009-06-29T13:50:19-07:00</committed-date>
  <authored-date>2009-06-29T13:50:19-07:00</authored-date>
  <message>Spec-&gt;Rspec.   Refactoring complete</message>
  <tree>a8e4361251d544bd409900b198045b4a8f7a6030</tree>
  <committer>
    <name>Chad Humphries</name>
    <email>chad@spicycode.com</email>
  </committer>
</commit>
