edit: $/Dev10/feature/vs_langs01/Merlin/Main/Languages/Ruby/Ruby/Runtime/RubyContext.cs;C785561
File: RubyContext.cs
===================================================================
--- $/Dev10/feature/vs_langs01/Merlin/Main/Languages/Ruby/Ruby/Runtime/RubyContext.cs;C785561  (server)    3/18/2009 11:44 AM
+++ Shelved Change: $/Dev10/feature/vs_langs01/Merlin/Main/Languages/Ruby/Ruby/Runtime/RubyContext.cs;version03
@@ -48,9 +48,9 @@
         public static readonly string/*!*/ MriReleaseDate = "2008-05-28";
 
         // IronRuby:
-        public const string/*!*/ IronRubyVersionString = "1.0.0.0";
-        public static readonly Version IronRubyVersion = new Version(1, 0, 0, 0);
-        internal const string/*!*/ IronRubyDisplayName = "IronRuby 1.0 Alpha";
+        public const string/*!*/ IronRubyVersionString = "0.3.0.0";
+        public static readonly Version IronRubyVersion = new Version(0, 3, 0, 0);
+        internal const string/*!*/ IronRubyDisplayName = "IronRuby 0.3 Alpha";
         internal const string/*!*/ IronRubyNames = "IronRuby;Ruby;rb";
         internal const string/*!*/ IronRubyFileExtensions = ".rb";
 
===================================================================
delete: $/Dev10/feature/vs_langs01/Merlin/Main/Languages/Ruby/Scripts/RunRSpec.cmd;C782965
File: RunRSpec.cmd
===================================================================
--- $/Dev10/feature/vs_langs01/Merlin/Main/Languages/Ruby/Scripts/RunRSpec.cmd;C782965  (server)    3/16/2009 11:17 AM
+++ [no target file]
@@ -1,55 +1,0 @@
-@echo off
-setlocal
-
-if "%1"=="-?" (
-    echo Example usages:
-    echo     RunRSpec array\collect_spec.rb
-    echo     RunRSpec ..Library\complex\abs_spec.rb
-    echo     RunRSpec -ruby -e "returns an instance of Array" array\allocate_spec.rb
-    echo You can also use:
-    echo     rake why_regression array collect
-    goto END:
-)
-
-if "%1"=="-ruby" (
-    set RUBY_CMD=%RUBY18_EXE%
-    REM set RUBY_EXE=%RUBY18_EXE%
-    REM set MSPEC_RUNNER=1
-    shift
-    goto RUN_RUBY_CMD
-)
-
-if "%1"=="-ruby19" (
-    set RUBY_CMD=%RUBY19_EXE%
-    set RUBY_EXE=%RUBY19_EXE%
-    REM set MSPEC_RUNNER=1
-    shift
-    goto RUN_RUBY_CMD
-)
-
-set RUBY_CMD=%MERLIN_ROOT%\bin\Debug\ir.exe
-set RUBY_CMD_OPTS=-X:Interpret
-set EXCL_TAGS=--excl-tag fails --excl-tag critical
-
-:RUN_RUBY_CMD
-
-if not exist %RUBY_CMD% (
-    echo RunRSpec could not find %RUBY_CMD%
-    goto END:
-)
-
-if "%1" == "-e" (
-    set EXAMPLE_STR=--example %2
-    shift
-    shift
-)
-
-pushd %MERLIN_ROOT%\..\External\Languages\IronRuby\mspec
-
-@echo on
-
-%RUBY_CMD% %RUBY_CMD_OPTS% mspec\bin\mspec-run -fd --verbose %EXAMPLE_STR% %EXCL_TAGS% --config default.mspec rubyspec/core/%1
-
-@popd
-
-:END
===================================================================
edit: $/Merlin_External/Languages/IronRuby/mspec/rubyspec/core/file/expand_path_spec.rb;C715722
File: expand_path_spec.rb
===================================================================
--- $/Merlin_External/Languages/IronRuby/mspec/rubyspec/core/file/expand_path_spec.rb;C715722  (server)    3/18/2009 12:06 PM
+++ Shelved Change: $/Merlin_External/Languages/IronRuby/mspec/rubyspec/core/file/expand_path_spec.rb;version03
@@ -40,7 +40,7 @@
   end
 
   # FIXME: do not use conditionals like this around #it blocks
-  unless not home = ENV['HOME']
+  unless not home = ENV['HOME'].tr('\\', '/')
     it "converts a pathname to an absolute pathname, using ~ (home) as base" do
       File.expand_path('~').should == home
       File.expand_path('~', '/tmp/gumby/ddd').should == home
===================================================================
