Browse Source

Update to IronRuby 1.1.2

pull/15/head
mrward 15 years ago
parent
commit
a825d13f0f
  1. BIN
      src/AddIns/BackendBindings/Ruby/IronRuby/bin/Chiron.exe
  2. BIN
      src/AddIns/BackendBindings/Ruby/IronRuby/bin/IronRuby.Libraries.Yaml.dll
  3. BIN
      src/AddIns/BackendBindings/Ruby/IronRuby/bin/IronRuby.Libraries.dll
  4. BIN
      src/AddIns/BackendBindings/Ruby/IronRuby/bin/IronRuby.dll
  5. BIN
      src/AddIns/BackendBindings/Ruby/IronRuby/bin/Microsoft.Dynamic.dll
  6. BIN
      src/AddIns/BackendBindings/Ruby/IronRuby/bin/Microsoft.Scripting.Metadata.dll
  7. BIN
      src/AddIns/BackendBindings/Ruby/IronRuby/bin/Microsoft.Scripting.dll
  8. BIN
      src/AddIns/BackendBindings/Ruby/IronRuby/bin/ir.exe
  9. 5
      src/AddIns/BackendBindings/Ruby/RubyBinding/Test/Console/RubyConsoleHostTests.cs

BIN
src/AddIns/BackendBindings/Ruby/IronRuby/bin/Chiron.exe

Binary file not shown.

BIN
src/AddIns/BackendBindings/Ruby/IronRuby/bin/IronRuby.Libraries.Yaml.dll

Binary file not shown.

BIN
src/AddIns/BackendBindings/Ruby/IronRuby/bin/IronRuby.Libraries.dll

Binary file not shown.

BIN
src/AddIns/BackendBindings/Ruby/IronRuby/bin/IronRuby.dll

Binary file not shown.

BIN
src/AddIns/BackendBindings/Ruby/IronRuby/bin/Microsoft.Dynamic.dll

Binary file not shown.

BIN
src/AddIns/BackendBindings/Ruby/IronRuby/bin/Microsoft.Scripting.Metadata.dll

Binary file not shown.

BIN
src/AddIns/BackendBindings/Ruby/IronRuby/bin/Microsoft.Scripting.dll

Binary file not shown.

BIN
src/AddIns/BackendBindings/Ruby/IronRuby/bin/ir.exe

Binary file not shown.

5
src/AddIns/BackendBindings/Ruby/RubyBinding/Test/Console/RubyConsoleHostTests.cs

@ -6,7 +6,6 @@ using ICSharpCode.AvalonEdit; @@ -6,7 +6,6 @@ using ICSharpCode.AvalonEdit;
using ICSharpCode.RubyBinding;
using ICSharpCode.Scripting;
using ICSharpCode.Scripting.Tests.Utils;
using IronRuby.Hosting;
using IronRuby.Runtime;
using Microsoft.Scripting;
using Microsoft.Scripting.Hosting;
@ -50,14 +49,14 @@ namespace RubyBinding.Tests.Console @@ -50,14 +49,14 @@ namespace RubyBinding.Tests.Console
public void OptionsParserCreatedIsRubyOptionsParser()
{
OptionsParser parser = host.CallCreateOptionsParser();
Assert.IsInstanceOf(typeof(RubyOptionsParser), parser);
Assert.IsInstanceOf(typeof(IronRuby.Hosting.RubyOptionsParser), parser);
}
[Test]
public void CommandLineCreatedIsRubyCommandLine()
{
CommandLine commandLine = host.CallCreateCommandLine();
Assert.IsInstanceOf(typeof(RubyCommandLine), commandLine);
Assert.IsInstanceOf(typeof(IronRuby.Hosting.RubyCommandLine), commandLine);
}
[Test]

Loading…
Cancel
Save