redgreen 1.2.1 → 1.2.2
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/redgreen/autotest.rb +3 -3
- metadata +1 -1
data/lib/redgreen/autotest.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
Autotest.send(:alias_method, :
|
2
|
-
Autotest.send(:define_method, :
|
3
|
-
|
1
|
+
Autotest.send(:alias_method, :real_ruby, :ruby)
|
2
|
+
Autotest.send(:define_method, :ruby) do |*args|
|
3
|
+
real_ruby + %[ -rrubygems -e "require 'redgreen'" ]
|
4
4
|
end
|
5
5
|
|
6
6
|
if PLATFORM =~ /win32/
|
metadata
CHANGED