<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -21,5 +21,5 @@ config.action_controller.allow_forgery_protection    = false
 # ActionMailer::Base.deliveries array.
 config.action_mailer.delivery_method = :test
 
-config.gem 'rspec', :lib =&gt; 'spec', :version =&gt; &quot;1.1.11&quot;
-config.gem 'rspec-rails', :lib =&gt; 'spec/rails', :version =&gt; &quot;1.1.11&quot;
+config.gem 'rspec', :lib =&gt; 'spec', :version =&gt; &quot;1.2.4&quot;
+config.gem 'rspec-rails', :lib =&gt; 'spec/rails', :version =&gt; &quot;1.2.4&quot;</diff>
      <filename>config/environments/test.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,12 +1,51 @@
-raise &quot;To avoid rake task loading problems: run 'rake clobber' in vendor/plugins/rspec&quot; if File.directory?(File.join(File.dirname(__FILE__), *%w[.. .. vendor plugins rspec pkg]))
-raise &quot;To avoid rake task loading problems: run 'rake clobber' in vendor/plugins/rspec-rails&quot; if File.directory?(File.join(File.dirname(__FILE__), *%w[.. .. vendor plugins rspec-rails pkg]))
+gem 'test-unit', '1.2.3' if RUBY_VERSION.to_f &gt;= 1.9
+rspec_gem_dir = nil
+Dir[&quot;#{RAILS_ROOT}/vendor/gems/*&quot;].each do |subdir|
+  rspec_gem_dir = subdir if subdir.gsub(&quot;#{RAILS_ROOT}/vendor/gems/&quot;,&quot;&quot;) =~ /^(\w+-)?rspec-(\d+)/ &amp;&amp; File.exist?(&quot;#{subdir}/lib/spec/rake/spectask.rb&quot;)
+end
+rspec_plugin_dir = File.expand_path(File.dirname(__FILE__) + '/../../vendor/plugins/rspec')
+
+if rspec_gem_dir &amp;&amp; (test ?d, rspec_plugin_dir)
+  raise &quot;\n#{'*'*50}\nYou have rspec installed in both vendor/gems and vendor/plugins\nPlease pick one and dispose of the other.\n#{'*'*50}\n\n&quot;
+end
+
+if rspec_gem_dir
+  $LOAD_PATH.unshift(&quot;#{rspec_gem_dir}/lib&quot;)
+elsif File.exist?(rspec_plugin_dir)
+  $LOAD_PATH.unshift(&quot;#{rspec_plugin_dir}/lib&quot;)
+end
+
+# Don't load rspec if running &quot;rake gems:*&quot;
+unless ARGV.any? {|a| a =~ /^gems/}
+
+begin
+  require 'spec/rake/spectask'
+rescue MissingSourceFile
+  module Spec
+    module Rake
+      class SpecTask
+        def initialize(name)
+          task name do
+            # if rspec-rails is a configured gem, this will output helpful material and exit ...
+            require File.expand_path(File.dirname(__FILE__) + &quot;/../../config/environment&quot;)
 
-# In rails 1.2, plugins aren't available in the path until they're loaded.
-# Check to see if the rspec plugin is installed first and require
-# it if it is.  If not, use the gem version.
-rspec_base = File.expand_path(File.dirname(__FILE__) + '/../../vendor/plugins/rspec/lib')
-$LOAD_PATH.unshift(rspec_base) if File.exist?(rspec_base)
-require 'spec/rake/spectask'
+            # ... otherwise, do this:
+            raise &lt;&lt;-MSG
+
+#{&quot;*&quot; * 80}
+*  You are trying to run an rspec rake task defined in
+*  #{__FILE__},
+*  but rspec can not be found in vendor/gems, vendor/plugins or system gems.
+#{&quot;*&quot; * 80}
+MSG
+          end
+        end
+      end
+    end
+  end
+end
+
+Rake.application.instance_variable_get('@tasks').delete('default')
 
 spec_prereq = File.exist?(File.join(RAILS_ROOT, 'config', 'database.yml')) ? &quot;db:test:prepare&quot; : :noop
 task :noop do
@@ -31,33 +70,33 @@ namespace :spec do
       IO.readlines(&quot;#{RAILS_ROOT}/spec/rcov.opts&quot;).map {|l| l.chomp.split &quot; &quot;}.flatten
     end
   end
-  
+
   desc &quot;Print Specdoc for all specs (excluding plugin specs)&quot;
   Spec::Rake::SpecTask.new(:doc) do |t|
     t.spec_opts = [&quot;--format&quot;, &quot;specdoc&quot;, &quot;--dry-run&quot;]
     t.spec_files = FileList['spec/**/*_spec.rb']
   end
 
-  desc &quot;Print Specdoc for all plugin specs&quot;
+  desc &quot;Print Specdoc for all plugin examples&quot;
   Spec::Rake::SpecTask.new(:plugin_doc) do |t|
     t.spec_opts = [&quot;--format&quot;, &quot;specdoc&quot;, &quot;--dry-run&quot;]
     t.spec_files = FileList['vendor/plugins/**/spec/**/*_spec.rb'].exclude('vendor/plugins/rspec/*')
   end
 
-  [:models, :controllers, :views, :helpers, :lib].each do |sub|
-    desc &quot;Run the specs under spec/#{sub}&quot;
+  [:models, :controllers, :views, :helpers, :lib, :integration].each do |sub|
+    desc &quot;Run the code examples in spec/#{sub}&quot;
     Spec::Rake::SpecTask.new(sub =&gt; spec_prereq) do |t|
       t.spec_opts = ['--options', &quot;\&quot;#{RAILS_ROOT}/spec/spec.opts\&quot;&quot;]
       t.spec_files = FileList[&quot;spec/#{sub}/**/*_spec.rb&quot;]
     end
   end
-  
-  desc &quot;Run the specs under vendor/plugins (except RSpec's own)&quot;
+
+  desc &quot;Run the code examples in vendor/plugins (except RSpec's own)&quot;
   Spec::Rake::SpecTask.new(:plugins =&gt; spec_prereq) do |t|
     t.spec_opts = ['--options', &quot;\&quot;#{RAILS_ROOT}/spec/spec.opts\&quot;&quot;]
     t.spec_files = FileList['vendor/plugins/**/spec/**/*_spec.rb'].exclude('vendor/plugins/rspec/*').exclude(&quot;vendor/plugins/rspec-rails/*&quot;)
   end
-  
+
   namespace :plugins do
     desc &quot;Runs the examples for rspec_on_rails&quot;
     Spec::Rake::SpecTask.new(:rspec_on_rails) do |t|
@@ -74,36 +113,43 @@ namespace :spec do
     ::STATS_DIRECTORIES &lt;&lt; %w(Controller\ specs spec/controllers) if File.exist?('spec/controllers')
     ::STATS_DIRECTORIES &lt;&lt; %w(Helper\ specs spec/helpers) if File.exist?('spec/helpers')
     ::STATS_DIRECTORIES &lt;&lt; %w(Library\ specs spec/lib) if File.exist?('spec/lib')
+    ::STATS_DIRECTORIES &lt;&lt; %w(Routing\ specs spec/routing) if File.exist?('spec/routing')
+    ::STATS_DIRECTORIES &lt;&lt; %w(Integration\ specs spec/integration) if File.exist?('spec/integration')
     ::CodeStatistics::TEST_TYPES &lt;&lt; &quot;Model specs&quot; if File.exist?('spec/models')
     ::CodeStatistics::TEST_TYPES &lt;&lt; &quot;View specs&quot; if File.exist?('spec/views')
     ::CodeStatistics::TEST_TYPES &lt;&lt; &quot;Controller specs&quot; if File.exist?('spec/controllers')
     ::CodeStatistics::TEST_TYPES &lt;&lt; &quot;Helper specs&quot; if File.exist?('spec/helpers')
     ::CodeStatistics::TEST_TYPES &lt;&lt; &quot;Library specs&quot; if File.exist?('spec/lib')
-    ::STATS_DIRECTORIES.delete_if {|a| a[0] =~ /test/}
+    ::CodeStatistics::TEST_TYPES &lt;&lt; &quot;Routing specs&quot; if File.exist?('spec/routing')
+    ::CodeStatistics::TEST_TYPES &lt;&lt; &quot;Integration specs&quot; if File.exist?('spec/integration')
   end
 
   namespace :db do
     namespace :fixtures do
-      desc &quot;Load fixtures (from spec/fixtures) into the current environment's database.  Load specific fixtures using FIXTURES=x,y&quot;
+      desc &quot;Load fixtures (from spec/fixtures) into the current environment's database.  Load specific fixtures using FIXTURES=x,y. Load from subdirectory in test/fixtures using FIXTURES_DIR=z.&quot;
       task :load =&gt; :environment do
+        ActiveRecord::Base.establish_connection(Rails.env)
+        base_dir = File.join(Rails.root, 'spec', 'fixtures')
+        fixtures_dir = ENV['FIXTURES_DIR'] ? File.join(base_dir, ENV['FIXTURES_DIR']) : base_dir
+
         require 'active_record/fixtures'
-        ActiveRecord::Base.establish_connection(RAILS_ENV.to_sym)
-        (ENV['FIXTURES'] ? ENV['FIXTURES'].split(/,/) : Dir.glob(File.join(RAILS_ROOT, 'spec', 'fixtures', '*.{yml,csv}'))).each do |fixture_file|
-          Fixtures.create_fixtures('spec/fixtures', File.basename(fixture_file, '.*'))
+        (ENV['FIXTURES'] ? ENV['FIXTURES'].split(/,/).map {|f| File.join(fixtures_dir, f) } : Dir.glob(File.join(fixtures_dir, '*.{yml,csv}'))).each do |fixture_file|
+          Fixtures.create_fixtures(File.dirname(fixture_file), File.basename(fixture_file, '.*'))
         end
       end
     end
   end
 
   namespace :server do
-    daemonized_server_pid = File.expand_path(&quot;spec_server.pid&quot;, RAILS_ROOT + &quot;/tmp&quot;)
+    daemonized_server_pid = File.expand_path(&quot;#{RAILS_ROOT}/tmp/pids/spec_server.pid&quot;)
 
     desc &quot;start spec_server.&quot;
     task :start do
       if File.exist?(daemonized_server_pid)
         $stderr.puts &quot;spec_server is already running.&quot;
       else
-        $stderr.puts &quot;Starting up spec server.&quot;
+        $stderr.puts %Q{Starting up spec_server ...}
+        FileUtils.mkdir_p('tmp/pids') unless test ?d, 'tmp/pids'
         system(&quot;ruby&quot;, &quot;script/spec_server&quot;, &quot;--daemon&quot;, &quot;--pid&quot;, daemonized_server_pid)
       end
     end
@@ -113,20 +159,24 @@ namespace :spec do
       unless File.exist?(daemonized_server_pid)
         $stderr.puts &quot;No server running.&quot;
       else
-        $stderr.puts &quot;Shutting down spec_server.&quot;
-        system(&quot;kill&quot;, &quot;-s&quot;, &quot;TERM&quot;, File.read(daemonized_server_pid).strip) &amp;&amp; 
+        $stderr.puts &quot;Shutting down spec_server ...&quot;
+        system(&quot;kill&quot;, &quot;-s&quot;, &quot;TERM&quot;, File.read(daemonized_server_pid).strip) &amp;&amp;
         File.delete(daemonized_server_pid)
       end
     end
 
-    desc &quot;reload spec_server.&quot;
-    task :restart do
-      unless File.exist?(daemonized_server_pid)
-        $stderr.puts &quot;No server running.&quot;
+    desc &quot;restart spec_server.&quot;
+    task :restart =&gt; [:stop, :start]
+
+    desc &quot;check if spec server is running&quot;
+    task :status do
+      if File.exist?(daemonized_server_pid)
+        $stderr.puts %Q{spec_server is running (PID: #{File.read(daemonized_server_pid).gsub(&quot;\n&quot;,&quot;&quot;)})}
       else
-        $stderr.puts &quot;Reloading down spec_server.&quot;
-        system(&quot;kill&quot;, &quot;-s&quot;, &quot;USR2&quot;, File.read(daemonized_server_pid).strip)
+        $stderr.puts &quot;No server running.&quot;
       end
     end
   end
 end
+
+end</diff>
      <filename>lib/tasks/rspec.rake</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,6 @@
 #!/usr/bin/env ruby
-ENV['RSPEC'] = 'true'
-system 'autotest'
\ No newline at end of file
+gem 'test-unit', '1.2.3' if RUBY_VERSION.to_f &gt;= 1.9
+ENV['RSPEC'] = 'true'     # allows autotest to discover rspec
+ENV['AUTOTEST'] = 'true'  # allows autotest to run w/ color on linux
+system((RUBY_PLATFORM =~ /mswin|mingw/ ? 'autotest.bat' : 'autotest'), *ARGV) ||
+  $stderr.puts(&quot;Unable to find autotest.  Please install ZenTest or fix your PATH&quot;)</diff>
      <filename>script/autospec</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,10 @@
 #!/usr/bin/env ruby
-$LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__) + &quot;/../vendor/plugins/rspec/lib&quot;))
-require 'spec'
-exit ::Spec::Runner::CommandLine.run(::Spec::Runner::OptionParser.parse(ARGV, STDERR, STDOUT))
+if ARGV.any? {|arg| %w[--drb -X --generate-options -G --help -h --version -v].include?(arg)}
+  require 'rubygems' unless ENV['NO_RUBYGEMS']
+else
+  gem 'test-unit', '1.2.3' if RUBY_VERSION.to_f &gt;= 1.9
+  ENV[&quot;RAILS_ENV&quot;] ||= 'test'
+  require File.expand_path(File.dirname(__FILE__) + &quot;/../config/environment&quot;) unless defined?(RAILS_ROOT)
+end
+require 'spec/autorun'
+exit ::Spec::Runner::CommandLine.run</diff>
      <filename>script/spec</filename>
    </modified>
    <modified>
      <diff>@@ -1,116 +1,9 @@
 #!/usr/bin/env ruby
-$LOAD_PATH.unshift File.dirname(__FILE__) + '/../vendor/plugins/rspec/lib' # For rspec installed as plugin
-require 'rubygems'
-require 'drb/drb'
-require 'rbconfig'
-require 'spec'
-require 'optparse'
-
-# This is based on Florian Weber's TDDMate
-module Spec
-  module Runner
-    class RailsSpecServer
-      def run(argv, stderr, stdout)
-        $stdout = stdout
-        $stderr = stderr
-
-        base = ActiveRecord::Base
-        def base.clear_reloadable_connections!
-          active_connections.each do |name, conn|
-            if conn.requires_reloading?
-              conn.disconnect!
-              active_connections.delete(name)
-            end
-          end
-        end
-
-        if ActionController.const_defined?(:Dispatcher)
-          dispatcher = ::ActionController::Dispatcher.new($stdout)
-          dispatcher.cleanup_application
-        elsif ::Dispatcher.respond_to?(:reset_application!)
-          ::Dispatcher.reset_application!
-        else
-          raise &quot;Application reloading failed&quot;
-        end
-        if Object.const_defined?(:Fixtures) &amp;&amp; Fixtures.respond_to?(:reset_cache)
-          Fixtures.reset_cache
-        end
-
-        ::Dependencies.mechanism = :load
-        require_dependency('application.rb') unless Object.const_defined?(:ApplicationController)
-        load File.dirname(__FILE__) + '/../spec/spec_helper.rb'
-
-        if in_memory_database?
-          load &quot;#{RAILS_ROOT}/db/schema.rb&quot; # use db agnostic schema by default
-          ActiveRecord::Migrator.up('db/migrate') # use migrations
-        end
-
-        ::Spec::Runner::CommandLine.run(
-          ::Spec::Runner::OptionParser.parse(
-            argv,
-            $stderr,
-            $stdout
-          )
-        )
-      end
+gem 'test-unit', '1.2.3' if RUBY_VERSION.to_f &gt;= 1.9
 
-      def in_memory_database?
-        ENV[&quot;RAILS_ENV&quot;] == &quot;test&quot; and
-        ::ActiveRecord::Base.connection.class.to_s == &quot;ActiveRecord::ConnectionAdapters::SQLite3Adapter&quot; and
-        ::Rails::Configuration.new.database_configuration['test']['database'] == ':memory:'
-      end
-    end
-  end
-end
 puts &quot;Loading Rails environment&quot;
+ENV[&quot;RAILS_ENV&quot;] ||= 'test'
+require File.expand_path(File.dirname(__FILE__) + &quot;/../config/environment&quot;) unless defined?(RAILS_ROOT)
 
-ENV[&quot;RAILS_ENV&quot;] = &quot;test&quot;
-require File.expand_path(File.dirname(__FILE__) + &quot;/../config/environment&quot;)
-require 'dispatcher'
-
-def restart_test_server
-  puts &quot;restarting&quot;
-  config       = ::Config::CONFIG
-  ruby         = File::join(config['bindir'], config['ruby_install_name']) + config['EXEEXT']
-  command_line = [ruby, $0, ARGV].flatten.join(' ')
-  exec(command_line)
-end
-
-def daemonize(pid_file = nil)
-  return yield if $DEBUG
-  pid = Process.fork{
-    Process.setsid
-    Dir.chdir(RAILS_ROOT)
-    trap(&quot;SIGINT&quot;){ exit! 0 }
-    trap(&quot;SIGTERM&quot;){ exit! 0 }
-    trap(&quot;SIGHUP&quot;){ restart_test_server }
-    File.open(&quot;/dev/null&quot;){|f|
-      STDERR.reopen f
-      STDIN.reopen  f
-      STDOUT.reopen f
-    }
-    yield
-  }
-  puts &quot;spec_server launched. (PID: %d)&quot; % pid
-  File.open(pid_file,&quot;w&quot;){|f| f.puts pid } if pid_file
-  exit! 0
-end
-
-options = Hash.new
-opts = OptionParser.new
-opts.on(&quot;-d&quot;, &quot;--daemon&quot;){|v| options[:daemon] = true }
-opts.on(&quot;-p&quot;, &quot;--pid PIDFILE&quot;){|v| options[:pid] = v }
-opts.parse!(ARGV)
-
-puts &quot;Ready&quot;
-exec_server = lambda {
-  trap(&quot;USR2&quot;) { restart_test_server } if Signal.list.has_key?(&quot;USR2&quot;)
-  DRb.start_service(&quot;druby://127.0.0.1:8989&quot;, Spec::Runner::RailsSpecServer.new)
-  DRb.thread.join
-}
-
-if options[:daemon]
-  daemonize(options[:pid], &amp;exec_server)
-else
-  exec_server.call
-end
+require 'optparse'
+require 'spec/rails/spec_server'</diff>
      <filename>script/spec_server</filename>
    </modified>
    <modified>
      <diff>@@ -1,2 +1,2 @@
---exclude &quot;spec/*,gems/*&quot; 
+--exclude &quot;spec/*,gems/*&quot;
 --rails
\ No newline at end of file</diff>
      <filename>spec/rcov.opts</filename>
    </modified>
    <modified>
      <diff>@@ -1,7 +1,4 @@
 --colour
---format
-progress
---loadby
-mtime
+--format progress
+--loadby mtime
 --reverse
---backtrace
\ No newline at end of file</diff>
      <filename>spec/spec.opts</filename>
    </modified>
    <modified>
      <diff>@@ -1,14 +1,16 @@
 # This file is copied to ~/spec when you run 'ruby script/generate rspec'
 # from the project root directory.
-ENV[&quot;RAILS_ENV&quot;] = &quot;test&quot;
-require File.expand_path(File.dirname(__FILE__) + &quot;/../config/environment&quot;)
-require 'spec'
+ENV[&quot;RAILS_ENV&quot;] ||= 'test'
+require File.dirname(__FILE__) + &quot;/../config/environment&quot; unless defined?(RAILS_ROOT)
+require 'spec/autorun'
 require 'spec/rails'
 require 'rspec_on_rails_on_crack'
 require 'model_stubbing'
 require File.dirname(__FILE__) + &quot;/model_stubs&quot;
-#require 'ruby-debug'
-#Debugger.start
+
+# Requires supporting files with custom matchers and macros, etc,
+# in ./support/ and its subdirectories.
+Dir[&quot;#{File.dirname(__FILE__)}/support/**/*.rb&quot;].each {|f| require f}
 
 Spec::Runner.configure do |config|
   include AuthenticatedTestHelper
@@ -19,13 +21,5 @@ Spec::Runner.configure do |config|
   def current_site(site)
     @controller.stub!(:current_site).and_return(@site = site ? sites(site) : nil)
   end
- 
-  # Sets the current user in the session from the user fixtures.
-#  def login_as(user)
- #   controller.stub!(:current_user).and_return(@user = user ? users(user) : nil)
- # end
- 
-  #def authorize_as(user)
- #   @request.env[&quot;HTTP_AUTHORIZATION&quot;] = user ? &quot;Basic #{Base64.encode64(&quot;#{users(user).login}:test&quot;)}&quot; : nil
-  #end
+
 end</diff>
      <filename>spec/spec_helper.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-module Spec::Extensions::Main
+module Spec::DSL::Main
   def describe_access_for(controller, &amp;block)
     RspecOnRailsOnCrack::ControllerAccessProxy.new(self, controller).instance_eval(&amp;block)
   end</diff>
      <filename>vendor/plugins/rspec_on_rails_on_crack/lib/rspec_on_rails_on_crack/controller_example_group_methods.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-module Spec::Extensions::Main
+module Spec::DSL::Main
   def describe_validations_for(model, attributes, &amp;block)
     describe model, &quot;(validations)&quot;, :type =&gt; :model do
       before :all do</diff>
      <filename>vendor/plugins/rspec_on_rails_on_crack/lib/rspec_on_rails_on_crack/model_example_group_methods.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>a1df3095c0019e1f23cc1cf7760b5e62e8846c1b</id>
    </parent>
  </parents>
  <author>
    <name>c3</name>
    <email>courtenay@entp.com</email>
  </author>
  <url>http://github.com/courtenay/altered_beast/commit/0c77eb00809958d674ea180f9714be45615c170b</url>
  <id>0c77eb00809958d674ea180f9714be45615c170b</id>
  <committed-date>2009-08-04T11:38:00-07:00</committed-date>
  <authored-date>2009-08-04T11:38:00-07:00</authored-date>
  <message>Upgrade rspec to 1.2.4, fix model stubbing, all tests pass! woot.</message>
  <tree>090ad8d449045b95a293873117ab0ae5733865c5</tree>
  <committer>
    <name>c3</name>
    <email>courtenay@entp.com</email>
  </committer>
</commit>
