public
Description: The easy to use rails wiki
Homepage: http://signalwiki.com
Clone URL: git://github.com/queso/signal-wiki.git
Adding spec folder back in.

git-svn-id: svn://svn.roundhaus.com/steelpixel/signal/trunk@66 
c8df4723-973c-463a-b466-deb924a697da
josh (author)
Sun Oct 07 06:37:28 -0700 2007
commit  e61d2fd9cba463c0185e8db3105fa517bb288f33
tree    fc4f0125839ba086b59637460536953cb207cb89
parent  2cdf731acbce74b2bcdc5b377b4b067ed0ccb93e
...
1
2
3
4
 
...
1
2
3
 
4
0
@@ -1,4 +1,4 @@
0
 #!/usr/bin/env ruby
0
 $LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__) + "/../vendor/plugins/rspec/lib"))
0
 require 'spec'
0
-::Spec::Runner::CommandLine.run(ARGV, STDERR, STDOUT, true, true)
0
+exit ::Spec::Runner::CommandLine.run(ARGV, STDERR, STDOUT)
...
9
10
11
12
 
13
14
15
16
17
18
19
20
21
22
 
 
23
24
25
26
27
28
29
 
30
31
32
...
83
84
85
86
...
9
10
11
 
12
13
14
15
 
16
17
18
19
 
 
20
21
22
23
24
25
26
27
 
28
29
30
31
...
82
83
84
 
0
@@ -9,24 +9,23 @@ require 'optparse'
0
 specmate = ENV['HOME'] + "/Library/Application\ Support/TextMate/Bundles/RSpec.tmbundle/Support/lib"
0
 if File.directory?(specmate)
0
   $LOAD_PATH.unshift(specmate)
0
- require 'text_mate_formatter'
0
+ require 'spec/mate/text_mate_formatter'
0
 end
0
 
0
 # This is based on Florian Weber's TDDMate
0
-
0
 module Spec
0
   module Runner
0
     class RailsSpecServer
0
       def run(args, stderr, stdout)
0
- $stdout = stdout
0
- $stderr = stderr
0
+ $stdout = stdout
0
+ $stderr = stderr
0
 
0
         ::Dispatcher.reset_application!
0
         ::Dependencies.mechanism = :load
0
         require_dependency('application.rb') unless Object.const_defined?(:ApplicationController)
0
         load File.dirname(__FILE__) + '/../spec/spec_helper.rb'
0
     
0
- ::Spec::Runner::CommandLine.run(args, stderr, stdout, false, true)
0
+ ::Spec::Runner::CommandLine.run(args, stderr, stdout)
0
       end
0
     end
0
   end
0
@@ -83,4 +82,3 @@ if options[:daemon]
0
 else
0
   exec_server.call
0
 end
0
-

Comments

    No one has commented yet.