public
Description: Behaviour Driven Development framework for Ruby
Homepage: http://rspec.info
Clone URL: git://github.com/dchelimsky/rspec.git
Click here to lend your support to: rspec and make a donation at www.pledgie.com !
Restore colorized output in windows w/ autotest [#415]
dchelimsky (author)
Fri Oct 03 02:29:15 -0700 2008
commit  848280c3d3a4f91de7baa7d5c94250758b395712
tree    b22664d677c26654638edfe1670ab60f985c1602
parent  91644909829ed4ec348f971bcedd896b687f924f
...
 
 
 
 
 
 
1
2
3
...
1
2
3
4
5
6
7
8
9
0
@@ -1,3 +1,9 @@
0
+=== Development
0
+
0
+* 1 bug fix
0
+
0
+  * restore colorized output in windows w/ autotest. Fixes #413.
0
+
0
 === Version 1.1.7 / 2008-10-02
0
 
0
 * no changes since 1.1.6, but releasing rspec-1.1.7 to align versions with rspec-rails-1.1.7
...
1
2
 
 
3
...
1
 
2
3
4
0
@@ -1,3 +1,4 @@
0
 #!/usr/bin/env ruby
0
-ENV['RSPEC'] = 'true'
0
+ENV['RSPEC'] = 'true'     # allows autotest to discover rspec
0
+ENV['AUTOTEST'] = 'true'  # allows autotest to run w/ color on windows
0
 system("autotest", *ARGV)

Comments