OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2013 The Native Client Authors. All rights reserved. | 2 * Copyright (c) 2013 The Native Client Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 NaClTerm.nmf = 'ruby.nmf' | 7 NaClTerm.nmf = 'ruby.nmf'; |
8 | 8 |
9 /* | 9 /* |
10 * Pass /bin/irb as argv[1] by default so we get an interactive | 10 * Pass /bin/irb as argv[1] by default so we get an interactive |
11 * shell | 11 * shell |
12 */ | 12 */ |
13 NaClTerm.argv = ['/bin/irb'] | 13 NaClTerm.argv = ['/bin/irb']; |
OLD | NEW |