traceur-rb 0.0.1 → 0.0.2
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 +8 -8
- data/README.md +2 -2
- data/lib/js/compile.js +7 -15
- data/lib/traceur.rb +2 -1
- data/lib/traceur/compilation_error.rb +27 -0
- data/lib/traceur/compiler.rb +4 -1
- data/lib/traceur/configuration.rb +1 -1
- data/lib/traceur/node/runner.rb +1 -1
- data/lib/traceur/version.rb +1 -1
- data/spec/examples/syntax_error.js +3 -0
- data/spec/integration/examples_spec.rb +6 -0
- data/vendor/node_modules/traceur/LICENSE +202 -0
- data/vendor/node_modules/traceur/README.md +5 -5
- data/vendor/node_modules/traceur/bin/traceur-runtime.js +1392 -623
- data/vendor/node_modules/traceur/bin/traceur.js +24749 -17990
- data/vendor/node_modules/traceur/node_modules/.bin/semver +2 -2
- data/vendor/node_modules/traceur/node_modules/commander/History.md +222 -0
- data/vendor/node_modules/traceur/node_modules/commander/Readme.md +127 -35
- data/vendor/node_modules/traceur/node_modules/commander/index.js +261 -93
- data/vendor/node_modules/traceur/node_modules/commander/package.json +41 -9
- data/vendor/node_modules/traceur/node_modules/glob/LICENSE +15 -0
- data/vendor/node_modules/traceur/node_modules/glob/README.md +357 -0
- data/vendor/node_modules/traceur/node_modules/glob/common.js +177 -0
- data/vendor/node_modules/traceur/node_modules/glob/glob.js +649 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/inflight/.eslintrc +17 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/inflight/LICENSE +15 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/inflight/README.md +37 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/inflight/inflight.js +44 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/inflight/node_modules/wrappy/LICENSE +15 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/inflight/node_modules/wrappy/README.md +36 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/inflight/node_modules/wrappy/package.json +34 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/inflight/node_modules/wrappy/test/basic.js +51 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/inflight/node_modules/wrappy/wrappy.js +33 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/inflight/package.json +61 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/inflight/test.js +97 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/inherits/LICENSE +16 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/inherits/README.md +42 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/inherits/inherits.js +1 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/inherits/inherits_browser.js +23 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/inherits/package.json +33 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/inherits/test.js +25 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/.npmignore +1 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/.travis.yml +4 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/LICENSE +23 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/README.md +216 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/benchmark.js +15 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/browser.js +1181 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/minimatch.js +845 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/.npmignore +2 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/.travis.yml +3 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/README.md +121 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/example.js +8 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/index.js +191 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/.npmignore +2 -0
- data/vendor/node_modules/traceur/node_modules/{q-io/node_modules/collections → glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match}/.travis.yml +0 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/Makefile +6 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/README.md +80 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/example.js +5 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/index.js +38 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/package.json +73 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/test/balanced.js +56 -0
- data/vendor/node_modules/traceur/node_modules/{q-io/node_modules/url2 → glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map}/.travis.yml +1 -1
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/LICENSE +18 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/README.markdown +62 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/example/map.js +6 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/index.js +13 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/package.json +83 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/test/map.js +39 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/package.json +75 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/bash-comparison.js +32 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/bash-results.txt +1075 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/cases.txt +182 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/dollar.js +9 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/empty-option.js +10 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/generate.sh +24 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/negative-increment.js +15 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/nested.js +16 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/order.js +10 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/pad.js +13 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/same-type.js +7 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/sequence.js +50 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/package.json +60 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/test/basic.js +399 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/test/brace-expand.js +45 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/test/defaults.js +274 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/minimatch/test/extglob-ending-with-state-char.js +8 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/once/LICENSE +27 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/once/README.md +51 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/once/node_modules/wrappy/LICENSE +15 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/once/node_modules/wrappy/README.md +36 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/once/node_modules/wrappy/package.json +34 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/once/node_modules/wrappy/test/basic.js +51 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/once/node_modules/wrappy/wrappy.js +33 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/once/once.js +21 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/once/package.json +42 -0
- data/vendor/node_modules/traceur/node_modules/glob/node_modules/once/test/once.js +23 -0
- data/vendor/node_modules/traceur/node_modules/glob/package.json +72 -0
- data/vendor/node_modules/traceur/node_modules/glob/sync.js +409 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/.release.json +17 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/CHANGELOG.md +165 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/LICENSE +19 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/README.md +364 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/dist/rsvp.js +1671 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/dist/rsvp.min.js +9 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/lib/rsvp.js +66 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/lib/rsvp.umd.js +50 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/lib/rsvp/-internal.js +265 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/lib/rsvp/all-settled.js +71 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/lib/rsvp/all.js +15 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/lib/rsvp/asap.js +109 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/lib/rsvp/config.js +28 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/lib/rsvp/defer.js +45 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/lib/rsvp/enumerator.js +125 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/lib/rsvp/events.js +201 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/lib/rsvp/filter.js +120 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/lib/rsvp/hash-settled.js +124 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/lib/rsvp/hash.js +94 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/lib/rsvp/instrument.js +41 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/lib/rsvp/map.js +99 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/lib/rsvp/node.js +281 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/lib/rsvp/promise-hash.js +51 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/lib/rsvp/promise.js +496 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/lib/rsvp/promise/all.js +52 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/lib/rsvp/promise/race.js +105 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/lib/rsvp/promise/reject.js +47 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/lib/rsvp/promise/resolve.js +49 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/lib/rsvp/race.js +15 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/lib/rsvp/reject.js +16 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/lib/rsvp/resolve.js +17 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/lib/rsvp/rethrow.js +46 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/lib/rsvp/utils.js +39 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/package.json +100 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/rsvp.js/README.md +9 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/rsvp.js/bower.json +22 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/rsvp.js/composer.json +18 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/rsvp.js/package.json +52 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/rsvp.js/rsvp.amd.js +1607 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/rsvp.js/rsvp.js +1566 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/rsvp.js/rsvp.min.js +26 -0
- data/vendor/node_modules/traceur/node_modules/rsvp/vertx.js +1 -0
- data/vendor/node_modules/traceur/node_modules/semver/bin/semver +2 -2
- data/vendor/node_modules/traceur/node_modules/semver/package.json +4 -3
- data/vendor/node_modules/traceur/node_modules/semver/semver.browser.js +7 -0
- data/vendor/node_modules/traceur/node_modules/semver/semver.browser.js.gz +0 -0
- data/vendor/node_modules/traceur/node_modules/semver/semver.js +7 -0
- data/vendor/node_modules/traceur/node_modules/semver/semver.min.js +1 -1
- data/vendor/node_modules/traceur/node_modules/semver/semver.min.js.gz +0 -0
- data/vendor/node_modules/traceur/node_modules/semver/test/index.js +8 -4
- data/vendor/node_modules/traceur/node_modules/semver/test/ltr.js +2 -1
- data/vendor/node_modules/traceur/node_modules/source-map-support/.npmignore +1 -0
- data/vendor/node_modules/traceur/node_modules/{q-io/node_modules/mime/LICENSE → source-map-support/LICENSE.md} +7 -5
- data/vendor/node_modules/traceur/node_modules/source-map-support/README.md +165 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/amd-test/browser-source-map-support.js +89 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/amd-test/index.html +6 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/amd-test/require.js +36 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/amd-test/script.coffee +13 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/amd-test/script.js +24 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/amd-test/script.map +10 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/browser-source-map-support.js +89 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/browser-test/index.html +6 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/browser-test/script.coffee +12 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/browser-test/script.js +25 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/browser-test/script.map +10 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/build.js +69 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/header-test/index.html +6 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/header-test/script.coffee +12 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/header-test/script.js +25 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/header-test/script.map +10 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/header-test/server.js +45 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/.npmignore +2 -0
- data/vendor/node_modules/traceur/node_modules/{q-io → source-map-support/node_modules/source-map}/.travis.yml +1 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/CHANGELOG.md +121 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/LICENSE +28 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/Makefile.dryice.js +166 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/README.md +434 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/build/assert-shim.js +56 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/build/mini-require.js +152 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/build/prefix-source-map.jsm +20 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/build/prefix-utils.jsm +18 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/build/suffix-browser.js +8 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/build/suffix-source-map.jsm +6 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/build/suffix-utils.jsm +21 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/build/test-prefix.js +8 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/build/test-suffix.js +3 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/lib/source-map.js +8 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/lib/source-map/array-set.js +97 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/lib/source-map/base64-vlq.js +144 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/lib/source-map/base64.js +42 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/lib/source-map/binary-search.js +81 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/lib/source-map/source-map-consumer.js +478 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/lib/source-map/source-map-generator.js +380 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/lib/source-map/source-node.js +371 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/lib/source-map/util.js +205 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/node_modules/amdefine/LICENSE +58 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/node_modules/amdefine/README.md +171 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/node_modules/amdefine/amdefine.js +299 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/node_modules/amdefine/intercept.js +36 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/node_modules/amdefine/package.json +37 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/package.json +142 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/test/run-tests.js +62 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/test/source-map/test-api.js +26 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/test/source-map/test-array-set.js +104 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/test/source-map/test-base64-vlq.js +24 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/test/source-map/test-base64.js +35 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/test/source-map/test-binary-search.js +54 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/test/source-map/test-dog-fooding.js +72 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/test/source-map/test-source-map-consumer.js +451 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/test/source-map/test-source-map-generator.js +417 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/test/source-map/test-source-node.js +365 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/node_modules/source-map/test/source-map/util.js +161 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/package.json +52 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/source-map-support.js +381 -0
- data/vendor/node_modules/traceur/node_modules/source-map-support/test.js +359 -0
- data/vendor/node_modules/traceur/package.json +234 -20
- data/vendor/node_modules/traceur/src/node/NodeCompiler.js +78 -0
- data/vendor/node_modules/traceur/src/node/System.js +32 -5
- data/vendor/node_modules/traceur/src/node/api.js +28 -93
- data/vendor/node_modules/traceur/src/node/command.js +84 -19
- data/vendor/node_modules/traceur/src/node/compileAllJsFilesInDir.js +40 -0
- data/vendor/node_modules/traceur/src/node/interpreter.js +11 -8
- data/vendor/node_modules/traceur/src/node/recursiveModuleCompile.js +171 -0
- data/vendor/node_modules/traceur/src/node/require.js +7 -21
- data/vendor/node_modules/traceur/src/node/to-amd-compiler.js +2 -7
- data/vendor/node_modules/traceur/src/node/to-closure-compiler.js +28 -0
- data/vendor/node_modules/traceur/src/node/to-commonjs-compiler.js +3 -7
- data/vendor/node_modules/traceur/src/node/traceur.js +1 -1
- metadata +196 -190
- data/vendor/node_modules/traceur/node_modules/q-io/.npmignore +0 -1
- data/vendor/node_modules/traceur/node_modules/q-io/CHANGES.md +0 -122
- data/vendor/node_modules/traceur/node_modules/q-io/LICENSE +0 -19
- data/vendor/node_modules/traceur/node_modules/q-io/README.md +0 -928
- data/vendor/node_modules/traceur/node_modules/q-io/buffer-stream.js +0 -59
- data/vendor/node_modules/traceur/node_modules/q-io/coverage-report.js +0 -44
- data/vendor/node_modules/traceur/node_modules/q-io/deprecate.js +0 -51
- data/vendor/node_modules/traceur/node_modules/q-io/fs-boot.js +0 -307
- data/vendor/node_modules/traceur/node_modules/q-io/fs-common.js +0 -499
- data/vendor/node_modules/traceur/node_modules/q-io/fs-mock.js +0 -547
- data/vendor/node_modules/traceur/node_modules/q-io/fs-root.js +0 -105
- data/vendor/node_modules/traceur/node_modules/q-io/fs.js +0 -355
- data/vendor/node_modules/traceur/node_modules/q-io/fs2http.js +0 -65
- data/vendor/node_modules/traceur/node_modules/q-io/http-apps.js +0 -152
- data/vendor/node_modules/traceur/node_modules/q-io/http-apps/chain.js +0 -24
- data/vendor/node_modules/traceur/node_modules/q-io/http-apps/content.js +0 -93
- data/vendor/node_modules/traceur/node_modules/q-io/http-apps/cookie.js +0 -154
- data/vendor/node_modules/traceur/node_modules/q-io/http-apps/decorators.js +0 -178
- data/vendor/node_modules/traceur/node_modules/q-io/http-apps/fs.js +0 -417
- data/vendor/node_modules/traceur/node_modules/q-io/http-apps/html.js +0 -58
- data/vendor/node_modules/traceur/node_modules/q-io/http-apps/json.js +0 -78
- data/vendor/node_modules/traceur/node_modules/q-io/http-apps/negotiate.js +0 -120
- data/vendor/node_modules/traceur/node_modules/q-io/http-apps/proxy.js +0 -27
- data/vendor/node_modules/traceur/node_modules/q-io/http-apps/redirect.js +0 -209
- data/vendor/node_modules/traceur/node_modules/q-io/http-apps/route.js +0 -125
- data/vendor/node_modules/traceur/node_modules/q-io/http-apps/status.js +0 -175
- data/vendor/node_modules/traceur/node_modules/q-io/http-cookie.js +0 -75
- data/vendor/node_modules/traceur/node_modules/q-io/http.js +0 -378
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/.npmignore +0 -11
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/CHANGES.md +0 -78
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/LICENSE.md +0 -21
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/README.md +0 -1285
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/collections.js +0 -22
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/dict.js +0 -142
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/fast-map.js +0 -57
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/fast-set.js +0 -183
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/generic-collection.js +0 -261
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/generic-map.js +0 -186
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/generic-order.js +0 -55
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/generic-set.js +0 -59
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/heap.js +0 -236
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/iterator.js +0 -371
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/list.js +0 -435
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/listen/array-changes.js +0 -247
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/listen/map-changes.js +0 -147
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/listen/property-changes.js +0 -448
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/listen/range-changes.js +0 -139
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/lru-map.js +0 -79
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/lru-set.js +0 -142
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/map.js +0 -60
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/multi-map.js +0 -41
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/node_modules/weak-map/package.json +0 -12
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/node_modules/weak-map/sync +0 -7
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/node_modules/weak-map/sync.patch +0 -48
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/node_modules/weak-map/weak-map.js +0 -590
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/package.json +0 -49
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/set.js +0 -173
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/shim-array.js +0 -274
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/shim-function.js +0 -59
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/shim-object.js +0 -538
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/shim-regexp.js +0 -14
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/shim.js +0 -6
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/sorted-array-map.js +0 -49
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/sorted-array-set.js +0 -51
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/sorted-array.js +0 -269
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/sorted-map.js +0 -61
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/sorted-set.js +0 -736
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/tree-log.js +0 -40
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/collections/weak-map.js +0 -1
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/mime/README.md +0 -66
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/mime/mime.js +0 -114
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/mime/package.json +0 -35
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/mime/test.js +0 -84
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/mime/types/mime.types +0 -1588
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/mime/types/node.types +0 -77
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/mimeparse/CHANGES +0 -15
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/mimeparse/LICENSE +0 -19
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/mimeparse/README +0 -96
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/mimeparse/lib/mimeparse.js +0 -166
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/mimeparse/package.json +0 -43
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/q/CONTRIBUTING.md +0 -40
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/q/LICENSE +0 -19
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/q/README.md +0 -813
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/q/benchmark/compare-with-callbacks.js +0 -71
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/q/benchmark/scenarios.js +0 -36
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/q/package.json +0 -93
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/q/q.js +0 -1937
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/q/queue.js +0 -35
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/.gitmodules +0 -6
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/History.md +0 -36
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/Makefile +0 -7
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/Readme.md +0 -38
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/benchmark.js +0 -32
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/examples.js +0 -39
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/index.js +0 -2
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/lib/querystring.js +0 -123
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/package.json +0 -19
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/.gitmodules +0 -3
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/.npmignore +0 -3
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/History.md +0 -128
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/Makefile +0 -53
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/Readme.md +0 -61
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/bin/expresso +0 -856
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/docs/api.html +0 -1080
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/docs/index.html +0 -377
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/docs/index.md +0 -290
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/docs/layout/foot.html +0 -3
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/docs/layout/head.html +0 -42
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/lib/bar.js +0 -4
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/lib/foo.js +0 -16
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/package.json +0 -12
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/test/assert.test.js +0 -91
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/test/async.test.js +0 -12
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/test/bar.test.js +0 -13
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/test/foo.test.js +0 -14
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/test/http.test.js +0 -146
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/test/serial/async.test.js +0 -39
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/expresso/test/serial/http.test.js +0 -48
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/should/.gitmodules +0 -3
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/should/History.md +0 -22
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/should/Makefile +0 -6
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/should/Readme.md +0 -248
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/should/examples/runner.js +0 -53
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/should/index.js +0 -2
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/should/lib/eql.js +0 -91
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/should/lib/should.js +0 -548
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/should/package.json +0 -8
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/support/should/test/should.test.js +0 -358
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/qs/test/querystring.test.js +0 -133
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/url2/.npmignore +0 -3
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/url2/LICENSE.md +0 -20
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/url2/README.md +0 -33
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/url2/package.json +0 -37
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/url2/test/url2-spec.js +0 -125
- data/vendor/node_modules/traceur/node_modules/q-io/node_modules/url2/url2.js +0 -151
- data/vendor/node_modules/traceur/node_modules/q-io/package.json +0 -51
- data/vendor/node_modules/traceur/node_modules/q-io/reader.js +0 -133
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/boot-directory-spec.js +0 -47
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/contains-spec.js +0 -11
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/fixtures/hello.txt +0 -1
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/issues/1-spec.js +0 -33
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/make-tree-spec.js +0 -92
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/append-spec.js +0 -41
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/copy-tree-spec.js +0 -57
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/fixture/hello.txt +0 -1
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/link-spec.js +0 -70
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/make-tree-spec.js +0 -109
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/merge-spec.js +0 -67
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/move-spec.js +0 -219
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/object-spec.js +0 -20
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/range-spec.js +0 -26
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/read-spec.js +0 -40
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/remove-directory-spec.js +0 -37
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/remove-tree-spec.js +0 -39
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/root-spec.js +0 -32
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/stat-spec.js +0 -26
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/symbolic-link-spec.js +0 -86
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/working-directory-spec.js +0 -31
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/mock/write-spec.js +0 -73
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/range-spec.js +0 -23
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/range-spec.txt +0 -1
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/read-spec.js +0 -22
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/relative-spec.js +0 -25
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/reroot-spec.js +0 -45
- data/vendor/node_modules/traceur/node_modules/q-io/spec/fs/write-spec.js +0 -38
- data/vendor/node_modules/traceur/node_modules/q-io/spec/http-apps/cookie-spec.js +0 -52
- data/vendor/node_modules/traceur/node_modules/q-io/spec/http-apps/directory-list-spec.js +0 -86
- data/vendor/node_modules/traceur/node_modules/q-io/spec/http-apps/fixtures/01234.txt +0 -1
- data/vendor/node_modules/traceur/node_modules/q-io/spec/http-apps/fixtures/1234.txt +0 -1
- data/vendor/node_modules/traceur/node_modules/q-io/spec/http-apps/fixtures/5678.txt +0 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/http-apps/fixtures/9012/3456.txt +0 -0
- data/vendor/node_modules/traceur/node_modules/q-io/spec/http-apps/hosts-spec.js +0 -49
- data/vendor/node_modules/traceur/node_modules/q-io/spec/http-apps/interpret-range-spec.js +0 -47
- data/vendor/node_modules/traceur/node_modules/q-io/spec/http-apps/partial-range-spec.js +0 -186
- data/vendor/node_modules/traceur/node_modules/q-io/spec/http-apps/proxy-spec.js +0 -82
- data/vendor/node_modules/traceur/node_modules/q-io/spec/http-apps/symbolic-link-spec.js +0 -110
- data/vendor/node_modules/traceur/node_modules/q-io/spec/http/agent-spec.js +0 -96
- data/vendor/node_modules/traceur/node_modules/q-io/spec/http/basic-spec.js +0 -96
- data/vendor/node_modules/traceur/node_modules/q-io/spec/lib/jasmine-promise.js +0 -42
- data/vendor/node_modules/traceur/node_modules/q-io/writer.js +0 -111
- data/vendor/node_modules/traceur/src/node/compile-single-file.js +0 -69
- data/vendor/node_modules/traceur/src/node/compiler.js +0 -116
- data/vendor/node_modules/traceur/src/node/inline-module.js +0 -149
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"non-interactive": true,
|
|
3
|
+
"dry-run": false,
|
|
4
|
+
"verbose": false,
|
|
5
|
+
"force": false,
|
|
6
|
+
"pkgFiles": ["package.json", "bower.json"],
|
|
7
|
+
"increment": "patch",
|
|
8
|
+
"commitMessage": "Release %s",
|
|
9
|
+
"tagName": "%s",
|
|
10
|
+
"tagAnnotation": "Release %s",
|
|
11
|
+
"buildCommand": "npm run-script build-all",
|
|
12
|
+
"distRepo": "git@github.com:components/rsvp.js.git",
|
|
13
|
+
"distStageDir": "tmp/stage",
|
|
14
|
+
"distBase": "dist",
|
|
15
|
+
"distFiles": ["**/*", "../package.json", "../bower.json"],
|
|
16
|
+
"publish": false
|
|
17
|
+
}
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
# Master
|
|
2
|
+
|
|
3
|
+
* improve performance of instrumentation (also add seperate flag to include "stack" with instrumentation as it is unfortunately slow)
|
|
4
|
+
* ensure minified RSVP.defer() maintains known external API [#293](https://github.com/tildeio/rsvp.js/pull/293)
|
|
5
|
+
* add `finally` to the readme
|
|
6
|
+
* improve usage of browserify for promise/a+ tests
|
|
7
|
+
* add wasteful files to gitignore
|
|
8
|
+
* add [vert.x](http://vertx.io/) compatibility
|
|
9
|
+
|
|
10
|
+
# 3.0.13
|
|
11
|
+
|
|
12
|
+
* [Bugfix] fix `RSVP.hash` `RSVP.hashSettled` in runtimes < es5 by fixing a broken `Object.create` polyfil [#286](https://github.com/tildeio/rsvp.js/pull/286)
|
|
13
|
+
* [Enhancement] cleanup & improve test related build tooling [#288](https://github.com/tildeio/rsvp.js/pull/288)
|
|
14
|
+
|
|
15
|
+
# 3.0.12
|
|
16
|
+
|
|
17
|
+
* [Bugfix] fix regression in denodeify that broke foreign thenables as arguments to denodeifed functions [#281](https://github.com/tildeio/rsvp.js/pull/281)
|
|
18
|
+
|
|
19
|
+
# 3.0.11
|
|
20
|
+
|
|
21
|
+
* [Bugfix] some onerror scenarios did not result in error notifications [4dcf](https://github.com/tildeio/rsvp.js/commit/4dcfa92bab6f5fc9e97ca3abfb71025a08984e7e)
|
|
22
|
+
* [Bugfix] for more correctness internal optimization should only occure
|
|
23
|
+
if constructors equal, not just if instanceof check passes [96b5ec](https://github.com/tildeio/rsvp.js/commit/96b5ec201b2ddafc70cd5c836bc341a46081ae23)
|
|
24
|
+
* fancy new s3 publishing thanks to @rondale-sc
|
|
25
|
+
|
|
26
|
+
# 3.0.10
|
|
27
|
+
|
|
28
|
+
* faster denodeify
|
|
29
|
+
* rework tooling (Broccoli, testem, no grunt)
|
|
30
|
+
* utilize bundle format for super small UMD builds
|
|
31
|
+
|
|
32
|
+
# 3.0.9
|
|
33
|
+
* [Bugfix] no longer include promise-aplus tests as a production
|
|
34
|
+
dependency
|
|
35
|
+
* [Enhancement] fast then path for both rejection/fulfilment [0d252](https://github.com/tildeio/rsvp.js/commit/0d252ed4831eabb82991584e2e3eaae2a3a2ba42)
|
|
36
|
+
* [Enhancement] short-cut for faster then chaining in specific scenarios
|
|
37
|
+
[#256](https://github.com/tildeio/rsvp.js/pull/256)
|
|
38
|
+
|
|
39
|
+
# 3.0.8
|
|
40
|
+
* [Bugfix] custom onerror handler, for potentially unhandled errors
|
|
41
|
+
would report unhandled errors in some incorrect scenarios.
|
|
42
|
+
[#255](https://github.com/tildeio/rsvp.js/pull/255)
|
|
43
|
+
|
|
44
|
+
# 3.0.7
|
|
45
|
+
|
|
46
|
+
* improve tests in some older es5+ browsers
|
|
47
|
+
* [Bugfix] denodeify should not use console for deprecation warning unless console is defined
|
|
48
|
+
* [Enhancement] instrumentation should emit out-of-band. This should improve ember-extension performance
|
|
49
|
+
* [Bugfix] race should not be susceptible to zalgo
|
|
50
|
+
* [Perf] PromiseEnumerator increase performance of all enumerable methods all/allSettled/hash/hasSettled -> https://gist.github.com/stefanpenner/26465d5848f2924e2aca
|
|
51
|
+
* [Docfix] Fix small documentation inconsistency
|
|
52
|
+
* [Perf] an internal promise shouldn't bother validating `this` and `resolver`
|
|
53
|
+
* [Perf] flatten asap’s QUEUE structure
|
|
54
|
+
* [Perf] Reduce Constructor AST size.
|
|
55
|
+
* [Perf] some versions of v8, think keep marking these functions to be optimized. This hints to them not to be.
|
|
56
|
+
* [Perf] accidental resolve step, that merely needed to be a fulfill
|
|
57
|
+
* [Perf/Enhancement] simplify publishing
|
|
58
|
+
* [Spec ADdition]add spec test “Ensure `then` is always called with a clean stack.” ensure RSVP passes future a+ spec
|
|
59
|
+
* [Bugfix] web worker support
|
|
60
|
+
* [Docfix] Add a param name to make yuidoc happy
|
|
61
|
+
* [Enhancement] simplify async vs sync pub/sub code-paths
|
|
62
|
+
* [Bugfix] Passed the label through to the Promise object, as expected
|
|
63
|
+
* [Docfix] missing Parentheses on promise example in documentation
|
|
64
|
+
* [License] Add Stefan Penner to license
|
|
65
|
+
* [Docfix] document `var promises` in filter.js
|
|
66
|
+
|
|
67
|
+
# 3.0.3 -> 3.0.6 (missing changelog)
|
|
68
|
+
|
|
69
|
+
* Changes to RSVP.denodeify: Behaviour for multiple success callback parameters
|
|
70
|
+
has been improved and the denodefied function now inherits from the original
|
|
71
|
+
node function.
|
|
72
|
+
|
|
73
|
+
# 3.0.2
|
|
74
|
+
|
|
75
|
+
* [Spec compliance] Promise.all and Promise.race should reject, not throw on invalid input
|
|
76
|
+
* Add RSVP.allSettled
|
|
77
|
+
|
|
78
|
+
# 3.0.1
|
|
79
|
+
|
|
80
|
+
* Optimization: promises with noop resolvers now don't bother try to handle them.
|
|
81
|
+
* [perf] skip costly resolver invocation if it is known not to be needed.
|
|
82
|
+
* improve promise inspector interopt
|
|
83
|
+
|
|
84
|
+
# 3.0.0
|
|
85
|
+
|
|
86
|
+
* align with the promise spec
|
|
87
|
+
https://github.com/domenic/promises-unwrapping
|
|
88
|
+
* idiomatic es6 usage
|
|
89
|
+
* RSVP.all: now now casts rather then resolves, and doesn't touch the
|
|
90
|
+
"then"
|
|
91
|
+
* RSVP.hash: now now casts rather then resolves, and doesn't touch the
|
|
92
|
+
"then"
|
|
93
|
+
* MutationObserver: prefer text mutation, this fixes interop with
|
|
94
|
+
MutationObserver polyfils
|
|
95
|
+
* Removing asap unload listener. Allows back/forward page cache, chrome
|
|
96
|
+
bug is old. Fixes #168
|
|
97
|
+
* add grunt docs task
|
|
98
|
+
* document: Promise.cast
|
|
99
|
+
* document: Promise.resolve/Promise.reject
|
|
100
|
+
* document: Promise.race
|
|
101
|
+
* document: Promise.all
|
|
102
|
+
* document: Promise.hash
|
|
103
|
+
* document: RSVP.denodeify
|
|
104
|
+
* document: RSVP.EventTarget
|
|
105
|
+
* document: RSVP.rethrow
|
|
106
|
+
* document: RSVP.defer
|
|
107
|
+
* Document: RSVP.on('error'
|
|
108
|
+
* Add Instrumentation hooks for tooling
|
|
109
|
+
* Significant internal cleanup and performance improvements
|
|
110
|
+
* require Promise constructor to be new'd (aligned with es6 spec)
|
|
111
|
+
* Prefer tasks + config inline within project
|
|
112
|
+
* Add Promise.finally
|
|
113
|
+
* Add Promise.cast
|
|
114
|
+
* Add Promise.resolve
|
|
115
|
+
* Add Promise.reject
|
|
116
|
+
* Add Promise.all
|
|
117
|
+
* Add Promise.race
|
|
118
|
+
* Add RSVP.map
|
|
119
|
+
* Support promise inheritance
|
|
120
|
+
* optimize onerror and reduce promise creation cost by 20x
|
|
121
|
+
* promise/a+ 2.0.3 compliant
|
|
122
|
+
* RSVP.async to schedule callbacks on internal queue
|
|
123
|
+
* Optimization: only enforce a single nextTick for each queue flush.
|
|
124
|
+
|
|
125
|
+
# 2.0.4
|
|
126
|
+
|
|
127
|
+
* Fix npm package
|
|
128
|
+
|
|
129
|
+
# 2.0.3
|
|
130
|
+
|
|
131
|
+
* Fix useSetTimeout bug
|
|
132
|
+
|
|
133
|
+
# 2.0.2
|
|
134
|
+
|
|
135
|
+
* Adding RSVP#rethrow
|
|
136
|
+
* add pre-built AMD link to README
|
|
137
|
+
* adding promise#fail
|
|
138
|
+
|
|
139
|
+
# 2.0.1
|
|
140
|
+
* misc IE fixes, including IE array detection
|
|
141
|
+
* upload passing builds to s3
|
|
142
|
+
* async: use three args for addEventListener
|
|
143
|
+
* satisfy both 1.0 and 1.1 specs
|
|
144
|
+
* Run reduce tests only in node
|
|
145
|
+
* RSVP.resolve now simply uses the internal resolution procedure
|
|
146
|
+
* prevent multiple promise resolutions
|
|
147
|
+
* simplify thenable handling
|
|
148
|
+
* pre-allocate the deferred's shape
|
|
149
|
+
* Moved from Rake-based builds to Grunt
|
|
150
|
+
* Fix Promise subclassing bug
|
|
151
|
+
* Add RSVP.configure('onerror')
|
|
152
|
+
* Throw exception when RSVP.all is called without an array
|
|
153
|
+
* refactor RSVP.all to just use a promise directly
|
|
154
|
+
* Make `RSVP.denodeify` pass along `thisArg`
|
|
155
|
+
* add RSVP.reject
|
|
156
|
+
* Reject promise if resolver function throws an exception
|
|
157
|
+
* add travis build-status
|
|
158
|
+
* correctly test and fix self fulfillment
|
|
159
|
+
* remove promise coercion.
|
|
160
|
+
* Fix infinite recursion with deep self fulfilling promises
|
|
161
|
+
* doc fixes
|
|
162
|
+
|
|
163
|
+
# 2.0.0
|
|
164
|
+
|
|
165
|
+
* No changelog beyond this point. Here be dragons.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Copyright (c) 2014 Yehuda Katz, Tom Dale, Stefan Penner and contributors
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
4
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
5
|
+
the Software without restriction, including without limitation the rights to
|
|
6
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
7
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
|
8
|
+
so, subject to the following conditions:
|
|
9
|
+
|
|
10
|
+
The above copyright notice and this permission notice shall be included in all
|
|
11
|
+
copies or substantial portions of the Software.
|
|
12
|
+
|
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
15
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
16
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
17
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
18
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
19
|
+
SOFTWARE.
|
|
@@ -0,0 +1,364 @@
|
|
|
1
|
+
# RSVP.js [](http://travis-ci.org/tildeio/rsvp.js)
|
|
2
|
+
|
|
3
|
+
RSVP.js provides simple tools for organizing asynchronous code.
|
|
4
|
+
|
|
5
|
+
Specifically, it is a tiny implementation of Promises/A+.
|
|
6
|
+
|
|
7
|
+
It works in node and the browser (IE6+, all the popular evergreen ones).
|
|
8
|
+
|
|
9
|
+
## downloads
|
|
10
|
+
|
|
11
|
+
- [rsvp-latest](http://rsvpjs-builds.s3.amazonaws.com/rsvp-latest.js)
|
|
12
|
+
- [rsvp-latest (minified)](http://rsvpjs-builds.s3.amazonaws.com/rsvp-latest.min.js)
|
|
13
|
+
|
|
14
|
+
## Promises
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
Although RSVP is es6 compliant, it does bring along some extra toys. If you would prefer a strict es6 subset, I would suggest checking out our sibling project https://github.com/jakearchibald/es6-promise, It is RSVP but stripped down to the es6 spec features.
|
|
18
|
+
|
|
19
|
+
## Bower
|
|
20
|
+
|
|
21
|
+
`bower install -S rsvp`
|
|
22
|
+
|
|
23
|
+
## NPM
|
|
24
|
+
|
|
25
|
+
`npm install --save rsvp`
|
|
26
|
+
|
|
27
|
+
`RSVP.Promise` is an implementation of
|
|
28
|
+
[Promises/A+](http://promises-aplus.github.com/promises-spec/) that passes the
|
|
29
|
+
[test suite](https://github.com/promises-aplus/promises-tests).
|
|
30
|
+
|
|
31
|
+
It delivers all promises asynchronously, even if the value is already
|
|
32
|
+
available, to help you write consistent code that doesn't change if the
|
|
33
|
+
underlying data provider changes from synchronous to asynchronous.
|
|
34
|
+
|
|
35
|
+
It is compatible with [TaskJS](http://taskjs.org/), a library by Dave
|
|
36
|
+
Herman of Mozilla that uses ES6 generators to allow you to write
|
|
37
|
+
synchronous code with promises. It currently works in Firefox, and will
|
|
38
|
+
work in any browser that adds support for ES6 generators. See the
|
|
39
|
+
section below on TaskJS for more information.
|
|
40
|
+
|
|
41
|
+
### Basic Usage
|
|
42
|
+
|
|
43
|
+
```javascript
|
|
44
|
+
var RSVP = require('rsvp');
|
|
45
|
+
|
|
46
|
+
var promise = new RSVP.Promise(function(resolve, reject) {
|
|
47
|
+
// succeed
|
|
48
|
+
resolve(value);
|
|
49
|
+
// or reject
|
|
50
|
+
reject(error);
|
|
51
|
+
});
|
|
52
|
+
|
|
53
|
+
promise.then(function(value) {
|
|
54
|
+
// success
|
|
55
|
+
}, function(value) {
|
|
56
|
+
// failure
|
|
57
|
+
});
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
Once a promise has been resolved or rejected, it cannot be resolved or
|
|
61
|
+
rejected again.
|
|
62
|
+
|
|
63
|
+
Here is an example of a simple XHR2 wrapper written using RSVP.js:
|
|
64
|
+
|
|
65
|
+
```javascript
|
|
66
|
+
var getJSON = function(url) {
|
|
67
|
+
var promise = new RSVP.Promise(function(resolve, reject){
|
|
68
|
+
var client = new XMLHttpRequest();
|
|
69
|
+
client.open("GET", url);
|
|
70
|
+
client.onreadystatechange = handler;
|
|
71
|
+
client.responseType = "json";
|
|
72
|
+
client.setRequestHeader("Accept", "application/json");
|
|
73
|
+
client.send();
|
|
74
|
+
|
|
75
|
+
function handler() {
|
|
76
|
+
if (this.readyState === this.DONE) {
|
|
77
|
+
if (this.status === 200) { resolve(this.response); }
|
|
78
|
+
else { reject(this); }
|
|
79
|
+
}
|
|
80
|
+
};
|
|
81
|
+
});
|
|
82
|
+
|
|
83
|
+
return promise;
|
|
84
|
+
};
|
|
85
|
+
|
|
86
|
+
getJSON("/posts.json").then(function(json) {
|
|
87
|
+
// continue
|
|
88
|
+
}, function(error) {
|
|
89
|
+
// handle errors
|
|
90
|
+
});
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
### Chaining
|
|
94
|
+
|
|
95
|
+
One of the really awesome features of Promises/A+ promises are that they
|
|
96
|
+
can be chained together. In other words, the return value of the first
|
|
97
|
+
resolve handler will be passed to the second resolve handler.
|
|
98
|
+
|
|
99
|
+
If you return a regular value, it will be passed, as is, to the next
|
|
100
|
+
handler.
|
|
101
|
+
|
|
102
|
+
```javascript
|
|
103
|
+
getJSON("/posts.json").then(function(json) {
|
|
104
|
+
return json.post;
|
|
105
|
+
}).then(function(post) {
|
|
106
|
+
// proceed
|
|
107
|
+
});
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
The really awesome part comes when you return a promise from the first
|
|
111
|
+
handler:
|
|
112
|
+
|
|
113
|
+
```javascript
|
|
114
|
+
getJSON("/post/1.json").then(function(post) {
|
|
115
|
+
// save off post
|
|
116
|
+
return getJSON(post.commentURL);
|
|
117
|
+
}).then(function(comments) {
|
|
118
|
+
// proceed with access to post and comments
|
|
119
|
+
});
|
|
120
|
+
```
|
|
121
|
+
|
|
122
|
+
This allows you to flatten out nested callbacks, and is the main feature
|
|
123
|
+
of promises that prevents "rightward drift" in programs with a lot of
|
|
124
|
+
asynchronous code.
|
|
125
|
+
|
|
126
|
+
Errors also propagate:
|
|
127
|
+
|
|
128
|
+
```javascript
|
|
129
|
+
getJSON("/posts.json").then(function(posts) {
|
|
130
|
+
|
|
131
|
+
}).catch(function(error) {
|
|
132
|
+
// since no rejection handler was passed to the
|
|
133
|
+
// first `.then`, the error propagates.
|
|
134
|
+
});
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
You can use this to emulate `try/catch` logic in synchronous code.
|
|
138
|
+
Simply chain as many resolve callbacks as a you want, and add a failure
|
|
139
|
+
handler at the end to catch errors.
|
|
140
|
+
|
|
141
|
+
```javascript
|
|
142
|
+
getJSON("/post/1.json").then(function(post) {
|
|
143
|
+
return getJSON(post.commentURL);
|
|
144
|
+
}).then(function(comments) {
|
|
145
|
+
// proceed with access to posts and comments
|
|
146
|
+
}).catch(function(error) {
|
|
147
|
+
// handle errors in either of the two requests
|
|
148
|
+
});
|
|
149
|
+
```
|
|
150
|
+
|
|
151
|
+
You can also use `catch` for error handling, which is a shortcut for
|
|
152
|
+
`then(null, rejection)`, like so:
|
|
153
|
+
|
|
154
|
+
```javascript
|
|
155
|
+
getJSON("/post/1.json").then(function(post) {
|
|
156
|
+
return getJSON(post.commentURL);
|
|
157
|
+
}).catch(function(error) {
|
|
158
|
+
// handle errors
|
|
159
|
+
});
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
## Error Handling
|
|
163
|
+
|
|
164
|
+
There are times when dealing with promises that it seems like any errors
|
|
165
|
+
are being 'swallowed', and not properly raised. This makes is extremely
|
|
166
|
+
difficult to track down where a given issue is coming from. Thankfully,
|
|
167
|
+
`RSVP` has a solution for this problem built in.
|
|
168
|
+
|
|
169
|
+
You can register functions to be called when an uncaught error occurs
|
|
170
|
+
within your promises. These callback functions can be anything, but a common
|
|
171
|
+
practice is to call `console.assert` to dump the error to the console.
|
|
172
|
+
|
|
173
|
+
```javascript
|
|
174
|
+
RSVP.on('error', function(reason) {
|
|
175
|
+
console.assert(false, reason);
|
|
176
|
+
});
|
|
177
|
+
```
|
|
178
|
+
|
|
179
|
+
**NOTE:** promises do allow for errors to be handled asynchronously, so
|
|
180
|
+
this callback may result in false positives.
|
|
181
|
+
|
|
182
|
+
**NOTE:** Usage of `RSVP.configure('onerror', yourCustomFunction);` is
|
|
183
|
+
deprecated in favor of using `RSVP.on`.
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
## Finally
|
|
187
|
+
|
|
188
|
+
`finally` will be invoked regardless of the promise's fate, just as native
|
|
189
|
+
try/catch/finally behaves.
|
|
190
|
+
|
|
191
|
+
```js
|
|
192
|
+
findAuthor().catch(function(reason){
|
|
193
|
+
return findOtherAuthor();
|
|
194
|
+
}).finally(function(){
|
|
195
|
+
// author was either found, or not
|
|
196
|
+
});
|
|
197
|
+
```
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
## Arrays of promises
|
|
201
|
+
|
|
202
|
+
Sometimes you might want to work with many promises at once. If you
|
|
203
|
+
pass an array of promises to the `all()` method it will return a new
|
|
204
|
+
promise that will be fulfilled when all of the promises in the array
|
|
205
|
+
have been fulfilled; or rejected immediately if any promise in the array
|
|
206
|
+
is rejected.
|
|
207
|
+
|
|
208
|
+
```javascript
|
|
209
|
+
var promises = [2, 3, 5, 7, 11, 13].map(function(id){
|
|
210
|
+
return getJSON("/post/" + id + ".json");
|
|
211
|
+
});
|
|
212
|
+
|
|
213
|
+
RSVP.all(promises).then(function(posts) {
|
|
214
|
+
// posts contains an array of results for the given promises
|
|
215
|
+
}).catch(function(reason){
|
|
216
|
+
// if any of the promises fails.
|
|
217
|
+
});
|
|
218
|
+
```
|
|
219
|
+
|
|
220
|
+
## Hash of promises
|
|
221
|
+
|
|
222
|
+
If you need to reference many promises at once (like `all()`), but would like
|
|
223
|
+
to avoid encoding the actual promise order you can use `hash()`. If you pass
|
|
224
|
+
an object literal (where the values are promises) to the `hash()` method it will
|
|
225
|
+
return a new promise that will be fulfilled when all of the promises have been
|
|
226
|
+
fulfilled; or rejected immediately if any promise is rejected.
|
|
227
|
+
|
|
228
|
+
The key difference to the `all()` function is that both the fulfillment value
|
|
229
|
+
and the argument to the `hash()` function are object literals. This allows
|
|
230
|
+
you to simply reference the results directly off the returned object without
|
|
231
|
+
having to remember the initial order like you would with `all()`.
|
|
232
|
+
|
|
233
|
+
```javascript
|
|
234
|
+
var promises = {
|
|
235
|
+
posts: getJSON("/posts.json"),
|
|
236
|
+
users: getJSON("/users.json")
|
|
237
|
+
};
|
|
238
|
+
|
|
239
|
+
RSVP.hash(promises).then(function(results) {
|
|
240
|
+
console.log(results.users) // print the users.json results
|
|
241
|
+
console.log(results.posts) // print the posts.json results
|
|
242
|
+
});
|
|
243
|
+
```
|
|
244
|
+
|
|
245
|
+
## All settled and hash settled
|
|
246
|
+
|
|
247
|
+
Sometimes you want to work with several promises at once, but instead of
|
|
248
|
+
rejecting immediately if any promise is rejected, as with `all()` or `hash()`,
|
|
249
|
+
you want to be able to inspect the results of all your promises, whether
|
|
250
|
+
they fulfill or reject. For this purpose, you can use `allSettled()` and
|
|
251
|
+
`hashSettled()`. These work exactly like `all()` and `hash()`, except that
|
|
252
|
+
they fulfill with an array or hash (respectively) of the constituent promises'
|
|
253
|
+
result states. Each state object will either indicate fulfillment or
|
|
254
|
+
rejection, and provide the corresponding value or reason. The states will take
|
|
255
|
+
one of the following formats:
|
|
256
|
+
|
|
257
|
+
```javascript
|
|
258
|
+
{ state: 'fulfilled', value: value }
|
|
259
|
+
or
|
|
260
|
+
{ state: 'rejected', reason: reason }
|
|
261
|
+
```
|
|
262
|
+
|
|
263
|
+
## Deferred
|
|
264
|
+
|
|
265
|
+
> The `RSVP.Promise` constructor is generally a better, less error-prone choice
|
|
266
|
+
> than `RSVP.defer()`. Promises are recommended unless the specific
|
|
267
|
+
> properties of deferred are needed.
|
|
268
|
+
|
|
269
|
+
Sometimes one need to create a deferred object, without immediately specifying
|
|
270
|
+
how it will be resolved. These deferred objects are essentially a wrapper around
|
|
271
|
+
a promise, whilst providing late access to the `resolve()` and `reject()` methods.
|
|
272
|
+
|
|
273
|
+
A deferred object has this form: `{ promise, resolve(x), reject(r) }`.
|
|
274
|
+
|
|
275
|
+
```javascript
|
|
276
|
+
var deferred = RSVP.defer();
|
|
277
|
+
// ...
|
|
278
|
+
deferred.promise // access the promise
|
|
279
|
+
// ...
|
|
280
|
+
deferred.resolve();
|
|
281
|
+
|
|
282
|
+
```
|
|
283
|
+
|
|
284
|
+
## TaskJS
|
|
285
|
+
|
|
286
|
+
The [TaskJS](http://taskjs.org/) library makes it possible to take
|
|
287
|
+
promises-oriented code and make it synchronous using ES6 generators.
|
|
288
|
+
|
|
289
|
+
Let's review an earlier example:
|
|
290
|
+
|
|
291
|
+
```javascript
|
|
292
|
+
getJSON("/post/1.json").then(function(post) {
|
|
293
|
+
return getJSON(post.commentURL);
|
|
294
|
+
}).then(function(comments) {
|
|
295
|
+
// proceed with access to posts and comments
|
|
296
|
+
}).catch(function(reason) {
|
|
297
|
+
// handle errors in either of the two requests
|
|
298
|
+
});
|
|
299
|
+
```
|
|
300
|
+
|
|
301
|
+
Without any changes to the implementation of `getJSON`, you could write
|
|
302
|
+
the following code with TaskJS:
|
|
303
|
+
|
|
304
|
+
```javascript
|
|
305
|
+
spawn(function *() {
|
|
306
|
+
try {
|
|
307
|
+
var post = yield getJSON("/post/1.json");
|
|
308
|
+
var comments = yield getJSON(post.commentURL);
|
|
309
|
+
} catch(error) {
|
|
310
|
+
// handle errors
|
|
311
|
+
}
|
|
312
|
+
});
|
|
313
|
+
```
|
|
314
|
+
|
|
315
|
+
In the above example, `function *` is new syntax in ES6 for
|
|
316
|
+
[generators](http://wiki.ecmascript.org/doku.php?id=harmony:generators).
|
|
317
|
+
Inside a generator, `yield` pauses the generator, returning control to
|
|
318
|
+
the function that invoked the generator. In this case, the invoker is a
|
|
319
|
+
special function that understands the semantics of Promises/A, and will
|
|
320
|
+
automatically resume the generator as soon as the promise is resolved.
|
|
321
|
+
|
|
322
|
+
The cool thing here is the same promises that work with current
|
|
323
|
+
JavaScript using `.then` will work seamlessly with TaskJS once a browser
|
|
324
|
+
has implemented it!
|
|
325
|
+
|
|
326
|
+
## Instrumentation
|
|
327
|
+
|
|
328
|
+
```js
|
|
329
|
+
function listener (event) {
|
|
330
|
+
event.guid // guid of promise. Must be globally unique, not just within the implementation
|
|
331
|
+
event.childGuid // child of child promise (for chained via `then`)
|
|
332
|
+
event.eventName // one of ['created', 'chained', 'fulfilled', 'rejected']
|
|
333
|
+
event.detail // fulfillment value or rejection reason, if applicable
|
|
334
|
+
event.label // label passed to promise's constructor
|
|
335
|
+
event.timeStamp // milliseconds elapsed since 1 January 1970 00:00:00 UTC up until now
|
|
336
|
+
event.stack // stack at the time of the event. (if 'instrument-with-stack' is true)
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
RSVP.configure('instrument', true | false);
|
|
340
|
+
// capturing the stacks is slow, so you also have to opt in
|
|
341
|
+
RSVP.configure('instrument-with-stack', true | false);
|
|
342
|
+
|
|
343
|
+
// events
|
|
344
|
+
RSVP.on('created', listener);
|
|
345
|
+
RSVP.on('chained', listener);
|
|
346
|
+
RSVP.on('fulfilled', listener);
|
|
347
|
+
RSVP.on('rejected', listener);
|
|
348
|
+
```
|
|
349
|
+
|
|
350
|
+
Events are only triggered when `RSVP.configure('instrument')` is true, although
|
|
351
|
+
listeners can be registered at any time.
|
|
352
|
+
|
|
353
|
+
## Building & Testing
|
|
354
|
+
|
|
355
|
+
Custom tasks:
|
|
356
|
+
|
|
357
|
+
* `ember build` - Build distribution
|
|
358
|
+
* `testem ci` - Run tests.
|
|
359
|
+
* `testem` - Run test server.
|
|
360
|
+
|
|
361
|
+
## Releasing
|
|
362
|
+
|
|
363
|
+
Check what release-it will do by running `npm run-script dry-run-release`.
|
|
364
|
+
To actually release, run `node_modules/.bin/release-it`.
|