snowball 0.1.21 → 0.1.22

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.
Files changed (589) hide show
  1. checksums.yaml +5 -13
  2. data/.gitignore +1 -3
  3. data/{lib/snowball → bin}/roll.js +0 -0
  4. data/lib/snowball/roller.rb +1 -1
  5. data/lib/snowball/version.rb +1 -1
  6. data/node_modules/.bin/browserify +161 -0
  7. data/node_modules/.bin/cake +7 -0
  8. data/node_modules/.bin/coffee +7 -0
  9. data/node_modules/.bin/jade +168 -0
  10. data/node_modules/browserify/.travis.yml +4 -0
  11. data/node_modules/browserify/LICENSE +63 -0
  12. data/node_modules/browserify/README.markdown +172 -0
  13. data/node_modules/browserify/bin/cmd.js +161 -0
  14. data/node_modules/browserify/builtins/__browserify_process.js +55 -0
  15. data/node_modules/browserify/builtins/assert.js +314 -0
  16. data/node_modules/browserify/builtins/child_process.js +2 -0
  17. data/node_modules/browserify/builtins/events.js +178 -0
  18. data/node_modules/browserify/builtins/fs.js +1 -0
  19. data/node_modules/browserify/builtins/https.js +1 -0
  20. data/node_modules/browserify/builtins/net.js +1 -0
  21. data/node_modules/browserify/builtins/path.js +175 -0
  22. data/node_modules/browserify/builtins/querystring.js +250 -0
  23. data/node_modules/browserify/builtins/stream.js +119 -0
  24. data/node_modules/browserify/builtins/string_decoder.js +161 -0
  25. data/node_modules/browserify/builtins/sys.js +1 -0
  26. data/node_modules/browserify/builtins/timers.js +39 -0
  27. data/node_modules/browserify/builtins/tls.js +1 -0
  28. data/node_modules/browserify/builtins/tty.js +2 -0
  29. data/node_modules/browserify/builtins/url.js +604 -0
  30. data/node_modules/browserify/builtins/util.js +351 -0
  31. data/node_modules/browserify/example/debug/browserify.js +219 -0
  32. data/node_modules/browserify/example/debug/build.sh +3 -0
  33. data/node_modules/browserify/example/debug/index.html +7 -0
  34. data/node_modules/browserify/example/debug/js/entry.js +2 -0
  35. data/node_modules/browserify/example/debug/js/thrower.js +3 -0
  36. data/node_modules/browserify/example/debug/server.js +9 -0
  37. data/node_modules/browserify/example/simple-build/browserify.js +368 -0
  38. data/node_modules/browserify/example/simple-build/build.sh +3 -0
  39. data/node_modules/browserify/example/simple-build/index.html +9 -0
  40. data/node_modules/browserify/example/simple-build/js/bar.js +3 -0
  41. data/node_modules/browserify/example/simple-build/js/entry.js +5 -0
  42. data/node_modules/browserify/example/simple-build/js/foo.js +5 -0
  43. data/node_modules/browserify/example/simple-build/server.js +9 -0
  44. data/node_modules/browserify/example/test/b.js +5 -0
  45. data/node_modules/browserify/example/test/bar.js +3 -0
  46. data/node_modules/browserify/example/test/foo.js +3 -0
  47. data/node_modules/browserify/example/test/m.js +3 -0
  48. data/node_modules/browserify/example/test/n.js +3 -0
  49. data/node_modules/browserify/example/using-http/bundle.js +813 -0
  50. data/node_modules/browserify/example/using-http/entry.js +25 -0
  51. data/node_modules/browserify/example/using-http/index.html +9 -0
  52. data/node_modules/browserify/example/using-http/server.js +28 -0
  53. data/node_modules/browserify/index.js +202 -0
  54. data/node_modules/browserify/lib/watch.js +75 -0
  55. data/node_modules/browserify/lib/wrap.js +580 -0
  56. data/node_modules/browserify/lib/wrappers.js +10 -0
  57. data/node_modules/browserify/node_modules/buffer-browserify/.npmignore +1 -0
  58. data/node_modules/browserify/node_modules/buffer-browserify/README.md +11 -0
  59. data/node_modules/browserify/node_modules/buffer-browserify/buffer_ieee754.js +84 -0
  60. data/node_modules/browserify/node_modules/buffer-browserify/index.js +1317 -0
  61. data/node_modules/browserify/node_modules/buffer-browserify/node_modules/base64-js/README.md +14 -0
  62. data/node_modules/browserify/node_modules/buffer-browserify/node_modules/base64-js/lib/b64.js +84 -0
  63. data/node_modules/browserify/node_modules/buffer-browserify/node_modules/base64-js/package.json +30 -0
  64. data/node_modules/browserify/node_modules/buffer-browserify/node_modules/base64-js/test/runner.js +50 -0
  65. data/node_modules/browserify/node_modules/buffer-browserify/package.json +46 -0
  66. data/node_modules/browserify/node_modules/buffer-browserify/test/buffer.js +218 -0
  67. data/node_modules/browserify/node_modules/commondir/README.markdown +45 -0
  68. data/node_modules/browserify/node_modules/commondir/example/base.js +3 -0
  69. data/node_modules/browserify/node_modules/commondir/example/dir.js +3 -0
  70. data/node_modules/browserify/node_modules/commondir/index.js +29 -0
  71. data/node_modules/browserify/node_modules/commondir/package.json +47 -0
  72. data/node_modules/browserify/node_modules/commondir/test/dirs.js +66 -0
  73. data/node_modules/browserify/node_modules/crypto-browserify/.travis.yml +4 -0
  74. data/node_modules/browserify/node_modules/crypto-browserify/example/bundle.js +637 -0
  75. data/node_modules/browserify/node_modules/crypto-browserify/example/index.html +12 -0
  76. data/node_modules/browserify/node_modules/crypto-browserify/example/test.js +4 -0
  77. data/node_modules/browserify/node_modules/crypto-browserify/index.js +74 -0
  78. data/node_modules/browserify/node_modules/crypto-browserify/md5.js +384 -0
  79. data/node_modules/browserify/node_modules/crypto-browserify/package.json +33 -0
  80. data/node_modules/browserify/node_modules/crypto-browserify/readme.markdown +20 -0
  81. data/node_modules/browserify/node_modules/crypto-browserify/rng.js +37 -0
  82. data/node_modules/browserify/node_modules/crypto-browserify/sha.js +210 -0
  83. data/node_modules/browserify/node_modules/crypto-browserify/test/simple.js +35 -0
  84. data/node_modules/browserify/node_modules/deputy/.travis.yml +4 -0
  85. data/node_modules/browserify/node_modules/deputy/README.markdown +55 -0
  86. data/node_modules/browserify/node_modules/deputy/example/cache.js +5 -0
  87. data/node_modules/browserify/node_modules/deputy/index.js +46 -0
  88. data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/.npmignore +2 -0
  89. data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/.travis.yml +5 -0
  90. data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/LICENSE +21 -0
  91. data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/examples/pow.js +6 -0
  92. data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/index.js +82 -0
  93. data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/package.json +34 -0
  94. data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/readme.markdown +63 -0
  95. data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/test/chmod.js +38 -0
  96. data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/test/clobber.js +37 -0
  97. data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/test/mkdirp.js +28 -0
  98. data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/test/perm.js +32 -0
  99. data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/test/perm_sync.js +39 -0
  100. data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/test/race.js +41 -0
  101. data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/test/rel.js +32 -0
  102. data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/test/return.js +25 -0
  103. data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/test/return_sync.js +24 -0
  104. data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/test/root.js +18 -0
  105. data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/test/sync.js +32 -0
  106. data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/test/umask.js +28 -0
  107. data/node_modules/browserify/node_modules/deputy/node_modules/mkdirp/test/umask_sync.js +32 -0
  108. data/node_modules/browserify/node_modules/deputy/package.json +47 -0
  109. data/node_modules/browserify/node_modules/deputy/test/cache.js +58 -0
  110. data/node_modules/browserify/node_modules/detective/.travis.yml +4 -0
  111. data/node_modules/browserify/node_modules/detective/README.markdown +66 -0
  112. data/node_modules/browserify/node_modules/detective/example/strings.js +6 -0
  113. data/node_modules/browserify/node_modules/detective/example/strings_src.js +3 -0
  114. data/node_modules/browserify/node_modules/detective/index.js +60 -0
  115. data/node_modules/browserify/node_modules/detective/node_modules/.bin/esparse +42 -0
  116. data/node_modules/browserify/node_modules/detective/node_modules/esprima/.travis.yml +5 -0
  117. data/node_modules/browserify/node_modules/detective/node_modules/esprima/LICENSE.BSD +19 -0
  118. data/node_modules/browserify/node_modules/detective/node_modules/esprima/README.md +74 -0
  119. data/node_modules/browserify/node_modules/detective/node_modules/esprima/assets/codemirror/codemirror.css +112 -0
  120. data/node_modules/browserify/node_modules/detective/node_modules/esprima/assets/codemirror/codemirror.js +2972 -0
  121. data/node_modules/browserify/node_modules/detective/node_modules/esprima/assets/codemirror/javascript.js +360 -0
  122. data/node_modules/browserify/node_modules/detective/node_modules/esprima/assets/json2.js +487 -0
  123. data/node_modules/browserify/node_modules/detective/node_modules/esprima/assets/style.css +164 -0
  124. data/node_modules/browserify/node_modules/detective/node_modules/esprima/assets/yui/treeview-min.js +12 -0
  125. data/node_modules/browserify/node_modules/detective/node_modules/esprima/assets/yui/treeview-sprite.gif +0 -0
  126. data/node_modules/browserify/node_modules/detective/node_modules/esprima/assets/yui/treeview.css +7 -0
  127. data/node_modules/browserify/node_modules/detective/node_modules/esprima/assets/yui/yahoo-dom-event.js +14 -0
  128. data/node_modules/browserify/node_modules/detective/node_modules/esprima/bin/esparse.js +42 -0
  129. data/node_modules/browserify/node_modules/detective/node_modules/esprima/changes +92 -0
  130. data/node_modules/browserify/node_modules/detective/node_modules/esprima/cm +696 -0
  131. data/node_modules/browserify/node_modules/detective/node_modules/esprima/demo/checkenv.js +42 -0
  132. data/node_modules/browserify/node_modules/detective/node_modules/esprima/demo/collector.html +82 -0
  133. data/node_modules/browserify/node_modules/detective/node_modules/esprima/demo/collector.js +170 -0
  134. data/node_modules/browserify/node_modules/detective/node_modules/esprima/demo/functiontrace.html +106 -0
  135. data/node_modules/browserify/node_modules/detective/node_modules/esprima/demo/functiontrace.js +123 -0
  136. data/node_modules/browserify/node_modules/detective/node_modules/esprima/demo/parse.css +82 -0
  137. data/node_modules/browserify/node_modules/detective/node_modules/esprima/demo/parse.html +352 -0
  138. data/node_modules/browserify/node_modules/detective/node_modules/esprima/demo/precedence.html +225 -0
  139. data/node_modules/browserify/node_modules/detective/node_modules/esprima/demo/rewrite.html +120 -0
  140. data/node_modules/browserify/node_modules/detective/node_modules/esprima/demo/rewrite.js +71 -0
  141. data/node_modules/browserify/node_modules/detective/node_modules/esprima/esprima.js +3577 -0
  142. data/node_modules/browserify/node_modules/detective/node_modules/esprima/index.html +103 -0
  143. data/node_modules/browserify/node_modules/detective/node_modules/esprima/package.json +42 -0
  144. data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/Tokenizer.js +646 -0
  145. data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/XMLHttpRequest.js +509 -0
  146. data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/ZeParser.js +2185 -0
  147. data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/backbone-0.5.3.js +1158 -0
  148. data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/benchmark.js +3261 -0
  149. data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/escodegen.js +906 -0
  150. data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/esmorph.js +240 -0
  151. data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/ext-core-3.0.0.js +6579 -0
  152. data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/ext-core-3.1.0.js +10255 -0
  153. data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/jquery-1.6.4.js +9046 -0
  154. data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/jquery-1.7.1.js +9266 -0
  155. data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/jquery.mobile-1.0.js +6951 -0
  156. data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/jsdefs.js +731 -0
  157. data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/jslex.js +588 -0
  158. data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/jsparse.js +1921 -0
  159. data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/mootools-1.3.2.js +5952 -0
  160. data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/mootools-1.4.1.js +6297 -0
  161. data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/parse-js.js +1342 -0
  162. data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/platform.js +878 -0
  163. data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/prototype-1.6.1.js +4874 -0
  164. data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/prototype-1.7.0.0.js +6082 -0
  165. data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/3rdparty/underscore-1.2.3.js +981 -0
  166. data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/benchmarks.html +58 -0
  167. data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/benchmarks.js +328 -0
  168. data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/compare.html +140 -0
  169. data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/compare.js +270 -0
  170. data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/compat.html +40 -0
  171. data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/compat.js +239 -0
  172. data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/coverage.footer.html +3 -0
  173. data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/coverage.header.html +37 -0
  174. data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/coverage.html +3617 -0
  175. data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/index.html +36 -0
  176. data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/reflect.js +403 -0
  177. data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/run.js +66 -0
  178. data/node_modules/browserify/node_modules/detective/node_modules/esprima/test/test.js +16659 -0
  179. data/node_modules/browserify/node_modules/detective/node_modules/esprima/tools/generate-unicode-regex.py +164 -0
  180. data/node_modules/browserify/node_modules/detective/node_modules/esprima/tools/update-coverage.sh +28 -0
  181. data/node_modules/browserify/node_modules/detective/package.json +47 -0
  182. data/node_modules/browserify/node_modules/detective/test/both.js +11 -0
  183. data/node_modules/browserify/node_modules/detective/test/chained.js +9 -0
  184. data/node_modules/browserify/node_modules/detective/test/files/both.js +4 -0
  185. data/node_modules/browserify/node_modules/detective/test/files/chained.js +5 -0
  186. data/node_modules/browserify/node_modules/detective/test/files/nested.js +22 -0
  187. data/node_modules/browserify/node_modules/detective/test/files/skip.js +7 -0
  188. data/node_modules/browserify/node_modules/detective/test/files/strings.js +13 -0
  189. data/node_modules/browserify/node_modules/detective/test/files/word.js +13 -0
  190. data/node_modules/browserify/node_modules/detective/test/nested.js +9 -0
  191. data/node_modules/browserify/node_modules/detective/test/skip.js +9 -0
  192. data/node_modules/browserify/node_modules/detective/test/strings.js +9 -0
  193. data/node_modules/browserify/node_modules/detective/test/word.js +12 -0
  194. data/node_modules/browserify/node_modules/http-browserify/.npmignore +1 -0
  195. data/node_modules/browserify/node_modules/http-browserify/example/get/index.html +9 -0
  196. data/node_modules/browserify/node_modules/http-browserify/example/get/main.js +14 -0
  197. data/node_modules/browserify/node_modules/http-browserify/example/get/server.js +12 -0
  198. data/node_modules/browserify/node_modules/http-browserify/example/headers/index.html +9 -0
  199. data/node_modules/browserify/node_modules/http-browserify/example/headers/main.js +18 -0
  200. data/node_modules/browserify/node_modules/http-browserify/example/headers/server.js +15 -0
  201. data/node_modules/browserify/node_modules/http-browserify/example/json-stream/data.json +139 -0
  202. data/node_modules/browserify/node_modules/http-browserify/example/json-stream/index.html +9 -0
  203. data/node_modules/browserify/node_modules/http-browserify/example/json-stream/main.js +13 -0
  204. data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/.npmignore +2 -0
  205. data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/.travis.yml +4 -0
  206. data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/LICENSE.APACHE2 +15 -0
  207. data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/LICENSE.MIT +24 -0
  208. data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/examples/all_docs.js +13 -0
  209. data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/index.js +189 -0
  210. data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/node_modules/jsonparse/LICENSE +24 -0
  211. data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/node_modules/jsonparse/README.markdown +11 -0
  212. data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/node_modules/jsonparse/bench.js +26 -0
  213. data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/node_modules/jsonparse/examples/twitterfeed.js +30 -0
  214. data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/node_modules/jsonparse/jsonparse.js +379 -0
  215. data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/node_modules/jsonparse/package.json +36 -0
  216. data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/node_modules/jsonparse/samplejson/basic.json +167 -0
  217. data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/node_modules/jsonparse/samplejson/basic2.json +180 -0
  218. data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/node_modules/jsonparse/test/primitives.js +54 -0
  219. data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/node_modules/jsonparse/test/utf8.js +38 -0
  220. data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/package.json +40 -0
  221. data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/readme.markdown +145 -0
  222. data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/test/bool.js +41 -0
  223. data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/test/destroy_missing.js +22 -0
  224. data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/test/empty.js +44 -0
  225. data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/test/fixtures/all_npm.json +4030 -0
  226. data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/test/fn.js +39 -0
  227. data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/test/memory.js +69 -0
  228. data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/test/multiple_objects.js +42 -0
  229. data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/test/multiple_objects_error.js +35 -0
  230. data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/test/parsejson.js +28 -0
  231. data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/test/stringify.js +41 -0
  232. data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/test/stringify_object.js +47 -0
  233. data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/test/test.js +35 -0
  234. data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/test/test2.js +29 -0
  235. data/node_modules/browserify/node_modules/http-browserify/example/json-stream/node_modules/JSONStream/test/two-ways.js +41 -0
  236. data/node_modules/browserify/node_modules/http-browserify/example/json-stream/server.js +10 -0
  237. data/node_modules/browserify/node_modules/http-browserify/example/post/index.html +9 -0
  238. data/node_modules/browserify/node_modules/http-browserify/example/post/main.js +16 -0
  239. data/node_modules/browserify/node_modules/http-browserify/example/post/server.js +19 -0
  240. data/node_modules/browserify/node_modules/http-browserify/example/streaming/index.html +9 -0
  241. data/node_modules/browserify/node_modules/http-browserify/example/streaming/main.js +16 -0
  242. data/node_modules/browserify/node_modules/http-browserify/example/streaming/server.js +21 -0
  243. data/node_modules/browserify/node_modules/http-browserify/index.js +59 -0
  244. data/node_modules/browserify/node_modules/http-browserify/lib/request.js +128 -0
  245. data/node_modules/browserify/node_modules/http-browserify/lib/response.js +119 -0
  246. data/node_modules/browserify/node_modules/http-browserify/node_modules/concat-stream/index.js +48 -0
  247. data/node_modules/browserify/node_modules/http-browserify/node_modules/concat-stream/package.json +30 -0
  248. data/node_modules/browserify/node_modules/http-browserify/node_modules/concat-stream/readme.md +31 -0
  249. data/node_modules/browserify/node_modules/http-browserify/node_modules/concat-stream/test.js +34 -0
  250. data/node_modules/browserify/node_modules/http-browserify/package.json +46 -0
  251. data/node_modules/browserify/node_modules/http-browserify/readme.markdown +128 -0
  252. data/node_modules/browserify/node_modules/nub/README.markdown +23 -0
  253. data/node_modules/browserify/node_modules/nub/index.js +64 -0
  254. data/node_modules/browserify/node_modules/nub/package.json +46 -0
  255. data/node_modules/browserify/node_modules/nub/test/by.js +51 -0
  256. data/node_modules/browserify/node_modules/nub/test/nub.js +46 -0
  257. data/node_modules/browserify/node_modules/resolve/.travis.yml +4 -0
  258. data/node_modules/browserify/node_modules/resolve/LICENSE +18 -0
  259. data/node_modules/browserify/node_modules/resolve/README.markdown +47 -0
  260. data/node_modules/browserify/node_modules/resolve/index.js +106 -0
  261. data/node_modules/browserify/node_modules/resolve/package.json +45 -0
  262. data/node_modules/browserify/node_modules/resolve/test/core.js +12 -0
  263. data/node_modules/browserify/node_modules/resolve/test/filter.js +15 -0
  264. data/node_modules/browserify/node_modules/resolve/test/mock.js +64 -0
  265. data/node_modules/browserify/node_modules/resolve/test/resolver.js +157 -0
  266. data/node_modules/browserify/node_modules/resolve/test/resolver/bar/node_modules/foo/index.js +1 -0
  267. data/node_modules/browserify/node_modules/resolve/test/resolver/baz/doom.js +0 -0
  268. data/node_modules/browserify/node_modules/resolve/test/resolver/baz/package.json +3 -0
  269. data/node_modules/browserify/node_modules/resolve/test/resolver/baz/quux.js +1 -0
  270. data/node_modules/browserify/node_modules/resolve/test/resolver/biz/node_modules/grux/index.js +1 -0
  271. data/node_modules/browserify/node_modules/resolve/test/resolver/biz/node_modules/tiv/index.js +1 -0
  272. data/node_modules/browserify/node_modules/resolve/test/resolver/cup.coffee +1 -0
  273. data/node_modules/browserify/node_modules/resolve/test/resolver/foo.js +1 -0
  274. data/node_modules/browserify/node_modules/resolve/test/resolver/mug.coffee +0 -0
  275. data/node_modules/browserify/node_modules/resolve/test/resolver/mug.js +0 -0
  276. data/node_modules/browserify/node_modules/resolve/test/resolver/other_path/lib/other-lib.js +0 -0
  277. data/node_modules/browserify/node_modules/resolve/test/resolver/other_path/root.js +0 -0
  278. data/node_modules/browserify/node_modules/syntax-error/.travis.yml +4 -0
  279. data/node_modules/browserify/node_modules/syntax-error/LICENSE +18 -0
  280. data/node_modules/browserify/node_modules/syntax-error/example/check.js +12 -0
  281. data/node_modules/browserify/node_modules/syntax-error/example/src.js +9 -0
  282. data/node_modules/browserify/node_modules/syntax-error/index.js +54 -0
  283. data/node_modules/browserify/node_modules/syntax-error/node_modules/.bin/esparse +42 -0
  284. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/.travis.yml +5 -0
  285. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/LICENSE.BSD +19 -0
  286. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/README.md +74 -0
  287. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/assets/codemirror/codemirror.css +112 -0
  288. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/assets/codemirror/codemirror.js +2972 -0
  289. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/assets/codemirror/javascript.js +360 -0
  290. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/assets/json2.js +487 -0
  291. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/assets/style.css +164 -0
  292. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/assets/yui/treeview-min.js +12 -0
  293. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/assets/yui/treeview-sprite.gif +0 -0
  294. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/assets/yui/treeview.css +7 -0
  295. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/assets/yui/yahoo-dom-event.js +14 -0
  296. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/bin/esparse.js +42 -0
  297. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/changes +92 -0
  298. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/cm +696 -0
  299. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/demo/checkenv.js +42 -0
  300. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/demo/collector.html +82 -0
  301. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/demo/collector.js +170 -0
  302. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/demo/functiontrace.html +106 -0
  303. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/demo/functiontrace.js +123 -0
  304. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/demo/parse.css +82 -0
  305. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/demo/parse.html +352 -0
  306. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/demo/precedence.html +225 -0
  307. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/demo/rewrite.html +120 -0
  308. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/demo/rewrite.js +71 -0
  309. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/esprima.js +3577 -0
  310. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/index.html +103 -0
  311. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/package.json +42 -0
  312. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/Tokenizer.js +646 -0
  313. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/XMLHttpRequest.js +509 -0
  314. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/ZeParser.js +2185 -0
  315. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/backbone-0.5.3.js +1158 -0
  316. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/benchmark.js +3261 -0
  317. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/escodegen.js +906 -0
  318. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/esmorph.js +240 -0
  319. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/ext-core-3.0.0.js +6579 -0
  320. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/ext-core-3.1.0.js +10255 -0
  321. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/jquery-1.6.4.js +9046 -0
  322. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/jquery-1.7.1.js +9266 -0
  323. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/jquery.mobile-1.0.js +6951 -0
  324. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/jsdefs.js +731 -0
  325. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/jslex.js +588 -0
  326. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/jsparse.js +1921 -0
  327. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/mootools-1.3.2.js +5952 -0
  328. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/mootools-1.4.1.js +6297 -0
  329. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/parse-js.js +1342 -0
  330. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/platform.js +878 -0
  331. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/prototype-1.6.1.js +4874 -0
  332. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/prototype-1.7.0.0.js +6082 -0
  333. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/3rdparty/underscore-1.2.3.js +981 -0
  334. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/benchmarks.html +58 -0
  335. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/benchmarks.js +328 -0
  336. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/compare.html +140 -0
  337. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/compare.js +270 -0
  338. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/compat.html +40 -0
  339. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/compat.js +239 -0
  340. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/coverage.footer.html +3 -0
  341. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/coverage.header.html +37 -0
  342. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/coverage.html +3617 -0
  343. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/index.html +36 -0
  344. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/reflect.js +403 -0
  345. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/run.js +66 -0
  346. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/test/test.js +16659 -0
  347. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/tools/generate-unicode-regex.py +164 -0
  348. data/node_modules/browserify/node_modules/syntax-error/node_modules/esprima/tools/update-coverage.sh +28 -0
  349. data/node_modules/browserify/node_modules/syntax-error/package.json +49 -0
  350. data/node_modules/browserify/node_modules/syntax-error/readme.markdown +87 -0
  351. data/node_modules/browserify/node_modules/syntax-error/test/check.js +17 -0
  352. data/node_modules/browserify/node_modules/syntax-error/test/sources/check.js +9 -0
  353. data/node_modules/browserify/node_modules/vm-browserify/README.markdown +103 -0
  354. data/node_modules/browserify/node_modules/vm-browserify/example/run/bundle.js +473 -0
  355. data/node_modules/browserify/node_modules/vm-browserify/example/run/entry.js +6 -0
  356. data/node_modules/browserify/node_modules/vm-browserify/example/run/index.html +9 -0
  357. data/node_modules/browserify/node_modules/vm-browserify/example/run/server.js +6 -0
  358. data/node_modules/browserify/node_modules/vm-browserify/index.js +85 -0
  359. data/node_modules/browserify/node_modules/vm-browserify/package.json +43 -0
  360. data/node_modules/browserify/node_modules/vm-browserify/testling/run.js +22 -0
  361. data/node_modules/browserify/node_modules/vm-browserify/testling/test.sh +11 -0
  362. data/node_modules/browserify/package.json +78 -0
  363. data/node_modules/browserify/test/alias.js +58 -0
  364. data/node_modules/browserify/test/backbone.js +21 -0
  365. data/node_modules/browserify/test/bin.js +39 -0
  366. data/node_modules/browserify/test/buffer.js +99 -0
  367. data/node_modules/browserify/test/bundle.js +32 -0
  368. data/node_modules/browserify/test/cache.js +28 -0
  369. data/node_modules/browserify/test/coffee.js +39 -0
  370. data/node_modules/browserify/test/coffee/bar.js +1 -0
  371. data/node_modules/browserify/test/coffee/baz.coffee +1 -0
  372. data/node_modules/browserify/test/coffee/entry.coffee +1 -0
  373. data/node_modules/browserify/test/coffee/foo.coffee +1 -0
  374. data/node_modules/browserify/test/coffee/index.coffee +5 -0
  375. data/node_modules/browserify/test/coffee/nested/nested.coffee +2 -0
  376. data/node_modules/browserify/test/comment.js +17 -0
  377. data/node_modules/browserify/test/comment/main.js +2 -0
  378. data/node_modules/browserify/test/crypto.js +37 -0
  379. data/node_modules/browserify/test/dnode.js +27 -0
  380. data/node_modules/browserify/test/dollar.js +19 -0
  381. data/node_modules/browserify/test/dollar/dollar/index.js +7 -0
  382. data/node_modules/browserify/test/entry.js +36 -0
  383. data/node_modules/browserify/test/entry/main.js +1 -0
  384. data/node_modules/browserify/test/entry/one.js +1 -0
  385. data/node_modules/browserify/test/entry/two.js +1 -0
  386. data/node_modules/browserify/test/error_code.js +24 -0
  387. data/node_modules/browserify/test/error_code/src.js +2 -0
  388. data/node_modules/browserify/test/export.js +52 -0
  389. data/node_modules/browserify/test/export/entry.js +1 -0
  390. data/node_modules/browserify/test/field.js +64 -0
  391. data/node_modules/browserify/test/field/miss.js +1 -0
  392. data/node_modules/browserify/test/field/node_modules/z-miss/browser.js +1 -0
  393. data/node_modules/browserify/test/field/node_modules/z-miss/main.js +1 -0
  394. data/node_modules/browserify/test/field/node_modules/z-miss/package.json +4 -0
  395. data/node_modules/browserify/test/field/node_modules/z-object/browser.js +1 -0
  396. data/node_modules/browserify/test/field/node_modules/z-object/main.js +1 -0
  397. data/node_modules/browserify/test/field/node_modules/z-object/package.json +6 -0
  398. data/node_modules/browserify/test/field/node_modules/z-string/browser.js +1 -0
  399. data/node_modules/browserify/test/field/node_modules/z-string/main.js +1 -0
  400. data/node_modules/browserify/test/field/node_modules/z-string/package.json +4 -0
  401. data/node_modules/browserify/test/field/node_modules/z-sub/browser/a.js +1 -0
  402. data/node_modules/browserify/test/field/node_modules/z-sub/browser/b.js +1 -0
  403. data/node_modules/browserify/test/field/node_modules/z-sub/main.js +1 -0
  404. data/node_modules/browserify/test/field/node_modules/z-sub/package.json +4 -0
  405. data/node_modules/browserify/test/field/object.js +1 -0
  406. data/node_modules/browserify/test/field/string.js +1 -0
  407. data/node_modules/browserify/test/field/sub.js +1 -0
  408. data/node_modules/browserify/test/global.js +19 -0
  409. data/node_modules/browserify/test/global/main.js +2 -0
  410. data/node_modules/browserify/test/jade.js +35 -0
  411. data/node_modules/browserify/test/json.js +17 -0
  412. data/node_modules/browserify/test/json/beep.json +4 -0
  413. data/node_modules/browserify/test/json/main.js +1 -0
  414. data/node_modules/browserify/test/maxlisteners.js +8 -0
  415. data/node_modules/browserify/test/module.js +22 -0
  416. data/node_modules/browserify/test/multi_entry.js +20 -0
  417. data/node_modules/browserify/test/multi_entry/a.js +2 -0
  418. data/node_modules/browserify/test/multi_entry/b.js +2 -0
  419. data/node_modules/browserify/test/multi_entry/c.js +3 -0
  420. data/node_modules/browserify/test/multi_ignore.js +23 -0
  421. data/node_modules/browserify/test/node_modules/beep/index.js +1 -0
  422. data/node_modules/browserify/test/require_cache.js +18 -0
  423. data/node_modules/browserify/test/retarget.js +27 -0
  424. data/node_modules/browserify/test/seq.js +47 -0
  425. data/node_modules/browserify/test/subdep.js +26 -0
  426. data/node_modules/browserify/test/subdep/index.js +1 -0
  427. data/node_modules/browserify/test/subdep/package.json +6 -0
  428. data/node_modules/browserify/test/util.js +48 -0
  429. data/node_modules/browserify/test/watch.js +91 -0
  430. data/node_modules/browserify/test/watch/a.js +1 -0
  431. data/node_modules/browserify/test/wrap.js +43 -0
  432. data/node_modules/browserify/test/wrap/a.js +2 -0
  433. data/node_modules/browserify/test/wrap/c.js +1 -0
  434. data/node_modules/browserify/test/wrap/node_modules/b/main.js +1 -0
  435. data/node_modules/browserify/test/wrap/node_modules/b/package.json +3 -0
  436. data/node_modules/browserify/test/wrap/node_modules/skipmetoo/index.js +1 -0
  437. data/node_modules/browserify/test/wrap/skipme.js +1 -0
  438. data/node_modules/browserify/test/wrap/x.js +0 -0
  439. data/node_modules/browserify/testling/README.markdown +29 -0
  440. data/node_modules/browserify/testling/test.sh +37 -0
  441. data/node_modules/browserify/testling/tick.js +9 -0
  442. data/node_modules/browserify/testling/timers.js +50 -0
  443. data/node_modules/browserify/testling/util.js +24 -0
  444. data/node_modules/browserify/v2.markdown +41 -0
  445. data/node_modules/browserify/wrappers/alias.js +1 -0
  446. data/node_modules/browserify/wrappers/body.js +2 -0
  447. data/node_modules/browserify/wrappers/body_debug.js +2 -0
  448. data/node_modules/browserify/wrappers/entry.js +3 -0
  449. data/node_modules/browserify/wrappers/entry_debug.js +3 -0
  450. data/node_modules/browserify/wrappers/package.js +3 -0
  451. data/node_modules/browserify/wrappers/prelude.js +196 -0
  452. data/node_modules/coffee-script/.npmignore +11 -0
  453. data/node_modules/coffee-script/CNAME +1 -0
  454. data/node_modules/coffee-script/CONTRIBUTING.md +9 -0
  455. data/node_modules/coffee-script/LICENSE +22 -0
  456. data/node_modules/coffee-script/README +51 -0
  457. data/node_modules/coffee-script/Rakefile +78 -0
  458. data/node_modules/coffee-script/bin/cake +7 -0
  459. data/node_modules/coffee-script/bin/coffee +7 -0
  460. data/node_modules/coffee-script/extras/jsl.conf +44 -0
  461. data/node_modules/coffee-script/lib/coffee-script/browser.js +92 -0
  462. data/node_modules/coffee-script/lib/coffee-script/cake.js +113 -0
  463. data/node_modules/coffee-script/lib/coffee-script/coffee-script.js +171 -0
  464. data/node_modules/coffee-script/lib/coffee-script/command.js +502 -0
  465. data/node_modules/coffee-script/lib/coffee-script/grammar.js +606 -0
  466. data/node_modules/coffee-script/lib/coffee-script/helpers.js +88 -0
  467. data/node_modules/coffee-script/lib/coffee-script/index.js +11 -0
  468. data/node_modules/coffee-script/lib/coffee-script/lexer.js +788 -0
  469. data/node_modules/coffee-script/lib/coffee-script/nodes.js +2971 -0
  470. data/node_modules/coffee-script/lib/coffee-script/optparse.js +138 -0
  471. data/node_modules/coffee-script/lib/coffee-script/parser.js +683 -0
  472. data/node_modules/coffee-script/lib/coffee-script/repl.js +276 -0
  473. data/node_modules/coffee-script/lib/coffee-script/rewriter.js +349 -0
  474. data/node_modules/coffee-script/lib/coffee-script/scope.js +146 -0
  475. data/node_modules/coffee-script/package.json +50 -0
  476. data/node_modules/jade-runtime/.npmignore +15 -0
  477. data/node_modules/jade-runtime/README.md +8 -0
  478. data/node_modules/jade-runtime/globals.js +32 -0
  479. data/node_modules/jade-runtime/index.js +2 -0
  480. data/node_modules/jade-runtime/jade-runtime.js +181 -0
  481. data/node_modules/jade-runtime/package.json +18 -0
  482. data/node_modules/jade/.npmignore +14 -0
  483. data/node_modules/jade/LICENSE +22 -0
  484. data/node_modules/jade/Readme.md +1299 -0
  485. data/node_modules/jade/bin/jade +168 -0
  486. data/node_modules/jade/index.js +4 -0
  487. data/node_modules/jade/jade.js +3586 -0
  488. data/node_modules/jade/jade.md +510 -0
  489. data/node_modules/jade/jade.min.js +2 -0
  490. data/node_modules/jade/lib/compiler.js +654 -0
  491. data/node_modules/jade/lib/doctypes.js +18 -0
  492. data/node_modules/jade/lib/filters.js +97 -0
  493. data/node_modules/jade/lib/inline-tags.js +28 -0
  494. data/node_modules/jade/lib/jade.js +253 -0
  495. data/node_modules/jade/lib/lexer.js +774 -0
  496. data/node_modules/jade/lib/nodes/attrs.js +77 -0
  497. data/node_modules/jade/lib/nodes/block-comment.js +33 -0
  498. data/node_modules/jade/lib/nodes/block.js +122 -0
  499. data/node_modules/jade/lib/nodes/case.js +43 -0
  500. data/node_modules/jade/lib/nodes/code.js +35 -0
  501. data/node_modules/jade/lib/nodes/comment.js +32 -0
  502. data/node_modules/jade/lib/nodes/doctype.js +29 -0
  503. data/node_modules/jade/lib/nodes/each.js +35 -0
  504. data/node_modules/jade/lib/nodes/filter.js +35 -0
  505. data/node_modules/jade/lib/nodes/index.js +20 -0
  506. data/node_modules/jade/lib/nodes/literal.js +32 -0
  507. data/node_modules/jade/lib/nodes/mixin.js +36 -0
  508. data/node_modules/jade/lib/nodes/node.js +25 -0
  509. data/node_modules/jade/lib/nodes/tag.js +95 -0
  510. data/node_modules/jade/lib/nodes/text.js +36 -0
  511. data/node_modules/jade/lib/parser.js +714 -0
  512. data/node_modules/jade/lib/runtime.js +174 -0
  513. data/node_modules/jade/lib/self-closing.js +19 -0
  514. data/node_modules/jade/lib/utils.js +49 -0
  515. data/node_modules/jade/node_modules/commander/.npmignore +4 -0
  516. data/node_modules/jade/node_modules/commander/.travis.yml +4 -0
  517. data/node_modules/jade/node_modules/commander/History.md +107 -0
  518. data/node_modules/jade/node_modules/commander/Makefile +7 -0
  519. data/node_modules/jade/node_modules/commander/Readme.md +262 -0
  520. data/node_modules/jade/node_modules/commander/index.js +2 -0
  521. data/node_modules/jade/node_modules/commander/lib/commander.js +1026 -0
  522. data/node_modules/jade/node_modules/commander/package.json +39 -0
  523. data/node_modules/jade/node_modules/mkdirp/.npmignore +2 -0
  524. data/node_modules/jade/node_modules/mkdirp/.travis.yml +4 -0
  525. data/node_modules/jade/node_modules/mkdirp/LICENSE +21 -0
  526. data/node_modules/jade/node_modules/mkdirp/README.markdown +61 -0
  527. data/node_modules/jade/node_modules/mkdirp/examples/pow.js +6 -0
  528. data/node_modules/jade/node_modules/mkdirp/index.js +82 -0
  529. data/node_modules/jade/node_modules/mkdirp/package.json +37 -0
  530. data/node_modules/jade/node_modules/mkdirp/test/chmod.js +38 -0
  531. data/node_modules/jade/node_modules/mkdirp/test/clobber.js +37 -0
  532. data/node_modules/jade/node_modules/mkdirp/test/mkdirp.js +28 -0
  533. data/node_modules/jade/node_modules/mkdirp/test/perm.js +32 -0
  534. data/node_modules/jade/node_modules/mkdirp/test/perm_sync.js +39 -0
  535. data/node_modules/jade/node_modules/mkdirp/test/race.js +41 -0
  536. data/node_modules/jade/node_modules/mkdirp/test/rel.js +32 -0
  537. data/node_modules/jade/node_modules/mkdirp/test/return.js +25 -0
  538. data/node_modules/jade/node_modules/mkdirp/test/return_sync.js +24 -0
  539. data/node_modules/jade/node_modules/mkdirp/test/root.js +18 -0
  540. data/node_modules/jade/node_modules/mkdirp/test/sync.js +32 -0
  541. data/node_modules/jade/node_modules/mkdirp/test/umask.js +28 -0
  542. data/node_modules/jade/node_modules/mkdirp/test/umask_sync.js +32 -0
  543. data/node_modules/jade/package.json +53 -0
  544. data/node_modules/jade/runtime.js +179 -0
  545. data/node_modules/jade/runtime.min.js +1 -0
  546. data/node_modules/jade/test.jade +7 -0
  547. data/node_modules/jade/testing/head.jade +5 -0
  548. data/node_modules/jade/testing/index.jade +1 -0
  549. data/node_modules/jade/testing/index.js +14 -0
  550. data/node_modules/jade/testing/layout.jade +10 -0
  551. data/node_modules/jade/testing/user.jade +7 -0
  552. data/node_modules/jade/testing/user.js +27 -0
  553. data/node_modules/optimist/.travis.yml +4 -0
  554. data/node_modules/optimist/LICENSE +21 -0
  555. data/node_modules/optimist/README.markdown +487 -0
  556. data/node_modules/optimist/example/bool.js +10 -0
  557. data/node_modules/optimist/example/boolean_double.js +7 -0
  558. data/node_modules/optimist/example/boolean_single.js +7 -0
  559. data/node_modules/optimist/example/default_hash.js +8 -0
  560. data/node_modules/optimist/example/default_singles.js +7 -0
  561. data/node_modules/optimist/example/divide.js +8 -0
  562. data/node_modules/optimist/example/line_count.js +20 -0
  563. data/node_modules/optimist/example/line_count_options.js +29 -0
  564. data/node_modules/optimist/example/line_count_wrap.js +29 -0
  565. data/node_modules/optimist/example/nonopt.js +4 -0
  566. data/node_modules/optimist/example/reflect.js +2 -0
  567. data/node_modules/optimist/example/short.js +3 -0
  568. data/node_modules/optimist/example/string.js +11 -0
  569. data/node_modules/optimist/example/usage-options.js +19 -0
  570. data/node_modules/optimist/example/xup.js +10 -0
  571. data/node_modules/optimist/index.js +475 -0
  572. data/node_modules/optimist/node_modules/wordwrap/.npmignore +1 -0
  573. data/node_modules/optimist/node_modules/wordwrap/README.markdown +70 -0
  574. data/node_modules/optimist/node_modules/wordwrap/example/center.js +10 -0
  575. data/node_modules/optimist/node_modules/wordwrap/example/meat.js +3 -0
  576. data/node_modules/optimist/node_modules/wordwrap/index.js +76 -0
  577. data/node_modules/optimist/node_modules/wordwrap/package.json +45 -0
  578. data/node_modules/optimist/node_modules/wordwrap/test/break.js +30 -0
  579. data/node_modules/optimist/node_modules/wordwrap/test/idleness.txt +63 -0
  580. data/node_modules/optimist/node_modules/wordwrap/test/wrap.js +31 -0
  581. data/node_modules/optimist/package.json +55 -0
  582. data/node_modules/optimist/test/_.js +71 -0
  583. data/node_modules/optimist/test/_/argv.js +2 -0
  584. data/node_modules/optimist/test/_/bin.js +3 -0
  585. data/node_modules/optimist/test/parse.js +420 -0
  586. data/node_modules/optimist/test/usage.js +292 -0
  587. data/snowball.gemspec +1 -2
  588. metadata +601 -21
  589. data/extconf.rb +0 -9
@@ -0,0 +1,15 @@
1
+ var http = require('http');
2
+ var ecstatic = require('ecstatic')(__dirname);
3
+ var server = http.createServer(function (req, res) {
4
+ if (req.url === '/beep') {
5
+ res.setHeader('content-type', 'text/plain');
6
+ res.setHeader('foo', 'bar');
7
+ res.setHeader('bling', req.headers.bling + '-blong');
8
+
9
+ res.end('boop');
10
+ }
11
+ else ecstatic(req, res);
12
+ });
13
+
14
+ console.log('Listening on :8082');
15
+ server.listen(8082);
@@ -0,0 +1,139 @@
1
+ [
2
+ {"id":"ccc87f2e39902598d0895524bd1b94b0","key":["Colingo/valid-schema.git","f09907352b7a1033576af266fc4793ac11508702.1356048433579"],"value":{"_id":"ccc87f2e39902598d0895524bd1b94b0","_rev":"1-a37d6c7e2435cd5708a87738ce533159","type":"test","time":1356048548102,"commit":{"id":"f09907352b7a1033576af266fc4793ac11508702.1356048433579","dir":"/tmp/ci/work/f09907352b7a1033576af266fc4793ac11508702.1356048433579","repo":"Colingo/valid-schema.git","hash":"f09907352b7a1033576af266fc4793ac11508702","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048433734.9429d555","browser":"safari/5.1","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n","[\"stdout\",\"ok 5 should be equal\\n\"]\n","[\"stdout\",\"# enum case\\n\"]\n","[\"stdout\",\"ok 6 should be equal\\n\"]\n","[\"stdout\",\"ok 7 should be equal\\n\"]\n","[\"stdout\",\"# nested schemas\\n\"]\n","[\"stdout\",\"ok 8 should be equal\\n\"]\n","[\"stdout\",\"ok 9 should be equal\\n\"]\n","[\"stdout\",\"# custom functions\\n\"]\n","[\"stdout\",\"ok 10 should be equal\\n\"]\n","[\"stdout\",\"ok 11 should be equal\\n\"]\n","[\"stdout\",\"# integration\\n\"]\n","[\"stdout\",\"ok 12 should be equal\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"1..12\\n\"]\n","[\"stdout\",\"# tests 12\\n\"]\n","[\"stdout\",\"# pass 12\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"# ok\\n\"]\n"]}}
3
+ ,
4
+ {"id":"ccc87f2e39902598d0895524bd1b8658","key":["Colingo/valid-schema.git","f09907352b7a1033576af266fc4793ac11508702.1356048433579"],"value":{"_id":"ccc87f2e39902598d0895524bd1b8658","_rev":"1-70d116718dcfb30e16434f0eafe7ab75","type":"test","time":1356048547322,"commit":{"id":"f09907352b7a1033576af266fc4793ac11508702.1356048433579","dir":"/tmp/ci/work/f09907352b7a1033576af266fc4793ac11508702.1356048433579","repo":"Colingo/valid-schema.git","hash":"f09907352b7a1033576af266fc4793ac11508702","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048433734.9429d555","browser":"opera/12.0","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n","[\"stdout\",\"ok 5 should be equal\\n\"]\n","[\"stdout\",\"# enum case\\n\"]\n","[\"stdout\",\"ok 6 should be equal\\n\"]\n","[\"stdout\",\"ok 7 should be equal\\n\"]\n","[\"stdout\",\"# nested schemas\\n\"]\n","[\"stdout\",\"ok 8 should be equal\\n\"]\n","[\"stdout\",\"ok 9 should be equal\\n\"]\n","[\"stdout\",\"# custom functions\\n\"]\n","[\"stdout\",\"ok 10 should be equal\\n\"]\n","[\"stdout\",\"ok 11 should be equal\\n\"]\n","[\"stdout\",\"# integration\\n\"]\n","[\"stdout\",\"ok 12 should be equal\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"1..12\\n\"]\n","[\"stdout\",\"# tests 12\\n\"]\n","[\"stdout\",\"# pass 12\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"# ok\\n\"]\n"]}}
5
+ ,
6
+ {"id":"ccc87f2e39902598d0895524bd1b8265","key":["Colingo/valid-schema.git","f09907352b7a1033576af266fc4793ac11508702.1356048433579"],"value":{"_id":"ccc87f2e39902598d0895524bd1b8265","_rev":"1-8c6fd3092656d3d1166f5ff2951e73fa","type":"test","time":1356048546308,"commit":{"id":"f09907352b7a1033576af266fc4793ac11508702.1356048433579","dir":"/tmp/ci/work/f09907352b7a1033576af266fc4793ac11508702.1356048433579","repo":"Colingo/valid-schema.git","hash":"f09907352b7a1033576af266fc4793ac11508702","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048433734.9429d555","browser":"chrome/canary","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n","[\"stdout\",\"ok 5 should be equal\\n\"]\n","[\"stdout\",\"# enum case\\n\"]\n","[\"stdout\",\"ok 6 should be equal\\n\"]\n","[\"stdout\",\"ok 7 should be equal\\n\"]\n","[\"stdout\",\"# nested schemas\\n\"]\n","[\"stdout\",\"ok 8 should be equal\\n\"]\n","[\"stdout\",\"ok 9 should be equal\\n\"]\n","[\"stdout\",\"# custom functions\\n\"]\n","[\"stdout\",\"ok 10 should be equal\\n\"]\n","[\"stdout\",\"ok 11 should be equal\\n\"]\n","[\"stdout\",\"# integration\\n\"]\n","[\"stdout\",\"ok 12 should be equal\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"1..12\\n\"]\n","[\"stdout\",\"# tests 12\\n\"]\n","[\"stdout\",\"# pass 12\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"# ok\\n\"]\n"]}}
7
+ ,
8
+ {"id":"ccc87f2e39902598d0895524bd1b771d","key":["Colingo/valid-schema.git","f09907352b7a1033576af266fc4793ac11508702.1356048433579"],"value":{"_id":"ccc87f2e39902598d0895524bd1b771d","_rev":"1-3e73f8f39e4a41746f3940a89df13dbb","type":"test","time":1356048514966,"commit":{"id":"f09907352b7a1033576af266fc4793ac11508702.1356048433579","dir":"/tmp/ci/work/f09907352b7a1033576af266fc4793ac11508702.1356048433579","repo":"Colingo/valid-schema.git","hash":"f09907352b7a1033576af266fc4793ac11508702","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048433734.9429d555","browser":"chrome/22.0","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n","[\"stdout\",\"ok 5 should be equal\\n\"]\n","[\"stdout\",\"# enum case\\n\"]\n","[\"stdout\",\"ok 6 should be equal\\n\"]\n","[\"stdout\",\"ok 7 should be equal\\n\"]\n","[\"stdout\",\"# nested schemas\\n\"]\n","[\"stdout\",\"ok 8 should be equal\\n\"]\n","[\"stdout\",\"ok 9 should be equal\\n\"]\n","[\"stdout\",\"# custom functions\\n\"]\n","[\"stdout\",\"ok 10 should be equal\\n\"]\n","[\"stdout\",\"ok 11 should be equal\\n\"]\n","[\"stdout\",\"# integration\\n\"]\n","[\"stdout\",\"ok 12 should be equal\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"1..12\\n\"]\n","[\"stdout\",\"# tests 12\\n\"]\n","[\"stdout\",\"# pass 12\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"# ok\\n\"]\n"]}}
9
+ ,
10
+ {"id":"ccc87f2e39902598d0895524bd1b7133","key":["Colingo/valid-schema.git","f09907352b7a1033576af266fc4793ac11508702.1356048433579"],"value":{"_id":"ccc87f2e39902598d0895524bd1b7133","_rev":"1-55c5f47e59105c7775284f68f67b6d2c","type":"test","time":1356048513933,"commit":{"id":"f09907352b7a1033576af266fc4793ac11508702.1356048433579","dir":"/tmp/ci/work/f09907352b7a1033576af266fc4793ac11508702.1356048433579","repo":"Colingo/valid-schema.git","hash":"f09907352b7a1033576af266fc4793ac11508702","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048433734.9429d555","browser":"firefox/nightly","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n","[\"stdout\",\"ok 5 should be equal\\n\"]\n","[\"stdout\",\"# enum case\\n\"]\n","[\"stdout\",\"ok 6 should be equal\\n\"]\n","[\"stdout\",\"ok 7 should be equal\\n\"]\n","[\"stdout\",\"# nested schemas\\n\"]\n","[\"stdout\",\"ok 8 should be equal\\n\"]\n","[\"stdout\",\"ok 9 should be equal\\n\"]\n","[\"stdout\",\"# custom functions\\n\"]\n","[\"stdout\",\"ok 10 should be equal\\n\"]\n","[\"stdout\",\"ok 11 should be equal\\n\"]\n","[\"stdout\",\"# integration\\n\"]\n","[\"stdout\",\"ok 12 should be equal\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"1..12\\n\"]\n","[\"stdout\",\"# tests 12\\n\"]\n","[\"stdout\",\"# pass 12\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"# ok\\n\"]\n"]}}
11
+ ,
12
+ {"id":"ccc87f2e39902598d0895524bd1b66b4","key":["Colingo/valid-schema.git","f09907352b7a1033576af266fc4793ac11508702.1356048433579"],"value":{"_id":"ccc87f2e39902598d0895524bd1b66b4","_rev":"1-9153ed55ee3ca36b262823fe946df2ca","type":"test","time":1356048484180,"commit":{"id":"f09907352b7a1033576af266fc4793ac11508702.1356048433579","dir":"/tmp/ci/work/f09907352b7a1033576af266fc4793ac11508702.1356048433579","repo":"Colingo/valid-schema.git","hash":"f09907352b7a1033576af266fc4793ac11508702","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048433734.9429d555","browser":"firefox/17.0","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n"]}}
13
+ ,
14
+ {"id":"ccc87f2e39902598d0895524bd1b5836","key":["Colingo/valid-schema.git","f09907352b7a1033576af266fc4793ac11508702.1356048433579"],"value":{"_id":"ccc87f2e39902598d0895524bd1b5836","_rev":"1-ddf6706ef372840b57f307c49918c116","type":"test","time":1356048483183,"commit":{"id":"f09907352b7a1033576af266fc4793ac11508702.1356048433579","dir":"/tmp/ci/work/f09907352b7a1033576af266fc4793ac11508702.1356048433579","repo":"Colingo/valid-schema.git","hash":"f09907352b7a1033576af266fc4793ac11508702","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048433734.9429d555","browser":"firefox/15.0","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n","[\"stdout\",\"ok 5 should be equal\\n\"]\n","[\"stdout\",\"# enum case\\n\"]\n","[\"stdout\",\"ok 6 should be equal\\n\"]\n","[\"stdout\",\"ok 7 should be equal\\n\"]\n","[\"stdout\",\"# nested schemas\\n\"]\n","[\"stdout\",\"ok 8 should be equal\\n\"]\n","[\"stdout\",\"ok 9 should be equal\\n\"]\n","[\"stdout\",\"# custom functions\\n\"]\n","[\"stdout\",\"ok 10 should be equal\\n\"]\n","[\"stdout\",\"ok 11 should be equal\\n\"]\n","[\"stdout\",\"# integration\\n\"]\n","[\"stdout\",\"ok 12 should be equal\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"1..12\\n\"]\n","[\"stdout\",\"# tests 12\\n\"]\n","[\"stdout\",\"# pass 12\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"# ok\\n\"]\n"]}}
15
+ ,
16
+ {"id":"ccc87f2e39902598d0895524bd1b565f","key":["Colingo/valid-schema.git","f09907352b7a1033576af266fc4793ac11508702.1356048433579"],"value":{"_id":"ccc87f2e39902598d0895524bd1b565f","_rev":"1-e0ae75a3c5b33c5666308e0d3add0c79","type":"test","time":1356048482334,"commit":{"id":"f09907352b7a1033576af266fc4793ac11508702.1356048433579","dir":"/tmp/ci/work/f09907352b7a1033576af266fc4793ac11508702.1356048433579","repo":"Colingo/valid-schema.git","hash":"f09907352b7a1033576af266fc4793ac11508702","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048433734.9429d555","browser":"iexplore/9.0","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n","[\"stdout\",\"ok 5 should be equal\\n\"]\n","[\"stdout\",\"# enum case\\n\"]\n","[\"stdout\",\"ok 6 should be equal\\n\"]\n","[\"stdout\",\"ok 7 should be equal\\n\"]\n","[\"stdout\",\"# nested schemas\\n\"]\n","[\"stdout\",\"ok 8 should be equal\\n\"]\n","[\"stdout\",\"ok 9 should be equal\\n\"]\n","[\"stdout\",\"# custom functions\\n\"]\n","[\"stdout\",\"ok 10 should be equal\\n\"]\n","[\"stdout\",\"ok 11 should be equal\\n\"]\n","[\"stdout\",\"# integration\\n\"]\n","[\"stdout\",\"ok 12 should be equal\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"1..12\\n\"]\n","[\"stdout\",\"# tests 12\\n\"]\n","[\"stdout\",\"# pass 12\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"# ok\\n\"]\n"]}}
17
+ ,
18
+ {"id":"ccc87f2e39902598d0895524bd1b5620","key":["Colingo/valid-schema.git","f09907352b7a1033576af266fc4793ac11508702.1356048433579"],"value":{"_id":"ccc87f2e39902598d0895524bd1b5620","_rev":"1-ab43bab51d94ce0652705197038e6d7e","type":"test","time":1356048477741,"commit":{"id":"f09907352b7a1033576af266fc4793ac11508702.1356048433579","dir":"/tmp/ci/work/f09907352b7a1033576af266fc4793ac11508702.1356048433579","repo":"Colingo/valid-schema.git","hash":"f09907352b7a1033576af266fc4793ac11508702","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048433734.9429d555","browser":"iexplore/8.0","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"not ok 1 TypeError: Object doesn't support this property or method\\n\"]\n","[\"stdout\",\" ---\\n\"]\n","[\"stdout\",\" operator: error\\n\"]\n","[\"stdout\",\" expected:\\n\"]\n","[\"stdout\",\" undefined\\n\"]\n","[\"stdout\",\" actual:\\n\"]\n","[\"stdout\",\" {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n\"]\n","[\"stdout\",\" ...\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"not ok 2 TypeError: Object doesn't support this property or method\\n\"]\n","[\"stdout\",\" ---\\n\"]\n","[\"stdout\",\" operator: error\\n\"]\n","[\"stdout\",\" expected:\\n\"]\n","[\"stdout\",\" undefined\\n\"]\n","[\"stdout\",\" actual:\\n\"]\n","[\"stdout\",\" {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n\"]\n","[\"stdout\",\" ...\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"not ok 3 TypeError: Object doesn't support this property or method\\n\"]\n","[\"stdout\",\" ---\\n\"]\n","[\"stdout\",\" operator: error\\n\"]\n","[\"stdout\",\" expected:\\n\"]\n","[\"stdout\",\" undefined\\n\"]\n","[\"stdout\",\" actual:\\n\"]\n","[\"stdout\",\" {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n\"]\n","[\"stdout\",\" ...\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n","[\"stdout\",\"not ok 4 TypeError: Object doesn't support this property or method\\n\"]\n","[\"stdout\",\" ---\\n\"]\n","[\"stdout\",\" operator: error\\n\"]\n","[\"stdout\",\" expected:\\n\"]\n","[\"stdout\",\" undefined\\n\"]\n","[\"stdout\",\" actual:\\n\"]\n","[\"stdout\",\" {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n\"]\n","[\"stdout\",\" ...\\n\"]\n","[\"stdout\",\"# enum case\\n\"]\n","[\"stdout\",\"not ok 5 TypeError: Object doesn't support this property or method\\n\"]\n","[\"stdout\",\" ---\\n\"]\n","[\"stdout\",\" operator: error\\n\"]\n","[\"stdout\",\" expected:\\n\"]\n","[\"stdout\",\" undefined\\n\"]\n","[\"stdout\",\" actual:\\n\"]\n","[\"stdout\",\" {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n\"]\n","[\"stdout\",\" ...\\n\"]\n","[\"stdout\",\"# nested schemas\\n\"]\n","[\"stdout\",\"not ok 6 TypeError: Object doesn't support this property or method\\n\"]\n","[\"stdout\",\" ---\\n\"]\n","[\"stdout\",\" operator: error\\n\"]\n","[\"stdout\",\" expected:\\n\"]\n","[\"stdout\",\" undefined\\n\"]\n","[\"stdout\",\" actual:\\n\"]\n","[\"stdout\",\" {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n\"]\n","[\"stdout\",\" ...\\n\"]\n","[\"stdout\",\"# custom functions\\n\"]\n","[\"stdout\",\"not ok 7 TypeError: Object doesn't support this property or method\\n\"]\n","[\"stdout\",\" ---\\n\"]\n","[\"stdout\",\" operator: error\\n\"]\n","[\"stdout\",\" expected:\\n\"]\n","[\"stdout\",\" undefined\\n\"]\n","[\"stdout\",\" actual:\\n\"]\n","[\"stdout\",\" {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n\"]\n","[\"stdout\",\" ...\\n\"]\n","[\"stdout\",\"# integration\\n\"]\n","[\"stdout\",\"not ok 8 TypeError: Object doesn't support this property or method\\n\"]\n","[\"stdout\",\" ---\\n\"]\n","[\"stdout\",\" operator: error\\n\"]\n","[\"stdout\",\" expected:\\n\"]\n","[\"stdout\",\" undefined\\n\"]\n","[\"stdout\",\" actual:\\n\"]\n","[\"stdout\",\" {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n\"]\n","[\"stdout\",\" ...\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"1..8\\n\"]\n","[\"stdout\",\"# tests 8\\n\"]\n","[\"stdout\",\"# pass 0\\n\"]\n","[\"stdout\",\"# fail 8\\n\"]\n"]}}
19
+ ,
20
+ {"id":"ccc87f2e39902598d0895524bd1b534d","key":["Colingo/valid-schema.git","f09907352b7a1033576af266fc4793ac11508702.1356048433579"],"value":{"_id":"ccc87f2e39902598d0895524bd1b534d","_rev":"1-68e03cb7f611022d1f357e0e88331bd7","type":"bundle","time":1356048433735,"id":"1356048433734.9429d555","commit":{"id":"f09907352b7a1033576af266fc4793ac11508702.1356048433579","dir":"/tmp/ci/work/f09907352b7a1033576af266fc4793ac11508702.1356048433579","repo":"Colingo/valid-schema.git","hash":"f09907352b7a1033576af266fc4793ac11508702","branch":"master"},"output":["npm"," http ","GET https://registry.npmjs.org/to-array\n","npm http"," GET https://registry.npmjs.org/browserify\n","npm http"," GET https://registry.npmjs.org/tape\n","npm ","http GET https://registry.npmjs.org/testem\n","npm http ","304 https://registry.npmjs.org/tape\n","npm http"," 304 https://registry.npmjs.org/browserify\n","npm ","http 304 https://registry.npmjs.org/to-array\n","npm ","http 304 https://registry.npmjs.org/testem\n","npm"," ","http"," ","GET"," https://registry.npmjs.org/jsonify\n","npm"," ","http"," ","GET"," https://registry.npmjs.org/deep-equal\n","npm"," ","http"," ","GET"," https://registry.npmjs.org/defined\n","npm ","http GET https://registry.npmjs.org/detective\n","npm ","http GET https://registry.npmjs.org/buffer-browserify\n","npm http"," GET https://registry.npmjs.org/deputy\n","npm ","http GET https://registry.npmjs.org/syntax-error\n","npm ","http GET https://registry.npmjs.org/resolve\n","npm ","http GET"," https://registry.npmjs.org/commondir\n","npm ","http GET https://registry.npmjs.org/nub\n","npm ","http GET https://registry.npmjs.org/coffee-script\n","npm ","http GET https://registry.npmjs.org/optimist\n","npm ","http GET https://registry.npmjs.org/vm-browserify\n","npm http GET"," https://registry.npmjs.org/http-browserify\n","npm"," http"," GET https://registry.npmjs.org/crypto-browserify\n","npm"," http GET https://registry.npmjs.org/express/2.5.10\n","npm ","http GET https://registry.npmjs.org/mustache/0.4.0\n","npm"," http GET https://registry.npmjs.org/winston/0.3.4\n","npm"," ","http"," GET https://registry.npmjs.org/socket.io/0.9.10\n","npm ","http GET https://registry.npmjs.org/commander\n","npm http"," GET https://registry.npmjs.org/charm/0.0.5\n","npm http"," GET https://registry.npmjs.org/js-yaml/0.3.5\n","npm http"," GET https://registry.npmjs.org/glob/3.0.1\n","npm http"," GET https://registry.npmjs.org/async/0.1.15\n","npm ","http"," ","GET https://registry.npmjs.org/rimraf\n","npm http"," GET https://registry.npmjs.org/underscore\n","npm ","http GET https://registry.npmjs.org/backbone\n","npm ","http GET"," https://registry.npmjs.org/styled_string\n","npm http"," GET https://registry.npmjs.org/colors\n","npm ","http GET https://registry.npmjs.org/fireworm\n","npm http"," 304 https://registry.npmjs.org/jsonify\n","npm ","http 304 https://registry.npmjs.org/defined\n","npm"," http 304 https://registry.npmjs.org/deep-equal\n","npm http ","304 https://registry.npmjs.org/buffer-browserify\n","npm http"," 304 https://registry.npmjs.org/detective\n","npm http 304"," https://registry.npmjs.org/deputy\n","npm ","http 304 https://registry.npmjs.org/syntax-error\n","npm http"," 304 https://registry.npmjs.org/resolve\n","npm http 304"," https://registry.npmjs.org/commondir\n","npm http"," 304 https://registry.npmjs.org/nub\n","npm http"," 304 https://registry.npmjs.org/coffee-script\n","npm http"," 304 https://registry.npmjs.org/optimist\n","npm ","http 304 https://registry.npmjs.org/vm-browserify\n","npm http 304"," https://registry.npmjs.org/http-browserify\n","npm ","http 304 https://registry.npmjs.org/crypto-browserify\n","npm http ","304 https://registry.npmjs.org/express/2.5.10\n","npm http ","GET https://registry.npmjs.org/mkdirp\n","npm ","http GET https://registry.npmjs.org/esprima\n","npm ","http GET https://registry.npmjs.org/concat-stream/0.0.8\n","npm"," http GET https://registry.npmjs.org/base64-js/0.0.2\n","npm http"," GET"," https://registry.npmjs.org/wordwrap\n","npm http ","304 https://registry.npmjs.org/winston/0.3.4\n","npm ","http 304 https://registry.npmjs.org/mustache/0.4.0\n","npm ","WARN package.json mustache@0.4.0 No README.md file found!\n","npm ","http 304 https://registry.npmjs.org/socket.io/0.9.10\n","npm http"," 304 https://registry.npmjs.org/commander\n","npm ","http 304 https://registry.npmjs.org/async/0.1.15\n","npm ","http 304 https://registry.npmjs.org/rimraf\n","npm ","http 304 https://registry.npmjs.org/underscore\n","npm ","http 304 https://registry.npmjs.org/backbone\n","npm ","http 304 https://registry.npmjs.org/styled_string\n","npm ","http 304 https://registry.npmjs.org/colors\n","npm"," http 304 https://registry.npmjs.org/fireworm\n","npm ","http 304 https://registry.npmjs.org/mkdirp\n","npm ","http 304 https://registry.npmjs.org/charm/0.0.5\n","npm ","http 304 https://registry.npmjs.org/glob/3.0.1\n","npm"," http 304 https://registry.npmjs.org/js-yaml/0.3.5\n","npm"," http 304 https://registry.npmjs.org/wordwrap\n","npm"," http 304 https://registry.npmjs.org/base64-js/0.0.2\n","npm ","http 304 https://registry.npmjs.org/concat-stream/0.0.8\n","npm http"," 304 https://registry.npmjs.org/esprima\n","npm ","http GET https://registry.npmjs.org/graceful-fs\n","npm http"," GET https://registry.npmjs.org/async\n","npm ","http GET https://registry.npmjs.org/fast-list\nnpm http GET https://registry.npmjs.org/keypress\nnpm http GET https://registry.npmjs.org/mime/1.2.4\n","npm http"," GET https://registry.npmjs.org/connect\n","npm ","http GET https://registry.npmjs.org/policyfile/0.0.4\n","npm"," http GET https://registry.npmjs.org/minimatch\n","npm ","http GET https://registry.npmjs.org/graceful-fs\n","npm http"," GET https://registry.npmjs.org/set\n","npm http"," GET https://registry.npmjs.org/socket.io-client/0.9.10\n","npm http"," GET https://registry.npmjs.org/minimatch\n","npm"," http GET https://registry.npmjs.org/qs\n","npm ","http GET https://registry.npmjs.org/redis/0.7.2\n","npm http"," GET https://registry.npmjs.org/inherits\n","npm http"," GET https://registry.npmjs.org/mkdirp/0.3.0\n","npm ","http GET https://registry.npmjs.org/eyes\n","npm http"," GET https://registry.npmjs.org/loggly\n","npm ","http GET https://registry.npmjs.org/pkginfo\n","npm http ","304 https://registry.npmjs.org/graceful-fs\n","npm http"," 304 https://registry.npmjs.org/fast-list\n","npm http"," 304 https://registry.npmjs.org/mime/1.2.4\n","npm ","http 304 https://registry.npmjs.org/keypress\n","npm http ","304 https://registry.npmjs.org/connect\n","npm ","WARN package.json connect@1.9.2 No README.md file found!\n","npm http"," 304 https://registry.npmjs.org/minimatch\n","npm ","http 304 https://registry.npmjs.org/policyfile/0.0.4\nnpm http 304 https://registry.npmjs.org/graceful-fs\n","npm http"," 304 https://registry.npmjs.org/set\n","npm http"," 304 https://registry.npmjs.org/socket.io-client/0.9.10\n","npm ","http 304 https://registry.npmjs.org/qs\n","npm ","http 304 https://registry.npmjs.org/minimatch\n","npm http ","304 https://registry.npmjs.org/async\n","npm http ","GET https://registry.npmjs.org/lru-cache\n","npm"," http GET https://registry.npmjs.org/sigmund\n","npm http"," 304 https://registry.npmjs.org/redis/0.7.2\n","npm http ","304 https://registry.npmjs.org/eyes\n","npm"," http 304 https://registry.npmjs.org/mkdirp/0.3.0\n","npm ","http 304 https://registry.npmjs.org/inherits\n","npm ","http GET https://registry.npmjs.org/hiredis\n","npm ","http 304 https://registry.npmjs.org/pkginfo\n","npm ","http 304 https://registry.npmjs.org/loggly\n","npm http"," GET https://registry.npmjs.org/lru-cache\n","npm http"," GET https://registry.npmjs.org/timespan\n","npm http"," GET https://registry.npmjs.org/request\n","npm http"," GET https://registry.npmjs.org/formidable\n","npm ","http 304 https://registry.npmjs.org/lru-cache\n","npm ","http 304 https://registry.npmjs.org/sigmund\n","npm http"," GET https://registry.npmjs.org/uglify-js/1.2.5\n","npm ","http GET https://registry.npmjs.org/active-x-obfuscator/0.0.1\n","npm"," ","http"," GET"," https://registry.npmjs.org/xmlhttprequest/1.4.2\n","npm ","http GET https://registry.npmjs.org/ws\n","npm http"," 304 https://registry.npmjs.org/formidable\n","npm ","http 304 https://registry.npmjs.org/request\n","npm http"," 304 https://registry.npmjs.org/uglify-js/1.2.5\n","npm ","http 304 https://registry.npmjs.org/active-x-obfuscator/0.0.1\n","npm http 304"," https://registry.npmjs.org/ws\n","npm ","http ","304"," https://registry.npmjs.org/xmlhttprequest/1.4.2\n","npm"," ","http"," ","GET"," https://registry.npmjs.org/zeparser/0.0.5\n","npm"," ","http"," ","GET"," https://registry.npmjs.org/commander\n","npm"," ","http"," ","GET"," https://registry.npmjs.org/tinycolor\n","npm"," ","http"," ","GET"," https://registry.npmjs.org/options\n","npm http 304"," https://registry.npmjs.org/hiredis\n","npm ","WARN package.json hiredis@0.1.14 No README.md file found!\n","\n> hiredis@0.1.14 preinstall /tmp/ci/work/f09907352b7a1033576af266fc4793ac11508702.1356048433579/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis\n> make || gmake\n\n","cd deps/hiredis && make static\n","make[1]: Entering directory `/tmp/ci/work/f09907352b7a1033576af266fc4793ac11508702.1356048433579/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis/deps/hiredis'\ncc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -g -ggdb net.c\n","npm ","http 304 https://registry.npmjs.org/timespan\n","npm http"," 304 https://registry.npmjs.org/lru-cache\n","cc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -g -ggdb hiredis.c\n","npm http 304 https://registry.npmjs.org/tinycolor\n","npm http ","304 https://registry.npmjs.org/options\n","cc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -g -ggdb sds.c\n","cc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -g -ggdb async.c\n","ar rcs libhiredis.a net.o hiredis.o sds.o async.o\n","make[1]: Leaving directory `/tmp/ci/work/f09907352b7a1033576af266fc4793ac11508702.1356048433579/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis/deps/hiredis'\n","node-waf configure build\n","Traceback (most recent call last):\n File \"/home/testling/installs/node-v0.8.15/bin/node-waf\", line 14, in <module>\n import Scripting\n File \"/home/testling/installs/node-v0.8.15/bin/../lib/node/wafadmin/Scripting.py\", line 146\n except Utils.WafError, e:\n ^\nSyntaxError: invalid syntax\n","make: *** [all] Error 1\n","cd deps/hiredis && gmake static\n","gmake[1]: Entering directory `/tmp/ci/work/f09907352b7a1033576af266fc4793ac11508702.1356048433579/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis/deps/hiredis'\ngmake[1]: Nothing to be done for `static'.\ngmake[1]: Leaving directory `/tmp/ci/work/f09907352b7a1033576af266fc4793ac11508702.1356048433579/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis/deps/hiredis'\n","node-waf configure build\n","Traceback (most recent call last):\n File \"/home/testling/installs/node-v0.8.15/bin/node-waf\", line 14, in <module>\n import Scripting\n File \"/home/testling/installs/node-v0.8.15/bin/../lib/node/wafadmin/Scripting.py\", line 146\n except Utils.WafError, e:\n ^\nSyntaxError: invalid syntax\n","gmake: *** [all] Error 1\n","npm ","WARN optional dep failed, continuing hiredis@0.1.14\n","npm http 304 https://registry.npmjs.org/zeparser/0.0.5\n","npm http 304"," https://registry.npmjs.org/commander\n","\n> ws@0.4.25 install /tmp/ci/work/f09907352b7a1033576af266fc4793ac11508702.1356048433579/node_modules/testem/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws\n> (node-gyp rebuild 2> builderror.log) || (exit 0)\n\n","to-array@0.1.3 node_modules/to-array\n\ntape@0.1.3 node_modules/tape\n├── deep-equal@0.0.0\n├── defined@0.0.0\n└── jsonify@0.0.0\n\nbrowserify@1.16.6 node_modules/browserify\n├── nub@0.0.0\n├── commondir@0.0.1\n├── vm-browserify@0.0.1\n├── crypto-browserify@0.1.2\n├── resolve@0.2.3\n├── coffee-script@1.4.0\n├── deputy@0.0.4 (mkdirp@0.3.4)\n├── http-browserify@0.1.6 (concat-stream@0.0.8)\n├── buffer-browserify@0.0.4 (base64-js@0.0.2)\n├── optimist@0.3.5 (wordwrap@0.0.2)\n├── detective@0.2.1 (esprima@0.9.9)\n└── syntax-error@0.0.0 (esprima@0.9.9)\n\ntestem@0.2.50 node_modules/testem\n├── styled_string@0.0.1\n├── mustache@0.4.0\n├── colors@0.6.0-1\n├── charm@0.0.5\n├── backbone@0.9.9\n├── async@0.1.15\n├── underscore@1.4.3\n├── js-yaml@0.3.5\n├── rimraf@2.1.0 (graceful-fs@1.1.14)\n├── commander@1.1.1 (keypress@0.1.0)\n├── fireworm@0.0.8 (set@1.0.0, async@0.1.22, minimatch@0.2.9)\n├── express@2.5.10 (qs@0.4.2, mkdirp@0.3.0, mime@1.2.4, connect@1.9.2)\n├── glob@3.0.1 (graceful-fs@1.1.14, fast-list@1.0.2, inherits@1.0.0, minimatch@0.1.5)\n├── winston@0.3.4 (eyes@0.1.8, pkginfo@0.2.3, loggly@0.3.11)\n└── socket.io@0.9.10 (policyfile@0.0.4, redis@0.7.2, socket.io-client@0.9.10)\n"]}}
21
+ ,
22
+ {"id":"ccc87f2e39902598d0895524bd1b4ce5","key":["Colingo/valid-schema.git","e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541"],"value":{"_id":"ccc87f2e39902598d0895524bd1b4ce5","_rev":"1-e88a0bc701698b2124220382d1c0a76b","type":"test","time":1356048464367,"commit":{"id":"e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","dir":"/tmp/ci/work/e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","repo":"Colingo/valid-schema.git","hash":"e15e5caff584f54e10646b53b3bb16de4308d8e7","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048400670.59fcea8f","browser":"safari/5.1","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n","[\"stdout\",\"ok 5 should be equal\\n\"]\n","[\"stdout\",\"# enum case\\n\"]\n","[\"stdout\",\"ok 6 should be equal\\n\"]\n","[\"stdout\",\"ok 7 should be equal\\n\"]\n","[\"stdout\",\"# nested schemas\\n\"]\n","[\"stdout\",\"ok 8 should be equal\\n\"]\n","[\"stdout\",\"ok 9 should be equal\\n\"]\n","[\"stdout\",\"# custom functions\\n\"]\n","[\"stdout\",\"ok 10 should be equal\\n\"]\n","[\"stdout\",\"ok 11 should be equal\\n\"]\n","[\"stdout\",\"# integration\\n\"]\n","[\"stdout\",\"ok 12 should be equal\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"1..12\\n\"]\n","[\"stdout\",\"# tests 12\\n\"]\n","[\"stdout\",\"# pass 12\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"# ok\\n\"]\n"]}}
23
+ ,
24
+ {"id":"ccc87f2e39902598d0895524bd1b3d3b","key":["Colingo/valid-schema.git","e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541"],"value":{"_id":"ccc87f2e39902598d0895524bd1b3d3b","_rev":"1-1593c1bbcf93847eef3c664e11a4c5cc","type":"test","time":1356048463057,"commit":{"id":"e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","dir":"/tmp/ci/work/e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","repo":"Colingo/valid-schema.git","hash":"e15e5caff584f54e10646b53b3bb16de4308d8e7","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048400670.59fcea8f","browser":"opera/12.0","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n","[\"stdout\",\"ok 5 should be equal\\n\"]\n","[\"stdout\",\"# enum case\\n\"]\n","[\"stdout\",\"ok 6 should be equal\\n\"]\n","[\"stdout\",\"ok 7 should be equal\\n\"]\n","[\"stdout\",\"# nested schemas\\n\"]\n","[\"stdout\",\"ok 8 should be equal\\n\"]\n","[\"stdout\",\"ok 9 should be equal\\n\"]\n","[\"stdout\",\"# custom functions\\n\"]\n","[\"stdout\",\"ok 10 should be equal\\n\"]\n","[\"stdout\",\"ok 11 should be equal\\n\"]\n","[\"stdout\",\"# integration\\n\"]\n","[\"stdout\",\"ok 12 should be equal\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"1..12\\n\"]\n","[\"stdout\",\"# tests 12\\n\"]\n","[\"stdout\",\"# pass 12\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"# ok\\n\"]\n"]}}
25
+ ,
26
+ {"id":"ccc87f2e39902598d0895524bd1b335b","key":["Colingo/valid-schema.git","e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541"],"value":{"_id":"ccc87f2e39902598d0895524bd1b335b","_rev":"1-55faab7d20b19d8a747928c8dbd8465b","type":"test","time":1356048460989,"commit":{"id":"e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","dir":"/tmp/ci/work/e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","repo":"Colingo/valid-schema.git","hash":"e15e5caff584f54e10646b53b3bb16de4308d8e7","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048400670.59fcea8f","browser":"chrome/canary","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n","[\"stdout\",\"ok 5 should be equal\\n\"]\n","[\"stdout\",\"# enum case\\n\"]\n","[\"stdout\",\"ok 6 should be equal\\n\"]\n","[\"stdout\",\"ok 7 should be equal\\n\"]\n","[\"stdout\",\"# nested schemas\\n\"]\n","[\"stdout\",\"ok 8 should be equal\\n\"]\n","[\"stdout\",\"ok 9 should be equal\\n\"]\n","[\"stdout\",\"# custom functions\\n\"]\n","[\"stdout\",\"ok 10 should be equal\\n\"]\n","[\"stdout\",\"ok 11 should be equal\\n\"]\n","[\"stdout\",\"# integration\\n\"]\n","[\"stdout\",\"ok 12 should be equal\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"1..12\\n\"]\n","[\"stdout\",\"# tests 12\\n\"]\n","[\"stdout\",\"# pass 12\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"# ok\\n\"]\n"]}}
27
+ ,
28
+ {"id":"ccc87f2e39902598d0895524bd1b3287","key":["Colingo/valid-schema.git","e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541"],"value":{"_id":"ccc87f2e39902598d0895524bd1b3287","_rev":"1-c6a6ede67be18a3367f69011cb6355b8","type":"test","time":1356048458988,"commit":{"id":"e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","dir":"/tmp/ci/work/e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","repo":"Colingo/valid-schema.git","hash":"e15e5caff584f54e10646b53b3bb16de4308d8e7","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048400670.59fcea8f","browser":"chrome/23.0","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n","[\"stdout\",\"ok 5 should be equal\\n\"]\n","[\"stdout\",\"# enum case\\n\"]\n","[\"stdout\",\"ok 6 should be equal\\n\"]\n","[\"stdout\",\"ok 7 should be equal\\n\"]\n","[\"stdout\",\"# nested schemas\\n\"]\n","[\"stdout\",\"ok 8 should be equal\\n\"]\n","[\"stdout\",\"ok 9 should be equal\\n\"]\n","[\"stdout\",\"# custom functions\\n\"]\n","[\"stdout\",\"ok 10 should be equal\\n\"]\n","[\"stdout\",\"ok 11 should be equal\\n\"]\n","[\"stdout\",\"# integration\\n\"]\n","[\"stdout\",\"ok 12 should be equal\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"1..12\\n\"]\n","[\"stdout\",\"# tests 12\\n\"]\n","[\"stdout\",\"# pass 12\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"# ok\\n\"]\n"]}}
29
+ ,
30
+ {"id":"ccc87f2e39902598d0895524bd1b2ffd","key":["Colingo/valid-schema.git","e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541"],"value":{"_id":"ccc87f2e39902598d0895524bd1b2ffd","_rev":"1-bf129b195cb4f9894809cd3e74b9ae89","type":"test","time":1356048453660,"commit":{"id":"e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","dir":"/tmp/ci/work/e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","repo":"Colingo/valid-schema.git","hash":"e15e5caff584f54e10646b53b3bb16de4308d8e7","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048400670.59fcea8f","browser":"chrome/22.0","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n","[\"stdout\",\"ok 5 should be equal\\n\"]\n","[\"stdout\",\"# enum case\\n\"]\n","[\"stdout\",\"ok 6 should be equal\\n\"]\n","[\"stdout\",\"ok 7 should be equal\\n\"]\n","[\"stdout\",\"# nested schemas\\n\"]\n","[\"stdout\",\"ok 8 should be equal\\n\"]\n","[\"stdout\",\"ok 9 should be equal\\n\"]\n","[\"stdout\",\"# custom functions\\n\"]\n","[\"stdout\",\"ok 10 should be equal\\n\"]\n","[\"stdout\",\"ok 11 should be equal\\n\"]\n","[\"stdout\",\"# integration\\n\"]\n","[\"stdout\",\"ok 12 should be equal\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"1..12\\n\"]\n","[\"stdout\",\"# tests 12\\n\"]\n","[\"stdout\",\"# pass 12\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"# ok\\n\"]\n"]}}
31
+ ,
32
+ {"id":"ccc87f2e39902598d0895524bd1b2de4","key":["Colingo/valid-schema.git","e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541"],"value":{"_id":"ccc87f2e39902598d0895524bd1b2de4","_rev":"1-adcd8caa36d3b89df00cc23e4f42ed42","type":"test","time":1356048451312,"commit":{"id":"e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","dir":"/tmp/ci/work/e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","repo":"Colingo/valid-schema.git","hash":"e15e5caff584f54e10646b53b3bb16de4308d8e7","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048400670.59fcea8f","browser":"firefox/nightly","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n","[\"stdout\",\"ok 5 should be equal\\n\"]\n","[\"stdout\",\"# enum case\\n\"]\n","[\"stdout\",\"ok 6 should be equal\\n\"]\n","[\"stdout\",\"ok 7 should be equal\\n\"]\n","[\"stdout\",\"# nested schemas\\n\"]\n","[\"stdout\",\"ok 8 should be equal\\n\"]\n","[\"stdout\",\"ok 9 should be equal\\n\"]\n","[\"stdout\",\"# custom functions\\n\"]\n","[\"stdout\",\"ok 10 should be equal\\n\"]\n","[\"stdout\",\"ok 11 should be equal\\n\"]\n","[\"stdout\",\"# integration\\n\"]\n","[\"stdout\",\"ok 12 should be equal\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"1..12\\n\"]\n","[\"stdout\",\"# tests 12\\n\"]\n","[\"stdout\",\"# pass 12\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"# ok\\n\"]\n"]}}
33
+ ,
34
+ {"id":"ccc87f2e39902598d0895524bd1b2a66","key":["Colingo/valid-schema.git","e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541"],"value":{"_id":"ccc87f2e39902598d0895524bd1b2a66","_rev":"1-76ef93b525cef86ae96a3d3f0c92492d","type":"test","time":1356048449466,"commit":{"id":"e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","dir":"/tmp/ci/work/e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","repo":"Colingo/valid-schema.git","hash":"e15e5caff584f54e10646b53b3bb16de4308d8e7","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048400670.59fcea8f","browser":"firefox/17.0","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n","[\"stdout\",\"ok 5 should be equal\\n\"]\n","[\"stdout\",\"# enum case\\n\"]\n","[\"stdout\",\"ok 6 should be equal\\n\"]\n","[\"stdout\",\"ok 7 should be equal\\n\"]\n","[\"stdout\",\"# nested schemas\\n\"]\n","[\"stdout\",\"ok 8 should be equal\\n\"]\n","[\"stdout\",\"ok 9 should be equal\\n\"]\n","[\"stdout\",\"# custom functions\\n\"]\n","[\"stdout\",\"ok 10 should be equal\\n\"]\n","[\"stdout\",\"ok 11 should be equal\\n\"]\n","[\"stdout\",\"# integration\\n\"]\n","[\"stdout\",\"ok 12 should be equal\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"1..12\\n\"]\n","[\"stdout\",\"# tests 12\\n\"]\n","[\"stdout\",\"# pass 12\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"# ok\\n\"]\n"]}}
35
+ ,
36
+ {"id":"ccc87f2e39902598d0895524bd1b2861","key":["Colingo/valid-schema.git","e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541"],"value":{"_id":"ccc87f2e39902598d0895524bd1b2861","_rev":"1-1107e4e27ab2e4d8402e6e1f38c4ccc0","type":"test","time":1356048447780,"commit":{"id":"e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","dir":"/tmp/ci/work/e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","repo":"Colingo/valid-schema.git","hash":"e15e5caff584f54e10646b53b3bb16de4308d8e7","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048400670.59fcea8f","browser":"firefox/15.0","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n","[\"stdout\",\"ok 5 should be equal\\n\"]\n","[\"stdout\",\"# enum case\\n\"]\n","[\"stdout\",\"ok 6 should be equal\\n\"]\n","[\"stdout\",\"ok 7 should be equal\\n\"]\n","[\"stdout\",\"# nested schemas\\n\"]\n","[\"stdout\",\"ok 8 should be equal\\n\"]\n","[\"stdout\",\"ok 9 should be equal\\n\"]\n","[\"stdout\",\"# custom functions\\n\"]\n","[\"stdout\",\"ok 10 should be equal\\n\"]\n","[\"stdout\",\"ok 11 should be equal\\n\"]\n","[\"stdout\",\"# integration\\n\"]\n","[\"stdout\",\"ok 12 should be equal\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"1..12\\n\"]\n","[\"stdout\",\"# tests 12\\n\"]\n","[\"stdout\",\"# pass 12\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"# ok\\n\"]\n"]}}
37
+ ,
38
+ {"id":"ccc87f2e39902598d0895524bd1b23e4","key":["Colingo/valid-schema.git","e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541"],"value":{"_id":"ccc87f2e39902598d0895524bd1b23e4","_rev":"1-00246209d3d00feb0f24b9f29221884d","type":"test","time":1356048445068,"commit":{"id":"e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","dir":"/tmp/ci/work/e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","repo":"Colingo/valid-schema.git","hash":"e15e5caff584f54e10646b53b3bb16de4308d8e7","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048400670.59fcea8f","browser":"iexplore/9.0","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n","[\"stdout\",\"ok 5 should be equal\\n\"]\n","[\"stdout\",\"# enum case\\n\"]\n","[\"stdout\",\"ok 6 should be equal\\n\"]\n","[\"stdout\",\"ok 7 should be equal\\n\"]\n","[\"stdout\",\"# nested schemas\\n\"]\n","[\"stdout\",\"ok 8 should be equal\\n\"]\n","[\"stdout\",\"ok 9 should be equal\\n\"]\n","[\"stdout\",\"# custom functions\\n\"]\n","[\"stdout\",\"ok 10 should be equal\\n\"]\n","[\"stdout\",\"ok 11 should be equal\\n\"]\n","[\"stdout\",\"# integration\\n\"]\n","[\"stdout\",\"ok 12 should be equal\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"1..12\\n\"]\n","[\"stdout\",\"# tests 12\\n\"]\n","[\"stdout\",\"# pass 12\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"# ok\\n\"]\n"]}}
39
+ ,
40
+ {"id":"ccc87f2e39902598d0895524bd1b20bb","key":["Colingo/valid-schema.git","e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541"],"value":{"_id":"ccc87f2e39902598d0895524bd1b20bb","_rev":"1-c633100234cc2a2cf3f97877fd3efe13","type":"test","time":1356048440576,"commit":{"id":"e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","dir":"/tmp/ci/work/e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","repo":"Colingo/valid-schema.git","hash":"e15e5caff584f54e10646b53b3bb16de4308d8e7","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","17","nightly"],"chrome":["22","23","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1356048400670.59fcea8f","browser":"iexplore/8.0","output":["[\"stdout\",\"TAP version 13\\n\"]\n","[\"stdout\",\"# error case\\n\"]\n","[\"stdout\",\"not ok 1 TypeError: Object doesn't support this property or method\\n\"]\n","[\"stdout\",\" ---\\n\"]\n","[\"stdout\",\" operator: error\\n\"]\n","[\"stdout\",\" expected:\\n\"]\n","[\"stdout\",\" undefined\\n\"]\n","[\"stdout\",\" actual:\\n\"]\n","[\"stdout\",\" {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n\"]\n","[\"stdout\",\" ...\\n\"]\n","[\"stdout\",\"# correct case\\n\"]\n","[\"stdout\",\"not ok 2 TypeError: Object doesn't support this property or method\\n\"]\n","[\"stdout\",\" ---\\n\"]\n","[\"stdout\",\" operator: error\\n\"]\n","[\"stdout\",\" expected:\\n\"]\n","[\"stdout\",\" undefined\\n\"]\n","[\"stdout\",\" actual:\\n\"]\n","[\"stdout\",\" {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n\"]\n","[\"stdout\",\" ...\\n\"]\n","[\"stdout\",\"# number schema\\n\"]\n","[\"stdout\",\"not ok 3 TypeError: Object doesn't support this property or method\\n\"]\n","[\"stdout\",\" ---\\n\"]\n","[\"stdout\",\" operator: error\\n\"]\n","[\"stdout\",\" expected:\\n\"]\n","[\"stdout\",\" undefined\\n\"]\n","[\"stdout\",\" actual:\\n\"]\n","[\"stdout\",\" {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n\"]\n","[\"stdout\",\" ...\\n\"]\n","[\"stdout\",\"# missing properties\\n\"]\n","[\"stdout\",\"not ok 4 TypeError: Object doesn't support this property or method\\n\"]\n","[\"stdout\",\" ---\\n\"]\n","[\"stdout\",\" operator: error\\n\"]\n","[\"stdout\",\" expected:\\n\"]\n","[\"stdout\",\" undefined\\n\"]\n","[\"stdout\",\" actual:\\n\"]\n","[\"stdout\",\" {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n\"]\n","[\"stdout\",\" ...\\n\"]\n","[\"stdout\",\"# enum case\\n\"]\n","[\"stdout\",\"not ok 5 TypeError: Object doesn't support this property or method\\n\"]\n","[\"stdout\",\" ---\\n\"]\n","[\"stdout\",\" operator: error\\n\"]\n","[\"stdout\",\" expected:\\n\"]\n","[\"stdout\",\" undefined\\n\"]\n","[\"stdout\",\" actual:\\n\"]\n","[\"stdout\",\" {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n\"]\n","[\"stdout\",\" ...\\n\"]\n","[\"stdout\",\"# nested schemas\\n\"]\n","[\"stdout\",\"not ok 6 TypeError: Object doesn't support this property or method\\n\"]\n","[\"stdout\",\" ---\\n\"]\n","[\"stdout\",\" operator: error\\n\"]\n","[\"stdout\",\" expected:\\n\"]\n","[\"stdout\",\" undefined\\n\"]\n","[\"stdout\",\" actual:\\n\"]\n","[\"stdout\",\" {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n\"]\n","[\"stdout\",\" ...\\n\"]\n","[\"stdout\",\"# custom functions\\n\"]\n","[\"stdout\",\"not ok 7 TypeError: Object doesn't support this property or method\\n\"]\n","[\"stdout\",\" ---\\n\"]\n","[\"stdout\",\" operator: error\\n\"]\n","[\"stdout\",\" expected:\\n\"]\n","[\"stdout\",\" undefined\\n\"]\n","[\"stdout\",\" actual:\\n\"]\n","[\"stdout\",\" {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n\"]\n","[\"stdout\",\" ...\\n\"]\n","[\"stdout\",\"# integration\\n\"]\n","[\"stdout\",\"not ok 8 TypeError: Object doesn't support this property or method\\n\"]\n","[\"stdout\",\" ---\\n\"]\n","[\"stdout\",\" operator: error\\n\"]\n","[\"stdout\",\" expected:\\n\"]\n","[\"stdout\",\" undefined\\n\"]\n","[\"stdout\",\" actual:\\n\"]\n","[\"stdout\",\" {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n\"]\n","[\"stdout\",\" ...\\n\"]\n","[\"stdout\",\"\\n\"]\n","[\"stdout\",\"1..8\\n\"]\n","[\"stdout\",\"# tests 8\\n\"]\n","[\"stdout\",\"# pass 0\\n\"]\n","[\"stdout\",\"# fail 8\\n\"]\n"]}}
41
+ ,
42
+ {"id":"ccc87f2e39902598d0895524bd1b1a06","key":["Colingo/valid-schema.git","e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541"],"value":{"_id":"ccc87f2e39902598d0895524bd1b1a06","_rev":"1-e26be7bf75738693ea7588e39a056c25","type":"bundle","time":1356048400673,"id":"1356048400670.59fcea8f","commit":{"id":"e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","dir":"/tmp/ci/work/e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541","repo":"Colingo/valid-schema.git","hash":"e15e5caff584f54e10646b53b3bb16de4308d8e7","branch":"master"},"output":["npm"," http GET https://registry.npmjs.org/to-array\n","npm ","http GET https://registry.npmjs.org/tape\n","npm"," http GET https://registry.npmjs.org/browserify\n","npm ","http GET https://registry.npmjs.org/testem\n","npm ","http 304 https://registry.npmjs.org/browserify\n","npm ","http 304 https://registry.npmjs.org/tape\n","npm ","http 304 https://registry.npmjs.org/to-array\n","npm"," http 304 https://registry.npmjs.org/testem\n","npm"," http GET https://registry.npmjs.org/jsonify\n","npm"," http GET https://registry.npmjs.org/deep-equal\n","npm ","http GET https://registry.npmjs.org/defined\n","npm ","http GET https://registry.npmjs.org/detective\n","npm ","http GET https://registry.npmjs.org/buffer-browserify\n","npm"," http ","GET"," https://registry.npmjs.org/deputy\n","npm ","http GET https://registry.npmjs.org/syntax-error\n","npm ","http GET https://registry.npmjs.org/resolve\n","npm ","http GET"," https://registry.npmjs.org/nub\n","npm ","http GET https://registry.npmjs.org/commondir\n","npm ","http GET https://registry.npmjs.org/coffee-script\n","npm ","http GET https://registry.npmjs.org/optimist\n","npm ","http GET https://registry.npmjs.org/http-browserify\n","npm ","http GET https://registry.npmjs.org/vm-browserify\n","npm"," ","http GET https://registry.npmjs.org/crypto-browserify\n","npm"," http GET https://registry.npmjs.org/socket.io/0.9.10\n","npm ","http GET https://registry.npmjs.org/winston/0.3.4\n","npm http"," GET https://registry.npmjs.org/charm/0.0.5\n","npm ","http"," GET https://registry.npmjs.org/js-yaml/0.3.5\n","npm ","http GET https://registry.npmjs.org/glob/3.0.1\n","npm ","http GET https://registry.npmjs.org/commander\n","npm http"," GET https://registry.npmjs.org/async/0.1.15\n","npm http"," GET https://registry.npmjs.org/rimraf\n","npm ","http GET https://registry.npmjs.org/underscore\n","npm ","http GET https://registry.npmjs.org/styled_string\n","npm ","http"," GET https://registry.npmjs.org/backbone\n","npm ","http GET https://registry.npmjs.org/colors\n","npm ","http GET https://registry.npmjs.org/fireworm\n","npm http"," GET https://registry.npmjs.org/express/2.5.10\n","npm ","http GET https://registry.npmjs.org/mustache/0.4.0\n","npm http ","304 https://registry.npmjs.org/defined\n","npm http"," 304 https://registry.npmjs.org/deep-equal\n","npm http"," 304 https://registry.npmjs.org/deputy\n","npm http"," 304 https://registry.npmjs.org/syntax-error\n","npm http 304"," https://registry.npmjs.org/resolve\n","npm http"," 304 https://registry.npmjs.org/nub\n","npm http ","304 https://registry.npmjs.org/commondir\n","npm http"," 304 https://registry.npmjs.org/coffee-script\n","npm http 304"," https://registry.npmjs.org/optimist\n","npm http"," 304 https://registry.npmjs.org/http-browserify\n","npm http 304"," https://registry.npmjs.org/vm-browserify\n","npm http"," 304 https://registry.npmjs.org/crypto-browserify\n","npm http 304"," https://registry.npmjs.org/socket.io/0.9.10\n","npm http"," 304 https://registry.npmjs.org/winston/0.3.4\n","npm http 304 https://registry.npmjs.org/charm/0.0.5\n","npm http"," 304 https://registry.npmjs.org/js-yaml/0.3.5\n","npm http 304"," https://registry.npmjs.org/buffer-browserify\n","npm http"," 304 https://registry.npmjs.org/detective\n","npm"," ","http"," ","304"," https://registry.npmjs.org/commander\n","npm"," ","http"," ","304"," https://registry.npmjs.org/glob/3.0.1\n","npm"," ","http GET https://registry.npmjs.org/mkdirp\n","npm http"," GET https://registry.npmjs.org/esprima\nnpm"," http GET https://registry.npmjs.org/base64-js/0.0.2\n","npm http"," GET https://registry.npmjs.org/concat-stream/0.0.8\n","npm http ","GET https://registry.npmjs.org/wordwrap\n","npm http 304"," https://registry.npmjs.org/async/0.1.15\n","npm http ","304 https://registry.npmjs.org/jsonify\n","npm ","http 304 https://registry.npmjs.org/underscore\n","npm ","http 304 https://registry.npmjs.org/styled_string\n","npm http"," 304 https://registry.npmjs.org/backbone\n","npm ","http 200 https://registry.npmjs.org/rimraf\n","npm http"," GET https://registry.npmjs.org/rimraf/-/rimraf-2.1.0.tgz\n","npm http 304"," https://registry.npmjs.org/colors\n","npm http"," 304 https://registry.npmjs.org/express/2.5.10\n","npm ","http"," 304 https://registry.npmjs.org/fireworm\n","npm http ","304 https://registry.npmjs.org/mustache/0.4.0\n","npm ","WARN package.json mustache@0.4.0 No README.md file found!\n","npm http"," 304 https://registry.npmjs.org/mkdirp\n","npm ","http 304 https://registry.npmjs.org/esprima\n","npm http ","304 https://registry.npmjs.org/concat-stream/0.0.8\n","npm http"," 304 https://registry.npmjs.org/base64-js/0.0.2\n","npm http ","304 https://registry.npmjs.org/wordwrap\n","npm http ","200 https://registry.npmjs.org/rimraf/-/rimraf-2.1.0.tgz\n","npm"," ","http"," ","GET"," https://registry.npmjs.org/graceful-fs\n","npm http"," GET https://registry.npmjs.org/minimatch\n","npm http"," GET https://registry.npmjs.org/minimatch\n","npm http ","GET https://registry.npmjs.org/async\n","npm ","http GET https://registry.npmjs.org/fast-list\n","npm http"," GET https://registry.npmjs.org/connect\n","npm http"," GET https://registry.npmjs.org/socket.io-client/0.9.10\n","npm http"," GET https://registry.npmjs.org/graceful-fs\n","npm http"," GET https://registry.npmjs.org/keypress\n","npm ","http GET https://registry.npmjs.org/mime/1.2.4\n","npm ","http GET https://registry.npmjs.org/qs\n","npm http"," GET https://registry.npmjs.org/mkdirp/0.3.0\n","npm http"," GET https://registry.npmjs.org/set\n","npm ","http GET https://registry.npmjs.org/redis/0.7.2\n","npm ","http GET https://registry.npmjs.org/inherits\n","npm http"," GET https://registry.npmjs.org/policyfile/0.0.4\n","npm http ","GET https://registry.npmjs.org/eyes\n","npm ","http GET https://registry.npmjs.org/loggly\n","npm http ","GET https://registry.npmjs.org/pkginfo\n","npm ","http 304 https://registry.npmjs.org/async\n","npm http 304 https://registry.npmjs.org/graceful-fs\n","npm http"," 304 https://registry.npmjs.org/minimatch\n","npm http"," 304 https://registry.npmjs.org/fast-list\n","npm ","http 304 https://registry.npmjs.org/minimatch\n","npm http ","304 https://registry.npmjs.org/connect\n","npm ","WARN package.json connect@1.9.2 No README.md file found!\n","npm ","http 304 https://registry.npmjs.org/socket.io-client/0.9.10\n","npm http"," 304 https://registry.npmjs.org/graceful-fs\n","npm http"," 304 https://registry.npmjs.org/keypress\n","npm"," http 304 https://registry.npmjs.org/mime/1.2.4\n","npm http"," 304 https://registry.npmjs.org/qs\n","npm http"," 304 https://registry.npmjs.org/mkdirp/0.3.0\n","npm"," http 304"," https://registry.npmjs.org/set\n","npm ","http 304 https://registry.npmjs.org/inherits\n","npm http"," 304 https://registry.npmjs.org/redis/0.7.2\n","npm"," http GET https://registry.npmjs.org/formidable\n","npm"," http GET https://registry.npmjs.org/lru-cache\n","npm ","http GET https://registry.npmjs.org/sigmund\n","npm ","http GET https://registry.npmjs.org/lru-cache\n","npm http"," 304 https://registry.npmjs.org/policyfile/0.0.4\n","npm http 304 https://registry.npmjs.org/pkginfo\n","npm ","http 304 https://registry.npmjs.org/loggly\n","npm http"," 304 https://registry.npmjs.org/eyes\n","npm http"," GET https://registry.npmjs.org/hiredis\n","npm"," http 304 https://registry.npmjs.org/lru-cache\n","npm http ","GET https://registry.npmjs.org/timespan\n","npm http"," GET https://registry.npmjs.org/request\n","npm http ","GET https://registry.npmjs.org/ws\n","npm http"," GET https://registry.npmjs.org/uglify-js/1.2.5\n","npm ","http GET https://registry.npmjs.org/active-x-obfuscator/0.0.1\n","npm ","http GET https://registry.npmjs.org/xmlhttprequest/1.4.2\n","npm"," ","http"," ","304"," https://registry.npmjs.org/lru-cache\n","npm ","http 304 https://registry.npmjs.org/sigmund\n","npm"," ","http"," ","304 https://registry.npmjs.org/ws\n","npm ","http 304 https://registry.npmjs.org/request\n","npm"," ","http"," ","304"," https://registry.npmjs.org/uglify-js/1.2.5\n","npm"," ","http"," ","304"," https://registry.npmjs.org/active-x-obfuscator/0.0.1\n","npm http 304 https://registry.npmjs.org/xmlhttprequest/1.4.2\n","npm"," ","http"," ","GET"," https://registry.npmjs.org/zeparser/0.0.5\n","npm"," http GET https://registry.npmjs.org/commander\n","npm ","http GET https://registry.npmjs.org/tinycolor\n","npm http"," GET https://registry.npmjs.org/options\n","npm"," ","http"," ","304 https://registry.npmjs.org/formidable\n","npm"," ","http"," ","304 https://registry.npmjs.org/tinycolor\n","npm"," ","http"," ","304"," https://registry.npmjs.org/hiredis\n","npm ","WARN package.json hiredis@0.1.14 No README.md file found!\n","\n> hiredis@0.1.14 preinstall /tmp/ci/work/e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis\n> make || gmake\n\n","npm"," ","http 304 https://registry.npmjs.org/timespan\n","cd deps/hiredis && make static\n","make[1]: Entering directory `/tmp/ci/work/e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis/deps/hiredis'\ncc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -g -ggdb net.c\n","npm http 304 https://registry.npmjs.org/options\n","cc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -g -ggdb hiredis.c\n","cc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -g -ggdb sds.c\n","cc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -g -ggdb async.c\n","ar rcs libhiredis.a net.o hiredis.o sds.o async.o\n","make[1]: Leaving directory `/tmp/ci/work/e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis/deps/hiredis'\n","node-waf configure build\n","npm ","http 304 https://registry.npmjs.org/zeparser/0.0.5\n","npm http"," 304 https://registry.npmjs.org/commander\n","\n> ws@0.4.25 install /tmp/ci/work/e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541/node_modules/testem/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws\n> (node-gyp rebuild 2> builderror.log) || (exit 0)\n\n","Traceback (most recent call last):\n File \"/home/testling/installs/node-v0.8.15/bin/node-waf\", line 14, in <module>\n import Scripting\n File \"/home/testling/installs/node-v0.8.15/bin/../lib/node/wafadmin/Scripting.py\", line 146\n except Utils.WafError, e:\n ^\nSyntaxError: invalid syntax\n","make: *** [all] Error 1\n","cd deps/hiredis && gmake static\n","gmake[1]: Entering directory `/tmp/ci/work/e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis/deps/hiredis'\ngmake[1]: Nothing to be done for `static'.\n","gmake[1]: Leaving directory `/tmp/ci/work/e15e5caff584f54e10646b53b3bb16de4308d8e7.1356048400541/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis/deps/hiredis'\n","node-waf configure build\n","Traceback (most recent call last):\n File \"/home/testling/installs/node-v0.8.15/bin/node-waf\", line 14, in <module>\n import Scripting\n File \"/home/testling/installs/node-v0.8.15/bin/../lib/node/wafadmin/Scripting.py\", line 146\n except Utils.WafError, e:\n ^\nSyntaxError: invalid syntax\n","gmake: *** [all] Error 1\n","npm"," ","WARN"," ","optional dep failed, continuing"," hiredis@0.1.14\n","to-array@0.1.3 node_modules/to-array\n\ntape@0.1.3 node_modules/tape\n├── deep-equal@0.0.0\n├── defined@0.0.0\n└── jsonify@0.0.0\n\nbrowserify@1.16.6 node_modules/browserify\n├── nub@0.0.0\n├── commondir@0.0.1\n├── vm-browserify@0.0.1\n├── crypto-browserify@0.1.2\n├── resolve@0.2.3\n├── coffee-script@1.4.0\n├── deputy@0.0.4 (mkdirp@0.3.4)\n├── http-browserify@0.1.6 (concat-stream@0.0.8)\n├── buffer-browserify@0.0.4 (base64-js@0.0.2)\n├── optimist@0.3.5 (wordwrap@0.0.2)\n├── syntax-error@0.0.0 (esprima@0.9.9)\n└── detective@0.2.1 (esprima@0.9.9)\n\ntestem@0.2.50 node_modules/testem\n├── styled_string@0.0.1\n├── colors@0.6.0-1\n├── mustache@0.4.0\n├── charm@0.0.5\n├── backbone@0.9.9\n├── async@0.1.15\n├── underscore@1.4.3\n├── js-yaml@0.3.5\n├── rimraf@2.1.0 (graceful-fs@1.1.14)\n├── commander@1.1.1 (keypress@0.1.0)\n├── glob@3.0.1 (inherits@1.0.0, graceful-fs@1.1.14, fast-list@1.0.2, minimatch@0.1.5)\n├── fireworm@0.0.8 (set@1.0.0, async@0.1.22, minimatch@0.2.9)\n├── express@2.5.10 (qs@0.4.2, mkdirp@0.3.0, mime@1.2.4, connect@1.9.2)\n├── winston@0.3.4 (eyes@0.1.8, pkginfo@0.2.3, loggly@0.3.11)\n└── socket.io@0.9.10 (policyfile@0.0.4, redis@0.7.2, socket.io-client@0.9.10)\n"]}}
43
+ ,
44
+ {"id":"ccc87f2e39902598d0895524bd1b0af9","key":["Colingo/valid-schema.git","bed4fbe2551a4be02a5169086c1754ad5bd73a48.1355971588291"],"value":{"_id":"ccc87f2e39902598d0895524bd1b0af9","_rev":"1-fd584f457f90e32b6580df54636b6638","type":"bundle","time":1355971588427,"id":"1355971588426.a384c25f","commit":{"id":"bed4fbe2551a4be02a5169086c1754ad5bd73a48.1355971588291","dir":"/tmp/ci/work/bed4fbe2551a4be02a5169086c1754ad5bd73a48.1355971588291","repo":"Colingo/valid-schema.git","hash":"bed4fbe2551a4be02a5169086c1754ad5bd73a48","branch":"master"},"output":["npm"," ","http ","GET"," https://registry.npmjs.org/to-array\n","npm http"," GET https://registry.npmjs.org/testem\n","npm http"," GET https://registry.npmjs.org/tape\n","npm ","http GET https://registry.npmjs.org/browserify\n","npm http"," 304 https://registry.npmjs.org/tape\n","npm"," http GET https://registry.npmjs.org/tape/-/tape-0.1.3.tgz\n","npm http 304"," https://registry.npmjs.org/browserify\n","npm"," http 200 https://registry.npmjs.org/tape/-/tape-0.1.3.tgz\n","npm"," http 200 https://registry.npmjs.org/testem\n","npm"," ","http"," ","GET"," https://registry.npmjs.org/testem/-/testem-0.2.50.tgz\n","npm"," http 200 https://registry.npmjs.org/testem/-/testem-0.2.50.tgz\n","npm"," http 200 https://registry.npmjs.org/to-array\n","npm http"," GET https://registry.npmjs.org/to-array/-/to-array-0.1.3.tgz\n","npm ","http 200 https://registry.npmjs.org/to-array/-/to-array-0.1.3.tgz\n","npm"," ","http"," ","GET"," https://registry.npmjs.org/jsonify\n","npm"," ","http"," ","GET"," https://registry.npmjs.org/defined\n","npm"," ","http"," ","GET"," https://registry.npmjs.org/deep-equal\n","npm"," http 304 https://registry.npmjs.org/jsonify\n","npm http"," 304 https://registry.npmjs.org/defined\n","npm http ","304 https://registry.npmjs.org/deep-equal\n","npm http"," ","GET"," https://registry.npmjs.org/detective\n","npm ","http GET https://registry.npmjs.org/buffer-browserify\n","npm"," ","http GET https://registry.npmjs.org/coffee-script\n","npm ","http GET https://registry.npmjs.org/deputy\n","npm http"," GET https://registry.npmjs.org/nub\n","npm"," http GET https://registry.npmjs.org/resolve\n","npm ","http ","GET https://registry.npmjs.org/commondir\n","npm ","http GET https://registry.npmjs.org/syntax-error\n","npm ","http GET https://registry.npmjs.org/vm-browserify\n","npm http"," GET https://registry.npmjs.org/optimist\n","npm ","http GET https://registry.npmjs.org/crypto-browserify\n","npm"," http GET https://registry.npmjs.org/http-browserify\n","npm http"," 304 https://registry.npmjs.org/buffer-browserify\n","npm http"," 304 https://registry.npmjs.org/resolve\n","npm http"," 304 https://registry.npmjs.org/coffee-script\n","npm ","http 304 https://registry.npmjs.org/nub\n","npm http ","304 https://registry.npmjs.org/deputy\n","npm"," http 304 https://registry.npmjs.org/commondir\n","npm ","http 304 https://registry.npmjs.org/syntax-error\n","npm ","http 304 https://registry.npmjs.org/detective\n","npm http"," 304 https://registry.npmjs.org/vm-browserify\n","npm http"," 304 https://registry.npmjs.org/http-browserify\n","npm http"," 200 https://registry.npmjs.org/crypto-browserify\n","npm http"," GET https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-0.1.2.tgz\n","npm http"," 200 https://registry.npmjs.org/optimist\n","npm http ","200 https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-0.1.2.tgz\n","npm http ","GET https://registry.npmjs.org/mkdirp\n","npm"," http GET https://registry.npmjs.org/esprima\n","npm"," http GET https://registry.npmjs.org/wordwrap\n","npm http"," GET https://registry.npmjs.org/base64-js/0.0.2\n","npm ","http GET https://registry.npmjs.org/concat-stream/0.0.8\n","npm"," ","http"," ","304"," https://registry.npmjs.org/concat-stream/0.0.8\n","npm ","http ","304 https://registry.npmjs.org/mkdirp\n","npm ","http 304 https://registry.npmjs.org/wordwrap\n","npm ","http"," 304 https://registry.npmjs.org/base64-js/0.0.2\n","npm ","http 304 https://registry.npmjs.org/esprima\n","npm ","http GET https://registry.npmjs.org/mustache/0.4.0\n","npm ","http GET https://registry.npmjs.org/winston/0.3.4\n","npm ","http GET https://registry.npmjs.org/express/2.5.10\n","npm http"," GET https://registry.npmjs.org/socket.io/0.9.10\n","npm http"," GET https://registry.npmjs.org/js-yaml/0.3.5\n","npm ","http GET https://registry.npmjs.org/glob/3.0.1\n","npm ","http GET https://registry.npmjs.org/charm/0.0.5\n","npm ","http GET https://registry.npmjs.org/rimraf\n","npm ","http GET https://registry.npmjs.org/styled_string\n","npm ","http GET https://registry.npmjs.org/async/0.1.15\n","npm"," http"," ","GET https://registry.npmjs.org/underscore\n","npm ","http GET https://registry.npmjs.org/backbone\n","npm"," ","http"," ","GET"," https://registry.npmjs.org/fireworm\n","npm"," ","http"," ","GET https://registry.npmjs.org/colors\n","npm"," ","http"," ","GET"," https://registry.npmjs.org/commander\n","npm"," ","http"," ","200 https://registry.npmjs.org/mustache/0.4.0\n","npm ","http GET https://registry.npmjs.org/mustache/-/mustache-0.4.0.tgz\n","npm http ","200 https://registry.npmjs.org/js-yaml/0.3.5\n","npm http ","200 https://registry.npmjs.org/winston/0.3.4\n","npm ","http GET https://registry.npmjs.org/js-yaml/-/js-yaml-0.3.5.tgz\n","npm ","http GET https://registry.npmjs.org/winston/-/winston-0.3.4.tgz\n","npm http"," 200 https://registry.npmjs.org/glob/3.0.1\n","npm http ","200 https://registry.npmjs.org/express/2.5.10\n","npm ","http GET https://registry.npmjs.org/glob/-/glob-3.0.1.tgz\n","npm http"," 200 https://registry.npmjs.org/socket.io/0.9.10\n","npm ","http GET https://registry.npmjs.org/express/-/express-2.5.10.tgz\nnpm http GET https://registry.npmjs.org/socket.io/-/socket.io-0.9.10.tgz\n","npm ","http 200 https://registry.npmjs.org/charm/0.0.5\n","npm ","http GET https://registry.npmjs.org/charm/-/charm-0.0.5.tgz\n","npm ","http 200 https://registry.npmjs.org/rimraf\n","npm ","http 200 https://registry.npmjs.org/styled_string\n","npm http"," 200 https://registry.npmjs.org/async/0.1.15\n","npm ","http GET https://registry.npmjs.org/async/-/async-0.1.15.tgz\n","npm ","http GET https://registry.npmjs.org/rimraf/-/rimraf-2.0.3.tgz\n","npm"," http GET"," https://registry.npmjs.org/styled_string/-/styled_string-0.0.1.tgz\n","npm http"," 200 https://registry.npmjs.org/underscore\n","npm ","http GET https://registry.npmjs.org/underscore/-/underscore-1.4.3.tgz\n","npm http"," 304 https://registry.npmjs.org/colors\n","npm http"," 200 https://registry.npmjs.org/mustache/-/mustache-0.4.0.tgz\n","npm http ","200 https://registry.npmjs.org/fireworm\n","npm http"," GET https://registry.npmjs.org/fireworm/-/fireworm-0.0.8.tgz\n","npm http"," 200 https://registry.npmjs.org/js-yaml/-/js-yaml-0.3.5.tgz\n","npm ","WARN package.json mustache@0.4.0 No README.md file found!\n","npm http ","200 https://registry.npmjs.org/backbone\n","npm ","http GET https://registry.npmjs.org/backbone/-/backbone-0.9.9.tgz\n","npm http"," 200 https://registry.npmjs.org/winston/-/winston-0.3.4.tgz\n","npm ","http 200 https://registry.npmjs.org/glob/-/glob-3.0.1.tgz\n","npm http"," 200 https://registry.npmjs.org/express/-/express-2.5.10.tgz\n","npm http"," 200 https://registry.npmjs.org/socket.io/-/socket.io-0.9.10.tgz\n","npm http"," 200 https://registry.npmjs.org/charm/-/charm-0.0.5.tgz\n","npm ","http 200 https://registry.npmjs.org/commander\n","npm http ","200 https://registry.npmjs.org/styled_string/-/styled_string-0.0.1.tgz\n","npm ","http 200 https://registry.npmjs.org/rimraf/-/rimraf-2.0.3.tgz\n","npm ","http 200 https://registry.npmjs.org/async/-/async-0.1.15.tgz\n","npm http"," 200 https://registry.npmjs.org/backbone/-/backbone-0.9.9.tgz\n","npm ","http 200 https://registry.npmjs.org/fireworm/-/fireworm-0.0.8.tgz\n","npm ","http 200 https://registry.npmjs.org/underscore/-/underscore-1.4.3.tgz\n","npm ","http GET https://registry.npmjs.org/graceful-fs\n","npm ","http GET https://registry.npmjs.org/minimatch\n","npm ","http GET https://registry.npmjs.org/fast-list\n","npm http"," GET https://registry.npmjs.org/minimatch\n","npm ","http GET https://registry.npmjs.org/graceful-fs\n","npm ","http GET https://registry.npmjs.org/set\n","npm"," http GET https://registry.npmjs.org/inherits\n","npm"," http GET https://registry.npmjs.org/socket.io-client/0.9.10\n","npm http"," GET https://registry.npmjs.org/redis/0.7.2\n","npm ","http GET https://registry.npmjs.org/connect\n","npm ","http GET https://registry.npmjs.org/mime/1.2.4\n","npm ","http GET https://registry.npmjs.org/mkdirp/0.3.0\n","npm ","http GET https://registry.npmjs.org/keypress\n","npm"," http GET https://registry.npmjs.org/eyes\n","npm ","http GET https://registry.npmjs.org/loggly\n","npm http"," GET https://registry.npmjs.org/async\n","npm ","http GET https://registry.npmjs.org/qs\n","npm ","http GET https://registry.npmjs.org/policyfile/0.0.4\n","npm http"," GET https://registry.npmjs.org/pkginfo\n","npm http ","200 https://registry.npmjs.org/fast-list\n","npm ","http GET https://registry.npmjs.org/fast-list/-/fast-list-1.0.2.tgz\n","npm ","http 200 https://registry.npmjs.org/graceful-fs\n","npm ","http GET https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.1.14.tgz\n","npm http"," ","200"," https://registry.npmjs.org/graceful-fs\n","npm http"," 200 https://registry.npmjs.org/set\n","npm http"," GET https://registry.npmjs.org/set/-/set-1.0.0.tgz\n","npm http"," 200 https://registry.npmjs.org/minimatch\n","npm ","http GET https://registry.npmjs.org/minimatch/-/minimatch-0.2.9.tgz\n","npm http"," 200 https://registry.npmjs.org/inherits\n","npm ","http GET https://registry.npmjs.org/inherits/-/inherits-1.0.0.tgz\n","npm ","http 304 https://registry.npmjs.org/connect\n","npm http"," 200 https://registry.npmjs.org/socket.io-client/0.9.10\n","npm ","http 200 https://registry.npmjs.org/minimatch\n","npm"," ","http"," ","GET https://registry.npmjs.org/socket.io-client/-/socket.io-client-0.9.10.tgz\n","npm ","http 304 https://registry.npmjs.org/mime/1.2.4\n","npm ","http 200 https://registry.npmjs.org/redis/0.7.2\n","npm http"," GET https://registry.npmjs.org/minimatch/-/minimatch-0.1.5.tgz\n","npm http"," GET https://registry.npmjs.org/redis/-/redis-0.7.2.tgz\n","npm ","WARN package.json connect@1.9.2 No README.md file found!\n","npm http"," 304 https://registry.npmjs.org/mkdirp/0.3.0\n","npm"," http 304 https://registry.npmjs.org/keypress\n","npm ","http 304 https://registry.npmjs.org/qs\n","npm http"," 200 https://registry.npmjs.org/eyes\n","npm http"," GET https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz\n","npm ","http"," 200 https://registry.npmjs.org/loggly\n","npm http"," 304 https://registry.npmjs.org/policyfile/0.0.4\n","npm http"," GET https://registry.npmjs.org/loggly/-/loggly-0.3.11.tgz\n","npm http ","200 https://registry.npmjs.org/fast-list/-/fast-list-1.0.2.tgz\n","npm http"," 304 https://registry.npmjs.org/pkginfo\n","npm http 200"," https://registry.npmjs.org/set/-/set-1.0.0.tgz\n","npm ","http 200 https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.1.14.tgz\n","npm http"," 200 https://registry.npmjs.org/minimatch/-/minimatch-0.2.9.tgz\n","npm ","http 200 https://registry.npmjs.org/inherits/-/inherits-1.0.0.tgz\n","npm http"," 200 https://registry.npmjs.org/socket.io-client/-/socket.io-client-0.9.10.tgz\n","npm"," http 200 https://registry.npmjs.org/minimatch/-/minimatch-0.1.5.tgz\n","npm http"," 200 https://registry.npmjs.org/redis/-/redis-0.7.2.tgz\n","npm http 200"," https://registry.npmjs.org/async\n","npm"," http 200 https://registry.npmjs.org/loggly/-/loggly-0.3.11.tgz\n","npm http"," 200 https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz\n","npm"," ","http"," ","GET"," https://registry.npmjs.org/formidable\n","npm http"," GET https://registry.npmjs.org/lru-cache\n","npm http"," GET https://registry.npmjs.org/lru-cache\n","npm http"," GET https://registry.npmjs.org/sigmund\n","npm http ","304 https://registry.npmjs.org/formidable\n","npm http"," 200 https://registry.npmjs.org/sigmund\n","npm ","http GET https://registry.npmjs.org/sigmund/-/sigmund-1.0.0.tgz\n","npm http"," 200 https://registry.npmjs.org/lru-cache\n","npm"," http 200 https://registry.npmjs.org/lru-cache\n","npm http"," GET https://registry.npmjs.org/lru-cache/-/lru-cache-1.0.6.tgz\n","npm ","http GET https://registry.npmjs.org/lru-cache/-/lru-cache-2.0.4.tgz\n","npm"," http GET https://registry.npmjs.org/request\n","npm http"," GET https://registry.npmjs.org/timespan\n","npm http ","200 https://registry.npmjs.org/sigmund/-/sigmund-1.0.0.tgz\n","npm http ","200 https://registry.npmjs.org/lru-cache/-/lru-cache-1.0.6.tgz\n","npm http ","200 https://registry.npmjs.org/lru-cache/-/lru-cache-2.0.4.tgz\n","npm ","http 200 https://registry.npmjs.org/timespan\n","npm http"," GET https://registry.npmjs.org/timespan/-/timespan-2.2.0.tgz\n","npm ","http 200 https://registry.npmjs.org/request\n","npm http"," GET https://registry.npmjs.org/request/-/request-2.9.203.tgz\n","npm ","http 200 https://registry.npmjs.org/timespan/-/timespan-2.2.0.tgz\n","npm http"," 200 https://registry.npmjs.org/request/-/request-2.9.203.tgz\n","npm"," ","http"," ","GET https://registry.npmjs.org/hiredis\n","npm http"," 200 https://registry.npmjs.org/hiredis\n","npm http"," GET https://registry.npmjs.org/hiredis/-/hiredis-0.1.14.tgz\n","npm http ","200 https://registry.npmjs.org/hiredis/-/hiredis-0.1.14.tgz\n","npm http"," GET https://registry.npmjs.org/uglify-js/1.2.5\n","npm ","http GET https://registry.npmjs.org/xmlhttprequest/1.4.2\n","npm ","http GET https://registry.npmjs.org/ws\n","npm ","http GET https://registry.npmjs.org/active-x-obfuscator/0.0.1\n","npm ","WARN package.json hiredis@0.1.14 No README.md file found!\n","npm ","http 304 https://registry.npmjs.org/xmlhttprequest/1.4.2\n","npm http"," 304 https://registry.npmjs.org/uglify-js/1.2.5\n","npm http"," 304 https://registry.npmjs.org/active-x-obfuscator/0.0.1\n","npm http ","200 https://registry.npmjs.org/ws\n","npm http"," GET https://registry.npmjs.org/ws/-/ws-0.4.25.tgz\n","\n> hiredis@0.1.14 preinstall /tmp/ci/work/bed4fbe2551a4be02a5169086c1754ad5bd73a48.1355971588291/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis\n> make || gmake\n\n","cd deps/hiredis && make static\n","make[1]: Entering directory `/tmp/ci/work/bed4fbe2551a4be02a5169086c1754ad5bd73a48.1355971588291/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis/deps/hiredis'\ncc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -g -ggdb net.c\n","npm"," http 200 https://registry.npmjs.org/ws/-/ws-0.4.25.tgz\n","npm"," ","http"," ","GET https://registry.npmjs.org/zeparser/0.0.5\n","npm http ","GET https://registry.npmjs.org/commander\n","npm ","http GET https://registry.npmjs.org/options\n","npm http"," GET https://registry.npmjs.org/tinycolor\n","npm http ","304 https://registry.npmjs.org/zeparser/0.0.5\n","npm http 304"," https://registry.npmjs.org/options\n","npm ","http 304 https://registry.npmjs.org/commander\n","cc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -g -ggdb hiredis.c\n","npm ","http 304 https://registry.npmjs.org/tinycolor\n","\n> ws@0.4.25 install /tmp/ci/work/bed4fbe2551a4be02a5169086c1754ad5bd73a48.1355971588291/node_modules/testem/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws\n> (node-gyp rebuild 2> builderror.log) || (exit 0)\n\n","cc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -g -ggdb sds.c\n","cc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -g -ggdb async.c\n","ar rcs libhiredis.a net.o hiredis.o sds.o async.o\n","make[1]: Leaving directory `/tmp/ci/work/bed4fbe2551a4be02a5169086c1754ad5bd73a48.1355971588291/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis/deps/hiredis'\n","node-waf configure build\n","Traceback (most recent call last):\n File \"/home/testling/installs/node-v0.8.15/bin/node-waf\", line 14, in <module>\n import Scripting\n File \"/home/testling/installs/node-v0.8.15/bin/../lib/node/wafadmin/Scripting.py\", line 146\n except Utils.WafError, e:\n ^\nSyntaxError: invalid syntax\n","make: *** [all] Error 1\n","cd deps/hiredis && gmake static\n","gmake[1]: Entering directory `/tmp/ci/work/bed4fbe2551a4be02a5169086c1754ad5bd73a48.1355971588291/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis/deps/hiredis'\ngmake[1]: Nothing to be done for `static'.\n","gmake[1]: Leaving directory `/tmp/ci/work/bed4fbe2551a4be02a5169086c1754ad5bd73a48.1355971588291/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis/deps/hiredis'\n","node-waf configure build\n","Traceback (most recent call last):\n File \"/home/testling/installs/node-v0.8.15/bin/node-waf\", line 14, in <module>\n import Scripting\n File \"/home/testling/installs/node-v0.8.15/bin/../lib/node/wafadmin/Scripting.py\", line 146\n except Utils.WafError, e:\n ^\nSyntaxError: invalid syntax\n","gmake: *** [all] Error 1\n","npm"," WARN optional dep failed, continuing hiredis@0.1.14\n","to-array@0.1.3 node_modules/to-array\n\ntape@0.1.3 node_modules/tape\n├── deep-equal@0.0.0\n├── defined@0.0.0\n└── jsonify@0.0.0\n\nbrowserify@1.16.6 node_modules/browserify\n├── nub@0.0.0\n├── commondir@0.0.1\n├── vm-browserify@0.0.1\n├── crypto-browserify@0.1.2\n├── resolve@0.2.3\n├── coffee-script@1.4.0\n├── deputy@0.0.4 (mkdirp@0.3.4)\n├── http-browserify@0.1.6 (concat-stream@0.0.8)\n├── buffer-browserify@0.0.4 (base64-js@0.0.2)\n├── optimist@0.3.5 (wordwrap@0.0.2)\n├── syntax-error@0.0.0 (esprima@0.9.9)\n└── detective@0.2.1 (esprima@0.9.9)\n\ntestem@0.2.50 node_modules/testem\n├── styled_string@0.0.1\n├── mustache@0.4.0\n├── colors@0.6.0-1\n├── charm@0.0.5\n├── backbone@0.9.9\n├── async@0.1.15\n├── underscore@1.4.3\n├── js-yaml@0.3.5\n├── commander@1.1.1 (keypress@0.1.0)\n├── rimraf@2.0.3 (graceful-fs@1.1.14)\n├── express@2.5.10 (mkdirp@0.3.0, mime@1.2.4, qs@0.4.2, connect@1.9.2)\n├── glob@3.0.1 (inherits@1.0.0, graceful-fs@1.1.14, fast-list@1.0.2, minimatch@0.1.5)\n├── fireworm@0.0.8 (set@1.0.0, async@0.1.22, minimatch@0.2.9)\n├── winston@0.3.4 (eyes@0.1.8, pkginfo@0.2.3, loggly@0.3.11)\n└── socket.io@0.9.10 (policyfile@0.0.4, redis@0.7.2, socket.io-client@0.9.10)\n","Expressions in require() statements:\n"," require(file)\n","\n","/home/testling/projects/testling-ci/git/node_modules/browserify/lib/wrap.js:459\n"," throw moduleError('Cannot find module');\n"," "," "," "," "," ^\n","Error: Cannot find module: \"./lib/default_stream\" from directory \"/tmp/ci/work/bed4fbe2551a4be02a5169086c1754ad5bd73a48.1355971588291/test\" while processing file /tmp/ci/work/bed4fbe2551a4be02a5169086c1754ad5bd73a48.1355971588291/test/bundle.js\n at moduleError (/home/testling/projects/testling-ci/git/node_modules/browserify/lib/wrap.js:420:16)\n at Function.Wrap.require (/home/testling/projects/testling-ci/git/node_modules/browserify/lib/wrap.js:459:19)\n at Function.module.exports.Object.keys.forEach.self.(anonymous function) [as require] (/home/testling/projects/testling-ci/git/node_modules/browserify/index.js:158:28)\n at Wrap.require (/home/testling/projects/testling-ci/git/node_modules/browserify/lib/wrap.js:541:14)\n at Array.forEach (native)\n at Function.Wrap.require (/home/testling/projects/testling-ci/git/node_modules/browserify/lib/wrap.js:533:27)\n at Function.module.exports.Object.keys.forEach.self.(anonymous function) [as require] (/home/testling/projects/testling-ci/git/node_modules/browserify/index.js:158:28)\n at /home/testling/projects/testling-ci/git/bin/bundle.js:62:12\n at Array.forEach (native)\n at Object.<anonymous> (/home/testling/projects/testling-ci/git/bin/bundle.js:61:7)\n","\nerror creating bundle\n"]}}
45
+ ,
46
+ {"id":"ccc87f2e39902598d0895524bd0a81a8","key":["Colingo/valid-schema.git","9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971"],"value":{"_id":"ccc87f2e39902598d0895524bd0a81a8","_rev":"1-2804e4d885d94f67d8ef2e53d31d5771","type":"test","time":1355342972053,"commit":{"id":"9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971","dir":"/tmp/ci/work/9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971","repo":"Colingo/valid-schema.git","hash":"9e83702a1bcd533635df5c7cd8390239c02913f4","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355342944066.ec53ec1","browser":"safari/5.1","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..2\\n\\n\"]\n","[\"stdout\",\"# tests 2\\n\\n\"]\n","[\"stdout\",\"# pass 2\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
47
+ ,
48
+ {"id":"ccc87f2e39902598d0895524bd0a7b2a","key":["Colingo/valid-schema.git","9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971"],"value":{"_id":"ccc87f2e39902598d0895524bd0a7b2a","_rev":"1-3f5c237bea258d2c8b767278d05e0741","type":"test","time":1355342967212,"commit":{"id":"9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971","dir":"/tmp/ci/work/9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971","repo":"Colingo/valid-schema.git","hash":"9e83702a1bcd533635df5c7cd8390239c02913f4","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355342944066.ec53ec1","browser":"opera/12.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..2\\n\\n\"]\n","[\"stdout\",\"# tests 2\\n\\n\"]\n","[\"stdout\",\"# pass 2\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
49
+ ,
50
+ {"id":"ccc87f2e39902598d0895524bd0a6c3e","key":["Colingo/valid-schema.git","9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971"],"value":{"_id":"ccc87f2e39902598d0895524bd0a6c3e","_rev":"1-90b5a3798ded4e5e979da8a1bdeb474e","type":"test","time":1355342962096,"commit":{"id":"9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971","dir":"/tmp/ci/work/9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971","repo":"Colingo/valid-schema.git","hash":"9e83702a1bcd533635df5c7cd8390239c02913f4","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355342944066.ec53ec1","browser":"chrome/canary","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..2\\n\\n\"]\n","[\"stdout\",\"# tests 2\\n\\n\"]\n","[\"stdout\",\"# pass 2\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
51
+ ,
52
+ {"id":"ccc87f2e39902598d0895524bd0a6c33","key":["Colingo/valid-schema.git","9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971"],"value":{"_id":"ccc87f2e39902598d0895524bd0a6c33","_rev":"1-5a705132434b46d2b73f7e6fe7cf6ec3","type":"test","time":1355342957483,"commit":{"id":"9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971","dir":"/tmp/ci/work/9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971","repo":"Colingo/valid-schema.git","hash":"9e83702a1bcd533635df5c7cd8390239c02913f4","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355342944066.ec53ec1","browser":"chrome/22.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..2\\n\\n\"]\n","[\"stdout\",\"# tests 2\\n\\n\"]\n","[\"stdout\",\"# pass 2\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
53
+ ,
54
+ {"id":"ccc87f2e39902598d0895524bd0a6c28","key":["Colingo/valid-schema.git","9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971"],"value":{"_id":"ccc87f2e39902598d0895524bd0a6c28","_rev":"1-9ad8fe3db87704bfaa4661bf328d275a","type":"test","time":1355342954792,"commit":{"id":"9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971","dir":"/tmp/ci/work/9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971","repo":"Colingo/valid-schema.git","hash":"9e83702a1bcd533635df5c7cd8390239c02913f4","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355342944066.ec53ec1","browser":"firefox/nightly","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..2\\n\\n\"]\n","[\"stdout\",\"# tests 2\\n\\n\"]\n","[\"stdout\",\"# pass 2\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
55
+ ,
56
+ {"id":"ccc87f2e39902598d0895524bd0a69f8","key":["Colingo/valid-schema.git","9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971"],"value":{"_id":"ccc87f2e39902598d0895524bd0a69f8","_rev":"1-a738458dcd33468b2d21b035c9d66252","type":"test","time":1355342953580,"commit":{"id":"9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971","dir":"/tmp/ci/work/9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971","repo":"Colingo/valid-schema.git","hash":"9e83702a1bcd533635df5c7cd8390239c02913f4","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355342944066.ec53ec1","browser":"firefox/15.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..2\\n\\n\"]\n","[\"stdout\",\"# tests 2\\n\\n\"]\n","[\"stdout\",\"# pass 2\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
57
+ ,
58
+ {"id":"ccc87f2e39902598d0895524bd0a638d","key":["Colingo/valid-schema.git","9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971"],"value":{"_id":"ccc87f2e39902598d0895524bd0a638d","_rev":"1-58328bdc8cf698364a58f7afc72d9b7e","type":"test","time":1355342951414,"commit":{"id":"9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971","dir":"/tmp/ci/work/9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971","repo":"Colingo/valid-schema.git","hash":"9e83702a1bcd533635df5c7cd8390239c02913f4","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355342944066.ec53ec1","browser":"iexplore/9.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..2\\n\\n\"]\n","[\"stdout\",\"# tests 2\\n\\n\"]\n","[\"stdout\",\"# pass 2\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
59
+ ,
60
+ {"id":"ccc87f2e39902598d0895524bd0a54ab","key":["Colingo/valid-schema.git","9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971"],"value":{"_id":"ccc87f2e39902598d0895524bd0a54ab","_rev":"1-0ef26c3c4cade634eeff28cb3cebfd69","type":"test","time":1355342946708,"commit":{"id":"9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971","dir":"/tmp/ci/work/9e83702a1bcd533635df5c7cd8390239c02913f4.1355342943971","repo":"Colingo/valid-schema.git","hash":"9e83702a1bcd533635df5c7cd8390239c02913f4","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355342944066.ec53ec1","browser":"iexplore/8.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"not ok 1 TypeError: Object doesn't support this property or method\\n ---\\n operator: error\\n expected:\\n undefined\\n actual:\\n {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n ...\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"not ok 2 TypeError: Object doesn't support this property or method\\n ---\\n operator: error\\n expected:\\n undefined\\n actual:\\n {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n ...\\n\\n\"]\n","[\"stdout\",\"\\n1..2\\n\\n\"]\n","[\"stdout\",\"# tests 2\\n\\n\"]\n","[\"stdout\",\"# pass 0\\n\\n\"]\n","[\"stdout\",\"# fail 2\\n\\n\"]\n"]}}
61
+ ,
62
+ {"id":"ccc87f2e39902598d0895524bd0a4827","key":["Colingo/valid-schema.git","94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986"],"value":{"_id":"ccc87f2e39902598d0895524bd0a4827","_rev":"1-a450d8883133a069a9c791745adfb64f","type":"test","time":1355342828797,"commit":{"id":"94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986","dir":"/tmp/ci/work/94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986","repo":"Colingo/valid-schema.git","hash":"94553b0cb58b6e987b101ee0e1b19829483b40bf","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355342809092.9161426","browser":"safari/5.1","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..2\\n\\n\"]\n","[\"stdout\",\"# tests 2\\n\\n\"]\n","[\"stdout\",\"# pass 2\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
63
+ ,
64
+ {"id":"ccc87f2e39902598d0895524bd0a3897","key":["Colingo/valid-schema.git","94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986"],"value":{"_id":"ccc87f2e39902598d0895524bd0a3897","_rev":"1-b7ae9464fd44ea1b9eeec24ce39b5803","type":"test","time":1355342827483,"commit":{"id":"94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986","dir":"/tmp/ci/work/94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986","repo":"Colingo/valid-schema.git","hash":"94553b0cb58b6e987b101ee0e1b19829483b40bf","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355342809092.9161426","browser":"opera/12.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..2\\n\\n\"]\n","[\"stdout\",\"# tests 2\\n\\n\"]\n","[\"stdout\",\"# pass 2\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
65
+ ,
66
+ {"id":"ccc87f2e39902598d0895524bd0a309f","key":["Colingo/valid-schema.git","94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986"],"value":{"_id":"ccc87f2e39902598d0895524bd0a309f","_rev":"1-06ee417cb755b580fa9eb83507280406","type":"test","time":1355342825779,"commit":{"id":"94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986","dir":"/tmp/ci/work/94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986","repo":"Colingo/valid-schema.git","hash":"94553b0cb58b6e987b101ee0e1b19829483b40bf","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355342809092.9161426","browser":"chrome/canary","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..2\\n\\n\"]\n","[\"stdout\",\"# tests 2\\n\\n\"]\n","[\"stdout\",\"# pass 2\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
67
+ ,
68
+ {"id":"ccc87f2e39902598d0895524bd0a263c","key":["Colingo/valid-schema.git","94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986"],"value":{"_id":"ccc87f2e39902598d0895524bd0a263c","_rev":"1-c7e42770f8f9cfd9f9170752c7806ab5","type":"test","time":1355342824075,"commit":{"id":"94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986","dir":"/tmp/ci/work/94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986","repo":"Colingo/valid-schema.git","hash":"94553b0cb58b6e987b101ee0e1b19829483b40bf","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355342809092.9161426","browser":"chrome/22.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..2\\n\\n\"]\n","[\"stdout\",\"# tests 2\\n\\n\"]\n","[\"stdout\",\"# pass 2\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
69
+ ,
70
+ {"id":"ccc87f2e39902598d0895524bd0a256e","key":["Colingo/valid-schema.git","94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986"],"value":{"_id":"ccc87f2e39902598d0895524bd0a256e","_rev":"1-03389997737a684771d4c3771f0d57ad","type":"test","time":1355342818898,"commit":{"id":"94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986","dir":"/tmp/ci/work/94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986","repo":"Colingo/valid-schema.git","hash":"94553b0cb58b6e987b101ee0e1b19829483b40bf","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355342809092.9161426","browser":"firefox/nightly","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..2\\n\\n\"]\n","[\"stdout\",\"# tests 2\\n\\n\"]\n","[\"stdout\",\"# pass 2\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
71
+ ,
72
+ {"id":"ccc87f2e39902598d0895524bd0a24f9","key":["Colingo/valid-schema.git","94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986"],"value":{"_id":"ccc87f2e39902598d0895524bd0a24f9","_rev":"1-7b3a81bc1ac16183b07c63a577d0f228","type":"test","time":1355342817097,"commit":{"id":"94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986","dir":"/tmp/ci/work/94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986","repo":"Colingo/valid-schema.git","hash":"94553b0cb58b6e987b101ee0e1b19829483b40bf","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355342809092.9161426","browser":"firefox/15.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..2\\n\\n\"]\n","[\"stdout\",\"# tests 2\\n\\n\"]\n","[\"stdout\",\"# pass 2\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
73
+ ,
74
+ {"id":"ccc87f2e39902598d0895524bd0a208e","key":["Colingo/valid-schema.git","94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986"],"value":{"_id":"ccc87f2e39902598d0895524bd0a208e","_rev":"1-9ba55a6a70f42251849f896ef7eaccc2","type":"test","time":1355342815402,"commit":{"id":"94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986","dir":"/tmp/ci/work/94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986","repo":"Colingo/valid-schema.git","hash":"94553b0cb58b6e987b101ee0e1b19829483b40bf","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355342809092.9161426","browser":"iexplore/9.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..2\\n\\n\"]\n","[\"stdout\",\"# tests 2\\n\\n\"]\n","[\"stdout\",\"# pass 2\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
75
+ ,
76
+ {"id":"ccc87f2e39902598d0895524bd0a1b5a","key":["Colingo/valid-schema.git","94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986"],"value":{"_id":"ccc87f2e39902598d0895524bd0a1b5a","_rev":"1-aadbb46a84e375770ef76586ec7d4fb1","type":"test","time":1355342811514,"commit":{"id":"94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986","dir":"/tmp/ci/work/94553b0cb58b6e987b101ee0e1b19829483b40bf.1355342808986","repo":"Colingo/valid-schema.git","hash":"94553b0cb58b6e987b101ee0e1b19829483b40bf","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355342809092.9161426","browser":"iexplore/8.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"not ok 1 TypeError: Object doesn't support this property or method\\n ---\\n operator: error\\n expected:\\n undefined\\n actual:\\n {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n ...\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"not ok 2 TypeError: Object doesn't support this property or method\\n ---\\n operator: error\\n expected:\\n undefined\\n actual:\\n {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n ...\\n\\n\"]\n","[\"stdout\",\"\\n1..2\\n\\n\"]\n","[\"stdout\",\"# tests 2\\n\\n\"]\n","[\"stdout\",\"# pass 0\\n\\n\"]\n","[\"stdout\",\"# fail 2\\n\\n\"]\n"]}}
77
+ ,
78
+ {"id":"ccc87f2e39902598d0895524bd0ba8a5","key":["Colingo/valid-schema.git","8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438"],"value":{"_id":"ccc87f2e39902598d0895524bd0ba8a5","_rev":"1-3647837d0d4955bb98be7c2088e9d696","type":"test","time":1355353782138,"commit":{"id":"8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438","dir":"/tmp/ci/work/8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438","repo":"Colingo/valid-schema.git","hash":"8d7d08db6842dc8819f402d25a872e9df1aa0fab","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355353752545.d3e0aa22","browser":"safari/5.1","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
79
+ ,
80
+ {"id":"ccc87f2e39902598d0895524bd0ba4c2","key":["Colingo/valid-schema.git","8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438"],"value":{"_id":"ccc87f2e39902598d0895524bd0ba4c2","_rev":"1-b04f58fb4aec7016fe4c83b61e9ee4eb","type":"test","time":1355353770813,"commit":{"id":"8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438","dir":"/tmp/ci/work/8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438","repo":"Colingo/valid-schema.git","hash":"8d7d08db6842dc8819f402d25a872e9df1aa0fab","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355353752545.d3e0aa22","browser":"opera/12.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
81
+ ,
82
+ {"id":"ccc87f2e39902598d0895524bd0b9bd4","key":["Colingo/valid-schema.git","8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438"],"value":{"_id":"ccc87f2e39902598d0895524bd0b9bd4","_rev":"1-66d1421ce3afd2ced7f2d1ff5c4f8d47","type":"test","time":1355353768938,"commit":{"id":"8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438","dir":"/tmp/ci/work/8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438","repo":"Colingo/valid-schema.git","hash":"8d7d08db6842dc8819f402d25a872e9df1aa0fab","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355353752545.d3e0aa22","browser":"chrome/canary","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
83
+ ,
84
+ {"id":"ccc87f2e39902598d0895524bd0b8f69","key":["Colingo/valid-schema.git","8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438"],"value":{"_id":"ccc87f2e39902598d0895524bd0b8f69","_rev":"1-2b1bbc5e240abbea6d4e94a2f8be0bc1","type":"test","time":1355353767749,"commit":{"id":"8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438","dir":"/tmp/ci/work/8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438","repo":"Colingo/valid-schema.git","hash":"8d7d08db6842dc8819f402d25a872e9df1aa0fab","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355353752545.d3e0aa22","browser":"chrome/22.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
85
+ ,
86
+ {"id":"ccc87f2e39902598d0895524bd0b8a2d","key":["Colingo/valid-schema.git","8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438"],"value":{"_id":"ccc87f2e39902598d0895524bd0b8a2d","_rev":"1-3ccfb98d827ba0ddc7bd8339326fdd75","type":"test","time":1355353763981,"commit":{"id":"8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438","dir":"/tmp/ci/work/8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438","repo":"Colingo/valid-schema.git","hash":"8d7d08db6842dc8819f402d25a872e9df1aa0fab","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355353752545.d3e0aa22","browser":"firefox/nightly","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
87
+ ,
88
+ {"id":"ccc87f2e39902598d0895524bd0b7b96","key":["Colingo/valid-schema.git","8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438"],"value":{"_id":"ccc87f2e39902598d0895524bd0b7b96","_rev":"1-3fadcb8e4d1117921bd580d8a7684511","type":"test","time":1355353762772,"commit":{"id":"8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438","dir":"/tmp/ci/work/8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438","repo":"Colingo/valid-schema.git","hash":"8d7d08db6842dc8819f402d25a872e9df1aa0fab","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355353752545.d3e0aa22","browser":"firefox/15.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
89
+ ,
90
+ {"id":"ccc87f2e39902598d0895524bd0b7afd","key":["Colingo/valid-schema.git","8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438"],"value":{"_id":"ccc87f2e39902598d0895524bd0b7afd","_rev":"1-9797d5f6ca74f7bb3e5a4e1e0046a5f5","type":"test","time":1355353760313,"commit":{"id":"8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438","dir":"/tmp/ci/work/8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438","repo":"Colingo/valid-schema.git","hash":"8d7d08db6842dc8819f402d25a872e9df1aa0fab","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355353752545.d3e0aa22","browser":"iexplore/9.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
91
+ ,
92
+ {"id":"ccc87f2e39902598d0895524bd0b729b","key":["Colingo/valid-schema.git","8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438"],"value":{"_id":"ccc87f2e39902598d0895524bd0b729b","_rev":"1-95227048dad9c65cdae8c96da266409f","type":"test","time":1355353756249,"commit":{"id":"8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438","dir":"/tmp/ci/work/8d7d08db6842dc8819f402d25a872e9df1aa0fab.1355353752438","repo":"Colingo/valid-schema.git","hash":"8d7d08db6842dc8819f402d25a872e9df1aa0fab","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355353752545.d3e0aa22","browser":"iexplore/8.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"not ok 1 TypeError: Object doesn't support this property or method\\n ---\\n operator: error\\n expected:\\n undefined\\n actual:\\n {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n ...\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"not ok 2 TypeError: Object doesn't support this property or method\\n ---\\n operator: error\\n expected:\\n undefined\\n actual:\\n {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n ...\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"not ok 3 TypeError: Object doesn't support this property or method\\n ---\\n operator: error\\n expected:\\n undefined\\n actual:\\n {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n ...\\n\\n\"]\n","[\"stdout\",\"\\n1..3\\n\\n\"]\n","[\"stdout\",\"# tests 3\\n\\n\"]\n","[\"stdout\",\"# pass 0\\n\\n\"]\n","[\"stdout\",\"# fail 3\\n\\n\"]\n"]}}
93
+ ,
94
+ {"id":"ccc87f2e39902598d0895524bd0e0741","key":["Colingo/valid-schema.git","82618555a4c56e61700d6842e41f9bb0f2752d7f.1355438900646"],"value":{"_id":"ccc87f2e39902598d0895524bd0e0741","_rev":"1-b575091e7a55aec36b42df3eee7552de","type":"test","time":1355438975820,"commit":{"id":"82618555a4c56e61700d6842e41f9bb0f2752d7f.1355438900646","dir":"/tmp/ci/work/82618555a4c56e61700d6842e41f9bb0f2752d7f.1355438900646","repo":"Colingo/valid-schema.git","hash":"82618555a4c56e61700d6842e41f9bb0f2752d7f","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355438900798.fb272e2","browser":"safari/5.1","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
95
+ ,
96
+ {"id":"ccc87f2e39902598d0895524bd0e0136","key":["Colingo/valid-schema.git","82618555a4c56e61700d6842e41f9bb0f2752d7f.1355438900646"],"value":{"_id":"ccc87f2e39902598d0895524bd0e0136","_rev":"1-df97869db49e54a1a1b09c00ed3f9e6f","type":"test","time":1355438975105,"commit":{"id":"82618555a4c56e61700d6842e41f9bb0f2752d7f.1355438900646","dir":"/tmp/ci/work/82618555a4c56e61700d6842e41f9bb0f2752d7f.1355438900646","repo":"Colingo/valid-schema.git","hash":"82618555a4c56e61700d6842e41f9bb0f2752d7f","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355438900798.fb272e2","browser":"opera/12.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
97
+ ,
98
+ {"id":"ccc87f2e39902598d0895524bd0e00f1","key":["Colingo/valid-schema.git","82618555a4c56e61700d6842e41f9bb0f2752d7f.1355438900646"],"value":{"_id":"ccc87f2e39902598d0895524bd0e00f1","_rev":"1-57531cbde7a025abe083f17e52033923","type":"test","time":1355438944542,"commit":{"id":"82618555a4c56e61700d6842e41f9bb0f2752d7f.1355438900646","dir":"/tmp/ci/work/82618555a4c56e61700d6842e41f9bb0f2752d7f.1355438900646","repo":"Colingo/valid-schema.git","hash":"82618555a4c56e61700d6842e41f9bb0f2752d7f","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355438900798.fb272e2","browser":"chrome/22.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
99
+ ,
100
+ {"id":"ccc87f2e39902598d0895524bd0daeca","key":["Colingo/valid-schema.git","82618555a4c56e61700d6842e41f9bb0f2752d7f.1355438900646"],"value":{"_id":"ccc87f2e39902598d0895524bd0daeca","_rev":"1-7dd1792383190729144832d8ae2d1f05","type":"test","time":1355438913301,"commit":{"id":"82618555a4c56e61700d6842e41f9bb0f2752d7f.1355438900646","dir":"/tmp/ci/work/82618555a4c56e61700d6842e41f9bb0f2752d7f.1355438900646","repo":"Colingo/valid-schema.git","hash":"82618555a4c56e61700d6842e41f9bb0f2752d7f","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355438900798.fb272e2","browser":"firefox/15.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
101
+ ,
102
+ {"id":"ccc87f2e39902598d0895524bd0da288","key":["Colingo/valid-schema.git","82618555a4c56e61700d6842e41f9bb0f2752d7f.1355438900646"],"value":{"_id":"ccc87f2e39902598d0895524bd0da288","_rev":"1-2e9eec662aa8b6ddb01e2e69535ca330","type":"test","time":1355438909961,"commit":{"id":"82618555a4c56e61700d6842e41f9bb0f2752d7f.1355438900646","dir":"/tmp/ci/work/82618555a4c56e61700d6842e41f9bb0f2752d7f.1355438900646","repo":"Colingo/valid-schema.git","hash":"82618555a4c56e61700d6842e41f9bb0f2752d7f","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355438900798.fb272e2","browser":"iexplore/9.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
103
+ ,
104
+ {"id":"ccc87f2e39902598d0895524bd0d9324","key":["Colingo/valid-schema.git","82618555a4c56e61700d6842e41f9bb0f2752d7f.1355438900646"],"value":{"_id":"ccc87f2e39902598d0895524bd0d9324","_rev":"1-058004973e2a4d354485107877cd88f6","type":"test","time":1355438903627,"commit":{"id":"82618555a4c56e61700d6842e41f9bb0f2752d7f.1355438900646","dir":"/tmp/ci/work/82618555a4c56e61700d6842e41f9bb0f2752d7f.1355438900646","repo":"Colingo/valid-schema.git","hash":"82618555a4c56e61700d6842e41f9bb0f2752d7f","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355438900798.fb272e2","browser":"iexplore/8.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"not ok 1 TypeError: Object doesn't support this property or method\\n ---\\n operator: error\\n expected:\\n undefined\\n actual:\\n {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n ...\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"not ok 2 TypeError: Object doesn't support this property or method\\n ---\\n operator: error\\n expected:\\n undefined\\n actual:\\n {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n ...\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"not ok 3 TypeError: Object doesn't support this property or method\\n ---\\n operator: error\\n expected:\\n undefined\\n actual:\\n {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n ...\\n\\n\"]\n","[\"stdout\",\"\\n1..3\\n\\n\"]\n","[\"stdout\",\"# tests 3\\n\\n\"]\n","[\"stdout\",\"# pass 0\\n\\n\"]\n","[\"stdout\",\"# fail 3\\n\\n\"]\n"]}}
105
+ ,
106
+ {"id":"ccc87f2e39902598d0895524bd1b0b41","key":["Colingo/valid-schema.git","5da97f7b3085ddb3b9ff7100fd8b8bd63497937f.1355972599149"],"value":{"_id":"ccc87f2e39902598d0895524bd1b0b41","_rev":"1-fb2c247df4baa6120aac1e8ca4c1e756","type":"bundle","time":1355972599332,"id":"1355972599330.655a788c","commit":{"id":"5da97f7b3085ddb3b9ff7100fd8b8bd63497937f.1355972599149","dir":"/tmp/ci/work/5da97f7b3085ddb3b9ff7100fd8b8bd63497937f.1355972599149","repo":"Colingo/valid-schema.git","hash":"5da97f7b3085ddb3b9ff7100fd8b8bd63497937f","branch":"master"},"output":["npm"," http ","GET https://registry.npmjs.org/to-array\n","npm ","http GET https://registry.npmjs.org/tape\n","npm http"," GET https://registry.npmjs.org/browserify\n","npm ","http GET https://registry.npmjs.org/testem\n","npm"," http 304 https://registry.npmjs.org/to-array\n","npm http"," 304 https://registry.npmjs.org/tape\n","npm http"," 304 https://registry.npmjs.org/browserify\n","npm http"," 304 https://registry.npmjs.org/testem\n","npm"," http GET https://registry.npmjs.org/jsonify\n","npm http ","GET https://registry.npmjs.org/deep-equal\n","npm http"," GET https://registry.npmjs.org/defined\n","npm ","http GET https://registry.npmjs.org/detective\n","npm ","http GET https://registry.npmjs.org/buffer-browserify\n","npm ","http GET https://registry.npmjs.org/deputy\n","npm ","http GET https://registry.npmjs.org/resolve\n","npm http"," GET https://registry.npmjs.org/nub\n","npm http"," GET https://registry.npmjs.org/syntax-error\n","npm http"," GET https://registry.npmjs.org/coffee-script\n","npm ","http GET https://registry.npmjs.org/commondir\n","npm ","http GET https://registry.npmjs.org/optimist\n","npm ","http GET https://registry.npmjs.org/crypto-browserify\n","npm ","http GET https://registry.npmjs.org/vm-browserify\n","npm"," ","http GET https://registry.npmjs.org/http-browserify\n","npm"," ","http"," ","304"," https://registry.npmjs.org/deep-equal\n","npm"," ","http"," ","304"," https://registry.npmjs.org/jsonify\n","npm"," ","http"," ","304 https://registry.npmjs.org/defined\n","npm ","http"," GET https://registry.npmjs.org/socket.io/0.9.10\n","npm ","http GET https://registry.npmjs.org/winston/0.3.4\n","npm ","http GET https://registry.npmjs.org/charm/0.0.5\n","npm http"," GET https://registry.npmjs.org/commander\n","npm ","http GET https://registry.npmjs.org/glob/3.0.1\n","npm ","http GET https://registry.npmjs.org/js-yaml/0.3.5\n","npm ","http GET https://registry.npmjs.org/async/0.1.15\n","npm ","http GET https://registry.npmjs.org/rimraf\n","npm ","http GET https://registry.npmjs.org/underscore\n","npm ","http GET https://registry.npmjs.org/backbone\n","npm ","http GET https://registry.npmjs.org/styled_string\n","npm"," http GET https://registry.npmjs.org/colors\n","npm"," http GET https://registry.npmjs.org/fireworm\n","npm ","http GET https://registry.npmjs.org/express/2.5.10\n","npm ","http GET https://registry.npmjs.org/mustache/0.4.0\n","npm http"," 304 https://registry.npmjs.org/deputy\n","npm http"," 304 https://registry.npmjs.org/resolve\n","npm http"," 304 https://registry.npmjs.org/nub\n","npm ","http 304 https://registry.npmjs.org/detective\n","npm http"," 304 https://registry.npmjs.org/buffer-browserify\n","npm http"," 304 https://registry.npmjs.org/syntax-error\n","npm http"," 304 https://registry.npmjs.org/coffee-script\n","npm http"," 304 https://registry.npmjs.org/commondir\n","npm http"," 304 https://registry.npmjs.org/optimist\n","npm http"," 304 https://registry.npmjs.org/crypto-browserify\n","npm http ","304 https://registry.npmjs.org/vm-browserify\n","npm http ","304 https://registry.npmjs.org/http-browserify\n","npm http"," 304 https://registry.npmjs.org/socket.io/0.9.10\n","npm ","http 304 https://registry.npmjs.org/winston/0.3.4\n","npm"," ","http"," ","304"," https://registry.npmjs.org/charm/0.0.5\n","npm"," ","http 304 https://registry.npmjs.org/commander\n","npm ","http GET https://registry.npmjs.org/esprima\n","npm ","http"," GET https://registry.npmjs.org/concat-stream/0.0.8\n","npm"," ","http ","GET https://registry.npmjs.org/mkdirp\n","npm http"," GET https://registry.npmjs.org/base64-js/0.0.2\n","npm ","http 304 https://registry.npmjs.org/js-yaml/0.3.5\n","npm ","http 304 https://registry.npmjs.org/glob/3.0.1\n","npm http"," GET https://registry.npmjs.org/wordwrap\n","npm"," ","http"," ","304"," https://registry.npmjs.org/async/0.1.15\n","npm http 304"," https://registry.npmjs.org/rimraf\n","npm ","http 304 https://registry.npmjs.org/underscore\n","npm ","http 304 https://registry.npmjs.org/styled_string\n","npm http"," 304 https://registry.npmjs.org/backbone\n","npm ","http 304 https://registry.npmjs.org/colors\n","npm http ","304 https://registry.npmjs.org/fireworm\n","npm http"," 304 https://registry.npmjs.org/express/2.5.10\n","npm ","http 304 https://registry.npmjs.org/mustache/0.4.0\n","npm ","http 304 https://registry.npmjs.org/concat-stream/0.0.8\n","npm ","WARN package.json mustache@0.4.0 No README.md file found!\n","npm http ","304 https://registry.npmjs.org/esprima\n","npm http ","304 https://registry.npmjs.org/wordwrap\n","npm ","http 304 https://registry.npmjs.org/base64-js/0.0.2\n","npm http"," 304 https://registry.npmjs.org/mkdirp\n","npm http"," GET https://registry.npmjs.org/graceful-fs\n","npm http"," GET https://registry.npmjs.org/minimatch\n","npm http"," GET https://registry.npmjs.org/fast-list\n","npm http"," GET https://registry.npmjs.org/minimatch\n","npm ","http GET https://registry.npmjs.org/async\n","npm ","http GET https://registry.npmjs.org/keypress\n","npm ","http GET https://registry.npmjs.org/connect\n","npm ","http GET https://registry.npmjs.org/mime/1.2.4\n","npm http"," GET https://registry.npmjs.org/socket.io-client/0.9.10\n","npm ","http GET https://registry.npmjs.org/policyfile/0.0.4\n","npm ","http GET https://registry.npmjs.org/eyes\n","npm http"," GET https://registry.npmjs.org/loggly\n","npm ","http GET https://registry.npmjs.org/set\n","npm ","http GET https://registry.npmjs.org/graceful-fs\n","npm ","http GET https://registry.npmjs.org/qs\n","npm http"," GET https://registry.npmjs.org/redis/0.7.2\n","npm http"," GET https://registry.npmjs.org/pkginfo\n","npm"," http GET https://registry.npmjs.org/inherits\n","npm"," http GET https://registry.npmjs.org/mkdirp/0.3.0\n","npm ","http 304 https://registry.npmjs.org/fast-list\n","npm ","http 304 https://registry.npmjs.org/graceful-fs\n","npm ","http 304 https://registry.npmjs.org/async\n","npm ","http 304 https://registry.npmjs.org/minimatch\n","npm ","http 304 https://registry.npmjs.org/minimatch\n","npm ","http 304 https://registry.npmjs.org/keypress\n","npm http"," 304 https://registry.npmjs.org/connect\n","npm ","WARN package.json connect@1.9.2 No README.md file found!\n","npm http"," 304 https://registry.npmjs.org/socket.io-client/0.9.10\n","npm ","http 304 https://registry.npmjs.org/mime/1.2.4\n","npm http"," 304 https://registry.npmjs.org/policyfile/0.0.4\n","npm http ","304 https://registry.npmjs.org/eyes\n","npm ","http 304 https://registry.npmjs.org/loggly\n","npm http"," 304 https://registry.npmjs.org/set\n","npm http"," 304 https://registry.npmjs.org/graceful-fs\n","npm ","http 304 https://registry.npmjs.org/qs\n","npm http"," GET https://registry.npmjs.org/lru-cache\n","npm"," http ","GET https://registry.npmjs.org/sigmund\n","npm http"," 304 https://registry.npmjs.org/redis/0.7.2\n","npm ","http 304 https://registry.npmjs.org/pkginfo\n","npm http"," 304 https://registry.npmjs.org/mkdirp/0.3.0\n","npm ","http 304 https://registry.npmjs.org/inherits\n","npm"," ","http"," ","304"," https://registry.npmjs.org/sigmund\n","npm ","http GET https://registry.npmjs.org/hiredis\n","npm http"," GET https://registry.npmjs.org/request\n","npm"," http GET https://registry.npmjs.org/timespan\n","npm http"," GET https://registry.npmjs.org/lru-cache\n","npm http GET"," https://registry.npmjs.org/formidable\n","npm http 304"," https://registry.npmjs.org/lru-cache\n","npm http ","GET https://registry.npmjs.org/uglify-js/1.2.5\n","npm ","http GET https://registry.npmjs.org/xmlhttprequest/1.4.2\n","npm ","http GET https://registry.npmjs.org/active-x-obfuscator/0.0.1\n","npm http"," GET https://registry.npmjs.org/ws\n","npm http 304"," https://registry.npmjs.org/formidable\n","npm http ","304 https://registry.npmjs.org/timespan\n","npm ","http 304 https://registry.npmjs.org/lru-cache\n","npm ","http 304 https://registry.npmjs.org/hiredis\n","npm ","WARN package.json hiredis@0.1.14 No README.md file found!\n","\n> hiredis@0.1.14 preinstall /tmp/ci/work/5da97f7b3085ddb3b9ff7100fd8b8bd63497937f.1355972599149/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis\n> make || gmake\n\n","cd deps/hiredis && make static\n","npm"," http ","304 https://registry.npmjs.org/uglify-js/1.2.5\n","npm http"," 304 https://registry.npmjs.org/xmlhttprequest/1.4.2\n","make[1]: Entering directory `/tmp/ci/work/5da97f7b3085ddb3b9ff7100fd8b8bd63497937f.1355972599149/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis/deps/hiredis'\ncc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -g -ggdb net.c\n","npm http"," 304 https://registry.npmjs.org/active-x-obfuscator/0.0.1\n","npm http ","304 https://registry.npmjs.org/ws\n","npm ","http GET https://registry.npmjs.org/zeparser/0.0.5\n","cc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -g -ggdb hiredis.c\n","npm http ","GET https://registry.npmjs.org/commander\n","npm ","http GET https://registry.npmjs.org/tinycolor\n","npm http"," GET https://registry.npmjs.org/options\n","npm ","http 304 https://registry.npmjs.org/request\n","cc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -g -ggdb sds.c\n","cc -std=c99 -pedantic -c -O3 -fPIC -Wall -W -Wstrict-prototypes -Wwrite-strings -g -ggdb async.c\n","npm http ","304 https://registry.npmjs.org/zeparser/0.0.5\n","npm http"," 304 https://registry.npmjs.org/options\n","npm http"," 304 https://registry.npmjs.org/tinycolor\n","npm http"," 304 https://registry.npmjs.org/commander\n","ar rcs libhiredis.a net.o hiredis.o sds.o async.o\n","make[1]: Leaving directory `/tmp/ci/work/5da97f7b3085ddb3b9ff7100fd8b8bd63497937f.1355972599149/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis/deps/hiredis'\n","node-waf configure build\n","Traceback (most recent call last):\n File \"/home/testling/installs/node-v0.8.15/bin/node-waf\", line 14, in <module>\n import Scripting\n File \"/home/testling/installs/node-v0.8.15/bin/../lib/node/wafadmin/Scripting.py\", line 146\n except Utils.WafError, e:\n ^\nSyntaxError: invalid syntax\n","\n> ws@0.4.25 install /tmp/ci/work/5da97f7b3085ddb3b9ff7100fd8b8bd63497937f.1355972599149/node_modules/testem/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws\n> (node-gyp rebuild 2> builderror.log) || (exit 0)\n\n","make: *** [all] Error 1\n","cd deps/hiredis && gmake static\n","gmake[1]: Entering directory `/tmp/ci/work/5da97f7b3085ddb3b9ff7100fd8b8bd63497937f.1355972599149/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis/deps/hiredis'\ngmake[1]: Nothing to be done for `static'.\n","gmake[1]: Leaving directory `/tmp/ci/work/5da97f7b3085ddb3b9ff7100fd8b8bd63497937f.1355972599149/node_modules/testem/node_modules/socket.io/node_modules/redis/node_modules/hiredis/deps/hiredis'\n","node-waf configure build\n","Traceback (most recent call last):\n File \"/home/testling/installs/node-v0.8.15/bin/node-waf\", line 14, in <module>\n import Scripting\n File \"/home/testling/installs/node-v0.8.15/bin/../lib/node/wafadmin/Scripting.py\", line 146\n except Utils.WafError, e:\n ^\nSyntaxError: invalid syntax\n","gmake: *** [all] Error 1\n","npm WARN"," optional dep failed, continuing hiredis@0.1.14\n","to-array@0.1.3 node_modules/to-array\n\ntape@0.1.3 node_modules/tape\n├── deep-equal@0.0.0\n├── defined@0.0.0\n└── jsonify@0.0.0\n\nbrowserify@1.16.6 node_modules/browserify\n├── nub@0.0.0\n├── commondir@0.0.1\n├── vm-browserify@0.0.1\n├── crypto-browserify@0.1.2\n├── resolve@0.2.3\n├── coffee-script@1.4.0\n├── http-browserify@0.1.6 (concat-stream@0.0.8)\n├── buffer-browserify@0.0.4 (base64-js@0.0.2)\n├── optimist@0.3.5 (wordwrap@0.0.2)\n├── deputy@0.0.4 (mkdirp@0.3.4)\n├── syntax-error@0.0.0 (esprima@0.9.9)\n└── detective@0.2.1 (esprima@0.9.9)\n\ntestem@0.2.50 node_modules/testem\n├── styled_string@0.0.1\n├── colors@0.6.0-1\n├── mustache@0.4.0\n├── charm@0.0.5\n├── backbone@0.9.9\n├── async@0.1.15\n├── underscore@1.4.3\n├── js-yaml@0.3.5\n├── rimraf@2.0.3 (graceful-fs@1.1.14)\n├── commander@1.1.1 (keypress@0.1.0)\n├── fireworm@0.0.8 (set@1.0.0, async@0.1.22, minimatch@0.2.9)\n├── glob@3.0.1 (inherits@1.0.0, graceful-fs@1.1.14, fast-list@1.0.2, minimatch@0.1.5)\n├── express@2.5.10 (qs@0.4.2, mime@1.2.4, mkdirp@0.3.0, connect@1.9.2)\n├── winston@0.3.4 (eyes@0.1.8, pkginfo@0.2.3, loggly@0.3.11)\n└── socket.io@0.9.10 (policyfile@0.0.4, redis@0.7.2, socket.io-client@0.9.10)\n","Expressions in require() statements:\n"," require(file)\n","\n","/home/testling/projects/testling-ci/git/node_modules/browserify/lib/wrap.js:459\n"," throw moduleError('Cannot find module');\n "," ^\n","Error: Cannot find module: \"./lib/default_stream\" from directory \"/tmp/ci/work/5da97f7b3085ddb3b9ff7100fd8b8bd63497937f.1355972599149/test\" while processing file /tmp/ci/work/5da97f7b3085ddb3b9ff7100fd8b8bd63497937f.1355972599149/test/bundle.js\n at moduleError (/home/testling/projects/testling-ci/git/node_modules/browserify/lib/wrap.js:420:16)\n at Function.Wrap.require (/home/testling/projects/testling-ci/git/node_modules/browserify/lib/wrap.js:459:19)\n at Function.module.exports.Object.keys.forEach.self.(anonymous function) [as require] (/home/testling/projects/testling-ci/git/node_modules/browserify/index.js:158:28)\n at Wrap.require (/home/testling/projects/testling-ci/git/node_modules/browserify/lib/wrap.js:541:14)\n at Array.forEach (native)\n at Function.Wrap.require (/home/testling/projects/testling-ci/git/node_modules/browserify/lib/wrap.js:533:27)\n at Function.module.exports.Object.keys.forEach.self.(anonymous function) [as require] (/home/testling/projects/testling-ci/git/node_modules/browserify/index.js:158:28)\n at /home/testling/projects/testling-ci/git/bin/bundle.js:62:12\n at Array.forEach (native)\n at Object.<anonymous> (/home/testling/projects/testling-ci/git/bin/bundle.js:61:7)\n","\nerror creating bundle\n"]}}
107
+ ,
108
+ {"id":"ccc87f2e39902598d0895524bd0df4e2","key":["Colingo/valid-schema.git","54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359"],"value":{"_id":"ccc87f2e39902598d0895524bd0df4e2","_rev":"1-7b8a5dcd483a6d0ece28bb3b9070936f","type":"test","time":1355438941313,"commit":{"id":"54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359","dir":"/tmp/ci/work/54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359","repo":"Colingo/valid-schema.git","hash":"54be1e1d9a1fe1697b4baf60b664c1e992182e21","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355438916478.128c5835","browser":"safari/5.1","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
109
+ ,
110
+ {"id":"ccc87f2e39902598d0895524bd0de68f","key":["Colingo/valid-schema.git","54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359"],"value":{"_id":"ccc87f2e39902598d0895524bd0de68f","_rev":"1-3b23ea08dfc18558209ecfb5bc6aad27","type":"test","time":1355438934308,"commit":{"id":"54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359","dir":"/tmp/ci/work/54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359","repo":"Colingo/valid-schema.git","hash":"54be1e1d9a1fe1697b4baf60b664c1e992182e21","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355438916478.128c5835","browser":"opera/12.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
111
+ ,
112
+ {"id":"ccc87f2e39902598d0895524bd0de297","key":["Colingo/valid-schema.git","54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359"],"value":{"_id":"ccc87f2e39902598d0895524bd0de297","_rev":"1-55ef5525fca00489e0a4da0136c2af5c","type":"test","time":1355438929591,"commit":{"id":"54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359","dir":"/tmp/ci/work/54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359","repo":"Colingo/valid-schema.git","hash":"54be1e1d9a1fe1697b4baf60b664c1e992182e21","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355438916478.128c5835","browser":"chrome/canary","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
113
+ ,
114
+ {"id":"ccc87f2e39902598d0895524bd0dd92a","key":["Colingo/valid-schema.git","54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359"],"value":{"_id":"ccc87f2e39902598d0895524bd0dd92a","_rev":"1-86119c823c84db70f5b21656d48605cb","type":"test","time":1355438928189,"commit":{"id":"54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359","dir":"/tmp/ci/work/54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359","repo":"Colingo/valid-schema.git","hash":"54be1e1d9a1fe1697b4baf60b664c1e992182e21","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355438916478.128c5835","browser":"chrome/22.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
115
+ ,
116
+ {"id":"ccc87f2e39902598d0895524bd0dd5ec","key":["Colingo/valid-schema.git","54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359"],"value":{"_id":"ccc87f2e39902598d0895524bd0dd5ec","_rev":"1-ffd74b6588bbe62bee9c258bfa09650c","type":"test","time":1355438923360,"commit":{"id":"54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359","dir":"/tmp/ci/work/54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359","repo":"Colingo/valid-schema.git","hash":"54be1e1d9a1fe1697b4baf60b664c1e992182e21","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355438916478.128c5835","browser":"firefox/nightly","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
117
+ ,
118
+ {"id":"ccc87f2e39902598d0895524bd0dd146","key":["Colingo/valid-schema.git","54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359"],"value":{"_id":"ccc87f2e39902598d0895524bd0dd146","_rev":"1-49e4debfbc00fd1c6ab1a4374d296a07","type":"test","time":1355438922966,"commit":{"id":"54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359","dir":"/tmp/ci/work/54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359","repo":"Colingo/valid-schema.git","hash":"54be1e1d9a1fe1697b4baf60b664c1e992182e21","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355438916478.128c5835","browser":"firefox/15.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
119
+ ,
120
+ {"id":"ccc87f2e39902598d0895524bd0dc22a","key":["Colingo/valid-schema.git","54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359"],"value":{"_id":"ccc87f2e39902598d0895524bd0dc22a","_rev":"1-b536dd2683703c3d577da299d21c49da","type":"test","time":1355438922467,"commit":{"id":"54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359","dir":"/tmp/ci/work/54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359","repo":"Colingo/valid-schema.git","hash":"54be1e1d9a1fe1697b4baf60b664c1e992182e21","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355438916478.128c5835","browser":"iexplore/9.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
121
+ ,
122
+ {"id":"ccc87f2e39902598d0895524bd0dbb5c","key":["Colingo/valid-schema.git","54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359"],"value":{"_id":"ccc87f2e39902598d0895524bd0dbb5c","_rev":"1-9907e19d23d0bfe5bf373c411e0fc09b","type":"test","time":1355438918547,"commit":{"id":"54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359","dir":"/tmp/ci/work/54be1e1d9a1fe1697b4baf60b664c1e992182e21.1355438916359","repo":"Colingo/valid-schema.git","hash":"54be1e1d9a1fe1697b4baf60b664c1e992182e21","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355438916478.128c5835","browser":"iexplore/8.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"not ok 1 TypeError: Object doesn't support this property or method\\n ---\\n operator: error\\n expected:\\n undefined\\n actual:\\n {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n ...\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"not ok 2 TypeError: Object doesn't support this property or method\\n ---\\n operator: error\\n expected:\\n undefined\\n actual:\\n {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n ...\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"not ok 3 TypeError: Object doesn't support this property or method\\n ---\\n operator: error\\n expected:\\n undefined\\n actual:\\n {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n ...\\n\\n\"]\n","[\"stdout\",\"\\n1..3\\n\\n\"]\n","[\"stdout\",\"# tests 3\\n\\n\"]\n","[\"stdout\",\"# pass 0\\n\\n\"]\n","[\"stdout\",\"# fail 3\\n\\n\"]\n"]}}
123
+ ,
124
+ {"id":"ccc87f2e39902598d0895524bd0b6ef8","key":["Colingo/valid-schema.git","4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604"],"value":{"_id":"ccc87f2e39902598d0895524bd0b6ef8","_rev":"1-d9f127f5a659ef4057bf547877b8f642","type":"test","time":1355353540398,"commit":{"id":"4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604","dir":"/tmp/ci/work/4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604","repo":"Colingo/valid-schema.git","hash":"4389d95d7b6123c320292b867333be2dee28f4ce","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355353516700.f3b39b59","browser":"safari/5.1","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
125
+ ,
126
+ {"id":"ccc87f2e39902598d0895524bd0b6bf3","key":["Colingo/valid-schema.git","4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604"],"value":{"_id":"ccc87f2e39902598d0895524bd0b6bf3","_rev":"1-4e506ec9534c8c3489f737f1f70938b3","type":"test","time":1355353538741,"commit":{"id":"4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604","dir":"/tmp/ci/work/4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604","repo":"Colingo/valid-schema.git","hash":"4389d95d7b6123c320292b867333be2dee28f4ce","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355353516700.f3b39b59","browser":"opera/12.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
127
+ ,
128
+ {"id":"ccc87f2e39902598d0895524bd0b65d9","key":["Colingo/valid-schema.git","4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604"],"value":{"_id":"ccc87f2e39902598d0895524bd0b65d9","_rev":"1-c88a7a474de21653b067e39c618cc728","type":"test","time":1355353536930,"commit":{"id":"4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604","dir":"/tmp/ci/work/4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604","repo":"Colingo/valid-schema.git","hash":"4389d95d7b6123c320292b867333be2dee28f4ce","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355353516700.f3b39b59","browser":"chrome/canary","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
129
+ ,
130
+ {"id":"ccc87f2e39902598d0895524bd0b650e","key":["Colingo/valid-schema.git","4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604"],"value":{"_id":"ccc87f2e39902598d0895524bd0b650e","_rev":"1-8381352d6acdc3b29330655654c72c57","type":"test","time":1355353534460,"commit":{"id":"4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604","dir":"/tmp/ci/work/4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604","repo":"Colingo/valid-schema.git","hash":"4389d95d7b6123c320292b867333be2dee28f4ce","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355353516700.f3b39b59","browser":"chrome/22.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
131
+ ,
132
+ {"id":"ccc87f2e39902598d0895524bd0b5a5b","key":["Colingo/valid-schema.git","4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604"],"value":{"_id":"ccc87f2e39902598d0895524bd0b5a5b","_rev":"1-2dcd94fd53d8529027825deb9034d320","type":"test","time":1355353528581,"commit":{"id":"4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604","dir":"/tmp/ci/work/4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604","repo":"Colingo/valid-schema.git","hash":"4389d95d7b6123c320292b867333be2dee28f4ce","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355353516700.f3b39b59","browser":"firefox/nightly","output":["[\"stdout\",\"TAP version 13\\u000a\\u000a\"]\n","[\"stdout\",\"# error case\\u000a\\u000a\"]\n","[\"stdout\",\"not ok 1 TypeError: Object.keys is not a function\\u000a ---\\u000a operator: error\\u000a expected:\\u000a \\u000a actual:\\u000a {\\\"message\\\":\\\"Object.keys is not a function\\\",\\\"fileName\\\":\\\"http://git.testling.com/bundle/1355353516700.f3b39b59.js\\\",\\\"lineNumber\\\":2311,\\\"stack\\\":\\\"([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2311\\\\u000a([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2249\\\\u000a()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2325\\\\u000a()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2285\\\\u000a()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2291\\\\u000a([object MessageEvent])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2251\\\\u000a\\\"}\\u000a stack:\\u000a ([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2311\\u000a ([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2249\\u000a ()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2325\\u000a ()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2285\\u000a ()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2291\\u000a ([object MessageEvent])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2251\\u000a \\u000a ...\\u000a\\u000a\"]\n","[\"stdout\",\"# correct case\\u000a\\u000a\"]\n","[\"stdout\",\"not ok 2 TypeError: Object.keys is not a function\\u000a ---\\u000a operator: error\\u000a expected:\\u000a \\u000a actual:\\u000a {\\\"message\\\":\\\"Object.keys is not a function\\\",\\\"fileName\\\":\\\"http://git.testling.com/bundle/1355353516700.f3b39b59.js\\\",\\\"lineNumber\\\":2311,\\\"stack\\\":\\\"([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2311\\\\u000a([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2261\\\\u000a()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2325\\\\u000a()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2285\\\\u000a()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2291\\\\u000a([object MessageEvent])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2251\\\\u000a\\\"}\\u000a stack:\\u000a ([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2311\\u000a ([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2261\\u000a ()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2325\\u000a ()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2285\\u000a ()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2291\\u000a ([object MessageEvent])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2251\\u000a \\u000a ...\\u000a\\u000a\"]\n","[\"stdout\",\"# number schema\\u000a\\u000a\"]\n","[\"stdout\",\"not ok 3 TypeError: Object.keys is not a function\\u000a ---\\u000a operator: error\\u000a expected:\\u000a \\u000a actual:\\u000a {\\\"message\\\":\\\"Object.keys is not a function\\\",\\\"fileName\\\":\\\"http://git.testling.com/bundle/1355353516700.f3b39b59.js\\\",\\\"lineNumber\\\":2311,\\\"stack\\\":\\\"([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2311\\\\u000a([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2275\\\\u000a()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2325\\\\u000a()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2285\\\\u000a()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2291\\\\u000a([object MessageEvent])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2251\\\\u000a\\\"}\\u000a stack:\\u000a ([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2311\\u000a ([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2275\\u000a ()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2325\\u000a ()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2285\\u000a ()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2291\\u000a ([object MessageEvent])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2251\\u000a \\u000a ...\\u000a\\u000a\"]\n","[\"stdout\",\"\\u000a1..3\\u000a\\u000a\"]\n","[\"stdout\",\"# tests 3\\u000a\\u000a\"]\n","[\"stdout\",\"# pass 0\\u000a\\u000a\"]\n","[\"stdout\",\"# fail 3\\u000a\\u000a\"]\n"]}}
133
+ ,
134
+ {"id":"ccc87f2e39902598d0895524bd0b4a6c","key":["Colingo/valid-schema.git","4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604"],"value":{"_id":"ccc87f2e39902598d0895524bd0b4a6c","_rev":"1-5ca1587eaada546a40b5f14c377ce3a3","type":"test","time":1355353524746,"commit":{"id":"4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604","dir":"/tmp/ci/work/4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604","repo":"Colingo/valid-schema.git","hash":"4389d95d7b6123c320292b867333be2dee28f4ce","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355353516700.f3b39b59","browser":"firefox/15.0","output":["[\"stdout\",\"TAP version 13\\u000a\\u000a\"]\n","[\"stdout\",\"# error case\\u000a\\u000a\"]\n","[\"stdout\",\"not ok 1 TypeError: Object.keys is not a function\\u000a ---\\u000a operator: error\\u000a expected:\\u000a \\u000a actual:\\u000a {\\\"message\\\":\\\"Object.keys is not a function\\\",\\\"fileName\\\":\\\"http://git.testling.com/bundle/1355353516700.f3b39b59.js\\\",\\\"lineNumber\\\":2311,\\\"stack\\\":\\\"([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2311\\\\u000a([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2249\\\\u000a()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2325\\\\u000a()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2285\\\\u000a()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2291\\\\u000a([object MessageEvent])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2251\\\\u000a\\\"}\\u000a stack:\\u000a ([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2311\\u000a ([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2249\\u000a ()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2325\\u000a ()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2285\\u000a ()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2291\\u000a ([object MessageEvent])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2251\\u000a \\u000a ...\\u000a\\u000a\"]\n","[\"stdout\",\"# correct case\\u000a\\u000a\"]\n","[\"stdout\",\"not ok 2 TypeError: Object.keys is not a function\\u000a ---\\u000a operator: error\\u000a expected:\\u000a \\u000a actual:\\u000a {\\\"message\\\":\\\"Object.keys is not a function\\\",\\\"fileName\\\":\\\"http://git.testling.com/bundle/1355353516700.f3b39b59.js\\\",\\\"lineNumber\\\":2311,\\\"stack\\\":\\\"([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2311\\\\u000a([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2261\\\\u000a()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2325\\\\u000a()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2285\\\\u000a()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2291\\\\u000a([object MessageEvent])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2251\\\\u000a\\\"}\\u000a stack:\\u000a ([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2311\\u000a ([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2261\\u000a ()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2325\\u000a ()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2285\\u000a ()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2291\\u000a ([object MessageEvent])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2251\\u000a \\u000a ...\\u000a\\u000a\"]\n","[\"stdout\",\"# number schema\\u000a\\u000a\"]\n","[\"stdout\",\"not ok 3 TypeError: Object.keys is not a function\\u000a ---\\u000a operator: error\\u000a expected:\\u000a \\u000a actual:\\u000a {\\\"message\\\":\\\"Object.keys is not a function\\\",\\\"fileName\\\":\\\"http://git.testling.com/bundle/1355353516700.f3b39b59.js\\\",\\\"lineNumber\\\":2311,\\\"stack\\\":\\\"([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2311\\\\u000a([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2275\\\\u000a()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2325\\\\u000a()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2285\\\\u000a()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2291\\\\u000a([object MessageEvent])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2251\\\\u000a\\\"}\\u000a stack:\\u000a ([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2311\\u000a ([object Object])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2275\\u000a ()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2325\\u000a ()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2285\\u000a ()@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2291\\u000a ([object MessageEvent])@http://git.testling.com/bundle/1355353516700.f3b39b59.js:2251\\u000a \\u000a ...\\u000a\\u000a\"]\n","[\"stdout\",\"\\u000a1..3\\u000a\\u000a\"]\n","[\"stdout\",\"# tests 3\\u000a\\u000a\"]\n","[\"stdout\",\"# pass 0\\u000a\\u000a\"]\n","[\"stdout\",\"# fail 3\\u000a\\u000a\"]\n"]}}
135
+ ,
136
+ {"id":"ccc87f2e39902598d0895524bd0b4991","key":["Colingo/valid-schema.git","4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604"],"value":{"_id":"ccc87f2e39902598d0895524bd0b4991","_rev":"1-b4e8752a7493d995ba6cd5b02632cb58","type":"test","time":1355353523922,"commit":{"id":"4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604","dir":"/tmp/ci/work/4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604","repo":"Colingo/valid-schema.git","hash":"4389d95d7b6123c320292b867333be2dee28f4ce","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355353516700.f3b39b59","browser":"iexplore/9.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"ok 1 should be equal\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"ok 2 should be equal\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"ok 3 should be equal\\n\\n\"]\n","[\"stdout\",\"ok 4 should be equal\\n\\n\"]\n","[\"stdout\",\"\\n1..4\\n\\n\"]\n","[\"stdout\",\"# tests 4\\n\\n\"]\n","[\"stdout\",\"# pass 4\\n\\n\"]\n","[\"stdout\",\"\\n# ok\\n\\n\"]\n"]}}
137
+ ,
138
+ {"id":"ccc87f2e39902598d0895524bd0b423a","key":["Colingo/valid-schema.git","4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604"],"value":{"_id":"ccc87f2e39902598d0895524bd0b423a","_rev":"1-e058b43fdcd03a780dc2bb5f15c35418","type":"test","time":1355353520024,"commit":{"id":"4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604","dir":"/tmp/ci/work/4389d95d7b6123c320292b867333be2dee28f4ce.1355353516604","repo":"Colingo/valid-schema.git","hash":"4389d95d7b6123c320292b867333be2dee28f4ce","branch":"master"},"params":{"files":"test/*.js","browsers":{"ie":["8","9"],"firefox":["15","nightly"],"chrome":["22","canary"],"opera":["12"],"safari":["5.1"]}},"files":["test/index.js"],"id":"1355353516700.f3b39b59","browser":"iexplore/8.0","output":["[\"stdout\",\"TAP version 13\\n\\n\"]\n","[\"stdout\",\"# error case\\n\\n\"]\n","[\"stdout\",\"not ok 1 TypeError: Object doesn't support this property or method\\n ---\\n operator: error\\n expected:\\n undefined\\n actual:\\n {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n ...\\n\\n\"]\n","[\"stdout\",\"# correct case\\n\\n\"]\n","[\"stdout\",\"not ok 2 TypeError: Object doesn't support this property or method\\n ---\\n operator: error\\n expected:\\n undefined\\n actual:\\n {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n ...\\n\\n\"]\n","[\"stdout\",\"# number schema\\n\\n\"]\n","[\"stdout\",\"not ok 3 TypeError: Object doesn't support this property or method\\n ---\\n operator: error\\n expected:\\n undefined\\n actual:\\n {\\\"message\\\":\\\"Object doesn't support this property or method\\\",\\\"number\\\":-2146827850,\\\"description\\\":\\\"Object doesn't support this property or method\\\"}\\n ...\\n\\n\"]\n","[\"stdout\",\"\\n1..3\\n\\n\"]\n","[\"stdout\",\"# tests 3\\n\\n\"]\n","[\"stdout\",\"# pass 0\\n\\n\"]\n","[\"stdout\",\"# fail 3\\n\\n\"]\n"]}}
139
+ ]
@@ -0,0 +1,9 @@
1
+ <html>
2
+ <head>
3
+ <title>xhr</title>
4
+ </head>
5
+ <body>
6
+ <div id="result"></div>
7
+ <script type="text/javascript" src="/bundle.js"></script>
8
+ </body>
9
+ </html>
@@ -0,0 +1,13 @@
1
+ var http = require('../../');
2
+ var JSONStream = require('JSONStream');
3
+
4
+ http.get({ path : '/data.json' }, function (res) {
5
+ var parser = JSONStream.parse([ true ]);
6
+ res.pipe(parser);
7
+
8
+ parser.on('data', function (msg) {
9
+ var div = document.createElement('div');
10
+ div.textContent = JSON.stringify(msg);
11
+ document.body.appendChild(div);
12
+ });
13
+ });
@@ -0,0 +1,15 @@
1
+ Apache License, Version 2.0
2
+
3
+ Copyright (c) 2011 Dominic Tarr
4
+
5
+ Licensed under the Apache License, Version 2.0 (the "License");
6
+ you may not use this file except in compliance with the License.
7
+ You may obtain a copy of the License at
8
+
9
+ http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ Unless required by applicable law or agreed to in writing, software
12
+ distributed under the License is distributed on an "AS IS" BASIS,
13
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ See the License for the specific language governing permissions and
15
+ limitations under the License.
@@ -0,0 +1,24 @@
1
+ The MIT License
2
+
3
+ Copyright (c) 2011 Dominic Tarr
4
+
5
+ Permission is hereby granted, free of charge,
6
+ to any person obtaining a copy of this software and
7
+ associated documentation files (the "Software"), to
8
+ deal in the Software without restriction, including
9
+ without limitation the rights to use, copy, modify,
10
+ merge, publish, distribute, sublicense, and/or sell
11
+ copies of the Software, and to permit persons to whom
12
+ the Software is furnished to do so,
13
+ subject to the following conditions:
14
+
15
+ The above copyright notice and this permission notice
16
+ shall be included in all copies or substantial portions of the Software.
17
+
18
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
20
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
21
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
22
+ ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,13 @@
1
+ var request = require('request')
2
+ , JSONStream = require('JSONStream')
3
+ , es = require('event-stream')
4
+
5
+ var parser = JSONStream.parse(['rows', true]) //emit parts that match this path (any element of the rows array)
6
+ , req = request({url: 'http://isaacs.couchone.com/registry/_all_docs'})
7
+ , logger = es.mapSync(function (data) { //create a stream that logs to stderr,
8
+ console.error(data)
9
+ return data
10
+ })
11
+
12
+ req.pipe(parser)
13
+ parser.pipe(logger)
@@ -0,0 +1,189 @@
1
+ var Parser = require('jsonparse')
2
+ , Stream = require('stream').Stream
3
+
4
+ /*
5
+
6
+ the value of this.stack that creationix's jsonparse has is weird.
7
+
8
+ it makes this code ugly, but his problem is way harder that mine,
9
+ so i'll forgive him.
10
+
11
+ */
12
+
13
+ exports.parse = function (path) {
14
+
15
+ var stream = new Stream()
16
+ var parser = new Parser()
17
+ var count = 0
18
+ if(!path || !path.length)
19
+ path = null
20
+ parser.onValue = function () {
21
+ if(!this.root && this.stack.length == 1){
22
+ stream.root = this.value
23
+ }
24
+ if(!path || this.stack.length !== path.length)
25
+ return
26
+ var _path = []
27
+ for( var i = 0; i < (path.length - 1); i++) {
28
+ var key = path[i]
29
+ var c = this.stack[1 + (+i)]
30
+
31
+ if(!c) {
32
+ return
33
+ }
34
+ var m = check(key, c.key)
35
+ _path.push(c.key)
36
+
37
+ if(!m)
38
+ return
39
+
40
+ }
41
+ var c = this
42
+
43
+ var key = path[path.length - 1]
44
+ var m = check(key, c.key)
45
+ if(!m)
46
+ return
47
+ _path.push(c.key)
48
+
49
+ count ++
50
+ stream.emit('data', this.value[this.key])
51
+ }
52
+
53
+ parser._onToken = parser.onToken;
54
+
55
+ parser.onToken = function (token, value) {
56
+ parser._onToken(token, value);
57
+ if (this.stack.length === 0) {
58
+ if (stream.root) {
59
+ if(!path)
60
+ stream.emit('data', stream.root)
61
+ stream.emit('root', stream.root, count)
62
+ count = 0;
63
+ stream.root = null;
64
+ }
65
+ }
66
+ }
67
+
68
+ parser.onError = function (err) {
69
+ stream.emit('error', err)
70
+ }
71
+ stream.readable = true
72
+ stream.writable = true
73
+ stream.write = function (chunk) {
74
+ if('string' === typeof chunk) {
75
+ if ('undefined' === typeof Buffer) {
76
+ var buf = new Array(chunk.length)
77
+ for (var i = 0; i < chunk.length; i++) buf[i] = chunk.charCodeAt(i)
78
+ chunk = new Int32Array(buf)
79
+ } else {
80
+ chunk = new Buffer(chunk)
81
+ }
82
+ }
83
+ parser.write(chunk)
84
+ }
85
+ stream.end = function (data) {
86
+ if(data)
87
+ stream.write(data)
88
+ stream.emit('end')
89
+ }
90
+
91
+ stream.destroy = function () {
92
+ stream.emit('close');
93
+ }
94
+
95
+ return stream
96
+ }
97
+
98
+ function check (x, y) {
99
+ if ('string' === typeof x)
100
+ return y == x
101
+ else if (x && 'function' === typeof x.exec)
102
+ return x.exec(y)
103
+ else if ('boolean' === typeof x)
104
+ return x
105
+ else if ('function' === typeof x)
106
+ return x(y)
107
+ return false
108
+ }
109
+
110
+ exports.stringify = function (op, sep, cl) {
111
+ if (op === false){
112
+ op = ''
113
+ sep = '\n'
114
+ cl = ''
115
+ } else if (op == null) {
116
+
117
+ op = '[\n'
118
+ sep = '\n,\n'
119
+ cl = '\n]\n'
120
+
121
+ }
122
+
123
+ //else, what ever you like
124
+
125
+ var stream = new Stream ()
126
+ , first = true
127
+ , ended = false
128
+ , anyData = false
129
+ stream.write = function (data) {
130
+ anyData = true
131
+ var json = JSON.stringify(data)
132
+ if(first) { first = false ; stream.emit('data', op + json)}
133
+ else stream.emit('data', sep + json)
134
+ }
135
+ stream.end = function (data) {
136
+ if(ended)
137
+ return
138
+ ended = true
139
+ if(data) stream.write(data)
140
+ if(!anyData) stream.emit('data', op)
141
+ stream.emit('data', cl)
142
+
143
+ stream.emit('end')
144
+ }
145
+ stream.writable = true
146
+ stream.readable = true
147
+
148
+ return stream
149
+ }
150
+
151
+ exports.stringifyObject = function (op, sep, cl) {
152
+ if (op === false){
153
+ op = ''
154
+ sep = '\n'
155
+ cl = ''
156
+ } else if (op == null) {
157
+
158
+ op = '{\n'
159
+ sep = '\n,\n'
160
+ cl = '\n}\n'
161
+
162
+ }
163
+
164
+ //else, what ever you like
165
+
166
+ var stream = new Stream ()
167
+ , first = true
168
+ , ended = false
169
+ , anyData = false
170
+ stream.write = function (data) {
171
+ anyData = true
172
+ var json = JSON.stringify(data[0]) + ':' + JSON.stringify(data[1])
173
+ if(first) { first = false ; stream.emit('data', op + json)}
174
+ else stream.emit('data', sep + json)
175
+ }
176
+ stream.end = function (data) {
177
+ if(ended) return
178
+ ended = true
179
+ if(data) stream.write(data)
180
+ if(!anyData) stream.emit('data', op)
181
+ stream.emit('data', cl)
182
+
183
+ stream.emit('end')
184
+ }
185
+ stream.writable = true
186
+ stream.readable = true
187
+
188
+ return stream
189
+ }
@@ -0,0 +1,24 @@
1
+ The MIT License
2
+
3
+ Copyright (c) 2012 Tim Caswell
4
+
5
+ Permission is hereby granted, free of charge,
6
+ to any person obtaining a copy of this software and
7
+ associated documentation files (the "Software"), to
8
+ deal in the Software without restriction, including
9
+ without limitation the rights to use, copy, modify,
10
+ merge, publish, distribute, sublicense, and/or sell
11
+ copies of the Software, and to permit persons to whom
12
+ the Software is furnished to do so,
13
+ subject to the following conditions:
14
+
15
+ The above copyright notice and this permission notice
16
+ shall be included in all copies or substantial portions of the Software.
17
+
18
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
20
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
21
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
22
+ ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.