diff mx/mx_graal.py @ 14048:d2c84a0bf37a

Remove Ruby implementation.
author Chris Seaton <chris.seaton@oracle.com>
date Tue, 04 Mar 2014 01:08:46 +0000
parents fad977c86a88
children be7ebdf41bea
line wrap: on
line diff
--- a/mx/mx_graal.py	Fri Feb 28 16:35:52 2014 -0800
+++ b/mx/mx_graal.py	Tue Mar 04 01:08:46 2014 +0000
@@ -1466,17 +1466,6 @@
 def isGraalEnabled(vm):
     return vm != 'original' and not vm.endswith('nograal')
 
-def rubyShellCp():
-    return mx.classpath("com.oracle.truffle.ruby.shell")
-
-def rubyShellClass():
-    return "com.oracle.truffle.ruby.shell.Shell"
-
-def ruby(args):
-    """run a Ruby program or shell"""
-    vmArgs, rubyArgs = _extract_VM_args(args, useDoubleDash=True)
-    vm(vmArgs + ['-cp', rubyShellCp(), rubyShellClass()] + rubyArgs)
-
 def site(args):
     """create a website containing javadoc and the project dependency graph"""
 
@@ -1636,8 +1625,7 @@
         'deoptalot' : [deoptalot, '[n]'],
         'longtests' : [longtests, ''],
         'sl' : [sl, '[SL args|@VM options]'],
-        'trufflejar' : [trufflejar, ''],
-        'ruby' : [ruby, '[Ruby args|@VM options]']
+        'trufflejar' : [trufflejar, '']
     }
 
     mx.add_argument('--jacoco', help='instruments com.oracle.* classes using JaCoCo', default='off', choices=['off', 'on', 'append'])