opal 0.7.0 → 0.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +11 -1
- data/lib/opal/cli.rb +9 -1
- data/lib/opal/cli_options.rb +12 -3
- data/lib/opal/cli_runners/nodejs.rb +3 -2
- data/lib/opal/version.rb +1 -1
- data/opal/corelib/kernel.rb +7 -0
- data/opal/corelib/runtime.js +4 -0
- data/spec/lib/cli_spec.rb +16 -0
- data/stdlib/nodejs.rb +1 -2
- data/stdlib/nodejs/{process.rb → kernel.rb} +7 -4
- data/stdlib/nodejs/node_modules/.bin/js-yaml +140 -0
- data/stdlib/nodejs/node_modules/glob/LICENSE +15 -0
- data/stdlib/nodejs/node_modules/glob/README.md +357 -0
- data/stdlib/nodejs/node_modules/glob/common.js +177 -0
- data/stdlib/nodejs/node_modules/glob/glob.js +649 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/inflight/.eslintrc +17 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/inflight/LICENSE +15 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/inflight/README.md +37 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/inflight/inflight.js +44 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/inflight/node_modules/wrappy/LICENSE +15 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/inflight/node_modules/wrappy/README.md +36 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/inflight/node_modules/wrappy/package.json +52 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/inflight/node_modules/wrappy/test/basic.js +51 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/inflight/node_modules/wrappy/wrappy.js +33 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/inflight/package.json +61 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/inflight/test.js +97 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/inherits/LICENSE +16 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/inherits/README.md +42 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/inherits/inherits.js +1 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/inherits/inherits_browser.js +23 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/inherits/package.json +51 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/inherits/test.js +25 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/.npmignore +1 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/.travis.yml +4 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/LICENSE +23 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/README.md +216 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/benchmark.js +15 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/browser.js +1181 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/minimatch.js +845 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/.npmignore +2 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/.travis.yml +3 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/README.md +121 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/example.js +8 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/index.js +191 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/.npmignore +2 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/.travis.yml +4 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/Makefile +6 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/README.md +80 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/example.js +5 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/index.js +38 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/package.json +73 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/test/balanced.js +56 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/.travis.yml +4 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/LICENSE +18 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/README.markdown +62 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/example/map.js +6 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/index.js +13 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/package.json +83 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/test/map.js +39 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/package.json +75 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/bash-comparison.js +32 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/bash-results.txt +1075 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/cases.txt +182 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/dollar.js +9 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/empty-option.js +10 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/generate.sh +24 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/negative-increment.js +15 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/nested.js +16 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/order.js +10 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/pad.js +13 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/same-type.js +7 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/sequence.js +50 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/package.json +60 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/test/basic.js +399 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/test/brace-expand.js +45 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/test/defaults.js +274 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/test/extglob-ending-with-state-char.js +8 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/once/LICENSE +27 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/once/README.md +51 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/once/node_modules/wrappy/LICENSE +15 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/once/node_modules/wrappy/README.md +36 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/once/node_modules/wrappy/package.json +52 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/once/node_modules/wrappy/test/basic.js +51 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/once/node_modules/wrappy/wrappy.js +33 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/once/once.js +21 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/once/package.json +60 -0
- data/stdlib/nodejs/node_modules/glob/node_modules/once/test/once.js +23 -0
- data/stdlib/nodejs/node_modules/glob/package.json +72 -0
- data/stdlib/nodejs/node_modules/glob/sync.js +409 -0
- data/stdlib/nodejs/node_modules/js-yaml/HISTORY.md +277 -0
- data/stdlib/nodejs/node_modules/js-yaml/LICENSE +21 -0
- data/stdlib/nodejs/node_modules/js-yaml/README.md +288 -0
- data/stdlib/nodejs/node_modules/js-yaml/bin/js-yaml.js +140 -0
- data/stdlib/nodejs/node_modules/js-yaml/bower.json +23 -0
- data/stdlib/nodejs/node_modules/js-yaml/dist/js-yaml.js +3666 -0
- data/stdlib/nodejs/node_modules/js-yaml/dist/js-yaml.min.js +3 -0
- data/stdlib/nodejs/node_modules/js-yaml/examples/custom_types.js +102 -0
- data/stdlib/nodejs/node_modules/js-yaml/examples/custom_types.yml +18 -0
- data/stdlib/nodejs/node_modules/js-yaml/examples/dumper.js +31 -0
- data/stdlib/nodejs/node_modules/js-yaml/examples/dumper.json +22 -0
- data/stdlib/nodejs/node_modules/js-yaml/examples/sample_document.js +18 -0
- data/stdlib/nodejs/node_modules/js-yaml/examples/sample_document.yml +197 -0
- data/stdlib/nodejs/node_modules/js-yaml/index.js +7 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml.js +39 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/common.js +62 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/dumper.js +554 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/exception.js +25 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/loader.js +1581 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/mark.js +78 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/schema.js +103 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/schema/core.js +18 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/schema/default_full.js +25 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/schema/default_safe.js +28 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/schema/failsafe.js +17 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/schema/json.js +25 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type.js +61 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/binary.js +133 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/bool.js +37 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/float.js +110 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/int.js +183 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/js/function.js +85 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/js/regexp.js +84 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/js/undefined.js +27 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/map.js +8 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/merge.js +12 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/null.js +36 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/omap.js +56 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/pairs.js +61 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/seq.js +8 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/set.js +33 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/str.js +8 -0
- data/stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/timestamp.js +98 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/.bin/esparse +117 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/.bin/esvalidate +177 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/HISTORY.md +115 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/LICENSE +21 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/README.md +239 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/arguments.js +36 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/choice.js +22 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/constants.js +59 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/help.js +13 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/nargs.js +33 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/parents.js +28 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/prefix_chars.js +23 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/sub_commands.js +49 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/sum.js +35 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/testformatters.js +270 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/index.js +1 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action.js +146 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/append.js +55 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/append/constant.js +47 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/count.js +40 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/help.js +48 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/store.js +50 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/store/constant.js +43 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/store/false.js +27 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/store/true.js +26 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/subparsers.js +148 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/version.js +50 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action_container.js +481 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/argparse.js +14 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/argument/error.js +50 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/argument/exclusive.js +54 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/argument/group.js +75 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/argument_parser.js +1168 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/const.js +18 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/help/added_formatters.js +88 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/help/formatter.js +798 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/namespace.js +77 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/.npmignore +2 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/.travis.yml +8 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/README.markdown +825 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/bower.json +33 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/component.json +11 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/foo.js +10 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/gulpfile.js +26 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/lib/underscore.string.js +673 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/libpeerconnection.log +0 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/package.json +107 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore/LICENSE +23 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore/README.md +22 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore/package.json +69 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore/underscore-min.js +6 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore/underscore.js +1415 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/package.json +62 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/README.md +73 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/bin/esparse.js +117 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/bin/esvalidate.js +177 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/esprima.js +3908 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/package.json +69 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/test/compat.js +239 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/test/reflect.js +422 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/test/run.js +66 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/test/runner.js +387 -0
- data/stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/test/test.js +20238 -0
- data/stdlib/nodejs/node_modules/js-yaml/package.json +83 -0
- data/{package.json → stdlib/nodejs/package.json} +0 -3
- data/stdlib/phantomjs.rb +1 -6
- data/tasks/testing.rake +1 -4
- metadata +191 -6
- data/stdlib/nodejs/runtime.rb +0 -26
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "js-yaml",
|
|
3
|
+
"version": "3.2.6",
|
|
4
|
+
"description": "YAML 1.2 parser and serializer",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"yaml",
|
|
7
|
+
"parser",
|
|
8
|
+
"serializer",
|
|
9
|
+
"pyyaml"
|
|
10
|
+
],
|
|
11
|
+
"homepage": "https://github.com/nodeca/js-yaml",
|
|
12
|
+
"author": {
|
|
13
|
+
"name": "Dervus Grim",
|
|
14
|
+
"email": "dervus.grim@gmail.com"
|
|
15
|
+
},
|
|
16
|
+
"contributors": [
|
|
17
|
+
{
|
|
18
|
+
"name": "Aleksey V Zapparov",
|
|
19
|
+
"email": "ixti@member.fsf.org",
|
|
20
|
+
"url": "http://www.ixti.net/"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"name": "Vitaly Puzrin",
|
|
24
|
+
"email": "vitaly@rcdesign.ru",
|
|
25
|
+
"url": "https://github.com/puzrin"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"name": "Martin Grenfell",
|
|
29
|
+
"email": "martin.grenfell@gmail.com",
|
|
30
|
+
"url": "http://got-ravings.blogspot.com"
|
|
31
|
+
}
|
|
32
|
+
],
|
|
33
|
+
"bugs": {
|
|
34
|
+
"url": "https://github.com/nodeca/js-yaml/issues"
|
|
35
|
+
},
|
|
36
|
+
"license": {
|
|
37
|
+
"type": "MIT",
|
|
38
|
+
"url": "https://github.com/nodeca/js-yaml/blob/master/LICENSE"
|
|
39
|
+
},
|
|
40
|
+
"repository": {
|
|
41
|
+
"type": "git",
|
|
42
|
+
"url": "git://github.com/nodeca/js-yaml.git"
|
|
43
|
+
},
|
|
44
|
+
"main": "./index.js",
|
|
45
|
+
"bin": {
|
|
46
|
+
"js-yaml": "bin/js-yaml.js"
|
|
47
|
+
},
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"argparse": "~ 0.1.11",
|
|
50
|
+
"esprima": "~ 1.0.2"
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"ansi": "*",
|
|
54
|
+
"benchmark": "*",
|
|
55
|
+
"mocha": "*"
|
|
56
|
+
},
|
|
57
|
+
"browser": {
|
|
58
|
+
"buffer": false
|
|
59
|
+
},
|
|
60
|
+
"gitHead": "9a7ae34da906df48e07e9eeb956f53d6aaab0b0b",
|
|
61
|
+
"_id": "js-yaml@3.2.6",
|
|
62
|
+
"scripts": {},
|
|
63
|
+
"_shasum": "dde1ffbe2726e3fff97efb65fd02dbd6647b8309",
|
|
64
|
+
"_from": "js-yaml@latest",
|
|
65
|
+
"_npmVersion": "1.4.28",
|
|
66
|
+
"_npmUser": {
|
|
67
|
+
"name": "vitaly",
|
|
68
|
+
"email": "vitaly@rcdesign.ru"
|
|
69
|
+
},
|
|
70
|
+
"maintainers": [
|
|
71
|
+
{
|
|
72
|
+
"name": "vitaly",
|
|
73
|
+
"email": "vitaly@rcdesign.ru"
|
|
74
|
+
}
|
|
75
|
+
],
|
|
76
|
+
"dist": {
|
|
77
|
+
"shasum": "dde1ffbe2726e3fff97efb65fd02dbd6647b8309",
|
|
78
|
+
"tarball": "http://registry.npmjs.org/js-yaml/-/js-yaml-3.2.6.tgz"
|
|
79
|
+
},
|
|
80
|
+
"directories": {},
|
|
81
|
+
"_resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.2.6.tgz",
|
|
82
|
+
"readme": "ERROR: No README data found!"
|
|
83
|
+
}
|
data/stdlib/phantomjs.rb
CHANGED
|
@@ -1,8 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
def exit status = 0
|
|
3
|
-
`callPhantom(['exit', status]);`
|
|
4
|
-
end
|
|
5
|
-
end
|
|
6
|
-
|
|
1
|
+
`Opal.exit = function(status) { callPhantom(['exit', status]); };`
|
|
7
2
|
STDOUT.write_proc = `function(str){callPhantom(['stdout', str])}`
|
|
8
3
|
STDERR.write_proc = `function(str){callPhantom(['stderr', str])}`
|
data/tasks/testing.rake
CHANGED
|
@@ -83,10 +83,7 @@ task :cruby_tests do
|
|
|
83
83
|
requires = files.map{|f| "require '#{f}'"}
|
|
84
84
|
filename = 'tmp/cruby_tests.rb'
|
|
85
85
|
mkdir_p File.dirname(filename)
|
|
86
|
-
File.write filename,
|
|
87
|
-
#{requires.join(" \n")}
|
|
88
|
-
exit
|
|
89
|
-
RUBY
|
|
86
|
+
File.write filename, requires.join("\n")
|
|
90
87
|
|
|
91
88
|
stubs = "-soptparse -sio/console -stimeout -smutex_m -srubygems -stempfile -smonitor"
|
|
92
89
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: opal
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Adam Beynon
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-02-
|
|
11
|
+
date: 2015-02-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: sourcemap
|
|
@@ -345,7 +345,6 @@ files:
|
|
|
345
345
|
- opal/corelib/time.rb
|
|
346
346
|
- opal/corelib/variables.rb
|
|
347
347
|
- opal/opal.rb
|
|
348
|
-
- package.json
|
|
349
348
|
- spec/README.md
|
|
350
349
|
- spec/filters/bugs/array.rb
|
|
351
350
|
- spec/filters/bugs/basic_object.rb
|
|
@@ -685,10 +684,196 @@ files:
|
|
|
685
684
|
- stdlib/nodejs/fileutils.rb
|
|
686
685
|
- stdlib/nodejs/io.rb
|
|
687
686
|
- stdlib/nodejs/irb.rb
|
|
688
|
-
- stdlib/nodejs/
|
|
687
|
+
- stdlib/nodejs/kernel.rb
|
|
688
|
+
- stdlib/nodejs/node_modules/.bin/js-yaml
|
|
689
|
+
- stdlib/nodejs/node_modules/glob/LICENSE
|
|
690
|
+
- stdlib/nodejs/node_modules/glob/README.md
|
|
691
|
+
- stdlib/nodejs/node_modules/glob/common.js
|
|
692
|
+
- stdlib/nodejs/node_modules/glob/glob.js
|
|
693
|
+
- stdlib/nodejs/node_modules/glob/node_modules/inflight/.eslintrc
|
|
694
|
+
- stdlib/nodejs/node_modules/glob/node_modules/inflight/LICENSE
|
|
695
|
+
- stdlib/nodejs/node_modules/glob/node_modules/inflight/README.md
|
|
696
|
+
- stdlib/nodejs/node_modules/glob/node_modules/inflight/inflight.js
|
|
697
|
+
- stdlib/nodejs/node_modules/glob/node_modules/inflight/node_modules/wrappy/LICENSE
|
|
698
|
+
- stdlib/nodejs/node_modules/glob/node_modules/inflight/node_modules/wrappy/README.md
|
|
699
|
+
- stdlib/nodejs/node_modules/glob/node_modules/inflight/node_modules/wrappy/package.json
|
|
700
|
+
- stdlib/nodejs/node_modules/glob/node_modules/inflight/node_modules/wrappy/test/basic.js
|
|
701
|
+
- stdlib/nodejs/node_modules/glob/node_modules/inflight/node_modules/wrappy/wrappy.js
|
|
702
|
+
- stdlib/nodejs/node_modules/glob/node_modules/inflight/package.json
|
|
703
|
+
- stdlib/nodejs/node_modules/glob/node_modules/inflight/test.js
|
|
704
|
+
- stdlib/nodejs/node_modules/glob/node_modules/inherits/LICENSE
|
|
705
|
+
- stdlib/nodejs/node_modules/glob/node_modules/inherits/README.md
|
|
706
|
+
- stdlib/nodejs/node_modules/glob/node_modules/inherits/inherits.js
|
|
707
|
+
- stdlib/nodejs/node_modules/glob/node_modules/inherits/inherits_browser.js
|
|
708
|
+
- stdlib/nodejs/node_modules/glob/node_modules/inherits/package.json
|
|
709
|
+
- stdlib/nodejs/node_modules/glob/node_modules/inherits/test.js
|
|
710
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/.npmignore
|
|
711
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/.travis.yml
|
|
712
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/LICENSE
|
|
713
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/README.md
|
|
714
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/benchmark.js
|
|
715
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/browser.js
|
|
716
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/minimatch.js
|
|
717
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/.npmignore
|
|
718
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/.travis.yml
|
|
719
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/README.md
|
|
720
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/example.js
|
|
721
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/index.js
|
|
722
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/.npmignore
|
|
723
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/.travis.yml
|
|
724
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/Makefile
|
|
725
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/README.md
|
|
726
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/example.js
|
|
727
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/index.js
|
|
728
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/package.json
|
|
729
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/test/balanced.js
|
|
730
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/.travis.yml
|
|
731
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/LICENSE
|
|
732
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/README.markdown
|
|
733
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/example/map.js
|
|
734
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/index.js
|
|
735
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/package.json
|
|
736
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/test/map.js
|
|
737
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/package.json
|
|
738
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/bash-comparison.js
|
|
739
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/bash-results.txt
|
|
740
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/cases.txt
|
|
741
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/dollar.js
|
|
742
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/empty-option.js
|
|
743
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/generate.sh
|
|
744
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/negative-increment.js
|
|
745
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/nested.js
|
|
746
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/order.js
|
|
747
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/pad.js
|
|
748
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/same-type.js
|
|
749
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/sequence.js
|
|
750
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/package.json
|
|
751
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/test/basic.js
|
|
752
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/test/brace-expand.js
|
|
753
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/test/defaults.js
|
|
754
|
+
- stdlib/nodejs/node_modules/glob/node_modules/minimatch/test/extglob-ending-with-state-char.js
|
|
755
|
+
- stdlib/nodejs/node_modules/glob/node_modules/once/LICENSE
|
|
756
|
+
- stdlib/nodejs/node_modules/glob/node_modules/once/README.md
|
|
757
|
+
- stdlib/nodejs/node_modules/glob/node_modules/once/node_modules/wrappy/LICENSE
|
|
758
|
+
- stdlib/nodejs/node_modules/glob/node_modules/once/node_modules/wrappy/README.md
|
|
759
|
+
- stdlib/nodejs/node_modules/glob/node_modules/once/node_modules/wrappy/package.json
|
|
760
|
+
- stdlib/nodejs/node_modules/glob/node_modules/once/node_modules/wrappy/test/basic.js
|
|
761
|
+
- stdlib/nodejs/node_modules/glob/node_modules/once/node_modules/wrappy/wrappy.js
|
|
762
|
+
- stdlib/nodejs/node_modules/glob/node_modules/once/once.js
|
|
763
|
+
- stdlib/nodejs/node_modules/glob/node_modules/once/package.json
|
|
764
|
+
- stdlib/nodejs/node_modules/glob/node_modules/once/test/once.js
|
|
765
|
+
- stdlib/nodejs/node_modules/glob/package.json
|
|
766
|
+
- stdlib/nodejs/node_modules/glob/sync.js
|
|
767
|
+
- stdlib/nodejs/node_modules/js-yaml/HISTORY.md
|
|
768
|
+
- stdlib/nodejs/node_modules/js-yaml/LICENSE
|
|
769
|
+
- stdlib/nodejs/node_modules/js-yaml/README.md
|
|
770
|
+
- stdlib/nodejs/node_modules/js-yaml/bin/js-yaml.js
|
|
771
|
+
- stdlib/nodejs/node_modules/js-yaml/bower.json
|
|
772
|
+
- stdlib/nodejs/node_modules/js-yaml/dist/js-yaml.js
|
|
773
|
+
- stdlib/nodejs/node_modules/js-yaml/dist/js-yaml.min.js
|
|
774
|
+
- stdlib/nodejs/node_modules/js-yaml/examples/custom_types.js
|
|
775
|
+
- stdlib/nodejs/node_modules/js-yaml/examples/custom_types.yml
|
|
776
|
+
- stdlib/nodejs/node_modules/js-yaml/examples/dumper.js
|
|
777
|
+
- stdlib/nodejs/node_modules/js-yaml/examples/dumper.json
|
|
778
|
+
- stdlib/nodejs/node_modules/js-yaml/examples/sample_document.js
|
|
779
|
+
- stdlib/nodejs/node_modules/js-yaml/examples/sample_document.yml
|
|
780
|
+
- stdlib/nodejs/node_modules/js-yaml/index.js
|
|
781
|
+
- stdlib/nodejs/node_modules/js-yaml/lib/js-yaml.js
|
|
782
|
+
- stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/common.js
|
|
783
|
+
- stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/dumper.js
|
|
784
|
+
- stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/exception.js
|
|
785
|
+
- stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/loader.js
|
|
786
|
+
- stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/mark.js
|
|
787
|
+
- stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/schema.js
|
|
788
|
+
- stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/schema/core.js
|
|
789
|
+
- stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/schema/default_full.js
|
|
790
|
+
- stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/schema/default_safe.js
|
|
791
|
+
- stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/schema/failsafe.js
|
|
792
|
+
- stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/schema/json.js
|
|
793
|
+
- stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type.js
|
|
794
|
+
- stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/binary.js
|
|
795
|
+
- stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/bool.js
|
|
796
|
+
- stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/float.js
|
|
797
|
+
- stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/int.js
|
|
798
|
+
- stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/js/function.js
|
|
799
|
+
- stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/js/regexp.js
|
|
800
|
+
- stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/js/undefined.js
|
|
801
|
+
- stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/map.js
|
|
802
|
+
- stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/merge.js
|
|
803
|
+
- stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/null.js
|
|
804
|
+
- stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/omap.js
|
|
805
|
+
- stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/pairs.js
|
|
806
|
+
- stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/seq.js
|
|
807
|
+
- stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/set.js
|
|
808
|
+
- stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/str.js
|
|
809
|
+
- stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/timestamp.js
|
|
810
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/.bin/esparse
|
|
811
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/.bin/esvalidate
|
|
812
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/HISTORY.md
|
|
813
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/LICENSE
|
|
814
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/README.md
|
|
815
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/arguments.js
|
|
816
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/choice.js
|
|
817
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/constants.js
|
|
818
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/help.js
|
|
819
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/nargs.js
|
|
820
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/parents.js
|
|
821
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/prefix_chars.js
|
|
822
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/sub_commands.js
|
|
823
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/sum.js
|
|
824
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/examples/testformatters.js
|
|
825
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/index.js
|
|
826
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action.js
|
|
827
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/append.js
|
|
828
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/append/constant.js
|
|
829
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/count.js
|
|
830
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/help.js
|
|
831
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/store.js
|
|
832
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/store/constant.js
|
|
833
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/store/false.js
|
|
834
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/store/true.js
|
|
835
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/subparsers.js
|
|
836
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action/version.js
|
|
837
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/action_container.js
|
|
838
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/argparse.js
|
|
839
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/argument/error.js
|
|
840
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/argument/exclusive.js
|
|
841
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/argument/group.js
|
|
842
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/argument_parser.js
|
|
843
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/const.js
|
|
844
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/help/added_formatters.js
|
|
845
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/help/formatter.js
|
|
846
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/lib/namespace.js
|
|
847
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/.npmignore
|
|
848
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/.travis.yml
|
|
849
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/README.markdown
|
|
850
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/bower.json
|
|
851
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/component.json
|
|
852
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/foo.js
|
|
853
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/gulpfile.js
|
|
854
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/lib/underscore.string.js
|
|
855
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/libpeerconnection.log
|
|
856
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/package.json
|
|
857
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore/LICENSE
|
|
858
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore/README.md
|
|
859
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore/package.json
|
|
860
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore/underscore-min.js
|
|
861
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/node_modules/underscore/underscore.js
|
|
862
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/package.json
|
|
863
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/README.md
|
|
864
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/bin/esparse.js
|
|
865
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/bin/esvalidate.js
|
|
866
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/esprima.js
|
|
867
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/package.json
|
|
868
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/test/compat.js
|
|
869
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/test/reflect.js
|
|
870
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/test/run.js
|
|
871
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/test/runner.js
|
|
872
|
+
- stdlib/nodejs/node_modules/js-yaml/node_modules/esprima/test/test.js
|
|
873
|
+
- stdlib/nodejs/node_modules/js-yaml/package.json
|
|
874
|
+
- stdlib/nodejs/package.json
|
|
689
875
|
- stdlib/nodejs/require.rb
|
|
690
876
|
- stdlib/nodejs/rubygems.rb
|
|
691
|
-
- stdlib/nodejs/runtime.rb
|
|
692
877
|
- stdlib/nodejs/yaml.rb
|
|
693
878
|
- stdlib/observer.rb
|
|
694
879
|
- stdlib/opal-parser.rb
|
|
@@ -743,7 +928,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
743
928
|
version: '0'
|
|
744
929
|
requirements: []
|
|
745
930
|
rubyforge_project:
|
|
746
|
-
rubygems_version: 2.4.
|
|
931
|
+
rubygems_version: 2.4.5
|
|
747
932
|
signing_key:
|
|
748
933
|
specification_version: 4
|
|
749
934
|
summary: Ruby runtime and core library for javascript
|
data/stdlib/nodejs/runtime.rb
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
%x{
|
|
2
|
-
// Generated by CoffeeScript 1.6.3
|
|
3
|
-
(function() {
|
|
4
|
-
var OpalNode, extensions, fs, parser, parserFile, source, sourceFile, vm, __path__;
|
|
5
|
-
fs = require('fs');
|
|
6
|
-
__path__ = require('path');
|
|
7
|
-
vm = require('vm');
|
|
8
|
-
// vm.runInThisContext(parser, parserFile);
|
|
9
|
-
OpalNode = (function() {
|
|
10
|
-
function OpalNode() {}
|
|
11
|
-
OpalNode.node_require = require;
|
|
12
|
-
return OpalNode;
|
|
13
|
-
})();
|
|
14
|
-
|
|
15
|
-
global.OpalNode = OpalNode;
|
|
16
|
-
|
|
17
|
-
}).call(this);
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
module Kernel
|
|
22
|
-
def node_require name
|
|
23
|
-
`OpalNode.node_require(#{name})`
|
|
24
|
-
end
|
|
25
|
-
end
|
|
26
|
-
|