opal 0.11.0.rc1 → 0.11.0
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/.jshintrc +1 -1
- data/.travis.yml +14 -2
- data/CHANGELOG.md +30 -5
- data/HACKING.md +2 -2
- data/README.md +4 -5
- data/appveyor.yml +3 -4
- data/bin +1 -0
- data/docs/headless_chrome.md +105 -0
- data/docs/rspec.md +2 -19
- data/{bin → exe}/opal +0 -0
- data/{bin → exe}/opal-build +0 -0
- data/{bin → exe}/opal-mspec +0 -0
- data/{bin → exe}/opal-repl +0 -0
- data/lib/opal.rb +1 -0
- data/lib/opal/ast/builder.rb +0 -4
- data/lib/opal/builder.rb +69 -15
- data/lib/opal/builder_processors.rb +8 -7
- data/lib/opal/cli.rb +1 -1
- data/lib/opal/cli_options.rb +1 -1
- data/lib/opal/cli_runners.rb +1 -1
- data/lib/opal/cli_runners/applescript.rb +0 -1
- data/lib/opal/cli_runners/chrome.js +135 -0
- data/lib/opal/cli_runners/chrome.rb +100 -0
- data/lib/opal/cli_runners/nashorn.rb +0 -1
- data/lib/opal/cli_runners/node_modules/.bin/chrome-remote-interface +1 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/LICENSE +18 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/README.md +843 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/bin/client.js +326 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/chrome-remote-interface.js +11 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/index.js +39 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/api.js +84 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/chrome.js +289 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/defaults.js +4 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/devtools.js +245 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/external-request.js +23 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/protocol.json +13303 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/websocket-wrapper.js +32 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/package.json +128 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/webpack.config.js +55 -0
- data/lib/opal/cli_runners/node_modules/commander/Readme.md +195 -0
- data/lib/opal/cli_runners/node_modules/commander/index.js +851 -0
- data/lib/opal/cli_runners/node_modules/commander/package.json +92 -0
- data/lib/opal/cli_runners/node_modules/ultron/LICENSE +22 -0
- data/lib/opal/cli_runners/node_modules/ultron/index.js +138 -0
- data/lib/opal/cli_runners/node_modules/ultron/package.json +112 -0
- data/lib/opal/cli_runners/node_modules/ws/LICENSE +21 -0
- data/lib/opal/cli_runners/node_modules/ws/README.md +259 -0
- data/lib/opal/cli_runners/node_modules/ws/SECURITY.md +33 -0
- data/lib/opal/cli_runners/node_modules/ws/index.js +15 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/BufferUtil.fallback.js +56 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/BufferUtil.js +15 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/ErrorCodes.js +28 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/EventTarget.js +158 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/Extensions.js +69 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/PerMessageDeflate.js +339 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/Receiver.js +520 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/Sender.js +438 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/Validation.fallback.js +9 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/Validation.js +17 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/WebSocket.js +705 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/WebSocketServer.js +336 -0
- data/lib/opal/cli_runners/node_modules/ws/package.json +122 -0
- data/lib/opal/cli_runners/nodejs.rb +0 -1
- data/lib/opal/cli_runners/package.json +5 -0
- data/lib/opal/cli_runners/server.rb +0 -1
- data/lib/opal/compiler.rb +8 -18
- data/lib/opal/deprecations.rb +1 -1
- data/lib/opal/eof_content.rb +36 -0
- data/lib/opal/nodes.rb +0 -1
- data/lib/opal/nodes/args/kwarg.rb +8 -6
- data/lib/opal/nodes/args/kwoptarg.rb +12 -6
- data/lib/opal/nodes/call.rb +3 -2
- data/lib/opal/nodes/call_special.rb +10 -1
- data/lib/opal/nodes/definitions.rb +5 -3
- data/lib/opal/nodes/helpers.rb +4 -8
- data/lib/opal/nodes/literal.rb +13 -1
- data/lib/opal/nodes/logic.rb +19 -32
- data/lib/opal/nodes/node_with_args.rb +1 -1
- data/lib/opal/nodes/scope.rb +1 -0
- data/lib/opal/nodes/super.rb +0 -4
- data/lib/opal/nodes/variables.rb +11 -0
- data/lib/opal/parser.rb +24 -19
- data/lib/opal/path_reader.rb +17 -4
- data/lib/opal/rewriter.rb +5 -1
- data/lib/opal/rewriters/base.rb +37 -34
- data/lib/opal/rewriters/binary_operator_assignment.rb +0 -3
- data/lib/opal/rewriters/for_rewriter.rb +93 -0
- data/lib/opal/rewriters/hashes/key_duplicates_rewriter.rb +58 -0
- data/lib/opal/rewriters/js_reserved_words.rb +5 -8
- data/lib/opal/rewriters/logical_operator_assignment.rb +0 -1
- data/lib/opal/simple_server.rb +1 -0
- data/lib/opal/util.rb +1 -1
- data/lib/opal/version.rb +1 -1
- data/opal.gemspec +32 -30
- data/opal/corelib/array.rb +53 -30
- data/opal/corelib/boolean.rb +11 -3
- data/opal/corelib/comparable.rb +16 -0
- data/opal/corelib/constants.rb +3 -3
- data/opal/corelib/enumerable.rb +48 -1
- data/opal/corelib/file.rb +54 -11
- data/opal/corelib/hash.rb +98 -0
- data/opal/corelib/io.rb +2 -2
- data/opal/corelib/kernel.rb +28 -11
- data/opal/corelib/marshal/read_buffer.rb +288 -150
- data/opal/corelib/marshal/write_buffer.rb +27 -2
- data/opal/corelib/nil.rb +11 -3
- data/opal/corelib/number.rb +90 -20
- data/opal/corelib/numeric.rb +3 -3
- data/opal/corelib/random.rb +1 -1
- data/opal/corelib/range.rb +22 -22
- data/opal/corelib/regexp.rb +45 -4
- data/opal/corelib/runtime.js +25 -9
- data/opal/corelib/string.rb +1 -1
- data/opal/corelib/string/encoding.rb +21 -29
- data/opal/corelib/string/inheritance.rb +1 -1
- data/opal/corelib/struct.rb +0 -5
- data/opal/corelib/time.rb +1 -1
- data/stdlib/buffer/array.rb +4 -2
- data/stdlib/date.rb +46 -12
- data/stdlib/headless_chrome.rb +11 -0
- data/stdlib/nodejs/file.rb +36 -11
- data/stdlib/nodejs/io.rb +8 -0
- data/stdlib/nodejs/stacktrace.rb +116 -100
- data/stdlib/opal-builder.rb +1 -0
- data/stdlib/opal-platform.rb +6 -6
- data/stdlib/opal/platform.rb +2 -2
- data/stdlib/rbconfig.rb +1 -1
- data/stdlib/securerandom.rb +1 -1
- data/tasks/testing.rake +58 -26
- data/tasks/testing/opal_rspec_smoketest.Gemfile +5 -12
- metadata +64 -733
- data/lib/opal/cli_runners/phantom.js +0 -69
- data/lib/opal/cli_runners/phantomjs.rb +0 -29
- data/lib/opal/hike_path_finder.rb +0 -19
- data/lib/opal/nodes/for.rb +0 -75
- data/spec/README.md +0 -10
- data/spec/filters/bugs/array.rb +0 -16
- data/spec/filters/bugs/basicobject.rb +0 -13
- data/spec/filters/bugs/bigdecimal.rb +0 -146
- data/spec/filters/bugs/class.rb +0 -11
- data/spec/filters/bugs/comparable.rb +0 -5
- data/spec/filters/bugs/complex.rb +0 -3
- data/spec/filters/bugs/date.rb +0 -94
- data/spec/filters/bugs/enumerable.rb +0 -43
- data/spec/filters/bugs/enumerator.rb +0 -40
- data/spec/filters/bugs/exception.rb +0 -72
- data/spec/filters/bugs/file.rb +0 -8
- data/spec/filters/bugs/float.rb +0 -39
- data/spec/filters/bugs/hash.rb +0 -15
- data/spec/filters/bugs/inheritance.rb +0 -5
- data/spec/filters/bugs/integer.rb +0 -30
- data/spec/filters/bugs/io.rb +0 -8
- data/spec/filters/bugs/kernel.rb +0 -168
- data/spec/filters/bugs/language.rb +0 -190
- data/spec/filters/bugs/marshal.rb +0 -41
- data/spec/filters/bugs/method.rb +0 -60
- data/spec/filters/bugs/module.rb +0 -158
- data/spec/filters/bugs/numeric.rb +0 -8
- data/spec/filters/bugs/pathname.rb +0 -7
- data/spec/filters/bugs/proc.rb +0 -37
- data/spec/filters/bugs/random.rb +0 -7
- data/spec/filters/bugs/range.rb +0 -36
- data/spec/filters/bugs/rational.rb +0 -4
- data/spec/filters/bugs/regexp.rb +0 -158
- data/spec/filters/bugs/set.rb +0 -41
- data/spec/filters/bugs/singleton.rb +0 -6
- data/spec/filters/bugs/string.rb +0 -98
- data/spec/filters/bugs/stringscanner.rb +0 -71
- data/spec/filters/bugs/struct.rb +0 -4
- data/spec/filters/bugs/time.rb +0 -35
- data/spec/filters/bugs/unboundmethod.rb +0 -17
- data/spec/filters/unsupported/array.rb +0 -167
- data/spec/filters/unsupported/basicobject.rb +0 -14
- data/spec/filters/unsupported/bignum.rb +0 -55
- data/spec/filters/unsupported/class.rb +0 -4
- data/spec/filters/unsupported/delegator.rb +0 -5
- data/spec/filters/unsupported/enumerable.rb +0 -11
- data/spec/filters/unsupported/enumerator.rb +0 -13
- data/spec/filters/unsupported/file.rb +0 -4
- data/spec/filters/unsupported/fixnum.rb +0 -14
- data/spec/filters/unsupported/float.rb +0 -46
- data/spec/filters/unsupported/freeze.rb +0 -75
- data/spec/filters/unsupported/hash.rb +0 -43
- data/spec/filters/unsupported/integer.rb +0 -3
- data/spec/filters/unsupported/kernel.rb +0 -32
- data/spec/filters/unsupported/language.rb +0 -22
- data/spec/filters/unsupported/marshal.rb +0 -46
- data/spec/filters/unsupported/matchdata.rb +0 -33
- data/spec/filters/unsupported/math.rb +0 -3
- data/spec/filters/unsupported/pathname.rb +0 -3
- data/spec/filters/unsupported/privacy.rb +0 -279
- data/spec/filters/unsupported/proc.rb +0 -3
- data/spec/filters/unsupported/random.rb +0 -4
- data/spec/filters/unsupported/range.rb +0 -7
- data/spec/filters/unsupported/regexp.rb +0 -69
- data/spec/filters/unsupported/set.rb +0 -4
- data/spec/filters/unsupported/singleton.rb +0 -6
- data/spec/filters/unsupported/string.rb +0 -546
- data/spec/filters/unsupported/struct.rb +0 -6
- data/spec/filters/unsupported/symbol.rb +0 -20
- data/spec/filters/unsupported/taint.rb +0 -30
- data/spec/filters/unsupported/thread.rb +0 -7
- data/spec/filters/unsupported/time.rb +0 -202
- data/spec/lib/builder_processors_spec.rb +0 -27
- data/spec/lib/builder_spec.rb +0 -89
- data/spec/lib/cli_runners/phantomjs_spec.rb +0 -39
- data/spec/lib/cli_spec.rb +0 -240
- data/spec/lib/compiler/call_spec.rb +0 -732
- data/spec/lib/compiler_spec.rb +0 -294
- data/spec/lib/config_spec.rb +0 -110
- data/spec/lib/dependency_resolver_spec.rb +0 -40
- data/spec/lib/deprecations_spec.rb +0 -16
- data/spec/lib/fixtures/complex_sprockets.js.rb.erb +0 -4
- data/spec/lib/fixtures/file_with_directives.js +0 -2
- data/spec/lib/fixtures/jst_file.js.jst +0 -1
- data/spec/lib/fixtures/no_requires.rb +0 -1
- data/spec/lib/fixtures/opal_file.rb +0 -2
- data/spec/lib/fixtures/require_tree_test.rb +0 -3
- data/spec/lib/fixtures/required_file.js +0 -1
- data/spec/lib/fixtures/required_tree_test/required_file1.rb +0 -1
- data/spec/lib/fixtures/required_tree_test/required_file2.rb +0 -1
- data/spec/lib/fixtures/requires.rb +0 -7
- data/spec/lib/fixtures/source_location_test.rb +0 -7
- data/spec/lib/fixtures/source_map.rb +0 -1
- data/spec/lib/fixtures/source_map/subfolder/other_file.rb +0 -1
- data/spec/lib/fixtures/sprockets_file.js.rb +0 -3
- data/spec/lib/fixtures/sprockets_require_tree_test.rb +0 -3
- data/spec/lib/hike_path_finder_spec.rb +0 -23
- data/spec/lib/path_reader_spec.rb +0 -36
- data/spec/lib/paths_spec.rb +0 -18
- data/spec/lib/rewriters/binary_operator_assignment_spec.rb +0 -151
- data/spec/lib/rewriters/block_to_iter_spec.rb +0 -28
- data/spec/lib/rewriters/dot_js_syntax_spec.rb +0 -108
- data/spec/lib/rewriters/explicit_writer_return_spec.rb +0 -186
- data/spec/lib/rewriters/js_reserved_words_spec.rb +0 -116
- data/spec/lib/rewriters/logical_operator_assignment_spec.rb +0 -202
- data/spec/lib/rewriters/opal_engine_check_spec.rb +0 -82
- data/spec/lib/rewriters/rubyspec/filters_rewriter_spec.rb +0 -53
- data/spec/lib/shared/path_finder_shared.rb +0 -19
- data/spec/lib/shared/path_reader_shared.rb +0 -31
- data/spec/lib/simple_server_spec.rb +0 -54
- data/spec/lib/spec_helper.rb +0 -100
- data/spec/mspec-opal/formatters.rb +0 -236
- data/spec/mspec-opal/runner.rb +0 -173
- data/spec/opal/compiler/irb_spec.rb +0 -44
- data/spec/opal/core/arity_spec.rb +0 -142
- data/spec/opal/core/array/intersection_spec.rb +0 -38
- data/spec/opal/core/array/minus_spec.rb +0 -38
- data/spec/opal/core/array/select_spec.rb +0 -14
- data/spec/opal/core/array/set_range_to_array_spec.rb +0 -7
- data/spec/opal/core/array/union_spec.rb +0 -38
- data/spec/opal/core/array/uniq_spec.rb +0 -49
- data/spec/opal/core/date_spec.rb +0 -191
- data/spec/opal/core/enumerable/all_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/any_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/collect_break_spec.rb +0 -13
- data/spec/opal/core/enumerable/count_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/detect_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/drop_while_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/each_slice_break.rb +0 -6
- data/spec/opal/core/enumerable/each_with_index_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/each_with_object_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/find_all_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/find_index_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/grep_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/max_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/max_by_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/min_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/min_by_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/none_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/one_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/reduce_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/take_while_break_spec.rb +0 -5
- data/spec/opal/core/enumerator/with_index_spec.rb +0 -6
- data/spec/opal/core/exception_spec.rb +0 -30
- data/spec/opal/core/fixtures/class.rb +0 -124
- data/spec/opal/core/fixtures/class_variables.rb +0 -0
- data/spec/opal/core/fixtures/constants.rb +0 -33
- data/spec/opal/core/fixtures/require_tree_files/file 1.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_files/file 2.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_files/file 3.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_files/file 4.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_files/file 5.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_files/nested/nested 1.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_files/nested/nested 2.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_files/other/other 1.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_with_dot/file 1.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_with_dot/file 2.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_with_dot/file 3.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_with_dot/index.rb +0 -3
- data/spec/opal/core/hash/has_value_spec.rb +0 -13
- data/spec/opal/core/hash/internals_spec.rb +0 -332
- data/spec/opal/core/helpers_spec.rb +0 -14
- data/spec/opal/core/kernel/Array_spec.rb +0 -10
- data/spec/opal/core/kernel/at_exit_spec.rb +0 -70
- data/spec/opal/core/kernel/block_given_spec.rb +0 -30
- data/spec/opal/core/kernel/class_spec.rb +0 -6
- data/spec/opal/core/kernel/define_singleton_method_spec.rb +0 -21
- data/spec/opal/core/kernel/equal_value_spec.rb +0 -12
- data/spec/opal/core/kernel/extend_spec.rb +0 -21
- data/spec/opal/core/kernel/format_spec.rb +0 -122
- data/spec/opal/core/kernel/freeze_spec.rb +0 -15
- data/spec/opal/core/kernel/instance_eval_spec.rb +0 -28
- data/spec/opal/core/kernel/instance_variable_defined_spec.rb +0 -15
- data/spec/opal/core/kernel/instance_variable_get_spec.rb +0 -14
- data/spec/opal/core/kernel/instance_variable_set_spec.rb +0 -10
- data/spec/opal/core/kernel/instance_variables_spec.rb +0 -110
- data/spec/opal/core/kernel/loop_spec.rb +0 -23
- data/spec/opal/core/kernel/match_spec.rb +0 -5
- data/spec/opal/core/kernel/method_spec.rb +0 -31
- data/spec/opal/core/kernel/methods_spec.rb +0 -25
- data/spec/opal/core/kernel/nil_spec.rb +0 -7
- data/spec/opal/core/kernel/p_spec.rb +0 -15
- data/spec/opal/core/kernel/printf_spec.rb +0 -11
- data/spec/opal/core/kernel/proc_spec.rb +0 -13
- data/spec/opal/core/kernel/raise_spec.rb +0 -13
- data/spec/opal/core/kernel/rand_spec.rb +0 -19
- data/spec/opal/core/kernel/require_tree_spec.rb +0 -18
- data/spec/opal/core/kernel/respond_to_spec.rb +0 -44
- data/spec/opal/core/kernel/send_spec.rb +0 -56
- data/spec/opal/core/kernel/sprintf_spec.rb +0 -5
- data/spec/opal/core/language/arguments/mlhs_arg_spec.rb +0 -19
- data/spec/opal/core/language/class_spec.rb +0 -55
- data/spec/opal/core/language/constant_lookup_spec.rb +0 -38
- data/spec/opal/core/language/equal_spec.rb +0 -8
- data/spec/opal/core/language/fixtures/array.rb +0 -11
- data/spec/opal/core/language/fixtures/block.rb +0 -57
- data/spec/opal/core/language/fixtures/break.rb +0 -240
- data/spec/opal/core/language/fixtures/ensure.rb +0 -72
- data/spec/opal/core/language/fixtures/literal_lambda.rb +0 -7
- data/spec/opal/core/language/fixtures/metaclass.rb +0 -33
- data/spec/opal/core/language/fixtures/module.rb +0 -24
- data/spec/opal/core/language/fixtures/next.rb +0 -128
- data/spec/opal/core/language/fixtures/return.rb +0 -118
- data/spec/opal/core/language/fixtures/send.rb +0 -111
- data/spec/opal/core/language/fixtures/send_1.9.rb +0 -22
- data/spec/opal/core/language/fixtures/super.rb +0 -308
- data/spec/opal/core/language/fixtures/variables.rb +0 -58
- data/spec/opal/core/language/fixtures/yield.rb +0 -28
- data/spec/opal/core/language/heredoc_spec.rb +0 -42
- data/spec/opal/core/language/keyword_arguments_spec.rb +0 -11
- data/spec/opal/core/language/predefined_spec.rb +0 -138
- data/spec/opal/core/language/regexp_spec.rb +0 -20
- data/spec/opal/core/language/rescue_spec.rb +0 -18
- data/spec/opal/core/language/safe_navigator_spec.rb +0 -7
- data/spec/opal/core/language/send_spec.rb +0 -222
- data/spec/opal/core/language/string_spec.rb +0 -44
- data/spec/opal/core/language/ternary_operator_spec.rb +0 -20
- data/spec/opal/core/language/versions/array_1.9.rb +0 -39
- data/spec/opal/core/language/versions/block_1.9.rb +0 -0
- data/spec/opal/core/language/versions/break_1.9.rb +0 -0
- data/spec/opal/core/language/versions/case_1.9.rb +0 -20
- data/spec/opal/core/language/versions/def_2_0_spec.rb +0 -58
- data/spec/opal/core/language/versions/hash_1_9_spec.rb +0 -23
- data/spec/opal/core/language/versions/literal_lambda_1.9.rb +0 -143
- data/spec/opal/core/language/versions/not_1.9.rb +0 -22
- data/spec/opal/core/language/versions/send_1.9.rb +0 -241
- data/spec/opal/core/language/versions/symbol_1.9.rb +0 -15
- data/spec/opal/core/language/versions/variables_1.9.rb +0 -8
- data/spec/opal/core/language_spec.rb +0 -77
- data/spec/opal/core/marshal/dump_spec.rb +0 -53
- data/spec/opal/core/marshal/load_spec.rb +0 -7
- data/spec/opal/core/method/to_proc_spec.rb +0 -28
- data/spec/opal/core/module/alias_method_spec.rb +0 -28
- data/spec/opal/core/module/ancestors_spec.rb +0 -11
- data/spec/opal/core/module/append_features_spec.rb +0 -14
- data/spec/opal/core/module/attr_accessor_spec.rb +0 -26
- data/spec/opal/core/module/const_defined_spec.rb +0 -84
- data/spec/opal/core/module/const_get_spec.rb +0 -85
- data/spec/opal/core/module/const_missing_spec.rb +0 -17
- data/spec/opal/core/module/const_set_spec.rb +0 -64
- data/spec/opal/core/module/constants_spec.rb +0 -49
- data/spec/opal/core/module/fixtures/classes.rb +0 -444
- data/spec/opal/core/module/method_defined_spec.rb +0 -48
- data/spec/opal/core/module/method_lookup_spec.rb +0 -13
- data/spec/opal/core/module/module_function_spec.rb +0 -25
- data/spec/opal/core/module/name_spec.rb +0 -41
- data/spec/opal/core/module/public_method_defined_spec.rb +0 -18
- data/spec/opal/core/module/remove_const_spec.rb +0 -22
- data/spec/opal/core/module/undef_method_spec.rb +0 -66
- data/spec/opal/core/numeric/bit_and_spec.rb +0 -7
- data/spec/opal/core/numeric/bit_or_spec.rb +0 -8
- data/spec/opal/core/numeric/bit_xor_spec.rb +0 -6
- data/spec/opal/core/numeric/ceil_spec.rb +0 -8
- data/spec/opal/core/numeric/chr_spec.rb +0 -8
- data/spec/opal/core/numeric/comparison_spec.rb +0 -24
- data/spec/opal/core/numeric/complement_spec.rb +0 -8
- data/spec/opal/core/numeric/divide_spec.rb +0 -10
- data/spec/opal/core/numeric/eql_spec.rb +0 -9
- data/spec/opal/core/numeric/exponent_spec.rb +0 -33
- data/spec/opal/core/numeric/floor_spec.rb +0 -8
- data/spec/opal/core/numeric/gt_spec.rb +0 -11
- data/spec/opal/core/numeric/gte_spec.rb +0 -12
- data/spec/opal/core/numeric/integer_spec.rb +0 -9
- data/spec/opal/core/numeric/left_shift_spec.rb +0 -21
- data/spec/opal/core/numeric/lt_spec.rb +0 -11
- data/spec/opal/core/numeric/lte_spec.rb +0 -12
- data/spec/opal/core/numeric/minus_spec.rb +0 -8
- data/spec/opal/core/numeric/modulo_spec.rb +0 -19
- data/spec/opal/core/numeric/multiply_spec.rb +0 -9
- data/spec/opal/core/numeric/next_spec.rb +0 -9
- data/spec/opal/core/numeric/ord_spec.rb +0 -9
- data/spec/opal/core/numeric/plus_spec.rb +0 -8
- data/spec/opal/core/numeric/pred_spec.rb +0 -7
- data/spec/opal/core/numeric/right_shift_spec.rb +0 -25
- data/spec/opal/core/numeric/step_spec.rb +0 -11
- data/spec/opal/core/numeric/succ_spec.rb +0 -9
- data/spec/opal/core/numeric/times_spec.rb +0 -36
- data/spec/opal/core/numeric/to_f_spec.rb +0 -7
- data/spec/opal/core/numeric/to_i_spec.rb +0 -7
- data/spec/opal/core/numeric/to_json_spec.rb +0 -8
- data/spec/opal/core/numeric/to_s_spec.rb +0 -26
- data/spec/opal/core/numeric/uminus_spec.rb +0 -9
- data/spec/opal/core/numeric/upto_spec.rb +0 -19
- data/spec/opal/core/numeric/zero_spec.rb +0 -7
- data/spec/opal/core/object_id_spec.rb +0 -56
- data/spec/opal/core/proc/call_spec.rb +0 -21
- data/spec/opal/core/proc/element_reference_spec.rb +0 -21
- data/spec/opal/core/proc/proc_tricks_spec.rb +0 -7
- data/spec/opal/core/runtime/begin_spec.rb +0 -39
- data/spec/opal/core/runtime/block_spec.rb +0 -23
- data/spec/opal/core/runtime/bridged_classes_spec.rb +0 -123
- data/spec/opal/core/runtime/constants_spec.rb +0 -13
- data/spec/opal/core/runtime/donate_spec.rb +0 -53
- data/spec/opal/core/runtime/eval_spec.rb +0 -5
- data/spec/opal/core/runtime/is_a_spec.rb +0 -36
- data/spec/opal/core/runtime/main_methods_spec.rb +0 -27
- data/spec/opal/core/runtime/method_missing_spec.rb +0 -68
- data/spec/opal/core/runtime/method_spec.rb +0 -31
- data/spec/opal/core/runtime/operator_call_spec.rb +0 -13
- data/spec/opal/core/runtime/paren_spec.rb +0 -14
- data/spec/opal/core/runtime/rescue_spec.rb +0 -106
- data/spec/opal/core/runtime/return_spec.rb +0 -38
- data/spec/opal/core/runtime/singleton_class_spec.rb +0 -13
- data/spec/opal/core/runtime/super_spec.rb +0 -223
- data/spec/opal/core/runtime/truthy_spec.rb +0 -63
- data/spec/opal/core/runtime/variables_spec.rb +0 -20
- data/spec/opal/core/runtime_spec.rb +0 -58
- data/spec/opal/core/source_map_spec.rb +0 -49
- data/spec/opal/core/string_spec.rb +0 -32
- data/spec/opal/core/time_spec.rb +0 -38
- data/spec/opal/javascript_api_spec.rb +0 -16
- data/spec/opal/stdlib/erb/erb_spec.rb +0 -30
- data/spec/opal/stdlib/erb/inline_block.opalerb +0 -3
- data/spec/opal/stdlib/erb/quoted.opalerb +0 -1
- data/spec/opal/stdlib/erb/simple.opalerb +0 -1
- data/spec/opal/stdlib/js_spec.rb +0 -66
- data/spec/opal/stdlib/json/ext_spec.rb +0 -48
- data/spec/opal/stdlib/json/parse_spec.rb +0 -37
- data/spec/opal/stdlib/native/alias_native_spec.rb +0 -27
- data/spec/opal/stdlib/native/array_spec.rb +0 -11
- data/spec/opal/stdlib/native/each_spec.rb +0 -13
- data/spec/opal/stdlib/native/element_reference_spec.rb +0 -16
- data/spec/opal/stdlib/native/exposure_spec.rb +0 -33
- data/spec/opal/stdlib/native/ext_spec.rb +0 -19
- data/spec/opal/stdlib/native/hash_spec.rb +0 -67
- data/spec/opal/stdlib/native/initialize_spec.rb +0 -17
- data/spec/opal/stdlib/native/method_missing_spec.rb +0 -51
- data/spec/opal/stdlib/native/native_alias_spec.rb +0 -19
- data/spec/opal/stdlib/native/native_class_spec.rb +0 -18
- data/spec/opal/stdlib/native/native_module_spec.rb +0 -13
- data/spec/opal/stdlib/native/native_reader_spec.rb +0 -22
- data/spec/opal/stdlib/native/native_writer_spec.rb +0 -30
- data/spec/opal/stdlib/native/new_spec.rb +0 -92
- data/spec/opal/stdlib/native/struct_spec.rb +0 -12
- data/spec/opal/stdlib/promise/always_spec.rb +0 -49
- data/spec/opal/stdlib/promise/error_spec.rb +0 -15
- data/spec/opal/stdlib/promise/rescue_spec.rb +0 -53
- data/spec/opal/stdlib/promise/then_spec.rb +0 -79
- data/spec/opal/stdlib/promise/trace_spec.rb +0 -51
- data/spec/opal/stdlib/promise/value_spec.rb +0 -15
- data/spec/opal/stdlib/promise/when_spec.rb +0 -34
- data/spec/opal/stdlib/source_map_spec.rb +0 -8
- data/spec/opal/stdlib/strscan/scan_spec.rb +0 -11
- data/spec/opal/stdlib/template/paths_spec.rb +0 -10
- data/spec/opal/stdlib/thread/mutex_spec.rb +0 -40
- data/spec/opal/stdlib/thread/thread_queue_spec.rb +0 -32
- data/spec/opal/stdlib/thread/thread_spec.rb +0 -60
- data/spec/ruby_specs +0 -122
- data/spec/spec_helper.rb +0 -27
- data/spec/support/match_helpers.rb +0 -57
- data/spec/support/mspec_rspec_adapter.rb +0 -33
- data/spec/support/rewriters_helper.rb +0 -24
- data/stdlib/phantomjs.rb +0 -17
- data/tasks/testing/sprockets-phantomjs.js +0 -54
- data/test/nodejs/fixtures/hello.rb +0 -1
- data/test/nodejs/test_dir.rb +0 -17
- data/test/nodejs/test_file.rb +0 -87
- data/test/nodejs/test_io.rb +0 -18
- data/test/nodejs/test_opal_builder.rb +0 -12
- data/test/opal/test_keyword.rb +0 -590
- data/test/opal/unsupported_and_bugs.rb +0 -39
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_args": [
|
|
3
|
+
[
|
|
4
|
+
{
|
|
5
|
+
"raw": "commander@2.1.x",
|
|
6
|
+
"scope": null,
|
|
7
|
+
"escapedName": "commander",
|
|
8
|
+
"name": "commander",
|
|
9
|
+
"rawSpec": "2.1.x",
|
|
10
|
+
"spec": ">=2.1.0 <2.2.0",
|
|
11
|
+
"type": "range"
|
|
12
|
+
},
|
|
13
|
+
"/Users/ilya/Work/opal/lib/opal/cli_runners/node_modules/chrome-remote-interface"
|
|
14
|
+
]
|
|
15
|
+
],
|
|
16
|
+
"_from": "commander@>=2.1.0 <2.2.0",
|
|
17
|
+
"_id": "commander@2.1.0",
|
|
18
|
+
"_inCache": true,
|
|
19
|
+
"_location": "/commander",
|
|
20
|
+
"_npmUser": {
|
|
21
|
+
"name": "tjholowaychuk",
|
|
22
|
+
"email": "tj@vision-media.ca"
|
|
23
|
+
},
|
|
24
|
+
"_npmVersion": "1.3.14",
|
|
25
|
+
"_phantomChildren": {},
|
|
26
|
+
"_requested": {
|
|
27
|
+
"raw": "commander@2.1.x",
|
|
28
|
+
"scope": null,
|
|
29
|
+
"escapedName": "commander",
|
|
30
|
+
"name": "commander",
|
|
31
|
+
"rawSpec": "2.1.x",
|
|
32
|
+
"spec": ">=2.1.0 <2.2.0",
|
|
33
|
+
"type": "range"
|
|
34
|
+
},
|
|
35
|
+
"_requiredBy": [
|
|
36
|
+
"/chrome-remote-interface"
|
|
37
|
+
],
|
|
38
|
+
"_resolved": "https://registry.npmjs.org/commander/-/commander-2.1.0.tgz",
|
|
39
|
+
"_shasum": "d121bbae860d9992a3d517ba96f56588e47c6781",
|
|
40
|
+
"_shrinkwrap": null,
|
|
41
|
+
"_spec": "commander@2.1.x",
|
|
42
|
+
"_where": "/Users/ilya/Work/opal/lib/opal/cli_runners/node_modules/chrome-remote-interface",
|
|
43
|
+
"author": {
|
|
44
|
+
"name": "TJ Holowaychuk",
|
|
45
|
+
"email": "tj@vision-media.ca"
|
|
46
|
+
},
|
|
47
|
+
"bugs": {
|
|
48
|
+
"url": "https://github.com/visionmedia/commander.js/issues"
|
|
49
|
+
},
|
|
50
|
+
"dependencies": {},
|
|
51
|
+
"description": "the complete solution for node.js command-line programs",
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"should": ">= 0.0.1"
|
|
54
|
+
},
|
|
55
|
+
"directories": {},
|
|
56
|
+
"dist": {
|
|
57
|
+
"shasum": "d121bbae860d9992a3d517ba96f56588e47c6781",
|
|
58
|
+
"tarball": "https://registry.npmjs.org/commander/-/commander-2.1.0.tgz"
|
|
59
|
+
},
|
|
60
|
+
"engines": {
|
|
61
|
+
"node": ">= 0.6.x"
|
|
62
|
+
},
|
|
63
|
+
"files": [
|
|
64
|
+
"index.js"
|
|
65
|
+
],
|
|
66
|
+
"homepage": "https://github.com/visionmedia/commander.js",
|
|
67
|
+
"keywords": [
|
|
68
|
+
"command",
|
|
69
|
+
"option",
|
|
70
|
+
"parser",
|
|
71
|
+
"prompt",
|
|
72
|
+
"stdin"
|
|
73
|
+
],
|
|
74
|
+
"main": "index",
|
|
75
|
+
"maintainers": [
|
|
76
|
+
{
|
|
77
|
+
"name": "tjholowaychuk",
|
|
78
|
+
"email": "tj@vision-media.ca"
|
|
79
|
+
}
|
|
80
|
+
],
|
|
81
|
+
"name": "commander",
|
|
82
|
+
"optionalDependencies": {},
|
|
83
|
+
"readme": "ERROR: No README data found!",
|
|
84
|
+
"repository": {
|
|
85
|
+
"type": "git",
|
|
86
|
+
"url": "git+https://github.com/visionmedia/commander.js.git"
|
|
87
|
+
},
|
|
88
|
+
"scripts": {
|
|
89
|
+
"test": "make test"
|
|
90
|
+
},
|
|
91
|
+
"version": "2.1.0"
|
|
92
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2015 Unshift.io, Arnout Kazemier, the Contributors.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
22
|
+
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var has = Object.prototype.hasOwnProperty;
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* An auto incrementing id which we can use to create "unique" Ultron instances
|
|
7
|
+
* so we can track the event emitters that are added through the Ultron
|
|
8
|
+
* interface.
|
|
9
|
+
*
|
|
10
|
+
* @type {Number}
|
|
11
|
+
* @private
|
|
12
|
+
*/
|
|
13
|
+
var id = 0;
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Ultron is high-intelligence robot. It gathers intelligence so it can start improving
|
|
17
|
+
* upon his rudimentary design. It will learn from your EventEmitting patterns
|
|
18
|
+
* and exterminate them.
|
|
19
|
+
*
|
|
20
|
+
* @constructor
|
|
21
|
+
* @param {EventEmitter} ee EventEmitter instance we need to wrap.
|
|
22
|
+
* @api public
|
|
23
|
+
*/
|
|
24
|
+
function Ultron(ee) {
|
|
25
|
+
if (!(this instanceof Ultron)) return new Ultron(ee);
|
|
26
|
+
|
|
27
|
+
this.id = id++;
|
|
28
|
+
this.ee = ee;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* Register a new EventListener for the given event.
|
|
33
|
+
*
|
|
34
|
+
* @param {String} event Name of the event.
|
|
35
|
+
* @param {Functon} fn Callback function.
|
|
36
|
+
* @param {Mixed} context The context of the function.
|
|
37
|
+
* @returns {Ultron}
|
|
38
|
+
* @api public
|
|
39
|
+
*/
|
|
40
|
+
Ultron.prototype.on = function on(event, fn, context) {
|
|
41
|
+
fn.__ultron = this.id;
|
|
42
|
+
this.ee.on(event, fn, context);
|
|
43
|
+
|
|
44
|
+
return this;
|
|
45
|
+
};
|
|
46
|
+
/**
|
|
47
|
+
* Add an EventListener that's only called once.
|
|
48
|
+
*
|
|
49
|
+
* @param {String} event Name of the event.
|
|
50
|
+
* @param {Function} fn Callback function.
|
|
51
|
+
* @param {Mixed} context The context of the function.
|
|
52
|
+
* @returns {Ultron}
|
|
53
|
+
* @api public
|
|
54
|
+
*/
|
|
55
|
+
Ultron.prototype.once = function once(event, fn, context) {
|
|
56
|
+
fn.__ultron = this.id;
|
|
57
|
+
this.ee.once(event, fn, context);
|
|
58
|
+
|
|
59
|
+
return this;
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* Remove the listeners we assigned for the given event.
|
|
64
|
+
*
|
|
65
|
+
* @returns {Ultron}
|
|
66
|
+
* @api public
|
|
67
|
+
*/
|
|
68
|
+
Ultron.prototype.remove = function remove() {
|
|
69
|
+
var args = arguments
|
|
70
|
+
, ee = this.ee
|
|
71
|
+
, event;
|
|
72
|
+
|
|
73
|
+
//
|
|
74
|
+
// When no event names are provided we assume that we need to clear all the
|
|
75
|
+
// events that were assigned through us.
|
|
76
|
+
//
|
|
77
|
+
if (args.length === 1 && 'string' === typeof args[0]) {
|
|
78
|
+
args = args[0].split(/[, ]+/);
|
|
79
|
+
} else if (!args.length) {
|
|
80
|
+
if (ee.eventNames) {
|
|
81
|
+
args = ee.eventNames();
|
|
82
|
+
} else if (ee._events) {
|
|
83
|
+
args = [];
|
|
84
|
+
|
|
85
|
+
for (event in ee._events) {
|
|
86
|
+
if (has.call(ee._events, event)) args.push(event);
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
if (Object.getOwnPropertySymbols) {
|
|
90
|
+
args = args.concat(Object.getOwnPropertySymbols(ee._events));
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
for (var i = 0; i < args.length; i++) {
|
|
96
|
+
var listeners = ee.listeners(args[i]);
|
|
97
|
+
|
|
98
|
+
for (var j = 0; j < listeners.length; j++) {
|
|
99
|
+
event = listeners[j];
|
|
100
|
+
|
|
101
|
+
//
|
|
102
|
+
// Once listeners have a `listener` property that stores the real listener
|
|
103
|
+
// in the EventEmitter that ships with Node.js.
|
|
104
|
+
//
|
|
105
|
+
if (event.listener) {
|
|
106
|
+
if (event.listener.__ultron !== this.id) continue;
|
|
107
|
+
delete event.listener.__ultron;
|
|
108
|
+
} else {
|
|
109
|
+
if (event.__ultron !== this.id) continue;
|
|
110
|
+
delete event.__ultron;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
ee.removeListener(args[i], event);
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
return this;
|
|
118
|
+
};
|
|
119
|
+
|
|
120
|
+
/**
|
|
121
|
+
* Destroy the Ultron instance, remove all listeners and release all references.
|
|
122
|
+
*
|
|
123
|
+
* @returns {Boolean}
|
|
124
|
+
* @api public
|
|
125
|
+
*/
|
|
126
|
+
Ultron.prototype.destroy = function destroy() {
|
|
127
|
+
if (!this.ee) return false;
|
|
128
|
+
|
|
129
|
+
this.remove();
|
|
130
|
+
this.ee = null;
|
|
131
|
+
|
|
132
|
+
return true;
|
|
133
|
+
};
|
|
134
|
+
|
|
135
|
+
//
|
|
136
|
+
// Expose the module.
|
|
137
|
+
//
|
|
138
|
+
module.exports = Ultron;
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_args": [
|
|
3
|
+
[
|
|
4
|
+
{
|
|
5
|
+
"raw": "ultron@~1.1.0",
|
|
6
|
+
"scope": null,
|
|
7
|
+
"escapedName": "ultron",
|
|
8
|
+
"name": "ultron",
|
|
9
|
+
"rawSpec": "~1.1.0",
|
|
10
|
+
"spec": ">=1.1.0 <1.2.0",
|
|
11
|
+
"type": "range"
|
|
12
|
+
},
|
|
13
|
+
"/Users/ilya/Work/opal/lib/opal/cli_runners/node_modules/ws"
|
|
14
|
+
]
|
|
15
|
+
],
|
|
16
|
+
"_from": "ultron@>=1.1.0 <1.2.0",
|
|
17
|
+
"_id": "ultron@1.1.0",
|
|
18
|
+
"_inCache": true,
|
|
19
|
+
"_location": "/ultron",
|
|
20
|
+
"_nodeVersion": "6.2.1",
|
|
21
|
+
"_npmOperationalInternal": {
|
|
22
|
+
"host": "packages-12-west.internal.npmjs.com",
|
|
23
|
+
"tmp": "tmp/ultron-1.1.0.tgz_1483969751660_0.8877595944795758"
|
|
24
|
+
},
|
|
25
|
+
"_npmUser": {
|
|
26
|
+
"name": "3rdeden",
|
|
27
|
+
"email": "npm@3rd-Eden.com"
|
|
28
|
+
},
|
|
29
|
+
"_npmVersion": "3.9.3",
|
|
30
|
+
"_phantomChildren": {},
|
|
31
|
+
"_requested": {
|
|
32
|
+
"raw": "ultron@~1.1.0",
|
|
33
|
+
"scope": null,
|
|
34
|
+
"escapedName": "ultron",
|
|
35
|
+
"name": "ultron",
|
|
36
|
+
"rawSpec": "~1.1.0",
|
|
37
|
+
"spec": ">=1.1.0 <1.2.0",
|
|
38
|
+
"type": "range"
|
|
39
|
+
},
|
|
40
|
+
"_requiredBy": [
|
|
41
|
+
"/ws"
|
|
42
|
+
],
|
|
43
|
+
"_resolved": "https://registry.npmjs.org/ultron/-/ultron-1.1.0.tgz",
|
|
44
|
+
"_shasum": "b07a2e6a541a815fc6a34ccd4533baec307ca864",
|
|
45
|
+
"_shrinkwrap": null,
|
|
46
|
+
"_spec": "ultron@~1.1.0",
|
|
47
|
+
"_where": "/Users/ilya/Work/opal/lib/opal/cli_runners/node_modules/ws",
|
|
48
|
+
"author": {
|
|
49
|
+
"name": "Arnout Kazemier"
|
|
50
|
+
},
|
|
51
|
+
"bugs": {
|
|
52
|
+
"url": "https://github.com/unshiftio/ultron/issues"
|
|
53
|
+
},
|
|
54
|
+
"dependencies": {},
|
|
55
|
+
"description": "Ultron is high-intelligence robot. It gathers intel so it can start improving upon his rudimentary design",
|
|
56
|
+
"devDependencies": {
|
|
57
|
+
"assume": "1.4.x",
|
|
58
|
+
"eventemitter3": "2.0.x",
|
|
59
|
+
"istanbul": "0.4.x",
|
|
60
|
+
"mocha": "~3.2.0",
|
|
61
|
+
"pre-commit": "~1.2.0"
|
|
62
|
+
},
|
|
63
|
+
"directories": {},
|
|
64
|
+
"dist": {
|
|
65
|
+
"shasum": "b07a2e6a541a815fc6a34ccd4533baec307ca864",
|
|
66
|
+
"tarball": "https://registry.npmjs.org/ultron/-/ultron-1.1.0.tgz"
|
|
67
|
+
},
|
|
68
|
+
"gitHead": "6eb97b74402978aebda4a9d497cb6243ec80c9f1",
|
|
69
|
+
"homepage": "https://github.com/unshiftio/ultron",
|
|
70
|
+
"keywords": [
|
|
71
|
+
"Ultron",
|
|
72
|
+
"robot",
|
|
73
|
+
"gather",
|
|
74
|
+
"intelligence",
|
|
75
|
+
"event",
|
|
76
|
+
"events",
|
|
77
|
+
"eventemitter",
|
|
78
|
+
"emitter",
|
|
79
|
+
"cleanup"
|
|
80
|
+
],
|
|
81
|
+
"license": "MIT",
|
|
82
|
+
"main": "index.js",
|
|
83
|
+
"maintainers": [
|
|
84
|
+
{
|
|
85
|
+
"name": "unshift",
|
|
86
|
+
"email": "npm@unshift.io"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"name": "v1",
|
|
90
|
+
"email": "info@3rd-Eden.com"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"name": "3rdeden",
|
|
94
|
+
"email": "npm@3rd-Eden.com"
|
|
95
|
+
}
|
|
96
|
+
],
|
|
97
|
+
"name": "ultron",
|
|
98
|
+
"optionalDependencies": {},
|
|
99
|
+
"readme": "ERROR: No README data found!",
|
|
100
|
+
"repository": {
|
|
101
|
+
"type": "git",
|
|
102
|
+
"url": "git+https://github.com/unshiftio/ultron.git"
|
|
103
|
+
},
|
|
104
|
+
"scripts": {
|
|
105
|
+
"100%": "istanbul check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
|
|
106
|
+
"coverage": "istanbul cover _mocha -- test.js",
|
|
107
|
+
"test": "mocha test.js",
|
|
108
|
+
"test-travis": "istanbul cover _mocha --report lcovonly -- test.js",
|
|
109
|
+
"watch": "mocha --watch test.js"
|
|
110
|
+
},
|
|
111
|
+
"version": "1.1.0"
|
|
112
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2011 Einar Otto Stangvik <einaros@gmail.com>
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,259 @@
|
|
|
1
|
+
# ws: a Node.js WebSocket library
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/ws)
|
|
4
|
+
[](https://travis-ci.org/websockets/ws)
|
|
5
|
+
[](https://ci.appveyor.com/project/lpinca/ws)
|
|
6
|
+
[](https://coveralls.io/r/websockets/ws?branch=master)
|
|
7
|
+
|
|
8
|
+
`ws` is a simple to use, blazing fast, and thoroughly tested WebSocket client
|
|
9
|
+
and server implementation.
|
|
10
|
+
|
|
11
|
+
Passes the quite extensive Autobahn test suite. See http://websockets.github.io/ws/
|
|
12
|
+
for the full reports.
|
|
13
|
+
|
|
14
|
+
## Protocol support
|
|
15
|
+
|
|
16
|
+
* **HyBi drafts 07-12** (Use the option `protocolVersion: 8`)
|
|
17
|
+
* **HyBi drafts 13-17** (Current default, alternatively option `protocolVersion: 13`)
|
|
18
|
+
|
|
19
|
+
## Installing
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
npm install --save ws
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
### Opt-in for performance
|
|
26
|
+
|
|
27
|
+
There are 2 optional modules that can be installed along side with the `ws`
|
|
28
|
+
module. These modules are binary addons which improve certain operations, but as
|
|
29
|
+
they are binary addons they require compilation which can fail if no c++
|
|
30
|
+
compiler is installed on the host system.
|
|
31
|
+
|
|
32
|
+
- `npm install --save bufferutil`: Improves internal buffer operations which
|
|
33
|
+
allows for faster processing of masked WebSocket frames and general buffer
|
|
34
|
+
operations.
|
|
35
|
+
- `npm install --save utf-8-validate`: The specification requires validation of
|
|
36
|
+
invalid UTF-8 chars, some of these validations could not be done in JavaScript
|
|
37
|
+
hence the need for a binary addon. In most cases you will already be
|
|
38
|
+
validating the input that you receive for security purposes leading to double
|
|
39
|
+
validation. But if you want to be 100% spec-conforming and have fast
|
|
40
|
+
validation of UTF-8 then this module is a must.
|
|
41
|
+
|
|
42
|
+
## API Docs
|
|
43
|
+
|
|
44
|
+
See [`/doc/ws.md`](https://github.com/websockets/ws/blob/master/doc/ws.md)
|
|
45
|
+
for Node.js-like docs for the ws classes.
|
|
46
|
+
|
|
47
|
+
## WebSocket compression
|
|
48
|
+
|
|
49
|
+
`ws` supports the [permessage-deflate extension][permessage-deflate] extension
|
|
50
|
+
which enables the client and server to negotiate a compression algorithm and
|
|
51
|
+
its parameters, and then selectively apply it to the data payloads of each
|
|
52
|
+
WebSocket message.
|
|
53
|
+
|
|
54
|
+
The extension is enabled by default but adds a significant overhead in terms of
|
|
55
|
+
performance and memory comsumption. We suggest to use WebSocket compression
|
|
56
|
+
only if it is really needed.
|
|
57
|
+
|
|
58
|
+
To disable the extension you can set the `perMessageDeflate` option to `false`.
|
|
59
|
+
On the server:
|
|
60
|
+
|
|
61
|
+
```js
|
|
62
|
+
const WebSocket = require('ws');
|
|
63
|
+
|
|
64
|
+
const wss = new WebSocket.Server({
|
|
65
|
+
perMessageDeflate: false,
|
|
66
|
+
port: 8080
|
|
67
|
+
});
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
On the client:
|
|
71
|
+
|
|
72
|
+
```js
|
|
73
|
+
const WebSocket = require('ws');
|
|
74
|
+
|
|
75
|
+
const ws = new WebSocket('ws://www.host.com/path', {
|
|
76
|
+
perMessageDeflate: false
|
|
77
|
+
});
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
## Usage examples
|
|
81
|
+
|
|
82
|
+
### Sending and receiving text data
|
|
83
|
+
|
|
84
|
+
```js
|
|
85
|
+
const WebSocket = require('ws');
|
|
86
|
+
|
|
87
|
+
const ws = new WebSocket('ws://www.host.com/path');
|
|
88
|
+
|
|
89
|
+
ws.on('open', function open() {
|
|
90
|
+
ws.send('something');
|
|
91
|
+
});
|
|
92
|
+
|
|
93
|
+
ws.on('message', function incoming(data, flags) {
|
|
94
|
+
// flags.binary will be set if a binary data is received.
|
|
95
|
+
// flags.masked will be set if the data was masked.
|
|
96
|
+
});
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
### Sending binary data
|
|
100
|
+
|
|
101
|
+
```js
|
|
102
|
+
const WebSocket = require('ws');
|
|
103
|
+
|
|
104
|
+
const ws = new WebSocket('ws://www.host.com/path');
|
|
105
|
+
|
|
106
|
+
ws.on('open', function open() {
|
|
107
|
+
const array = new Float32Array(5);
|
|
108
|
+
|
|
109
|
+
for (var i = 0; i < array.length; ++i) {
|
|
110
|
+
array[i] = i / 2;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
ws.send(array);
|
|
114
|
+
});
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
### Server example
|
|
118
|
+
|
|
119
|
+
```js
|
|
120
|
+
const WebSocket = require('ws');
|
|
121
|
+
|
|
122
|
+
const wss = new WebSocket.Server({ port: 8080 });
|
|
123
|
+
|
|
124
|
+
wss.on('connection', function connection(ws) {
|
|
125
|
+
ws.on('message', function incoming(message) {
|
|
126
|
+
console.log('received: %s', message);
|
|
127
|
+
});
|
|
128
|
+
|
|
129
|
+
ws.send('something');
|
|
130
|
+
});
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
### Broadcast example
|
|
134
|
+
|
|
135
|
+
```js
|
|
136
|
+
const WebSocket = require('ws');
|
|
137
|
+
|
|
138
|
+
const wss = new WebSocket.Server({ port: 8080 });
|
|
139
|
+
|
|
140
|
+
// Broadcast to all.
|
|
141
|
+
wss.broadcast = function broadcast(data) {
|
|
142
|
+
wss.clients.forEach(function each(client) {
|
|
143
|
+
if (client.readyState === WebSocket.OPEN) {
|
|
144
|
+
client.send(data);
|
|
145
|
+
}
|
|
146
|
+
});
|
|
147
|
+
};
|
|
148
|
+
|
|
149
|
+
wss.on('connection', function connection(ws) {
|
|
150
|
+
ws.on('message', function incoming(data) {
|
|
151
|
+
// Broadcast to everyone else.
|
|
152
|
+
wss.clients.forEach(function each(client) {
|
|
153
|
+
if (client !== ws && client.readyState === WebSocket.OPEN) {
|
|
154
|
+
client.send(data);
|
|
155
|
+
}
|
|
156
|
+
});
|
|
157
|
+
});
|
|
158
|
+
});
|
|
159
|
+
```
|
|
160
|
+
|
|
161
|
+
### ExpressJS example
|
|
162
|
+
|
|
163
|
+
```js
|
|
164
|
+
const express = require('express');
|
|
165
|
+
const http = require('http');
|
|
166
|
+
const url = require('url');
|
|
167
|
+
const WebSocket = require('ws');
|
|
168
|
+
|
|
169
|
+
const app = express();
|
|
170
|
+
|
|
171
|
+
app.use(function (req, res) {
|
|
172
|
+
res.send({ msg: "hello" });
|
|
173
|
+
});
|
|
174
|
+
|
|
175
|
+
const server = http.createServer(app);
|
|
176
|
+
const wss = new WebSocket.Server({ server });
|
|
177
|
+
|
|
178
|
+
wss.on('connection', function connection(ws) {
|
|
179
|
+
const location = url.parse(ws.upgradeReq.url, true);
|
|
180
|
+
// You might use location.query.access_token to authenticate or share sessions
|
|
181
|
+
// or ws.upgradeReq.headers.cookie (see http://stackoverflow.com/a/16395220/151312)
|
|
182
|
+
|
|
183
|
+
ws.on('message', function incoming(message) {
|
|
184
|
+
console.log('received: %s', message);
|
|
185
|
+
});
|
|
186
|
+
|
|
187
|
+
ws.send('something');
|
|
188
|
+
});
|
|
189
|
+
|
|
190
|
+
server.listen(8080, function listening() {
|
|
191
|
+
console.log('Listening on %d', server.address().port);
|
|
192
|
+
});
|
|
193
|
+
```
|
|
194
|
+
|
|
195
|
+
### echo.websocket.org demo
|
|
196
|
+
|
|
197
|
+
```js
|
|
198
|
+
const WebSocket = require('ws');
|
|
199
|
+
|
|
200
|
+
const ws = new WebSocket('wss://echo.websocket.org/', {
|
|
201
|
+
origin: 'https://websocket.org'
|
|
202
|
+
});
|
|
203
|
+
|
|
204
|
+
ws.on('open', function open() {
|
|
205
|
+
console.log('connected');
|
|
206
|
+
ws.send(Date.now());
|
|
207
|
+
});
|
|
208
|
+
|
|
209
|
+
ws.on('close', function close() {
|
|
210
|
+
console.log('disconnected');
|
|
211
|
+
});
|
|
212
|
+
|
|
213
|
+
ws.on('message', function incoming(data, flags) {
|
|
214
|
+
console.log(`Roundtrip time: ${Date.now() - data} ms`, flags);
|
|
215
|
+
|
|
216
|
+
setTimeout(function timeout() {
|
|
217
|
+
ws.send(Date.now());
|
|
218
|
+
}, 500);
|
|
219
|
+
});
|
|
220
|
+
```
|
|
221
|
+
|
|
222
|
+
### Other examples
|
|
223
|
+
|
|
224
|
+
For a full example with a browser client communicating with a ws server, see the
|
|
225
|
+
examples folder.
|
|
226
|
+
|
|
227
|
+
Otherwise, see the test cases.
|
|
228
|
+
|
|
229
|
+
## Error handling best practices
|
|
230
|
+
|
|
231
|
+
```js
|
|
232
|
+
// If the WebSocket is closed before the following send is attempted
|
|
233
|
+
ws.send('something');
|
|
234
|
+
|
|
235
|
+
// Errors (both immediate and async write errors) can be detected in an optional
|
|
236
|
+
// callback. The callback is also the only way of being notified that data has
|
|
237
|
+
// actually been sent.
|
|
238
|
+
ws.send('something', function ack(error) {
|
|
239
|
+
// If error is not defined, the send has been completed, otherwise the error
|
|
240
|
+
// object will indicate what failed.
|
|
241
|
+
});
|
|
242
|
+
|
|
243
|
+
// Immediate errors can also be handled with `try...catch`, but **note** that
|
|
244
|
+
// since sends are inherently asynchronous, socket write failures will *not* be
|
|
245
|
+
// captured when this technique is used.
|
|
246
|
+
try { ws.send('something'); }
|
|
247
|
+
catch (e) { /* handle error */ }
|
|
248
|
+
```
|
|
249
|
+
|
|
250
|
+
## Changelog
|
|
251
|
+
|
|
252
|
+
We're using the GitHub [`releases`](https://github.com/websockets/ws/releases)
|
|
253
|
+
for changelog entries.
|
|
254
|
+
|
|
255
|
+
## License
|
|
256
|
+
|
|
257
|
+
[MIT](LICENSE)
|
|
258
|
+
|
|
259
|
+
[permessage-deflate]: https://tools.ietf.org/html/rfc7692
|