teabag 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (486) hide show
  1. data/MIT.LICENSE +22 -0
  2. data/README.md +407 -0
  3. data/app/assets/images/teabag/photo-white.jpg +0 -0
  4. data/app/assets/javascripts/teabag-jasmine.js +3488 -0
  5. data/app/assets/javascripts/teabag-mocha.js +5923 -0
  6. data/app/assets/javascripts/teabag/base/reporters.coffee +105 -0
  7. data/app/assets/javascripts/teabag/base/reporters/console.coffee +58 -0
  8. data/app/assets/javascripts/teabag/base/reporters/html.coffee +177 -0
  9. data/app/assets/javascripts/teabag/base/reporters/html/failure_view.coffee +12 -0
  10. data/app/assets/javascripts/teabag/base/reporters/html/progress_view.coffee +67 -0
  11. data/app/assets/javascripts/teabag/base/reporters/html/spec_view.coffee +46 -0
  12. data/app/assets/javascripts/teabag/base/reporters/html/suite_view.coffee +39 -0
  13. data/app/assets/javascripts/teabag/base/runner.coffee +22 -0
  14. data/app/assets/javascripts/teabag/base/teabag.coffee +18 -0
  15. data/app/assets/javascripts/teabag/jasmine.coffee +38 -0
  16. data/app/assets/javascripts/teabag/jasmine/reporters/html.coffee +11 -0
  17. data/app/assets/javascripts/teabag/mocha.coffee +21 -0
  18. data/app/assets/javascripts/teabag/mocha/reporters/console.coffee +14 -0
  19. data/app/assets/javascripts/teabag/mocha/reporters/html.coffee +27 -0
  20. data/app/assets/stylesheets/teabag.css +332 -0
  21. data/app/controllers/teabag/spec_controller.rb +25 -0
  22. data/app/views/teabag/spec/index.html.erb +18 -0
  23. data/config/routes.rb +8 -0
  24. data/lib/generators/teabag/install/POST_INSTALL +6 -0
  25. data/lib/generators/teabag/install/install_generator.rb +24 -0
  26. data/lib/generators/teabag/install/templates/initializer.rb +115 -0
  27. data/lib/generators/teabag/install/templates/spec_helper.js +31 -0
  28. data/lib/tasks/teabag.rake +5 -0
  29. data/lib/teabag.rb +6 -0
  30. data/lib/teabag/configuration.rb +68 -0
  31. data/lib/teabag/console.rb +57 -0
  32. data/lib/teabag/engine.rb +16 -0
  33. data/lib/teabag/exceptions.rb +6 -0
  34. data/lib/teabag/formatters/base_formatter.rb +32 -0
  35. data/lib/teabag/formatters/progress_formatter.rb +93 -0
  36. data/lib/teabag/phantomjs/runner.coffee +61 -0
  37. data/lib/teabag/result.rb +46 -0
  38. data/lib/teabag/runner.rb +49 -0
  39. data/lib/teabag/server.rb +64 -0
  40. data/lib/teabag/suite.rb +39 -0
  41. data/lib/teabag/version.rb +3 -0
  42. data/spec/dummy/Rakefile +7 -0
  43. data/spec/dummy/app/assets/javascripts/application.js +15 -0
  44. data/spec/dummy/app/assets/javascripts/specs/asset_spec.js +11 -0
  45. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  46. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  47. data/spec/dummy/config.ru +15 -0
  48. data/spec/dummy/config/application.rb +54 -0
  49. data/spec/dummy/config/boot.rb +10 -0
  50. data/spec/dummy/config/environment.rb +5 -0
  51. data/spec/dummy/config/environments/development.rb +27 -0
  52. data/spec/dummy/config/environments/production.rb +67 -0
  53. data/spec/dummy/config/environments/test.rb +29 -0
  54. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  55. data/spec/dummy/config/initializers/inflections.rb +15 -0
  56. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  57. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  58. data/spec/dummy/config/initializers/session_store.rb +8 -0
  59. data/spec/dummy/config/initializers/teabag.rb +22 -0
  60. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  61. data/spec/dummy/config/locales/en.yml +5 -0
  62. data/spec/dummy/config/routes.rb +58 -0
  63. data/spec/dummy/log/development.log +308541 -0
  64. data/spec/dummy/log/production.log +402 -0
  65. data/spec/dummy/log/test.log +3459 -0
  66. data/spec/dummy/public/404.html +26 -0
  67. data/spec/dummy/public/422.html +26 -0
  68. data/spec/dummy/public/500.html +25 -0
  69. data/spec/dummy/public/favicon.ico +0 -0
  70. data/spec/dummy/script/rails +6 -0
  71. data/spec/dummy/tmp/cache/assets/C13/B50/sprockets%2F431452d41e5087d2211162d23c63789b +0 -0
  72. data/spec/dummy/tmp/cache/assets/C18/F90/sprockets%2F369a3f720404378b4162541fd432742d +0 -0
  73. data/spec/dummy/tmp/cache/assets/C28/650/sprockets%2F24278fc33d7566396414307f37b119b6 +0 -0
  74. data/spec/dummy/tmp/cache/assets/C2B/5D0/sprockets%2F98606f6051a5fc71379af24236793353 +0 -0
  75. data/spec/dummy/tmp/cache/assets/C35/510/sprockets%2Fb5f1121863a3025179f1a621e7127b10 +0 -0
  76. data/spec/dummy/tmp/cache/assets/C46/E90/sprockets%2F006527268e406896b12c930eb572f00a +0 -0
  77. data/spec/dummy/tmp/cache/assets/C4A/700/sprockets%2F233efef497080a6a0226928033c09166 +0 -0
  78. data/spec/dummy/tmp/cache/assets/C4C/5E0/sprockets%2Fcb61192e6366f0228a57c91459c00256 +0 -0
  79. data/spec/dummy/tmp/cache/assets/C4E/6A0/sprockets%2F6443716ba17b71f265656634b3b9441d +0 -0
  80. data/spec/dummy/tmp/cache/assets/C4E/9B0/sprockets%2Fa807397434c9262c3d62da3e91152184 +0 -0
  81. data/spec/dummy/tmp/cache/assets/C59/250/sprockets%2Fa80d3fe493d2476e58c4323996064512 +0 -0
  82. data/spec/dummy/tmp/cache/assets/C5C/D00/sprockets%2Fdd8fdc961143499e53f5327126721608 +0 -0
  83. data/spec/dummy/tmp/cache/assets/C64/630/sprockets%2F9435866920a6269633da595e0638ecf4 +0 -0
  84. data/spec/dummy/tmp/cache/assets/C64/740/sprockets%2Fa65d355185e6ed0699611739c38a6683 +0 -0
  85. data/spec/dummy/tmp/cache/assets/C6C/3A0/sprockets%2F35a43b3a31512a820f249c841b7b3862 +0 -0
  86. data/spec/dummy/tmp/cache/assets/C75/D50/sprockets%2F5302968a40e08d2c011aa38666d273f6 +0 -0
  87. data/spec/dummy/tmp/cache/assets/C78/EF0/sprockets%2F65f827a4a5337d05d037845161b41ab8 +0 -0
  88. data/spec/dummy/tmp/cache/assets/C78/F80/sprockets%2F9161622ddd251097a4ab816b8220984c +0 -0
  89. data/spec/dummy/tmp/cache/assets/C7D/730/sprockets%2F6c062828354bbf37032360766d652fea +0 -0
  90. data/spec/dummy/tmp/cache/assets/C80/EC0/sprockets%2F8ae4c854735563d420f90b1b236a3497 +0 -0
  91. data/spec/dummy/tmp/cache/assets/C80/F70/sprockets%2Fe5c9811902c221828ea647978f000be3 +0 -0
  92. data/spec/dummy/tmp/cache/assets/C81/630/sprockets%2F8914408137182ffb4a2f37176f2e207d +0 -0
  93. data/spec/dummy/tmp/cache/assets/C81/D20/sprockets%2F7979862b333720a8f2021a877a4af0f4 +0 -0
  94. data/spec/dummy/tmp/cache/assets/C83/C30/sprockets%2F9c8d8400390c4927ab703e2b785415d6 +0 -0
  95. data/spec/dummy/tmp/cache/assets/C85/D10/sprockets%2F01d329696710efd821850ec83292bc76 +0 -0
  96. data/spec/dummy/tmp/cache/assets/C87/850/sprockets%2F45dd8808f5c34633480a87058f025bc6 +0 -0
  97. data/spec/dummy/tmp/cache/assets/C88/720/sprockets%2F0b0cf4198eb5818ffc69908188301127 +0 -0
  98. data/spec/dummy/tmp/cache/assets/C89/700/sprockets%2F259935a7704fef0069303ea63fa89408 +0 -0
  99. data/spec/dummy/tmp/cache/assets/C8A/460/sprockets%2F77bffd9959420103906722b404ae8d59 +0 -0
  100. data/spec/dummy/tmp/cache/assets/C8D/8A0/sprockets%2F52b90ee84d6593767a35dc417b862228 +0 -0
  101. data/spec/dummy/tmp/cache/assets/C90/9D0/sprockets%2Ff8669a76788e96f11e6d8630a10113a8 +0 -0
  102. data/spec/dummy/tmp/cache/assets/C91/040/sprockets%2F8d009759ea4847ffd6171a1579f41634 +0 -0
  103. data/spec/dummy/tmp/cache/assets/C91/FA0/sprockets%2F2eb81283f5789ae91a69344552db3856 +0 -0
  104. data/spec/dummy/tmp/cache/assets/C94/7F0/sprockets%2F5511d2208b7b12aa9130a72ef07b6803 +0 -0
  105. data/spec/dummy/tmp/cache/assets/C96/A60/sprockets%2F6e220f96d15d5db885711f50876993e5 +0 -0
  106. data/spec/dummy/tmp/cache/assets/C9D/E90/sprockets%2F3045c9533f179d3e1c805d163ed002a0 +0 -0
  107. data/spec/dummy/tmp/cache/assets/CA2/7D0/sprockets%2F1f39d625b67ba277a4811d361074a2d1 +0 -0
  108. data/spec/dummy/tmp/cache/assets/CA2/F50/sprockets%2F86094c5d1b6399d614b0771a3a0a45b0 +0 -0
  109. data/spec/dummy/tmp/cache/assets/CA5/760/sprockets%2F06db38110a7245399c693831d01bcb6e +0 -0
  110. data/spec/dummy/tmp/cache/assets/CA6/2F0/sprockets%2F20040c18b672e4c4d2731a2a929d8b97 +0 -0
  111. data/spec/dummy/tmp/cache/assets/CA6/DF0/sprockets%2F7da83747ce56e49393b6b8726587f846 +0 -0
  112. data/spec/dummy/tmp/cache/assets/CA8/400/sprockets%2F7fb4801a4d3c5ed42610b9076362283f +0 -0
  113. data/spec/dummy/tmp/cache/assets/CA9/440/sprockets%2F488d156744e10731bee14b5a931a581d +0 -0
  114. data/spec/dummy/tmp/cache/assets/CAA/0C0/sprockets%2F057b0ce384f16d9202ae84473436cc35 +0 -0
  115. data/spec/dummy/tmp/cache/assets/CAD/410/sprockets%2F651414e5c7e86f05c5108dc71626b25c +0 -0
  116. data/spec/dummy/tmp/cache/assets/CB1/0D0/sprockets%2Fe3ca7997e9150f7731f50b227533d12c +0 -0
  117. data/spec/dummy/tmp/cache/assets/CB1/690/sprockets%2F7a8100c6511e848b1148287ad87cb47f +0 -0
  118. data/spec/dummy/tmp/cache/assets/CB2/640/sprockets%2Fd629e34645a3892189c1f2c052f6d2c2 +0 -0
  119. data/spec/dummy/tmp/cache/assets/CB3/240/sprockets%2Fb3935adb01833c52148cf492898db094 +0 -0
  120. data/spec/dummy/tmp/cache/assets/CB4/970/sprockets%2Fe4737223d2ba69d655f6611f0527d58b +0 -0
  121. data/spec/dummy/tmp/cache/assets/CB6/190/sprockets%2Ff18444022b08982685f9cd15b62b4dd7 +0 -0
  122. data/spec/dummy/tmp/cache/assets/CB6/C00/sprockets%2F4119946cb82f96e5a2793013a3bdd855 +0 -0
  123. data/spec/dummy/tmp/cache/assets/CB7/BF0/sprockets%2Fd56192b300ec0979b66d022e996fa079 +0 -0
  124. data/spec/dummy/tmp/cache/assets/CB8/E20/sprockets%2Fa593029687d6717431a3dc7360ca9dd9 +0 -0
  125. data/spec/dummy/tmp/cache/assets/CBB/FA0/sprockets%2F74922109263bdc965b2e9567eec6d154 +0 -0
  126. data/spec/dummy/tmp/cache/assets/CBC/E20/sprockets%2Faf708488d1178752bfbb925184f194c3 +0 -0
  127. data/spec/dummy/tmp/cache/assets/CBE/AB0/sprockets%2F3f8985f1b9c67404dd9a14f0647404c8 +0 -0
  128. data/spec/dummy/tmp/cache/assets/CBF/630/sprockets%2F707d2db81468088470d476abff35388d +0 -0
  129. data/spec/dummy/tmp/cache/assets/CC1/440/sprockets%2F17172f9f3b01ee6fc473047c76943e89 +0 -0
  130. data/spec/dummy/tmp/cache/assets/CC2/7B0/sprockets%2Ff35764dca2f5e55c5538589cf0125398 +0 -0
  131. data/spec/dummy/tmp/cache/assets/CC2/EC0/sprockets%2F76bf80cb571ca530357f78db78167866 +0 -0
  132. data/spec/dummy/tmp/cache/assets/CC4/800/sprockets%2Fdc523a6389fe6285945c07a90d58c792 +0 -0
  133. data/spec/dummy/tmp/cache/assets/CC4/CC0/sprockets%2F94470799e3269f582188fe8e5201acac +0 -0
  134. data/spec/dummy/tmp/cache/assets/CC4/D20/sprockets%2F580f5e966a053317b284bc9d99180ff9 +0 -0
  135. data/spec/dummy/tmp/cache/assets/CC6/D00/sprockets%2Fc3ad440856320f4a51301c6ecb6b6342 +0 -0
  136. data/spec/dummy/tmp/cache/assets/CCB/540/sprockets%2F304d8554d7e38ae101c47b0a027147bc +0 -0
  137. data/spec/dummy/tmp/cache/assets/CCD/560/sprockets%2Fc026ba3c1ad5675314735b56c2435ac7 +0 -0
  138. data/spec/dummy/tmp/cache/assets/CCE/960/sprockets%2F522c8e0801c33373edc7f5d3126a530c +0 -0
  139. data/spec/dummy/tmp/cache/assets/CCE/C50/sprockets%2Fe12774c2fea852112414bb379a71f31a +0 -0
  140. data/spec/dummy/tmp/cache/assets/CCF/390/sprockets%2F72dd112058cad36028c2450671ddf26d +0 -0
  141. data/spec/dummy/tmp/cache/assets/CD1/0B0/sprockets%2F5bf8f21172210208e5dce60265d40b9d +0 -0
  142. data/spec/dummy/tmp/cache/assets/CD1/620/sprockets%2F06a3eb05fcb4175a679d6084a06026a6 +0 -0
  143. data/spec/dummy/tmp/cache/assets/CD1/BD0/sprockets%2Fb2089774122944ac8c3abb32f70c23d3 +0 -0
  144. data/spec/dummy/tmp/cache/assets/CD3/460/sprockets%2F7f3f6802b0b309ed142d0b671c9640c4 +0 -0
  145. data/spec/dummy/tmp/cache/assets/CD4/050/sprockets%2F4c36a6e9e6874070516a6c40b0309daa +0 -0
  146. data/spec/dummy/tmp/cache/assets/CD4/D20/sprockets%2F40c6b1133a952429a7b8769c1d3c3dd0 +0 -0
  147. data/spec/dummy/tmp/cache/assets/CD7/B90/sprockets%2Fe3e49e4c1c68a1e32355620d1d3b7265 +0 -0
  148. data/spec/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  149. data/spec/dummy/tmp/cache/assets/CD9/880/sprockets%2F2e8e3822ab8a2ce41cf39554226230d9 +0 -0
  150. data/spec/dummy/tmp/cache/assets/CD9/9B0/sprockets%2Fdc1f0447e4c5c2f990750b2f722c5900 +0 -0
  151. data/spec/dummy/tmp/cache/assets/CD9/DD0/sprockets%2Fe5774759168a731da1c1149ecf0e1b03 +0 -0
  152. data/spec/dummy/tmp/cache/assets/CDA/2B0/sprockets%2Fc3a13686484d2cdc5b859b2300b0d489 +0 -0
  153. data/spec/dummy/tmp/cache/assets/CDA/930/sprockets%2F7dd8506d171b15d410eb245f60b99b46 +0 -0
  154. data/spec/dummy/tmp/cache/assets/CDB/170/sprockets%2Ffd3d8740748be26004cf49b130680e1e +0 -0
  155. data/spec/dummy/tmp/cache/assets/CDB/630/sprockets%2Ffd1626fe1016c81d57217f7f80c4370a +0 -0
  156. data/spec/dummy/tmp/cache/assets/CDC/EB0/sprockets%2F627ab41907f375c3efc41a44e090d961 +0 -0
  157. data/spec/dummy/tmp/cache/assets/CDD/430/sprockets%2Fe201772e6124a4c0d53de19696ac8b94 +0 -0
  158. data/spec/dummy/tmp/cache/assets/CE0/190/sprockets%2F8d6df52167f36d9e1655f989e91699c7 +0 -0
  159. data/spec/dummy/tmp/cache/assets/CE0/CF0/sprockets%2Fea163522b70cf77176d95b4caa560939 +0 -0
  160. data/spec/dummy/tmp/cache/assets/CE1/250/sprockets%2Ffdc680a0d4383d37910e549ca96f5303 +0 -0
  161. data/spec/dummy/tmp/cache/assets/CE1/730/sprockets%2Fa1678837061e18d7aca0286c07acf676 +0 -0
  162. data/spec/dummy/tmp/cache/assets/CE2/9C0/sprockets%2F24939c09b831b5f057100fe4776dccf4 +0 -0
  163. data/spec/dummy/tmp/cache/assets/CE2/DA0/sprockets%2Ff3ac0c65e27949133e0ea9b8250a3977 +0 -0
  164. data/spec/dummy/tmp/cache/assets/CE2/E90/sprockets%2F442a112b6b94b9728d6fa0bc6f474694 +0 -0
  165. data/spec/dummy/tmp/cache/assets/CE3/1F0/sprockets%2Fe69a515d3a9d14c669be8871012a7d07 +0 -0
  166. data/spec/dummy/tmp/cache/assets/CE3/B20/sprockets%2F61ccc7dcd2082970836964ac01f54b96 +0 -0
  167. data/spec/dummy/tmp/cache/assets/CE4/580/sprockets%2F2296de52158bde693192f14282b5edf1 +0 -0
  168. data/spec/dummy/tmp/cache/assets/CE4/FD0/sprockets%2F4295ee9f678aa2db21f5b1565616a319 +0 -0
  169. data/spec/dummy/tmp/cache/assets/CE6/270/sprockets%2F2c98152560d18470fec8cf4c6829b4d0 +0 -0
  170. data/spec/dummy/tmp/cache/assets/CE6/7C0/sprockets%2Fa03a2c86ce6724be8542295e1cf24798 +0 -0
  171. data/spec/dummy/tmp/cache/assets/CE6/990/sprockets%2F02e1c54cebf6319465e469269b91ab66 +0 -0
  172. data/spec/dummy/tmp/cache/assets/CE7/A60/sprockets%2Ff58eee249aa167d23f8220087bb46684 +0 -0
  173. data/spec/dummy/tmp/cache/assets/CE9/9E0/sprockets%2F135480d497ed7e4884462dc0ef0b80d7 +0 -0
  174. data/spec/dummy/tmp/cache/assets/CEA/6D0/sprockets%2Fc95345583b2c6df7850cef943c5a0375 +0 -0
  175. data/spec/dummy/tmp/cache/assets/CEB/680/sprockets%2F67f0794ef8c0576d5c7da34f4437305a +0 -0
  176. data/spec/dummy/tmp/cache/assets/CEB/B20/sprockets%2F5c3535c9b266a5cb17824f5676a775dd +0 -0
  177. data/spec/dummy/tmp/cache/assets/CEB/B40/sprockets%2F1150bf8d912aa100a132251eefaf6045 +0 -0
  178. data/spec/dummy/tmp/cache/assets/CEB/D80/sprockets%2F8992063c286f1379f2075ebef3ae21c8 +0 -0
  179. data/spec/dummy/tmp/cache/assets/CED/A20/sprockets%2F38752bc804bdd87e3823be65866a0c87 +0 -0
  180. data/spec/dummy/tmp/cache/assets/CEF/960/sprockets%2F815667b28e33482c8f0ba479b72af5e9 +0 -0
  181. data/spec/dummy/tmp/cache/assets/CF1/C50/sprockets%2F57bd9ac92067ea01882feef075582758 +0 -0
  182. data/spec/dummy/tmp/cache/assets/CF2/6A0/sprockets%2F3f295ed908e399eaa764b3a187e52663 +0 -0
  183. data/spec/dummy/tmp/cache/assets/CF3/3A0/sprockets%2F6571249b82eb52e7c7e035c692df9b69 +0 -0
  184. data/spec/dummy/tmp/cache/assets/CF4/6F0/sprockets%2Fed96f92571224b862b84d7078b86ded3 +0 -0
  185. data/spec/dummy/tmp/cache/assets/CF7/F10/sprockets%2F8c45854ebd195b52cc42bf3f99996336 +0 -0
  186. data/spec/dummy/tmp/cache/assets/CF8/780/sprockets%2F8845b81ff27cdb57c835836c9f91a265 +0 -0
  187. data/spec/dummy/tmp/cache/assets/CF9/D00/sprockets%2F9da50f3d2073a00c62f35ca6c04a9561 +0 -0
  188. data/spec/dummy/tmp/cache/assets/CFA/C00/sprockets%2F455bb7218b44a4cc162b1ec574cb4044 +0 -0
  189. data/spec/dummy/tmp/cache/assets/CFB/210/sprockets%2F9104695bfbf9a9d4b94382e6e90487a9 +0 -0
  190. data/spec/dummy/tmp/cache/assets/CFB/CA0/sprockets%2F5fd863f7896134b607496c9b0c7b6d7f +0 -0
  191. data/spec/dummy/tmp/cache/assets/CFC/380/sprockets%2Fa7443cbd671446a589867dd5f4a4f989 +0 -0
  192. data/spec/dummy/tmp/cache/assets/D00/110/sprockets%2F6a6353b7723a8b21708e0fbfe04bd422 +0 -0
  193. data/spec/dummy/tmp/cache/assets/D00/470/sprockets%2Fedd35336ed5f26cb44251532813b0c4c +0 -0
  194. data/spec/dummy/tmp/cache/assets/D00/B50/sprockets%2F3c4e003ba820ca79b7c153287a7f8a04 +0 -0
  195. data/spec/dummy/tmp/cache/assets/D03/630/sprockets%2F5d8da32dba6a7be70426a1d554773701 +0 -0
  196. data/spec/dummy/tmp/cache/assets/D03/A90/sprockets%2F4b6f4d85185cdd8027a202c7d104a65b +0 -0
  197. data/spec/dummy/tmp/cache/assets/D04/170/sprockets%2F76ab1dc02e6c7618852708a1e05a2df3 +0 -0
  198. data/spec/dummy/tmp/cache/assets/D04/480/sprockets%2F8bd8f10500b21d2f9d94e4cd1401c936 +0 -0
  199. data/spec/dummy/tmp/cache/assets/D05/8D0/sprockets%2F319f8f235f452343f1ebf03cb262d23d +0 -0
  200. data/spec/dummy/tmp/cache/assets/D07/120/sprockets%2Fe65cdfadc710ed84710627360a50a738 +0 -0
  201. data/spec/dummy/tmp/cache/assets/D07/BE0/sprockets%2F41e21b4d2cbf56b9933e8239ea0e7032 +0 -0
  202. data/spec/dummy/tmp/cache/assets/D08/BD0/sprockets%2F22c1dd6fa27601451d5cf6c840e0668e +0 -0
  203. data/spec/dummy/tmp/cache/assets/D09/BF0/sprockets%2F9e6bca5d26f50d9484385d51ba04312c +0 -0
  204. data/spec/dummy/tmp/cache/assets/D09/D00/sprockets%2F8d94b71c7c7b5e05166e15ccd0a12447 +0 -0
  205. data/spec/dummy/tmp/cache/assets/D0B/210/sprockets%2Fb95ce127097fba0e4019f633e91b730d +0 -0
  206. data/spec/dummy/tmp/cache/assets/D0C/B80/sprockets%2Fc4891b60864cf8457af101c9a211db8d +0 -0
  207. data/spec/dummy/tmp/cache/assets/D0D/060/sprockets%2F03c3bda8931e83e888ea8c95106300ae +0 -0
  208. data/spec/dummy/tmp/cache/assets/D0D/5B0/sprockets%2Fd8056958f488bbbea304151530ea4cb9 +0 -0
  209. data/spec/dummy/tmp/cache/assets/D0E/920/sprockets%2F47b207ec61677ee25b0001de3f96f84b +0 -0
  210. data/spec/dummy/tmp/cache/assets/D0E/E60/sprockets%2F4d8960a63bdca7075662239ef4b1de14 +0 -0
  211. data/spec/dummy/tmp/cache/assets/D0F/E80/sprockets%2Fb13bf7ddc4ee98083c79011ad7271275 +0 -0
  212. data/spec/dummy/tmp/cache/assets/D10/CE0/sprockets%2F602cdc3188bd940ab8ecc88e62390291 +0 -0
  213. data/spec/dummy/tmp/cache/assets/D10/EF0/sprockets%2F413d56da9f4db84a99fa73b11d196142 +0 -0
  214. data/spec/dummy/tmp/cache/assets/D11/340/sprockets%2F1fee97021c532d76bb64f4f19e8a1813 +0 -0
  215. data/spec/dummy/tmp/cache/assets/D11/B00/sprockets%2F97aa86f14ae420f87553523e340acdf8 +0 -0
  216. data/spec/dummy/tmp/cache/assets/D11/E50/sprockets%2Fe384d6dc634ba600219e284f31bf991f +0 -0
  217. data/spec/dummy/tmp/cache/assets/D11/F80/sprockets%2F48961522f6cd1a15f2fe6e25f1b37a75 +0 -0
  218. data/spec/dummy/tmp/cache/assets/D15/0A0/sprockets%2F6b913f0e2d4e3355989bbc14650ed8d4 +0 -0
  219. data/spec/dummy/tmp/cache/assets/D15/210/sprockets%2F79b3efa76951f9a0b25a1df07751d672 +0 -0
  220. data/spec/dummy/tmp/cache/assets/D15/750/sprockets%2F8effdd3e668a4036260a3e370f3b6657 +0 -0
  221. data/spec/dummy/tmp/cache/assets/D15/F10/sprockets%2Fc132f823916bcefc67d546d719dd4351 +0 -0
  222. data/spec/dummy/tmp/cache/assets/D16/790/sprockets%2F816a88991903fab936c1de6a6bd1e280 +0 -0
  223. data/spec/dummy/tmp/cache/assets/D16/F20/sprockets%2Fe3c050514d0e8c750d2ac977a97a69e9 +0 -0
  224. data/spec/dummy/tmp/cache/assets/D17/450/sprockets%2Ffac8560813729f008ca8b09f4a76e0e9 +0 -0
  225. data/spec/dummy/tmp/cache/assets/D17/710/sprockets%2Ffa49fb6823d466e79a195e0cd71340c5 +0 -0
  226. data/spec/dummy/tmp/cache/assets/D18/3D0/sprockets%2Fef037f0fc7cb0f80478b5465f564246d +0 -0
  227. data/spec/dummy/tmp/cache/assets/D1A/D30/sprockets%2F815a5177e9edba0c5c996182ef1b3675 +0 -0
  228. data/spec/dummy/tmp/cache/assets/D1C/250/sprockets%2F22f9883fa2d48e35e7cf9407a9a391b1 +0 -0
  229. data/spec/dummy/tmp/cache/assets/D1C/AE0/sprockets%2F64f4a3d1ef3f457e9117c857dab97073 +0 -0
  230. data/spec/dummy/tmp/cache/assets/D1E/AA0/sprockets%2F5c8741a556bc955cd36e61c88582b6dc +0 -0
  231. data/spec/dummy/tmp/cache/assets/D20/4E0/sprockets%2F8996e772cbbc3462a4578bed8a07880b +0 -0
  232. data/spec/dummy/tmp/cache/assets/D20/710/sprockets%2Fa6ac072e74c49f8c7f1c93313976a6e9 +0 -0
  233. data/spec/dummy/tmp/cache/assets/D20/980/sprockets%2F7245e0b92e389903ef6bb8f9b263d1e8 +0 -0
  234. data/spec/dummy/tmp/cache/assets/D20/C60/sprockets%2F0acbe1111c581802127531ef0caea7b9 +0 -0
  235. data/spec/dummy/tmp/cache/assets/D21/010/sprockets%2F8424ac59b80ac6c7f7d8534ce1935e87 +0 -0
  236. data/spec/dummy/tmp/cache/assets/D25/A40/sprockets%2F3203df91221911b0a35e3dd1f954abbd +0 -0
  237. data/spec/dummy/tmp/cache/assets/D27/350/sprockets%2Fc5cadc26988e3e7544817fa817fc8806 +0 -0
  238. data/spec/dummy/tmp/cache/assets/D27/900/sprockets%2F64be39c8e378779e3323d4925ac94eaf +0 -0
  239. data/spec/dummy/tmp/cache/assets/D27/A30/sprockets%2F1d15efb1ce5c9a479c87919d58b69571 +0 -0
  240. data/spec/dummy/tmp/cache/assets/D29/350/sprockets%2Fb8c14bbb2c24d881ba2a54d56715031f +0 -0
  241. data/spec/dummy/tmp/cache/assets/D2C/720/sprockets%2F293d8f7e19eefc1f7d397417e077467b +0 -0
  242. data/spec/dummy/tmp/cache/assets/D2D/F00/sprockets%2Fe7c0aa671a08e35e084fd1dd00330a89 +0 -0
  243. data/spec/dummy/tmp/cache/assets/D2F/520/sprockets%2Fea2308e8add6880c1c4d47040ab710d7 +0 -0
  244. data/spec/dummy/tmp/cache/assets/D2F/AD0/sprockets%2Fc8087368a419b7a2a010173ebaca8d2f +0 -0
  245. data/spec/dummy/tmp/cache/assets/D30/480/sprockets%2Feb011f46c64dbefb1f7e21329644c240 +0 -0
  246. data/spec/dummy/tmp/cache/assets/D31/9C0/sprockets%2Fbd102a4f5a4985c3519dd6ab0295a1c6 +0 -0
  247. data/spec/dummy/tmp/cache/assets/D32/500/sprockets%2F6927df5a24d91c75d001e2b5600ab8be +0 -0
  248. data/spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  249. data/spec/dummy/tmp/cache/assets/D33/910/sprockets%2F18789ea0bbe0ac29a960b15ab082638b +0 -0
  250. data/spec/dummy/tmp/cache/assets/D33/F10/sprockets%2F44e1ef2cd8b518f7d2411ce56a11440f +0 -0
  251. data/spec/dummy/tmp/cache/assets/D34/B10/sprockets%2F810a3d507db1d548a1d314c9cc59c66b +0 -0
  252. data/spec/dummy/tmp/cache/assets/D35/030/sprockets%2F30d01c0eb55160b6f97568b2bb16dfc9 +0 -0
  253. data/spec/dummy/tmp/cache/assets/D35/260/sprockets%2Fd02b5f0131a65460b9bd146dd7e98f3a +0 -0
  254. data/spec/dummy/tmp/cache/assets/D35/7C0/sprockets%2Ff536a2606eaf7d542c0985104cb62baf +0 -0
  255. data/spec/dummy/tmp/cache/assets/D35/F00/sprockets%2F8e7f22358123b7eb5e21d17f442ce0ac +0 -0
  256. data/spec/dummy/tmp/cache/assets/D36/3F0/sprockets%2F845a64b2a4fdd702bb8d325cc6715a28 +0 -0
  257. data/spec/dummy/tmp/cache/assets/D36/4C0/sprockets%2Fba10098fc535146ed4fb9744cf262a0c +0 -0
  258. data/spec/dummy/tmp/cache/assets/D36/E20/sprockets%2Fa6d48550d8c46cb4a91e2b1aa147647c +0 -0
  259. data/spec/dummy/tmp/cache/assets/D37/300/sprockets%2F2d0e503e6a7c7c7fdc9912501b2f6b43 +0 -0
  260. data/spec/dummy/tmp/cache/assets/D37/890/sprockets%2F4728d0522ff8b44c0230bc9feb46be25 +0 -0
  261. data/spec/dummy/tmp/cache/assets/D37/FF0/sprockets%2F96841ca4cfae32c515077f3f5fc303b2 +0 -0
  262. data/spec/dummy/tmp/cache/assets/D38/B00/sprockets%2F32615e65544417aa3b3f46beb86d8bab +0 -0
  263. data/spec/dummy/tmp/cache/assets/D38/EE0/sprockets%2Ff84b1f15209a63ac21fbca89354a466e +0 -0
  264. data/spec/dummy/tmp/cache/assets/D39/4A0/sprockets%2F021a93e3443aaeee934d31ace59b5298 +0 -0
  265. data/spec/dummy/tmp/cache/assets/D3B/750/sprockets%2F82e2c0b56fb8a696d2d21914ee435bb3 +0 -0
  266. data/spec/dummy/tmp/cache/assets/D3C/840/sprockets%2Fc6202ec91d567a85bd3d46dc43ea9108 +0 -0
  267. data/spec/dummy/tmp/cache/assets/D3C/DF0/sprockets%2F8c7116c8ff734a0445d01f6cc765aa2f +0 -0
  268. data/spec/dummy/tmp/cache/assets/D3D/CF0/sprockets%2F91b40ebc02b8e92d0c44af437f7a7747 +0 -0
  269. data/spec/dummy/tmp/cache/assets/D3D/EC0/sprockets%2F1aa82cb99ef076aea10d472b30a58979 +0 -0
  270. data/spec/dummy/tmp/cache/assets/D3E/6E0/sprockets%2Fe326381907f18ac9ebbbc4de4e551281 +0 -0
  271. data/spec/dummy/tmp/cache/assets/D3E/F00/sprockets%2Fc7cbb28f23435b47b55562633ebfd3e5 +0 -0
  272. data/spec/dummy/tmp/cache/assets/D40/840/sprockets%2F9fef661284bc4c706438d2629cada3b2 +0 -0
  273. data/spec/dummy/tmp/cache/assets/D40/BD0/sprockets%2Ff846b62ec1982fc9a08d8a5390bd2c11 +0 -0
  274. data/spec/dummy/tmp/cache/assets/D41/470/sprockets%2Fe3b48827fa5c8d5d6131a8632e2a6fe2 +0 -0
  275. data/spec/dummy/tmp/cache/assets/D42/240/sprockets%2Fb0a17667d30992ced7cb88ab27592e3a +0 -0
  276. data/spec/dummy/tmp/cache/assets/D43/A10/sprockets%2F8442b5fecbe0cef217a02cb732879678 +0 -0
  277. data/spec/dummy/tmp/cache/assets/D44/030/sprockets%2Fdc7a0bf839ad6259b834663cde80e522 +0 -0
  278. data/spec/dummy/tmp/cache/assets/D44/5E0/sprockets%2F68a138c150ab5c4805673fee71d7ffa8 +0 -0
  279. data/spec/dummy/tmp/cache/assets/D44/910/sprockets%2Ff64342f6e93f0fe77fb584e418ea00b0 +0 -0
  280. data/spec/dummy/tmp/cache/assets/D44/A20/sprockets%2Ff3fb7b03f18b606976ef357b5452faa4 +0 -0
  281. data/spec/dummy/tmp/cache/assets/D44/E90/sprockets%2F05cfc0bf7c9938963d1d1c63248db80d +0 -0
  282. data/spec/dummy/tmp/cache/assets/D45/C30/sprockets%2Fcc744877558178a3adb77c441cadce70 +0 -0
  283. data/spec/dummy/tmp/cache/assets/D47/A90/sprockets%2Fe7ca382b607c595ea6505853f7fb63da +0 -0
  284. data/spec/dummy/tmp/cache/assets/D47/CC0/sprockets%2F78f1463961f6712fa6a254aece0e5e6f +0 -0
  285. data/spec/dummy/tmp/cache/assets/D48/160/sprockets%2F32bae66fd65ce3643efb543182f2e885 +0 -0
  286. data/spec/dummy/tmp/cache/assets/D49/1F0/sprockets%2F773b56f87127c6605e7d1d3faf2b6af6 +0 -0
  287. data/spec/dummy/tmp/cache/assets/D49/9B0/sprockets%2F6d919ff7440d2b2a2f7e8912ddd8d640 +0 -0
  288. data/spec/dummy/tmp/cache/assets/D49/A10/sprockets%2Fc4656bd995a6f297c26d19b13aadb963 +0 -0
  289. data/spec/dummy/tmp/cache/assets/D4C/980/sprockets%2F813d8d2c9dfa2b6bb4907726dc4e9575 +0 -0
  290. data/spec/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  291. data/spec/dummy/tmp/cache/assets/D4F/EC0/sprockets%2Ffb723a95fdf3f22571f8d2a5be657973 +0 -0
  292. data/spec/dummy/tmp/cache/assets/D50/D70/sprockets%2Fe2a3e6c95b11e0801a4eebae3a026026 +0 -0
  293. data/spec/dummy/tmp/cache/assets/D51/400/sprockets%2Ff5e433d8a31e80985b75ce598de236be +0 -0
  294. data/spec/dummy/tmp/cache/assets/D53/810/sprockets%2Fcea155118675976bd5fe591de76c7d2f +0 -0
  295. data/spec/dummy/tmp/cache/assets/D55/780/sprockets%2Ff2b8306673b8de97a955ad0bf9f59f07 +0 -0
  296. data/spec/dummy/tmp/cache/assets/D55/DF0/sprockets%2F65c7453638b948fce2c5da092f8d8b9c +0 -0
  297. data/spec/dummy/tmp/cache/assets/D56/5F0/sprockets%2Fde5fb7392753dffc426572fad96298f0 +0 -0
  298. data/spec/dummy/tmp/cache/assets/D57/C80/sprockets%2Fc48670f82e2725ba8a976ef89dbd14f7 +0 -0
  299. data/spec/dummy/tmp/cache/assets/D57/E80/sprockets%2F936422a2cde24ab55b13e1b7bc0477ab +0 -0
  300. data/spec/dummy/tmp/cache/assets/D58/A60/sprockets%2Ffbd202c6ff799289e8487dc6408c3fc3 +0 -0
  301. data/spec/dummy/tmp/cache/assets/D58/EB0/sprockets%2F711fd84e41ed999c5d4c5a257e4e69c8 +0 -0
  302. data/spec/dummy/tmp/cache/assets/D59/8C0/sprockets%2F669f568485ea47c9cdc9deb9c5430e60 +0 -0
  303. data/spec/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  304. data/spec/dummy/tmp/cache/assets/D5B/040/sprockets%2F1fe2cdf73111b418f2050ffd24438cab +0 -0
  305. data/spec/dummy/tmp/cache/assets/D5C/710/sprockets%2F9427d05cee2caa721241a25a9af1d08f +0 -0
  306. data/spec/dummy/tmp/cache/assets/D5C/CC0/sprockets%2Faa8bf6de211f2765b0a26f112b971f0c +0 -0
  307. data/spec/dummy/tmp/cache/assets/D5E/000/sprockets%2Fd6ed282a19da1494e200cb546dd06fa1 +0 -0
  308. data/spec/dummy/tmp/cache/assets/D5E/2C0/sprockets%2F3bcd6824fda2af4d4271cf241064aa66 +0 -0
  309. data/spec/dummy/tmp/cache/assets/D5E/FA0/sprockets%2Fc81c371ae2d61a6aa1708262fba79e0d +0 -0
  310. data/spec/dummy/tmp/cache/assets/D5F/8D0/sprockets%2F81d09e3bf818cc04391abc11af2e551d +0 -0
  311. data/spec/dummy/tmp/cache/assets/D61/1F0/sprockets%2F0c7a6176d2fc4db00bb9a74d36380fe1 +0 -0
  312. data/spec/dummy/tmp/cache/assets/D61/E60/sprockets%2F301aede3913de3c54c91b65cf2bd3381 +0 -0
  313. data/spec/dummy/tmp/cache/assets/D65/AD0/sprockets%2Fcc53fff930eaf306c15c4568cb265c00 +0 -0
  314. data/spec/dummy/tmp/cache/assets/D67/270/sprockets%2Fd465b64d071d2bdcdfa5cb9a67941502 +0 -0
  315. data/spec/dummy/tmp/cache/assets/D67/BC0/sprockets%2F35d2c2b45981ade5a2db2a9c7f37a615 +0 -0
  316. data/spec/dummy/tmp/cache/assets/D67/C20/sprockets%2F0d30bf27e5f74bbd85f313cb8d3c4623 +0 -0
  317. data/spec/dummy/tmp/cache/assets/D68/9E0/sprockets%2F98ab9a84a3916f0db147a06dbadb7416 +0 -0
  318. data/spec/dummy/tmp/cache/assets/D68/E40/sprockets%2Fdf17b1ee801b453787c73dd6be12e04b +0 -0
  319. data/spec/dummy/tmp/cache/assets/D69/8E0/sprockets%2F843b073aacad148a35d4932bd79d16fe +0 -0
  320. data/spec/dummy/tmp/cache/assets/D69/F90/sprockets%2F6a0795b7b38bd7e6142cd1b88211dade +0 -0
  321. data/spec/dummy/tmp/cache/assets/D6A/2D0/sprockets%2F827606b3fb0bf38eda9c52bbb398421c +0 -0
  322. data/spec/dummy/tmp/cache/assets/D6A/950/sprockets%2F429b1806cb7580ebf29f9a12c33cbea6 +0 -0
  323. data/spec/dummy/tmp/cache/assets/D6C/9C0/sprockets%2Fd66bdf546164ba223e20f56b5591ddfd +0 -0
  324. data/spec/dummy/tmp/cache/assets/D6D/DA0/sprockets%2Fac936bf40b42227a2bf9d474ae9ec149 +0 -0
  325. data/spec/dummy/tmp/cache/assets/D6E/100/sprockets%2F49c09b0dc6ff93d40a75cb21fe290f63 +0 -0
  326. data/spec/dummy/tmp/cache/assets/D6E/440/sprockets%2Fea163e80716638beecfab4232ea589e2 +0 -0
  327. data/spec/dummy/tmp/cache/assets/D6F/310/sprockets%2F624b651d37f7ec0c563c446fbf8afb32 +0 -0
  328. data/spec/dummy/tmp/cache/assets/D6F/5B0/sprockets%2F5dcc801a7a6c340c5baf525839f9b8b6 +0 -0
  329. data/spec/dummy/tmp/cache/assets/D6F/6A0/sprockets%2F049e1a560dbb9e05ea8c80f819f87ab0 +0 -0
  330. data/spec/dummy/tmp/cache/assets/D70/B00/sprockets%2F268e2650ac2842bedc9589fa50dea3a7 +0 -0
  331. data/spec/dummy/tmp/cache/assets/D71/A70/sprockets%2F4f10f5dd56c8a3ff78c460bbe3723a39 +0 -0
  332. data/spec/dummy/tmp/cache/assets/D71/D90/sprockets%2F6dbe8400ecd795a5d35d88b7761e0b0c +0 -0
  333. data/spec/dummy/tmp/cache/assets/D72/0A0/sprockets%2Fea31903c67f4ba197e25387b5dadef18 +0 -0
  334. data/spec/dummy/tmp/cache/assets/D75/450/sprockets%2F255ea2d250f249ac9c01fef695e8ab69 +0 -0
  335. data/spec/dummy/tmp/cache/assets/D75/7C0/sprockets%2F6e3687d47dcb4d2d533beb13097fe0f7 +0 -0
  336. data/spec/dummy/tmp/cache/assets/D75/900/sprockets%2F74b847bd8ff90740d31a43ad3787adbf +0 -0
  337. data/spec/dummy/tmp/cache/assets/D76/570/sprockets%2Feedc30392824106dbedb037f86e56fe9 +0 -0
  338. data/spec/dummy/tmp/cache/assets/D76/E00/sprockets%2F50fed4db42859966abf7ca704efe3801 +0 -0
  339. data/spec/dummy/tmp/cache/assets/D77/B30/sprockets%2F946cf2f17c7eb41037f9ee08ad67ec40 +0 -0
  340. data/spec/dummy/tmp/cache/assets/D78/2F0/sprockets%2F3c61f8915b8f717b1de788e6ecad122c +0 -0
  341. data/spec/dummy/tmp/cache/assets/D78/A80/sprockets%2Ff318eea7f126a77324697d6c64cefc1b +0 -0
  342. data/spec/dummy/tmp/cache/assets/D78/F10/sprockets%2Fa2d995664d1a9bf976c1bfbbb90f8710 +0 -0
  343. data/spec/dummy/tmp/cache/assets/D7A/190/sprockets%2F3db76fe68ad94be075dbc7524068f73a +0 -0
  344. data/spec/dummy/tmp/cache/assets/D7B/670/sprockets%2F8d4d09ed03575bc962fc960a80daf89b +0 -0
  345. data/spec/dummy/tmp/cache/assets/D7B/A10/sprockets%2F115c6bdb61feb003b1ec5a22b650dc70 +0 -0
  346. data/spec/dummy/tmp/cache/assets/D7C/480/sprockets%2F838cc81e53dac547f4677fb51536deea +0 -0
  347. data/spec/dummy/tmp/cache/assets/D7D/300/sprockets%2F99a2d55cdabf50d15798e04ef48c268d +0 -0
  348. data/spec/dummy/tmp/cache/assets/D7E/580/sprockets%2Fc05df808e9f42954a2ac6d77f4fa37d6 +0 -0
  349. data/spec/dummy/tmp/cache/assets/D7E/7B0/sprockets%2Ff3af9cd747e409763dc5f54a287a28bd +0 -0
  350. data/spec/dummy/tmp/cache/assets/D7E/C10/sprockets%2F747c98c3cc7494a62dd882752adffb2b +0 -0
  351. data/spec/dummy/tmp/cache/assets/D7E/C30/sprockets%2F769700a5e78898ce10adfeb708dd8d3a +0 -0
  352. data/spec/dummy/tmp/cache/assets/D83/2E0/sprockets%2Fda0e7087dd71899a9190c915cfec3f7f +0 -0
  353. data/spec/dummy/tmp/cache/assets/D84/730/sprockets%2Fd1594df6eb925fad655388ed16ca3e97 +0 -0
  354. data/spec/dummy/tmp/cache/assets/D85/5D0/sprockets%2Fde362e334a475cfca1a30fa5b713b43a +0 -0
  355. data/spec/dummy/tmp/cache/assets/D8C/520/sprockets%2F221cd58a042baac534d27e4cfedc1188 +0 -0
  356. data/spec/dummy/tmp/cache/assets/D8D/330/sprockets%2Feebcc6d7139d702bbca0b9503297a40b +0 -0
  357. data/spec/dummy/tmp/cache/assets/D8E/B60/sprockets%2F4b0c2be5008d0a0cfabff66396d54e24 +0 -0
  358. data/spec/dummy/tmp/cache/assets/D8F/730/sprockets%2Fa1baa64252215c3ae8ad0f3e53a79c9f +0 -0
  359. data/spec/dummy/tmp/cache/assets/D92/3D0/sprockets%2Fbcbe263bbf11dc9214435b9fdb64661b +0 -0
  360. data/spec/dummy/tmp/cache/assets/D93/AE0/sprockets%2F2b6352ed136a4ec37bd8c052bd4cb94e +0 -0
  361. data/spec/dummy/tmp/cache/assets/D95/2A0/sprockets%2F0400dd7cb35156becbbe56d21d9be776 +0 -0
  362. data/spec/dummy/tmp/cache/assets/D96/CA0/sprockets%2F9ddd0fc49b5aa172cf27ea22f1007f93 +0 -0
  363. data/spec/dummy/tmp/cache/assets/D97/520/sprockets%2Fea2442ae4caddb758dfb1964c601b476 +0 -0
  364. data/spec/dummy/tmp/cache/assets/D97/5B0/sprockets%2F7298f2202fb3b32eb8d082e3ed5add3d +0 -0
  365. data/spec/dummy/tmp/cache/assets/D9A/1B0/sprockets%2Fcd5e53be61cba95b5b0b81865b54d1f6 +0 -0
  366. data/spec/dummy/tmp/cache/assets/D9A/610/sprockets%2F84ede7f893018d9bea835f68c8f9ff83 +0 -0
  367. data/spec/dummy/tmp/cache/assets/D9B/5F0/sprockets%2Fb6ae4b74a9de2d8e0301a3c60099f9fb +0 -0
  368. data/spec/dummy/tmp/cache/assets/D9B/860/sprockets%2Fbb235cfe35b6451f6e32ffd271657eaa +0 -0
  369. data/spec/dummy/tmp/cache/assets/D9C/240/sprockets%2F5f68fb3f496c391c16aba45eca35ac16 +0 -0
  370. data/spec/dummy/tmp/cache/assets/D9E/CB0/sprockets%2Ff0efe0ab6bd753a8bb4481e46243d77f +0 -0
  371. data/spec/dummy/tmp/cache/assets/D9F/240/sprockets%2Fb49cb72a0d3c5acc716f869b7e1b82e4 +0 -0
  372. data/spec/dummy/tmp/cache/assets/DA1/2F0/sprockets%2F38aba5d40f6c8f55628383f1bee42cce +0 -0
  373. data/spec/dummy/tmp/cache/assets/DA1/610/sprockets%2F8e1affe8d3aaf50203f38815fbfe3276 +0 -0
  374. data/spec/dummy/tmp/cache/assets/DA2/080/sprockets%2Fbd60c499c297fc4decc19c930d6a25d1 +0 -0
  375. data/spec/dummy/tmp/cache/assets/DA3/780/sprockets%2Fff91edf7359e8b136482202aa7aeb4df +0 -0
  376. data/spec/dummy/tmp/cache/assets/DA5/0A0/sprockets%2F7a4b5928cec69ab65afff309a04d6b47 +0 -0
  377. data/spec/dummy/tmp/cache/assets/DA6/440/sprockets%2F5a10f4bab16828e582e57cdeef95c9b3 +0 -0
  378. data/spec/dummy/tmp/cache/assets/DA8/9D0/sprockets%2F27f6626356c7beb5f88ae2abfd318df2 +0 -0
  379. data/spec/dummy/tmp/cache/assets/DA9/BF0/sprockets%2Fc59f8f7bf494fe030610bc86bb7cc5e5 +0 -0
  380. data/spec/dummy/tmp/cache/assets/DAB/400/sprockets%2F52eed96b338eff526fc0198c61dd09eb +0 -0
  381. data/spec/dummy/tmp/cache/assets/DAE/4E0/sprockets%2F88cc3ab99c608879dd56164dbcc2ccb7 +0 -0
  382. data/spec/dummy/tmp/cache/assets/DAF/E90/sprockets%2Fc75bc7e2c949f7cfeb89b5e422352ea6 +0 -0
  383. data/spec/dummy/tmp/cache/assets/DB0/C60/sprockets%2Fdfb9bb691a396957a05ef79dea41d8c4 +0 -0
  384. data/spec/dummy/tmp/cache/assets/DB2/D70/sprockets%2Fe03d9b5c98dae04fa8eac8fb68697390 +0 -0
  385. data/spec/dummy/tmp/cache/assets/DB5/040/sprockets%2F9a9da5df88713663b9fbc945facca891 +0 -0
  386. data/spec/dummy/tmp/cache/assets/DB5/860/sprockets%2Facf25fab3016425a0e03c9d190fd4eac +0 -0
  387. data/spec/dummy/tmp/cache/assets/DBE/320/sprockets%2Faec8daa017ce18f166a19c1771dbfb03 +0 -0
  388. data/spec/dummy/tmp/cache/assets/DBF/D20/sprockets%2F3aea2f3e237abe2a9ed20b93f11d428f +0 -0
  389. data/spec/dummy/tmp/cache/assets/DC0/7B0/sprockets%2F8cb4d6e0c80cbf4dced28b20f07137d0 +0 -0
  390. data/spec/dummy/tmp/cache/assets/DC3/230/sprockets%2Fdf52e72eb73be91eccc60182191aed0b +0 -0
  391. data/spec/dummy/tmp/cache/assets/DC3/AC0/sprockets%2Fe29911eb34fdf4b710dd0d2c2cf24bc9 +0 -0
  392. data/spec/dummy/tmp/cache/assets/DC4/090/sprockets%2F7542f412d4caefe4f471bacf0c5861ca +0 -0
  393. data/spec/dummy/tmp/cache/assets/DC4/630/sprockets%2F4e84eafec121a136fcec3546b921eb6b +0 -0
  394. data/spec/dummy/tmp/cache/assets/DC5/EF0/sprockets%2F1c21100cd8e65c7f3fdcab61c5f77b9a +0 -0
  395. data/spec/dummy/tmp/cache/assets/DC7/A10/sprockets%2F84a8af0fcbf401864e1ae5bf092cba94 +0 -0
  396. data/spec/dummy/tmp/cache/assets/DC8/110/sprockets%2Faf09fc16a29e34c256dbbfa80a44b97b +0 -0
  397. data/spec/dummy/tmp/cache/assets/DCA/AD0/sprockets%2Fc5a76d97d72e0f35cb6aa2ea3f52c9c0 +0 -0
  398. data/spec/dummy/tmp/cache/assets/DCB/630/sprockets%2F0a6fda53cef15b3241be6457ac8b79ee +0 -0
  399. data/spec/dummy/tmp/cache/assets/DCC/AD0/sprockets%2Fcc866a8b1e1e8bf0d1470dcf7a09d72d +0 -0
  400. data/spec/dummy/tmp/cache/assets/DCD/EB0/sprockets%2F4f77f509126ecbced7ea2a5ab290c8d4 +0 -0
  401. data/spec/dummy/tmp/cache/assets/DCE/070/sprockets%2Fb6ddeed67c9ebb1834d6252ef0360d1f +0 -0
  402. data/spec/dummy/tmp/cache/assets/DCF/180/sprockets%2F9b325ef8af6f3d73b2fae1ddc62e2390 +0 -0
  403. data/spec/dummy/tmp/cache/assets/DCF/470/sprockets%2F2cfb3b8dd618a3985ac031db4fff871d +0 -0
  404. data/spec/dummy/tmp/cache/assets/DCF/8E0/sprockets%2F93e5d1b5dbfb40c3ad83692be9bb4e83 +0 -0
  405. data/spec/dummy/tmp/cache/assets/DCF/EB0/sprockets%2F02b4dd6785efb5ededa709d644a41ef1 +0 -0
  406. data/spec/dummy/tmp/cache/assets/DD1/4A0/sprockets%2Fde773ef01f38c9badc18b84c8022fb9a +0 -0
  407. data/spec/dummy/tmp/cache/assets/DD2/380/sprockets%2Fb97cfae90eb6314406519cda89a8dabe +0 -0
  408. data/spec/dummy/tmp/cache/assets/DD5/800/sprockets%2Ffda6208e29dc706ed387dcf6fbd062c5 +0 -0
  409. data/spec/dummy/tmp/cache/assets/DD8/410/sprockets%2Fa02603cca05ea0be3bda36fcdd30c841 +0 -0
  410. data/spec/dummy/tmp/cache/assets/DD8/D30/sprockets%2Feceaf7dce3295f2be5122df84fc59912 +0 -0
  411. data/spec/dummy/tmp/cache/assets/DDB/310/sprockets%2Facd5ff0e0a2d8c85034e6e0ed98ec988 +0 -0
  412. data/spec/dummy/tmp/cache/assets/DDB/4D0/sprockets%2F266a8cc69e818d1ddffe2c3b08456fbf +0 -0
  413. data/spec/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  414. data/spec/dummy/tmp/cache/assets/DE1/DB0/sprockets%2F36ef78dc8a94f2c9b95babd318aa87c8 +0 -0
  415. data/spec/dummy/tmp/cache/assets/DE1/F00/sprockets%2Fb9c4dd7fc3ee2ef6c9fa0834636569cc +0 -0
  416. data/spec/dummy/tmp/cache/assets/DE4/140/sprockets%2F139e4ab85d1aacb22c115fa136afdc8a +0 -0
  417. data/spec/dummy/tmp/cache/assets/DE8/890/sprockets%2Fb5b832aab2d232dbfbf2175b43dc7e5a +0 -0
  418. data/spec/dummy/tmp/cache/assets/DEB/110/sprockets%2F2dbdab0ce5babca645cdb5780004f875 +0 -0
  419. data/spec/dummy/tmp/cache/assets/DEF/D70/sprockets%2Fd2dd8561afb084ce11c38ca7a6d0afe2 +0 -0
  420. data/spec/dummy/tmp/cache/assets/DF0/250/sprockets%2F13d5b48ac25fae3b5fbf815dbeda0624 +0 -0
  421. data/spec/dummy/tmp/cache/assets/DF1/1B0/sprockets%2F2b1bc202f9a338942edbccb2cfef0d67 +0 -0
  422. data/spec/dummy/tmp/cache/assets/DF1/DB0/sprockets%2Fdcf49a5ce11aa5e31de0cfb78c0f1905 +0 -0
  423. data/spec/dummy/tmp/cache/assets/DF2/2E0/sprockets%2F4770759c4a66e996f4fded83f6ddfddd +0 -0
  424. data/spec/dummy/tmp/cache/assets/DF4/2F0/sprockets%2F1e83ae0cfdcae29ad98466b1a66d20ac +0 -0
  425. data/spec/dummy/tmp/cache/assets/DF6/0E0/sprockets%2F85b10db6e1afe643aba6d396abdd77f0 +0 -0
  426. data/spec/dummy/tmp/cache/assets/DF6/420/sprockets%2Ff1b2c8c5be5f2d33de5d540a3e62ca8f +0 -0
  427. data/spec/dummy/tmp/cache/assets/DF8/900/sprockets%2Fd924dea4cc364aedeea287029ccda435 +0 -0
  428. data/spec/dummy/tmp/cache/assets/DF9/E10/sprockets%2Fba2ada9f607edea6b98cc72a4e70d433 +0 -0
  429. data/spec/dummy/tmp/cache/assets/DFC/C30/sprockets%2Fb50a07cb30b0bd0eec8e98e5de79d65d +0 -0
  430. data/spec/dummy/tmp/cache/assets/DFF/0D0/sprockets%2Fc3ec68c48db663fa45ab4d6fe33dcf13 +0 -0
  431. data/spec/dummy/tmp/cache/assets/E00/2B0/sprockets%2Fffeda2454f8128abad731f07d7ea88da +0 -0
  432. data/spec/dummy/tmp/cache/assets/E01/B70/sprockets%2Fd6defcb54f67eac14ccf6203f36ad954 +0 -0
  433. data/spec/dummy/tmp/cache/assets/E02/6E0/sprockets%2F63d6a5cdb8cefa64ef76b5c6e0fd3720 +0 -0
  434. data/spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  435. data/spec/dummy/tmp/cache/assets/E07/8B0/sprockets%2F426ebeaf61b095557dfab89fd2e5e4eb +0 -0
  436. data/spec/dummy/tmp/cache/assets/E08/BB0/sprockets%2Fefac99af1af28543aef6fb607faa4973 +0 -0
  437. data/spec/dummy/tmp/cache/assets/E08/F10/sprockets%2F8cc67880efb9b750c30ac8a7abe58fbf +0 -0
  438. data/spec/dummy/tmp/cache/assets/E0D/070/sprockets%2F0e7ef9a5978dcc6b1abce678ef836c0a +0 -0
  439. data/spec/dummy/tmp/cache/assets/E14/8E0/sprockets%2Fb8d902ffcf8758fde63d0fa579ba6d4e +0 -0
  440. data/spec/dummy/tmp/cache/assets/E17/EF0/sprockets%2Fa291ad64a26afd055dfadabbdf03f154 +0 -0
  441. data/spec/dummy/tmp/cache/assets/E1C/D80/sprockets%2F4b95bfa6daa08c4eb0aa541a37e4d2fe +0 -0
  442. data/spec/dummy/tmp/cache/assets/E20/980/sprockets%2Fc90a064de7a16bb06df5b9ad4c1ed8ab +0 -0
  443. data/spec/dummy/tmp/cache/assets/E38/C40/sprockets%2F98dfe383fba3e8b185bcc47a6e1ebfc5 +0 -0
  444. data/spec/dummy/tmp/cache/assets/E53/950/sprockets%2Fffd7c2c672c3f8e8f87dff7919aeccd9 +0 -0
  445. data/spec/dummy/tmp/cache/assets/E56/0F0/sprockets%2Fc8da7a5dae8a9e6b0de61b381fec0b3c +0 -0
  446. data/spec/dummy/tmp/cache/assets/E58/310/sprockets%2Fecdb86ebf64d9140f01a903fbfad8cda +0 -0
  447. data/spec/dummy/tmp/cache/assets/E63/9A0/sprockets%2F6d75fdbce8bba3e734dc5fea6f2171ef +0 -0
  448. data/spec/dummy/tmp/cache/assets/E6E/260/sprockets%2Fd9f8ab8b91ef582cc6c99a3ba0dedfe6 +0 -0
  449. data/spec/dummy/tmp/cache/assets/E85/310/sprockets%2Ffa0facaebe1ccce1bc6d1e3e713976f7 +0 -0
  450. data/spec/dummy/tmp/cache/assets/EDE/7E0/sprockets%2F468f97db5bcfefe9bd7fec5fcc7dc77c +0 -0
  451. data/spec/dummy/tmp/cache/assets/F79/360/sprockets%2F0ce035fefee5ebdabc8efabfbdbd6ee4 +0 -0
  452. data/spec/dummy/tmp/cache/sass/86d3de43d0e3ec731ffbea073a11ea4a51eb7ee4/stylesheet1.css.scssc +0 -0
  453. data/spec/dummy/tmp/cache/sass/86d3de43d0e3ec731ffbea073a11ea4a51eb7ee4/stylesheet3.css.sassc +0 -0
  454. data/spec/javascripts/fixtures/fixture.html.haml +4 -0
  455. data/spec/javascripts/jasmine_helper.coffee +3 -0
  456. data/spec/javascripts/mocha_helper.coffee +3 -0
  457. data/spec/javascripts/spec_helper.coffee +5 -0
  458. data/spec/javascripts/stylesheets/stylesheet.css.scss +0 -0
  459. data/spec/javascripts/support/support.js.coffee +0 -0
  460. data/spec/javascripts/teabag/base/reporters/console_spec.coffee +121 -0
  461. data/spec/javascripts/teabag/base/reporters/html/failure_view_spec.coffee +1 -0
  462. data/spec/javascripts/teabag/base/reporters/html/progress_view_spec.coffee +1 -0
  463. data/spec/javascripts/teabag/base/reporters/html/spec_view_spec.coffee +1 -0
  464. data/spec/javascripts/teabag/base/reporters/html/suite_view_spec.coffee +1 -0
  465. data/spec/javascripts/teabag/base/reporters/html_spec.coffee +342 -0
  466. data/spec/javascripts/teabag/base/reporters_spec.coffee +267 -0
  467. data/spec/javascripts/teabag/base/runner_spec.coffee +34 -0
  468. data/spec/javascripts/teabag/base/teabag_spec.coffee +24 -0
  469. data/spec/javascripts/teabag/jasmine/jasmine_jspec.coffee +44 -0
  470. data/spec/javascripts/teabag/jasmine/reporters/html_jspec.coffee +17 -0
  471. data/spec/javascripts/teabag/jasmine/runner_jspec.coffee +66 -0
  472. data/spec/javascripts/teabag/mocha/mocha_mspec.coffee +47 -0
  473. data/spec/javascripts/teabag/mocha/reporters/console_mspec.coffee +20 -0
  474. data/spec/javascripts/teabag/mocha/reporters/html_mspec.coffee +51 -0
  475. data/spec/javascripts/teabag/mocha/runner_mspec.coffee +23 -0
  476. data/spec/javascripts/teabag/phantomjs/runner_spec.coffee +161 -0
  477. data/spec/spec_helper.rb +16 -0
  478. data/spec/teabag/configuration_spec.rb +95 -0
  479. data/spec/teabag/console_spec.rb +71 -0
  480. data/spec/teabag/engine_spec.rb +19 -0
  481. data/spec/teabag/formatters/progress_formatter_spec.rb +124 -0
  482. data/spec/teabag/result_spec.rb +85 -0
  483. data/spec/teabag/runner_spec.rb +74 -0
  484. data/spec/teabag/server_spec.rb +99 -0
  485. data/spec/teabag/suite_spec.rb +57 -0
  486. metadata +1029 -0
@@ -0,0 +1,402 @@
1
+ Started GET "/teabag/default" for 127.0.0.1 at 2012-12-06 19:02:12 -0700
2
+ Processing by Teabag::SpecController#index as HTML
3
+ Parameters: {"suite"=>"default"}
4
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1.3ms)
5
+ Completed 500 Internal Server Error in 24ms
6
+
7
+ ActionView::Template::Error (teabag/jasmine.css isn't precompiled):
8
+ 2: <html>
9
+ 3: <head>
10
+ 4: <title>Teabag :: Jasmine Runner</title>
11
+ 5: <%= stylesheet_link_tag *@suite.stylesheets %>
12
+ 6: <%= javascript_include_tag *@suite.javascripts %>
13
+ 7: <%= csrf_meta_tags %>
14
+ 8: </head>
15
+ actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:142:in `digest_for'
16
+ actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:151:in `rewrite_asset_path'
17
+ actionpack (3.2.9) lib/action_view/asset_paths.rb:27:in `compute_public_path'
18
+ actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:56:in `asset_path'
19
+ actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:49:in `block in stylesheet_link_tag'
20
+ actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:43:in `collect'
21
+ actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:43:in `stylesheet_link_tag'
22
+ /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb:5:in `___sers_jejacks_n__rojects_teabag_app_views_teabag_spec_index_html_erb___4169871125311015280_70291067386960'
23
+ actionpack (3.2.9) lib/action_view/template.rb:145:in `block in render'
24
+ activesupport (3.2.9) lib/active_support/notifications.rb:125:in `instrument'
25
+ actionpack (3.2.9) lib/action_view/template.rb:143:in `render'
26
+ actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
27
+ actionpack (3.2.9) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
28
+ activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
29
+ activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
30
+ activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
31
+ actionpack (3.2.9) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
32
+ actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
33
+ actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
34
+ actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
35
+ actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:18:in `render'
36
+ actionpack (3.2.9) lib/action_view/renderer/renderer.rb:36:in `render_template'
37
+ actionpack (3.2.9) lib/action_view/renderer/renderer.rb:17:in `render'
38
+ actionpack (3.2.9) lib/abstract_controller/rendering.rb:110:in `_render_template'
39
+ actionpack (3.2.9) lib/action_controller/metal/streaming.rb:225:in `_render_template'
40
+ actionpack (3.2.9) lib/abstract_controller/rendering.rb:103:in `render_to_body'
41
+ actionpack (3.2.9) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
42
+ actionpack (3.2.9) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
43
+ actionpack (3.2.9) lib/abstract_controller/rendering.rb:88:in `render'
44
+ actionpack (3.2.9) lib/action_controller/metal/rendering.rb:16:in `render'
45
+ actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
46
+ activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
47
+ /Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
48
+ activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `ms'
49
+ actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
50
+ actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
51
+ actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:39:in `render'
52
+ actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
53
+ actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
54
+ actionpack (3.2.9) lib/abstract_controller/base.rb:167:in `process_action'
55
+ actionpack (3.2.9) lib/action_controller/metal/rendering.rb:10:in `process_action'
56
+ actionpack (3.2.9) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
57
+ activesupport (3.2.9) lib/active_support/callbacks.rb:403:in `_run__3552318243151967909__process_action__2874567847908624482__callbacks'
58
+ activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
59
+ activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
60
+ activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
61
+ actionpack (3.2.9) lib/abstract_controller/callbacks.rb:17:in `process_action'
62
+ actionpack (3.2.9) lib/action_controller/metal/rescue.rb:29:in `process_action'
63
+ actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
64
+ activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
65
+ activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
66
+ activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
67
+ actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
68
+ actionpack (3.2.9) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
69
+ actionpack (3.2.9) lib/abstract_controller/base.rb:121:in `process'
70
+ actionpack (3.2.9) lib/abstract_controller/rendering.rb:45:in `process'
71
+ actionpack (3.2.9) lib/action_controller/metal.rb:203:in `dispatch'
72
+ actionpack (3.2.9) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
73
+ actionpack (3.2.9) lib/action_controller/metal.rb:246:in `block in action'
74
+ actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `call'
75
+ actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
76
+ actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:36:in `call'
77
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
78
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
79
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
80
+ actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
81
+ railties (3.2.9) lib/rails/engine.rb:479:in `call'
82
+ railties (3.2.9) lib/rails/railtie/configurable.rb:30:in `method_missing'
83
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
84
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
85
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
86
+ actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
87
+ actionpack (3.2.9) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
88
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
89
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
90
+ actionpack (3.2.9) lib/action_dispatch/middleware/head.rb:14:in `call'
91
+ actionpack (3.2.9) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
92
+ actionpack (3.2.9) lib/action_dispatch/middleware/flash.rb:242:in `call'
93
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
94
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
95
+ actionpack (3.2.9) lib/action_dispatch/middleware/cookies.rb:341:in `call'
96
+ actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
97
+ activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `_run__3565056172881271905__call__213343829816193051__callbacks'
98
+ activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
99
+ activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
100
+ activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
101
+ actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
102
+ actionpack (3.2.9) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
103
+ actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
104
+ actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
105
+ railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
106
+ railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
107
+ activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
108
+ railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
109
+ actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
110
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
111
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
112
+ activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
113
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
114
+ rack-cache (1.2) lib/rack/cache/context.rb:136:in `forward'
115
+ rack-cache (1.2) lib/rack/cache/context.rb:245:in `fetch'
116
+ rack-cache (1.2) lib/rack/cache/context.rb:185:in `lookup'
117
+ rack-cache (1.2) lib/rack/cache/context.rb:66:in `call!'
118
+ rack-cache (1.2) lib/rack/cache/context.rb:51:in `call'
119
+ railties (3.2.9) lib/rails/engine.rb:479:in `call'
120
+ railties (3.2.9) lib/rails/application.rb:223:in `call'
121
+ thin (1.5.0) lib/thin/connection.rb:81:in `block in pre_process'
122
+ thin (1.5.0) lib/thin/connection.rb:79:in `catch'
123
+ thin (1.5.0) lib/thin/connection.rb:79:in `pre_process'
124
+ thin (1.5.0) lib/thin/connection.rb:54:in `process'
125
+ thin (1.5.0) lib/thin/connection.rb:39:in `receive_data'
126
+ eventmachine (1.0.0) lib/eventmachine.rb:187:in `run_machine'
127
+ eventmachine (1.0.0) lib/eventmachine.rb:187:in `run'
128
+ thin (1.5.0) lib/thin/backends/base.rb:63:in `start'
129
+ thin (1.5.0) lib/thin/server.rb:159:in `start'
130
+ rack (1.4.1) lib/rack/handler/thin.rb:13:in `run'
131
+ rack (1.4.1) lib/rack/server.rb:265:in `start'
132
+ /Users/jejacks0n/Projects/teabag/lib/teabag/server.rb:15:in `block in start'
133
+
134
+
135
+ Started GET "/teabag/default" for 127.0.0.1 at 2012-12-06 19:02:43 -0700
136
+ Processing by Teabag::SpecController#index as HTML
137
+ Parameters: {"suite"=>"default"}
138
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1.3ms)
139
+ Completed 500 Internal Server Error in 7ms
140
+
141
+ ActionView::Template::Error (teabag/jasmine.css isn't precompiled):
142
+ 2: <html>
143
+ 3: <head>
144
+ 4: <title>Teabag :: Jasmine Runner</title>
145
+ 5: <%= stylesheet_link_tag *@suite.stylesheets %>
146
+ 6: <%= javascript_include_tag *@suite.javascripts %>
147
+ 7: <%= csrf_meta_tags %>
148
+ 8: </head>
149
+ actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:142:in `digest_for'
150
+ actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:151:in `rewrite_asset_path'
151
+ actionpack (3.2.9) lib/action_view/asset_paths.rb:27:in `compute_public_path'
152
+ actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:56:in `asset_path'
153
+ actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:49:in `block in stylesheet_link_tag'
154
+ actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:43:in `collect'
155
+ actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:43:in `stylesheet_link_tag'
156
+ /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb:5:in `___sers_jejacks_n__rojects_teabag_app_views_teabag_spec_index_html_erb__3310650370549179670_70116595567620'
157
+ actionpack (3.2.9) lib/action_view/template.rb:145:in `block in render'
158
+ activesupport (3.2.9) lib/active_support/notifications.rb:125:in `instrument'
159
+ actionpack (3.2.9) lib/action_view/template.rb:143:in `render'
160
+ actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
161
+ actionpack (3.2.9) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
162
+ activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
163
+ activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
164
+ activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
165
+ actionpack (3.2.9) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
166
+ actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
167
+ actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
168
+ actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
169
+ actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:18:in `render'
170
+ actionpack (3.2.9) lib/action_view/renderer/renderer.rb:36:in `render_template'
171
+ actionpack (3.2.9) lib/action_view/renderer/renderer.rb:17:in `render'
172
+ actionpack (3.2.9) lib/abstract_controller/rendering.rb:110:in `_render_template'
173
+ actionpack (3.2.9) lib/action_controller/metal/streaming.rb:225:in `_render_template'
174
+ actionpack (3.2.9) lib/abstract_controller/rendering.rb:103:in `render_to_body'
175
+ actionpack (3.2.9) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
176
+ actionpack (3.2.9) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
177
+ actionpack (3.2.9) lib/abstract_controller/rendering.rb:88:in `render'
178
+ actionpack (3.2.9) lib/action_controller/metal/rendering.rb:16:in `render'
179
+ actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
180
+ activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
181
+ /Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
182
+ activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `ms'
183
+ actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
184
+ actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
185
+ actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:39:in `render'
186
+ actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
187
+ actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
188
+ actionpack (3.2.9) lib/abstract_controller/base.rb:167:in `process_action'
189
+ actionpack (3.2.9) lib/action_controller/metal/rendering.rb:10:in `process_action'
190
+ actionpack (3.2.9) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
191
+ activesupport (3.2.9) lib/active_support/callbacks.rb:403:in `_run__839212106215199459__process_action__2885016090370218175__callbacks'
192
+ activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
193
+ activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
194
+ activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
195
+ actionpack (3.2.9) lib/abstract_controller/callbacks.rb:17:in `process_action'
196
+ actionpack (3.2.9) lib/action_controller/metal/rescue.rb:29:in `process_action'
197
+ actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
198
+ activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
199
+ activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
200
+ activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
201
+ actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
202
+ actionpack (3.2.9) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
203
+ actionpack (3.2.9) lib/abstract_controller/base.rb:121:in `process'
204
+ actionpack (3.2.9) lib/abstract_controller/rendering.rb:45:in `process'
205
+ actionpack (3.2.9) lib/action_controller/metal.rb:203:in `dispatch'
206
+ actionpack (3.2.9) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
207
+ actionpack (3.2.9) lib/action_controller/metal.rb:246:in `block in action'
208
+ actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `call'
209
+ actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
210
+ actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:36:in `call'
211
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
212
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
213
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
214
+ actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
215
+ railties (3.2.9) lib/rails/engine.rb:479:in `call'
216
+ railties (3.2.9) lib/rails/railtie/configurable.rb:30:in `method_missing'
217
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
218
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
219
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
220
+ actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
221
+ actionpack (3.2.9) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
222
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
223
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
224
+ actionpack (3.2.9) lib/action_dispatch/middleware/head.rb:14:in `call'
225
+ actionpack (3.2.9) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
226
+ actionpack (3.2.9) lib/action_dispatch/middleware/flash.rb:242:in `call'
227
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
228
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
229
+ actionpack (3.2.9) lib/action_dispatch/middleware/cookies.rb:341:in `call'
230
+ actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
231
+ activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `_run__1174891074264753100__call__1705335396919892105__callbacks'
232
+ activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
233
+ activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
234
+ activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
235
+ actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
236
+ actionpack (3.2.9) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
237
+ actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
238
+ actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
239
+ railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
240
+ railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
241
+ activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
242
+ railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
243
+ actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
244
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
245
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
246
+ activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
247
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
248
+ rack-cache (1.2) lib/rack/cache/context.rb:136:in `forward'
249
+ rack-cache (1.2) lib/rack/cache/context.rb:245:in `fetch'
250
+ rack-cache (1.2) lib/rack/cache/context.rb:185:in `lookup'
251
+ rack-cache (1.2) lib/rack/cache/context.rb:66:in `call!'
252
+ rack-cache (1.2) lib/rack/cache/context.rb:51:in `call'
253
+ railties (3.2.9) lib/rails/engine.rb:479:in `call'
254
+ railties (3.2.9) lib/rails/application.rb:223:in `call'
255
+ thin (1.5.0) lib/thin/connection.rb:81:in `block in pre_process'
256
+ thin (1.5.0) lib/thin/connection.rb:79:in `catch'
257
+ thin (1.5.0) lib/thin/connection.rb:79:in `pre_process'
258
+ thin (1.5.0) lib/thin/connection.rb:54:in `process'
259
+ thin (1.5.0) lib/thin/connection.rb:39:in `receive_data'
260
+ eventmachine (1.0.0) lib/eventmachine.rb:187:in `run_machine'
261
+ eventmachine (1.0.0) lib/eventmachine.rb:187:in `run'
262
+ thin (1.5.0) lib/thin/backends/base.rb:63:in `start'
263
+ thin (1.5.0) lib/thin/server.rb:159:in `start'
264
+ rack (1.4.1) lib/rack/handler/thin.rb:13:in `run'
265
+ rack (1.4.1) lib/rack/server.rb:265:in `start'
266
+ /Users/jejacks0n/Projects/teabag/lib/teabag/server.rb:15:in `block in start'
267
+
268
+
269
+ Started GET "/teabag/default" for 127.0.0.1 at 2012-12-06 19:02:56 -0700
270
+ Processing by Teabag::SpecController#index as HTML
271
+ Parameters: {"suite"=>"default"}
272
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1.2ms)
273
+ Completed 500 Internal Server Error in 23ms
274
+
275
+ ActionView::Template::Error (teabag/jasmine.css isn't precompiled):
276
+ 2: <html>
277
+ 3: <head>
278
+ 4: <title>Teabag :: Jasmine Runner</title>
279
+ 5: <%= stylesheet_link_tag *@suite.stylesheets %>
280
+ 6: <%= javascript_include_tag *@suite.javascripts %>
281
+ 7: <%= csrf_meta_tags %>
282
+ 8: </head>
283
+ actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:142:in `digest_for'
284
+ actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:151:in `rewrite_asset_path'
285
+ actionpack (3.2.9) lib/action_view/asset_paths.rb:27:in `compute_public_path'
286
+ actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:56:in `asset_path'
287
+ actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:49:in `block in stylesheet_link_tag'
288
+ actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:43:in `collect'
289
+ actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:43:in `stylesheet_link_tag'
290
+ /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb:5:in `___sers_jejacks_n__rojects_teabag_app_views_teabag_spec_index_html_erb___2952369283494932381_70288927948380'
291
+ actionpack (3.2.9) lib/action_view/template.rb:145:in `block in render'
292
+ activesupport (3.2.9) lib/active_support/notifications.rb:125:in `instrument'
293
+ actionpack (3.2.9) lib/action_view/template.rb:143:in `render'
294
+ actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
295
+ actionpack (3.2.9) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
296
+ activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
297
+ activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
298
+ activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
299
+ actionpack (3.2.9) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
300
+ actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
301
+ actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
302
+ actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
303
+ actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:18:in `render'
304
+ actionpack (3.2.9) lib/action_view/renderer/renderer.rb:36:in `render_template'
305
+ actionpack (3.2.9) lib/action_view/renderer/renderer.rb:17:in `render'
306
+ actionpack (3.2.9) lib/abstract_controller/rendering.rb:110:in `_render_template'
307
+ actionpack (3.2.9) lib/action_controller/metal/streaming.rb:225:in `_render_template'
308
+ actionpack (3.2.9) lib/abstract_controller/rendering.rb:103:in `render_to_body'
309
+ actionpack (3.2.9) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
310
+ actionpack (3.2.9) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
311
+ actionpack (3.2.9) lib/abstract_controller/rendering.rb:88:in `render'
312
+ actionpack (3.2.9) lib/action_controller/metal/rendering.rb:16:in `render'
313
+ actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
314
+ activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
315
+ /Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
316
+ activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `ms'
317
+ actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
318
+ actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
319
+ actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:39:in `render'
320
+ actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
321
+ actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
322
+ actionpack (3.2.9) lib/abstract_controller/base.rb:167:in `process_action'
323
+ actionpack (3.2.9) lib/action_controller/metal/rendering.rb:10:in `process_action'
324
+ actionpack (3.2.9) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
325
+ activesupport (3.2.9) lib/active_support/callbacks.rb:403:in `_run__856812836432062580__process_action__3127709638118962520__callbacks'
326
+ activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
327
+ activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
328
+ activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
329
+ actionpack (3.2.9) lib/abstract_controller/callbacks.rb:17:in `process_action'
330
+ actionpack (3.2.9) lib/action_controller/metal/rescue.rb:29:in `process_action'
331
+ actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
332
+ activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
333
+ activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
334
+ activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
335
+ actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
336
+ actionpack (3.2.9) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
337
+ actionpack (3.2.9) lib/abstract_controller/base.rb:121:in `process'
338
+ actionpack (3.2.9) lib/abstract_controller/rendering.rb:45:in `process'
339
+ actionpack (3.2.9) lib/action_controller/metal.rb:203:in `dispatch'
340
+ actionpack (3.2.9) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
341
+ actionpack (3.2.9) lib/action_controller/metal.rb:246:in `block in action'
342
+ actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `call'
343
+ actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
344
+ actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:36:in `call'
345
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
346
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
347
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
348
+ actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
349
+ railties (3.2.9) lib/rails/engine.rb:479:in `call'
350
+ railties (3.2.9) lib/rails/railtie/configurable.rb:30:in `method_missing'
351
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
352
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
353
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
354
+ actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
355
+ actionpack (3.2.9) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
356
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
357
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
358
+ actionpack (3.2.9) lib/action_dispatch/middleware/head.rb:14:in `call'
359
+ actionpack (3.2.9) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
360
+ actionpack (3.2.9) lib/action_dispatch/middleware/flash.rb:242:in `call'
361
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
362
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
363
+ actionpack (3.2.9) lib/action_dispatch/middleware/cookies.rb:341:in `call'
364
+ actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
365
+ activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `_run__2159840427939817286__call__1742023016128016708__callbacks'
366
+ activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
367
+ activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
368
+ activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
369
+ actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
370
+ actionpack (3.2.9) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
371
+ actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
372
+ actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
373
+ railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
374
+ railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
375
+ activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
376
+ railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
377
+ actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
378
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
379
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
380
+ activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
381
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
382
+ rack-cache (1.2) lib/rack/cache/context.rb:136:in `forward'
383
+ rack-cache (1.2) lib/rack/cache/context.rb:245:in `fetch'
384
+ rack-cache (1.2) lib/rack/cache/context.rb:185:in `lookup'
385
+ rack-cache (1.2) lib/rack/cache/context.rb:66:in `call!'
386
+ rack-cache (1.2) lib/rack/cache/context.rb:51:in `call'
387
+ railties (3.2.9) lib/rails/engine.rb:479:in `call'
388
+ railties (3.2.9) lib/rails/application.rb:223:in `call'
389
+ thin (1.5.0) lib/thin/connection.rb:81:in `block in pre_process'
390
+ thin (1.5.0) lib/thin/connection.rb:79:in `catch'
391
+ thin (1.5.0) lib/thin/connection.rb:79:in `pre_process'
392
+ thin (1.5.0) lib/thin/connection.rb:54:in `process'
393
+ thin (1.5.0) lib/thin/connection.rb:39:in `receive_data'
394
+ eventmachine (1.0.0) lib/eventmachine.rb:187:in `run_machine'
395
+ eventmachine (1.0.0) lib/eventmachine.rb:187:in `run'
396
+ thin (1.5.0) lib/thin/backends/base.rb:63:in `start'
397
+ thin (1.5.0) lib/thin/server.rb:159:in `start'
398
+ rack (1.4.1) lib/rack/handler/thin.rb:13:in `run'
399
+ rack (1.4.1) lib/rack/server.rb:265:in `start'
400
+ /Users/jejacks0n/Projects/teabag/lib/teabag/server.rb:15:in `block in start'
401
+
402
+
@@ -0,0 +1,3459 @@
1
+ Started HEAD "/jasmine" for 127.0.0.1 at 2012-12-01 19:23:07 -0700
2
+ Started HEAD "/jasmine" for 127.0.0.1 at 2012-12-01 19:24:42 -0700
3
+ Started HEAD "/jasmine" for 127.0.0.1 at 2012-12-01 19:25:29 -0700
4
+ Started HEAD "/jasmine" for 127.0.0.1 at 2012-12-01 19:27:07 -0700
5
+ Processing by Teabag::SpecController#index as */*
6
+ Parameters: {"suite"=>nil}
7
+ Compiled jasmine-1.3.0.js (0ms) (pid 30498)
8
+ Compiled coffeescript1_spec.js (174ms) (pid 30498)
9
+ Compiled coffeescript2_spec.js (96ms) (pid 30498)
10
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (322.7ms)
11
+ Completed 200 OK in 335ms (Views: 334.9ms)
12
+ Started GET "/jasmine" for 127.0.0.1 at 2012-12-01 19:27:09 -0700
13
+ Processing by Teabag::SpecController#index as HTML
14
+ Parameters: {"suite"=>nil}
15
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (7.1ms)
16
+ Completed 200 OK in 8ms (Views: 8.3ms)
17
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-01 19:27:09 -0700
18
+ Compiled jasmine.css (0ms) (pid 30498)
19
+ Served asset /jasmine.css - 200 OK (33ms)
20
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-01 19:27:09 -0700
21
+ Compiled teabag.css (0ms) (pid 30498)
22
+ Served asset /teabag.css - 200 OK (6ms)
23
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-01 19:27:09 -0700
24
+ Served asset /jasmine-1.3.0.js - 200 OK (3ms)
25
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-01 19:27:09 -0700
26
+ Compiled jasmine-html.js (0ms) (pid 30498)
27
+ Served asset /jasmine-html.js - 200 OK (8ms)
28
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-01 19:27:09 -0700
29
+ Compiled jasmine-jquery.js (0ms) (pid 30498)
30
+ Served asset /jasmine-jquery.js - 200 OK (7ms)
31
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-01 19:27:09 -0700
32
+ Compiled teabag/console-runner.js (0ms) (pid 30498)
33
+ Compiled teabag/headless-reporter.js (0ms) (pid 30498)
34
+ Compiled teabag/html-reporter.js (0ms) (pid 30498)
35
+ Compiled teabag.js (10ms) (pid 30498)
36
+ Served asset /teabag.js - 200 OK (17ms)
37
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-01 19:27:09 -0700
38
+ Compiled spec_helper.js (99ms) (pid 30498)
39
+ Served asset /spec_helper.js - 200 OK (108ms)
40
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-01 19:27:09 -0700
41
+ Compiled specs/asset_spec.js (0ms) (pid 30498)
42
+ Served asset /specs/asset_spec.js - 200 OK (5ms)
43
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-01 19:27:09 -0700
44
+ Compiled javascript1_spec.js (0ms) (pid 30498)
45
+ Served asset /javascript1_spec.js - 200 OK (5ms)
46
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-01 19:27:09 -0700
47
+ Compiled nested_path/nested_spec.js (0ms) (pid 30498)
48
+ Served asset /nested_path/nested_spec.js - 200 OK (8ms)
49
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-01 19:27:09 -0700
50
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
51
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-01 19:27:09 -0700
52
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
53
+ Started GET "/" for 127.0.0.1 at 2012-12-01 20:04:43 -0700
54
+ Started GET "/jasmine" for 127.0.0.1 at 2012-12-01 20:04:48 -0700
55
+ Processing by Teabag::SpecController#index as HTML
56
+ Parameters: {"suite"=>nil}
57
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (19.0ms)
58
+ Completed 200 OK in 28ms (Views: 27.5ms)
59
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-01 20:04:48 -0700
60
+ Served asset /jasmine.css - 200 OK (5ms)
61
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-01 20:04:48 -0700
62
+ Served asset /teabag.css - 200 OK (6ms)
63
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-01 20:04:48 -0700
64
+ Served asset /jasmine-1.3.0.js - 200 OK (20ms)
65
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-01 20:04:48 -0700
66
+ Compiled teabag/console-runner.js (0ms) (pid 4720)
67
+ Compiled teabag/headless-reporter.js (0ms) (pid 4720)
68
+ Compiled teabag/html-reporter.js (0ms) (pid 4720)
69
+ Compiled teabag.js (8ms) (pid 4720)
70
+ Served asset /teabag.js - 200 OK (15ms)
71
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-01 20:04:48 -0700
72
+ Served asset /jasmine-html.js - 200 OK (5ms)
73
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-01 20:04:48 -0700
74
+ Served asset /jasmine-jquery.js - 200 OK (5ms)
75
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-01 20:04:48 -0700
76
+ Served asset /spec_helper.js - 200 OK (3ms)
77
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-01 20:04:48 -0700
78
+ Served asset /specs/asset_spec.js - 200 OK (2ms)
79
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-01 20:04:48 -0700
80
+ Served asset /javascript1_spec.js - 200 OK (2ms)
81
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-01 20:04:48 -0700
82
+ Served asset /nested_path/nested_spec.js - 200 OK (3ms)
83
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-01 20:04:48 -0700
84
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
85
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-01 20:04:48 -0700
86
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
87
+ Started GET "/jasmine" for 127.0.0.1 at 2012-12-01 20:07:26 -0700
88
+ Processing by Teabag::SpecController#index as HTML
89
+ Parameters: {"suite"=>nil}
90
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (5.4ms)
91
+ Completed 200 OK in 6ms (Views: 5.7ms)
92
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-01 20:07:26 -0700
93
+ Served asset /jasmine.css - 304 Not Modified (0ms)
94
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-01 20:07:26 -0700
95
+ Served asset /teabag.css - 304 Not Modified (0ms)
96
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-01 20:07:26 -0700
97
+ Served asset /jasmine-jquery.js - 304 Not Modified (0ms)
98
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-01 20:07:26 -0700
99
+ Served asset /jasmine-html.js - 304 Not Modified (0ms)
100
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-01 20:07:26 -0700
101
+ Served asset /jasmine-1.3.0.js - 304 Not Modified (0ms)
102
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-01 20:07:26 -0700
103
+ Served asset /teabag.js - 304 Not Modified (0ms)
104
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-01 20:07:26 -0700
105
+ Served asset /spec_helper.js - 304 Not Modified (0ms)
106
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-01 20:07:26 -0700
107
+ Served asset /specs/asset_spec.js - 304 Not Modified (0ms)
108
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-01 20:07:26 -0700
109
+ Served asset /coffeescript1_spec.js.coffee - 304 Not Modified (0ms)
110
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-01 20:07:26 -0700
111
+ Served asset /javascript1_spec.js - 304 Not Modified (0ms)
112
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-01 20:07:26 -0700
113
+ Served asset /nested_path/nested_spec.js - 304 Not Modified (0ms)
114
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-01 20:07:26 -0700
115
+ Served asset /coffeescript2_spec.coffee - 304 Not Modified (0ms)
116
+ Started GET "/" for 127.0.0.1 at 2012-12-01 20:08:56 -0700
117
+ Started GET "/" for 127.0.0.1 at 2012-12-01 20:08:58 -0700
118
+ Started GET "/" for 127.0.0.1 at 2012-12-01 20:08:58 -0700
119
+ Started GET "/" for 127.0.0.1 at 2012-12-01 20:08:59 -0700
120
+ Started GET "/jasmine/" for 127.0.0.1 at 2012-12-01 20:32:20 -0700
121
+ Processing by Teabag::SpecController#index as HTML
122
+ Parameters: {"suite"=>nil}
123
+ Compiled jasmine-1.3.0.js (0ms) (pid 5143)
124
+ Compiled coffeescript1_spec.js (101ms) (pid 5143)
125
+ Compiled coffeescript2_spec.js (92ms) (pid 5143)
126
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (231.5ms)
127
+ Completed 200 OK in 238ms (Views: 238.2ms)
128
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-01 20:32:20 -0700
129
+ Compiled jasmine.css (18ms) (pid 5143)
130
+ Served asset /jasmine.css - 200 OK (31ms)
131
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-01 20:32:20 -0700
132
+ Compiled jasmine-html.js (1ms) (pid 5143)
133
+ Served asset /jasmine-html.js - 200 OK (7ms)
134
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-01 20:32:20 -0700
135
+ Served asset /jasmine-1.3.0.js - 200 OK (3ms)
136
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-01 20:32:20 -0700
137
+ Compiled jasmine-jquery.js (0ms) (pid 5143)
138
+ Served asset /jasmine-jquery.js - 200 OK (6ms)
139
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-01 20:32:20 -0700
140
+ Compiled teabag.css (0ms) (pid 5143)
141
+ Served asset /teabag.css - 200 OK (6ms)
142
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-01 20:32:20 -0700
143
+ Compiled teabag/console-runner.js (0ms) (pid 5143)
144
+ Compiled teabag/headless-reporter.js (0ms) (pid 5143)
145
+ Compiled teabag/html-reporter.js (0ms) (pid 5143)
146
+ Compiled teabag.js (7ms) (pid 5143)
147
+ Served asset /teabag.js - 200 OK (13ms)
148
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-01 20:32:20 -0700
149
+ Compiled spec_helper.js (95ms) (pid 5143)
150
+ Served asset /spec_helper.js - 200 OK (101ms)
151
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-01 20:32:20 -0700
152
+ Compiled specs/asset_spec.js (0ms) (pid 5143)
153
+ Served asset /specs/asset_spec.js - 200 OK (5ms)
154
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-01 20:32:20 -0700
155
+ Compiled javascript1_spec.js (0ms) (pid 5143)
156
+ Served asset /javascript1_spec.js - 200 OK (5ms)
157
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-01 20:32:20 -0700
158
+ Compiled nested_path/nested_spec.js (0ms) (pid 5143)
159
+ Served asset /nested_path/nested_spec.js - 200 OK (5ms)
160
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-01 20:32:20 -0700
161
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
162
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-01 20:32:20 -0700
163
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
164
+ Started GET "/jasmine/" for 127.0.0.1 at 2012-12-01 20:32:31 -0700
165
+ Processing by Teabag::SpecController#index as HTML
166
+ Parameters: {"suite"=>nil}
167
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (12.6ms)
168
+ Completed 200 OK in 20ms (Views: 19.4ms)
169
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-01 20:32:32 -0700
170
+ Served asset /jasmine.css - 200 OK (2ms)
171
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-01 20:32:32 -0700
172
+ Served asset /teabag.css - 200 OK (1ms)
173
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-01 20:32:32 -0700
174
+ Served asset /jasmine-1.3.0.js - 200 OK (7ms)
175
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-01 20:32:32 -0700
176
+ Served asset /jasmine-jquery.js - 200 OK (2ms)
177
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-01 20:32:32 -0700
178
+ Served asset /spec_helper.js - 200 OK (2ms)
179
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-01 20:32:32 -0700
180
+ Served asset /jasmine-html.js - 200 OK (3ms)
181
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-01 20:32:32 -0700
182
+ Served asset /teabag.js - 200 OK (3ms)
183
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-01 20:32:32 -0700
184
+ Served asset /specs/asset_spec.js - 200 OK (1ms)
185
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-01 20:32:32 -0700
186
+ Served asset /javascript1_spec.js - 200 OK (2ms)
187
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-01 20:32:32 -0700
188
+ Served asset /nested_path/nested_spec.js - 200 OK (2ms)
189
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-01 20:32:32 -0700
190
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
191
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-01 20:32:32 -0700
192
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
193
+ Started GET "/jasmine/" for 127.0.0.1 at 2012-12-01 20:32:53 -0700
194
+ Processing by Teabag::SpecController#index as HTML
195
+ Parameters: {"suite"=>nil}
196
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (12.8ms)
197
+ Completed 200 OK in 20ms (Views: 19.5ms)
198
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-01 20:32:53 -0700
199
+ Served asset /jasmine.css - 200 OK (3ms)
200
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-01 20:32:53 -0700
201
+ Served asset /teabag.css - 200 OK (3ms)
202
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-01 20:32:53 -0700
203
+ Served asset /jasmine-jquery.js - 200 OK (4ms)
204
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-01 20:32:53 -0700
205
+ Served asset /jasmine-1.3.0.js - 200 OK (2ms)
206
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-01 20:32:53 -0700
207
+ Served asset /jasmine-html.js - 200 OK (2ms)
208
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-01 20:32:53 -0700
209
+ Served asset /spec_helper.js - 200 OK (2ms)
210
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-01 20:32:53 -0700
211
+ Served asset /teabag.js - 200 OK (3ms)
212
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-01 20:32:53 -0700
213
+ Served asset /specs/asset_spec.js - 200 OK (1ms)
214
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-01 20:32:53 -0700
215
+ Served asset /javascript1_spec.js - 200 OK (2ms)
216
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-01 20:32:53 -0700
217
+ Served asset /nested_path/nested_spec.js - 200 OK (2ms)
218
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-01 20:32:53 -0700
219
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
220
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-01 20:32:53 -0700
221
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
222
+ Started GET "/jasmine/" for 127.0.0.1 at 2012-12-01 20:34:01 -0700
223
+ Processing by Teabag::SpecController#index as HTML
224
+ Parameters: {"suite"=>nil}
225
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (12.9ms)
226
+ Completed 200 OK in 20ms (Views: 19.4ms)
227
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-01 20:34:02 -0700
228
+ Served asset /jasmine.css - 200 OK (4ms)
229
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-01 20:34:02 -0700
230
+ Served asset /jasmine-1.3.0.js - 200 OK (6ms)
231
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-01 20:34:02 -0700
232
+ Served asset /teabag.css - 200 OK (3ms)
233
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-01 20:34:02 -0700
234
+ Served asset /jasmine-html.js - 200 OK (2ms)
235
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-01 20:34:02 -0700
236
+ Served asset /jasmine-jquery.js - 200 OK (3ms)
237
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-01 20:34:02 -0700
238
+ Served asset /spec_helper.js - 200 OK (2ms)
239
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-01 20:34:02 -0700
240
+ Served asset /teabag.js - 200 OK (4ms)
241
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-01 20:34:02 -0700
242
+ Served asset /specs/asset_spec.js - 200 OK (1ms)
243
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-01 20:34:02 -0700
244
+ Served asset /javascript1_spec.js - 200 OK (2ms)
245
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-01 20:34:02 -0700
246
+ Served asset /nested_path/nested_spec.js - 200 OK (2ms)
247
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-01 20:34:02 -0700
248
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
249
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-01 20:34:02 -0700
250
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
251
+ Started GET "/jasmine/" for 127.0.0.1 at 2012-12-01 20:34:52 -0700
252
+ Processing by Teabag::SpecController#index as HTML
253
+ Parameters: {"suite"=>nil}
254
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (13.1ms)
255
+ Completed 200 OK in 19ms (Views: 19.0ms)
256
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-01 20:34:52 -0700
257
+ Served asset /jasmine.css - 200 OK (2ms)
258
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-01 20:34:52 -0700
259
+ Served asset /teabag.css - 200 OK (2ms)
260
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-01 20:34:52 -0700
261
+ Served asset /jasmine-1.3.0.js - 200 OK (4ms)
262
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-01 20:34:52 -0700
263
+ Served asset /jasmine-html.js - 200 OK (2ms)
264
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-01 20:34:52 -0700
265
+ Served asset /spec_helper.js - 200 OK (2ms)
266
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-01 20:34:52 -0700
267
+ Served asset /teabag.js - 200 OK (4ms)
268
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-01 20:34:52 -0700
269
+ Served asset /jasmine-jquery.js - 200 OK (2ms)
270
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-01 20:34:53 -0700
271
+ Served asset /specs/asset_spec.js - 200 OK (1ms)
272
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-01 20:34:53 -0700
273
+ Served asset /javascript1_spec.js - 200 OK (2ms)
274
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-01 20:34:53 -0700
275
+ Served asset /nested_path/nested_spec.js - 200 OK (2ms)
276
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-01 20:34:53 -0700
277
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
278
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-01 20:34:53 -0700
279
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
280
+ Started GET "/jasmine/" for 127.0.0.1 at 2012-12-01 20:35:02 -0700
281
+ Processing by Teabag::SpecController#index as HTML
282
+ Parameters: {"suite"=>nil}
283
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (12.8ms)
284
+ Completed 200 OK in 20ms (Views: 19.6ms)
285
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-01 20:35:02 -0700
286
+ Served asset /jasmine.css - 200 OK (17ms)
287
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-01 20:35:02 -0700
288
+ Served asset /teabag.css - 200 OK (1ms)
289
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-01 20:35:02 -0700
290
+ Served asset /jasmine-1.3.0.js - 200 OK (7ms)
291
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-01 20:35:02 -0700
292
+ Served asset /spec_helper.js - 200 OK (2ms)
293
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-01 20:35:02 -0700
294
+ Served asset /jasmine-html.js - 200 OK (3ms)
295
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-01 20:35:02 -0700
296
+ Served asset /jasmine-jquery.js - 200 OK (3ms)
297
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-01 20:35:02 -0700
298
+ Served asset /specs/asset_spec.js - 200 OK (2ms)
299
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-01 20:35:02 -0700
300
+ Served asset /teabag.js - 200 OK (3ms)
301
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-01 20:35:02 -0700
302
+ Served asset /javascript1_spec.js - 200 OK (3ms)
303
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-01 20:35:02 -0700
304
+ Served asset /nested_path/nested_spec.js - 200 OK (2ms)
305
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-01 20:35:02 -0700
306
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
307
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-01 20:35:02 -0700
308
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
309
+ Started GET "/jasmine/" for 127.0.0.1 at 2012-12-01 20:35:08 -0700
310
+ Processing by Teabag::SpecController#index as HTML
311
+ Parameters: {"suite"=>nil}
312
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (12.5ms)
313
+ Completed 200 OK in 19ms (Views: 19.2ms)
314
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-01 20:35:08 -0700
315
+ Served asset /jasmine.css - 200 OK (2ms)
316
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-01 20:35:08 -0700
317
+ Served asset /spec_helper.js - 200 OK (2ms)
318
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-01 20:35:08 -0700
319
+ Served asset /teabag.js - 200 OK (7ms)
320
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-01 20:35:08 -0700
321
+ Served asset /jasmine-html.js - 200 OK (3ms)
322
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-01 20:35:08 -0700
323
+ Served asset /teabag.css - 200 OK (1ms)
324
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-01 20:35:08 -0700
325
+ Served asset /jasmine-jquery.js - 200 OK (2ms)
326
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-01 20:35:08 -0700
327
+ Served asset /jasmine-1.3.0.js - 200 OK (3ms)
328
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-01 20:35:08 -0700
329
+ Served asset /specs/asset_spec.js - 200 OK (1ms)
330
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-01 20:35:08 -0700
331
+ Served asset /javascript1_spec.js - 200 OK (2ms)
332
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-01 20:35:08 -0700
333
+ Served asset /nested_path/nested_spec.js - 200 OK (2ms)
334
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-01 20:35:08 -0700
335
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
336
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-01 20:35:08 -0700
337
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
338
+ Started GET "/jasmine/" for 127.0.0.1 at 2012-12-01 20:39:22 -0700
339
+ Processing by Teabag::SpecController#index as HTML
340
+ Parameters: {"suite"=>nil}
341
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (12.7ms)
342
+ Completed 200 OK in 19ms (Views: 19.3ms)
343
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-01 20:39:22 -0700
344
+ Served asset /jasmine.css - 200 OK (17ms)
345
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-01 20:39:22 -0700
346
+ Served asset /teabag.css - 200 OK (1ms)
347
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-01 20:39:22 -0700
348
+ Served asset /spec_helper.js - 200 OK (2ms)
349
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-01 20:39:22 -0700
350
+ Served asset /jasmine-1.3.0.js - 200 OK (7ms)
351
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-01 20:39:22 -0700
352
+ Served asset /teabag.js - 200 OK (4ms)
353
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-01 20:39:22 -0700
354
+ Served asset /specs/asset_spec.js - 200 OK (1ms)
355
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-01 20:39:22 -0700
356
+ Served asset /javascript1_spec.js - 200 OK (2ms)
357
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-01 20:39:22 -0700
358
+ Served asset /jasmine-html.js - 200 OK (2ms)
359
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-01 20:39:22 -0700
360
+ Served asset /jasmine-jquery.js - 200 OK (4ms)
361
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-01 20:39:22 -0700
362
+ Served asset /nested_path/nested_spec.js - 200 OK (2ms)
363
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-01 20:39:22 -0700
364
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
365
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-01 20:39:22 -0700
366
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
367
+ Started GET "/jasmine/" for 127.0.0.1 at 2012-12-01 20:42:46 -0700
368
+ Processing by Teabag::SpecController#index as HTML
369
+ Parameters: {"suite"=>nil}
370
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (21.3ms)
371
+ Completed 200 OK in 30ms (Views: 29.6ms)
372
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-01 20:42:46 -0700
373
+ Served asset /jasmine.css - 200 OK (4ms)
374
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-01 20:42:46 -0700
375
+ Served asset /teabag.css - 200 OK (4ms)
376
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-01 20:42:46 -0700
377
+ Served asset /jasmine-1.3.0.js - 200 OK (2ms)
378
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-01 20:42:47 -0700
379
+ Served asset /jasmine-html.js - 200 OK (4ms)
380
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-01 20:42:47 -0700
381
+ Served asset /jasmine-jquery.js - 200 OK (4ms)
382
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-01 20:42:47 -0700
383
+ Served asset /teabag.js - 200 OK (9ms)
384
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-01 20:42:47 -0700
385
+ Served asset /spec_helper.js - 200 OK (2ms)
386
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-01 20:42:47 -0700
387
+ Served asset /specs/asset_spec.js - 200 OK (2ms)
388
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-01 20:42:47 -0700
389
+ Served asset /javascript1_spec.js - 200 OK (3ms)
390
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-01 20:42:47 -0700
391
+ Served asset /nested_path/nested_spec.js - 200 OK (3ms)
392
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-01 20:42:47 -0700
393
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
394
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-01 20:42:47 -0700
395
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
396
+ Started GET "/jasmine" for 127.0.0.1 at 2012-12-01 20:46:36 -0700
397
+ Processing by Teabag::SpecController#index as HTML
398
+ Parameters: {"suite"=>nil}
399
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (13.0ms)
400
+ Completed 200 OK in 19ms (Views: 18.7ms)
401
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-01 20:46:36 -0700
402
+ Served asset /jasmine.css - 200 OK (2ms)
403
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-01 20:46:36 -0700
404
+ Served asset /spec_helper.js - 200 OK (3ms)
405
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-01 20:46:36 -0700
406
+ Served asset /teabag.css - 200 OK (3ms)
407
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-01 20:46:36 -0700
408
+ Served asset /jasmine-jquery.js - 200 OK (2ms)
409
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-01 20:46:36 -0700
410
+ Served asset /teabag.js - 200 OK (4ms)
411
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-01 20:46:36 -0700
412
+ Served asset /jasmine-1.3.0.js - 200 OK (2ms)
413
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-01 20:46:36 -0700
414
+ Served asset /jasmine-html.js - 200 OK (2ms)
415
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-01 20:46:36 -0700
416
+ Served asset /specs/asset_spec.js - 200 OK (1ms)
417
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-01 20:46:36 -0700
418
+ Served asset /javascript1_spec.js - 200 OK (2ms)
419
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-01 20:46:36 -0700
420
+ Served asset /nested_path/nested_spec.js - 200 OK (2ms)
421
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-01 20:46:36 -0700
422
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
423
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-01 20:46:36 -0700
424
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
425
+ Started GET "/jasmine" for 127.0.0.1 at 2012-12-01 20:49:23 -0700
426
+ Processing by Teabag::SpecController#index as HTML
427
+ Parameters: {"suite"=>nil}
428
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (21.4ms)
429
+ Completed 200 OK in 30ms (Views: 30.0ms)
430
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-01 20:49:23 -0700
431
+ Served asset /jasmine.css - 200 OK (4ms)
432
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-01 20:49:23 -0700
433
+ Served asset /teabag.css - 200 OK (3ms)
434
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-01 20:49:23 -0700
435
+ Served asset /jasmine-html.js - 200 OK (4ms)
436
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-01 20:49:23 -0700
437
+ Served asset /jasmine-jquery.js - 200 OK (4ms)
438
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-01 20:49:23 -0700
439
+ Served asset /jasmine-1.3.0.js - 200 OK (2ms)
440
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-01 20:49:23 -0700
441
+ Served asset /teabag.js - 200 OK (7ms)
442
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-01 20:49:23 -0700
443
+ Served asset /spec_helper.js - 200 OK (3ms)
444
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-01 20:49:23 -0700
445
+ Served asset /specs/asset_spec.js - 200 OK (2ms)
446
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-01 20:49:23 -0700
447
+ Served asset /javascript1_spec.js - 200 OK (3ms)
448
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-01 20:49:23 -0700
449
+ Served asset /nested_path/nested_spec.js - 200 OK (3ms)
450
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-01 20:49:23 -0700
451
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
452
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-01 20:49:23 -0700
453
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
454
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-01 20:49:49 -0700
455
+ Processing by Teabag::SpecController#index as HTML
456
+ Parameters: {"suite"=>nil}
457
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (13.1ms)
458
+ Completed 200 OK in 19ms (Views: 18.8ms)
459
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-01 20:49:50 -0700
460
+ Served asset /jasmine.css - 200 OK (2ms)
461
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-01 20:49:50 -0700
462
+ Served asset /jasmine-1.3.0.js - 200 OK (7ms)
463
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-01 20:49:50 -0700
464
+ Served asset /spec_helper.js - 200 OK (2ms)
465
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-01 20:49:50 -0700
466
+ Served asset /teabag.css - 200 OK (1ms)
467
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-01 20:49:50 -0700
468
+ Served asset /jasmine-html.js - 200 OK (3ms)
469
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-01 20:49:50 -0700
470
+ Served asset /teabag.js - 200 OK (5ms)
471
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-01 20:49:50 -0700
472
+ Served asset /jasmine-jquery.js - 200 OK (2ms)
473
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-01 20:49:50 -0700
474
+ Served asset /specs/asset_spec.js - 200 OK (1ms)
475
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-01 20:49:50 -0700
476
+ Served asset /javascript1_spec.js - 200 OK (2ms)
477
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-01 20:49:50 -0700
478
+ Served asset /nested_path/nested_spec.js - 200 OK (2ms)
479
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-01 20:49:50 -0700
480
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
481
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-01 20:49:50 -0700
482
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
483
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-01 21:06:03 -0700
484
+ Processing by Teabag::SpecController#index as HTML
485
+ Parameters: {"suite"=>nil}
486
+ Compiled jasmine-1.3.0.js (0ms) (pid 5702)
487
+ Compiled coffeescript1_spec.js (101ms) (pid 5702)
488
+ Compiled coffeescript2_spec.js (93ms) (pid 5702)
489
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (234.0ms)
490
+ Completed 200 OK in 241ms (Views: 240.7ms)
491
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-01 21:06:03 -0700
492
+ Compiled jasmine.css (0ms) (pid 5702)
493
+ Served asset /jasmine.css - 200 OK (32ms)
494
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-01 21:06:03 -0700
495
+ Compiled teabag.css (1ms) (pid 5702)
496
+ Served asset /teabag.css - 200 OK (6ms)
497
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-01 21:06:03 -0700
498
+ Compiled jasmine-jquery.js (1ms) (pid 5702)
499
+ Served asset /jasmine-jquery.js - 200 OK (6ms)
500
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-01 21:06:03 -0700
501
+ Served asset /jasmine-1.3.0.js - 200 OK (3ms)
502
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-01 21:06:03 -0700
503
+ Compiled teabag/console-runner.js (0ms) (pid 5702)
504
+ Compiled teabag/headless-reporter.js (0ms) (pid 5702)
505
+ Compiled teabag/html-reporter.js (0ms) (pid 5702)
506
+ Compiled teabag.js (8ms) (pid 5702)
507
+ Served asset /teabag.js - 200 OK (13ms)
508
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-01 21:06:03 -0700
509
+ Compiled jasmine-html.js (1ms) (pid 5702)
510
+ Served asset /jasmine-html.js - 200 OK (7ms)
511
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-01 21:06:03 -0700
512
+ Compiled spec_helper.js (96ms) (pid 5702)
513
+ Served asset /spec_helper.js - 200 OK (102ms)
514
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-01 21:06:04 -0700
515
+ Compiled specs/asset_spec.js (0ms) (pid 5702)
516
+ Served asset /specs/asset_spec.js - 200 OK (4ms)
517
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-01 21:06:04 -0700
518
+ Compiled javascript1_spec.js (0ms) (pid 5702)
519
+ Served asset /javascript1_spec.js - 200 OK (5ms)
520
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-01 21:06:04 -0700
521
+ Compiled nested_path/nested_spec.js (0ms) (pid 5702)
522
+ Served asset /nested_path/nested_spec.js - 200 OK (4ms)
523
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-01 21:06:04 -0700
524
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
525
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-01 21:06:04 -0700
526
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
527
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-01 21:07:42 -0700
528
+ Processing by Teabag::SpecController#index as HTML
529
+ Parameters: {"suite"=>nil}
530
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (13.0ms)
531
+ Completed 200 OK in 20ms (Views: 19.7ms)
532
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-01 21:07:42 -0700
533
+ Served asset /jasmine.css - 200 OK (17ms)
534
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-01 21:07:42 -0700
535
+ Served asset /spec_helper.js - 200 OK (2ms)
536
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-01 21:07:42 -0700
537
+ Served asset /teabag.css - 200 OK (1ms)
538
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-01 21:07:42 -0700
539
+ Served asset /jasmine-jquery.js - 200 OK (5ms)
540
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-01 21:07:42 -0700
541
+ Served asset /jasmine-1.3.0.js - 200 OK (4ms)
542
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-01 21:07:42 -0700
543
+ Served asset /jasmine-html.js - 200 OK (2ms)
544
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-01 21:07:42 -0700
545
+ Compiled teabag.js (1ms) (pid 5733)
546
+ Served asset /teabag.js - 200 OK (9ms)
547
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-01 21:07:42 -0700
548
+ Served asset /specs/asset_spec.js - 200 OK (1ms)
549
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-01 21:07:42 -0700
550
+ Served asset /javascript1_spec.js - 200 OK (2ms)
551
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-01 21:07:42 -0700
552
+ Served asset /nested_path/nested_spec.js - 200 OK (2ms)
553
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-01 21:07:42 -0700
554
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
555
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-01 21:07:42 -0700
556
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
557
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-01 21:18:02 -0700
558
+ Processing by Teabag::SpecController#index as HTML
559
+ Parameters: {"suite"=>nil}
560
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (13.0ms)
561
+ Completed 200 OK in 20ms (Views: 19.6ms)
562
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-01 21:18:02 -0700
563
+ Served asset /jasmine.css - 200 OK (17ms)
564
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-01 21:18:03 -0700
565
+ Served asset /teabag.css - 200 OK (2ms)
566
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-01 21:18:03 -0700
567
+ Served asset /jasmine-1.3.0.js - 200 OK (6ms)
568
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-01 21:18:03 -0700
569
+ Compiled spec_helper.js (96ms) (pid 5905)
570
+ Served asset /spec_helper.js - 200 OK (103ms)
571
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-01 21:18:03 -0700
572
+ Served asset /jasmine-jquery.js - 200 OK (3ms)
573
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-01 21:18:03 -0700
574
+ Served asset /specs/asset_spec.js - 200 OK (1ms)
575
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-01 21:18:03 -0700
576
+ Served asset /jasmine-html.js - 200 OK (4ms)
577
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-01 21:18:03 -0700
578
+ Compiled teabag/console-runner.js (0ms) (pid 5905)
579
+ Compiled teabag/headless-reporter.js (0ms) (pid 5905)
580
+ Compiled teabag/html-reporter.js (20ms) (pid 5905)
581
+ Compiled teabag.js (27ms) (pid 5905)
582
+ Served asset /teabag.js - 200 OK (32ms)
583
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-01 21:18:03 -0700
584
+ Served asset /javascript1_spec.js - 200 OK (2ms)
585
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-01 21:18:03 -0700
586
+ Served asset /nested_path/nested_spec.js - 200 OK (2ms)
587
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-01 21:18:03 -0700
588
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
589
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-01 21:18:03 -0700
590
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
591
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-01 21:42:50 -0700
592
+ Processing by Teabag::SpecController#index as HTML
593
+ Parameters: {"suite"=>nil}
594
+ Compiled coffeescript1_spec.js (103ms) (pid 6267)
595
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (121.4ms)
596
+ Completed 200 OK in 129ms (Views: 128.7ms)
597
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-01 21:42:50 -0700
598
+ Served asset /jasmine.css - 200 OK (2ms)
599
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-01 21:42:50 -0700
600
+ Served asset /teabag.css - 200 OK (3ms)
601
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-01 21:42:50 -0700
602
+ Served asset /jasmine-1.3.0.js - 200 OK (5ms)
603
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-01 21:42:50 -0700
604
+ Served asset /jasmine-html.js - 200 OK (2ms)
605
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-01 21:42:50 -0700
606
+ Compiled teabag/console-reporter.js (0ms) (pid 6267)
607
+ Compiled teabag/html-reporter.js (0ms) (pid 6267)
608
+ Compiled teabag.js (5ms) (pid 6267)
609
+ Served asset /teabag.js - 200 OK (11ms)
610
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-01 21:42:50 -0700
611
+ Compiled spec_helper.js (96ms) (pid 6267)
612
+ Served asset /spec_helper.js - 200 OK (102ms)
613
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-01 21:42:51 -0700
614
+ Served asset /jasmine-jquery.js - 200 OK (3ms)
615
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-01 21:42:51 -0700
616
+ Served asset /specs/asset_spec.js - 200 OK (2ms)
617
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-01 21:42:51 -0700
618
+ Served asset /javascript1_spec.js - 200 OK (2ms)
619
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-01 21:42:51 -0700
620
+ Served asset /nested_path/nested_spec.js - 200 OK (26ms)
621
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-01 21:42:51 -0700
622
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
623
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-01 21:42:51 -0700
624
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
625
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-01 21:43:26 -0700
626
+ Processing by Teabag::SpecController#index as HTML
627
+ Parameters: {"suite"=>nil}
628
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (13.4ms)
629
+ Completed 200 OK in 20ms (Views: 19.5ms)
630
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-01 21:43:26 -0700
631
+ Served asset /jasmine.css - 200 OK (2ms)
632
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-01 21:43:26 -0700
633
+ Served asset /jasmine-jquery.js - 200 OK (6ms)
634
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-01 21:43:26 -0700
635
+ Served asset /teabag.css - 200 OK (2ms)
636
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-01 21:43:26 -0700
637
+ Compiled teabag.js (1ms) (pid 6282)
638
+ Served asset /teabag.js - 200 OK (9ms)
639
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-01 21:43:26 -0700
640
+ Served asset /jasmine-1.3.0.js - 200 OK (2ms)
641
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-01 21:43:26 -0700
642
+ Served asset /jasmine-html.js - 200 OK (3ms)
643
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-01 21:43:26 -0700
644
+ Served asset /spec_helper.js - 200 OK (2ms)
645
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-01 21:43:26 -0700
646
+ Served asset /specs/asset_spec.js - 200 OK (1ms)
647
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-01 21:43:26 -0700
648
+ Served asset /javascript1_spec.js - 200 OK (3ms)
649
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-01 21:43:26 -0700
650
+ Served asset /nested_path/nested_spec.js - 200 OK (2ms)
651
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-01 21:43:26 -0700
652
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
653
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-01 21:43:26 -0700
654
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
655
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-01 22:02:32 -0700
656
+ Processing by Teabag::SpecController#index as HTML
657
+ Parameters: {"suite"=>nil}
658
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (13.0ms)
659
+ Completed 200 OK in 20ms (Views: 19.4ms)
660
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-01 22:02:32 -0700
661
+ Served asset /jasmine.css - 200 OK (2ms)
662
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-01 22:02:32 -0700
663
+ Served asset /teabag.css - 200 OK (3ms)
664
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-01 22:02:32 -0700
665
+ Served asset /jasmine-1.3.0.js - 200 OK (6ms)
666
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-01 22:02:32 -0700
667
+ Served asset /jasmine-jquery.js - 200 OK (2ms)
668
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-01 22:02:32 -0700
669
+ Served asset /spec_helper.js - 200 OK (3ms)
670
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-01 22:02:32 -0700
671
+ Served asset /jasmine-html.js - 200 OK (3ms)
672
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-01 22:02:32 -0700
673
+ Served asset /teabag.js - 200 OK (4ms)
674
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-01 22:02:32 -0700
675
+ Served asset /specs/asset_spec.js - 200 OK (1ms)
676
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-01 22:02:32 -0700
677
+ Served asset /javascript1_spec.js - 200 OK (2ms)
678
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-01 22:02:32 -0700
679
+ Served asset /nested_path/nested_spec.js - 200 OK (2ms)
680
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-01 22:02:32 -0700
681
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
682
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-01 22:02:32 -0700
683
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
684
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-01 22:43:25 -0700
685
+ Processing by Teabag::SpecController#index as HTML
686
+ Parameters: {"suite"=>nil}
687
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (17.3ms)
688
+ Completed 200 OK in 42ms (Views: 41.8ms)
689
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-01 22:43:25 -0700
690
+ Served asset /jasmine.css - 200 OK (4ms)
691
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-01 22:43:25 -0700
692
+ Served asset /jasmine-1.3.0.js - 200 OK (5ms)
693
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-01 22:43:25 -0700
694
+ Served asset /jasmine-jquery.js - 200 OK (4ms)
695
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-01 22:43:25 -0700
696
+ Served asset /teabag.css - 200 OK (3ms)
697
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-01 22:43:25 -0700
698
+ Served asset /jasmine-html.js - 200 OK (4ms)
699
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-01 22:43:25 -0700
700
+ Served asset /teabag.js - 200 OK (6ms)
701
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-01 22:43:25 -0700
702
+ Served asset /spec_helper.js - 200 OK (3ms)
703
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-01 22:43:25 -0700
704
+ Served asset /specs/asset_spec.js - 200 OK (2ms)
705
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-01 22:43:25 -0700
706
+ Served asset /javascript1_spec.js - 200 OK (2ms)
707
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-01 22:43:25 -0700
708
+ Served asset /nested_path/nested_spec.js - 200 OK (3ms)
709
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-01 22:43:25 -0700
710
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
711
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-01 22:43:25 -0700
712
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
713
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-01 22:44:02 -0700
714
+ Processing by Teabag::SpecController#index as HTML
715
+ Parameters: {"suite"=>nil}
716
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (5.6ms)
717
+ Completed 200 OK in 6ms (Views: 5.9ms)
718
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-01 22:44:02 -0700
719
+ Served asset /jasmine.css - 200 OK (0ms)
720
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-01 22:44:02 -0700
721
+ Served asset /teabag.css - 200 OK (0ms)
722
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-01 22:44:02 -0700
723
+ Served asset /spec_helper.js - 200 OK (0ms)
724
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-01 22:44:02 -0700
725
+ Served asset /jasmine-1.3.0.js - 200 OK (0ms)
726
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-01 22:44:02 -0700
727
+ Served asset /jasmine-jquery.js - 200 OK (0ms)
728
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-01 22:44:02 -0700
729
+ Served asset /teabag.js - 200 OK (0ms)
730
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-01 22:44:02 -0700
731
+ Served asset /jasmine-html.js - 200 OK (0ms)
732
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-01 22:44:02 -0700
733
+ Served asset /specs/asset_spec.js - 200 OK (0ms)
734
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-01 22:44:02 -0700
735
+ Served asset /javascript1_spec.js - 200 OK (0ms)
736
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-01 22:44:02 -0700
737
+ Served asset /nested_path/nested_spec.js - 200 OK (0ms)
738
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-01 22:44:02 -0700
739
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
740
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-01 22:44:02 -0700
741
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
742
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-01 22:44:20 -0700
743
+ Processing by Teabag::SpecController#index as HTML
744
+ Parameters: {"suite"=>nil}
745
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (6.1ms)
746
+ Completed 200 OK in 6ms (Views: 6.4ms)
747
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-01 22:44:20 -0700
748
+ Served asset /jasmine.css - 200 OK (0ms)
749
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-01 22:44:20 -0700
750
+ Served asset /jasmine-1.3.0.js - 200 OK (0ms)
751
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-01 22:44:20 -0700
752
+ Served asset /teabag.css - 200 OK (0ms)
753
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-01 22:44:20 -0700
754
+ Served asset /jasmine-jquery.js - 200 OK (0ms)
755
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-01 22:44:20 -0700
756
+ Served asset /spec_helper.js - 200 OK (0ms)
757
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-01 22:44:20 -0700
758
+ Served asset /teabag.js - 200 OK (0ms)
759
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-01 22:44:20 -0700
760
+ Served asset /jasmine-html.js - 200 OK (0ms)
761
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-01 22:44:20 -0700
762
+ Served asset /javascript1_spec.js - 200 OK (0ms)
763
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-01 22:44:20 -0700
764
+ Served asset /specs/asset_spec.js - 200 OK (0ms)
765
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-01 22:44:20 -0700
766
+ Served asset /nested_path/nested_spec.js - 200 OK (0ms)
767
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-01 22:44:20 -0700
768
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
769
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-01 22:44:20 -0700
770
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
771
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-01 22:46:49 -0700
772
+ Processing by Teabag::SpecController#index as HTML
773
+ Parameters: {"suite"=>nil}
774
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (7.2ms)
775
+ Completed 200 OK in 8ms (Views: 7.6ms)
776
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-01 22:46:49 -0700
777
+ Served asset /jasmine.css - 200 OK (0ms)
778
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-01 22:46:49 -0700
779
+ Served asset /teabag.css - 200 OK (0ms)
780
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-01 22:46:49 -0700
781
+ Served asset /spec_helper.js - 200 OK (0ms)
782
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-01 22:46:49 -0700
783
+ Served asset /jasmine-1.3.0.js - 200 OK (0ms)
784
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-01 22:46:49 -0700
785
+ Served asset /jasmine-jquery.js - 200 OK (0ms)
786
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-01 22:46:49 -0700
787
+ Served asset /teabag.js - 200 OK (0ms)
788
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-01 22:46:49 -0700
789
+ Served asset /specs/asset_spec.js - 200 OK (0ms)
790
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-01 22:46:49 -0700
791
+ Served asset /jasmine-html.js - 200 OK (0ms)
792
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-01 22:46:49 -0700
793
+ Served asset /javascript1_spec.js - 200 OK (0ms)
794
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-01 22:46:49 -0700
795
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
796
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-01 22:46:49 -0700
797
+ Served asset /nested_path/nested_spec.js - 200 OK (0ms)
798
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-01 22:46:49 -0700
799
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
800
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-01 22:50:34 -0700
801
+ Processing by Teabag::SpecController#index as HTML
802
+ Parameters: {"suite"=>nil}
803
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (6.7ms)
804
+ Completed 200 OK in 7ms (Views: 7.1ms)
805
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-01 22:50:34 -0700
806
+ Served asset /jasmine.css - 200 OK (0ms)
807
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-01 22:50:34 -0700
808
+ Served asset /teabag.css - 200 OK (0ms)
809
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-01 22:50:34 -0700
810
+ Served asset /jasmine-1.3.0.js - 200 OK (0ms)
811
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-01 22:50:34 -0700
812
+ Served asset /spec_helper.js - 200 OK (0ms)
813
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-01 22:50:34 -0700
814
+ Served asset /jasmine-jquery.js - 200 OK (0ms)
815
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-01 22:50:34 -0700
816
+ Served asset /teabag.js - 200 OK (0ms)
817
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-01 22:50:34 -0700
818
+ Served asset /jasmine-html.js - 200 OK (0ms)
819
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-01 22:50:34 -0700
820
+ Served asset /nested_path/nested_spec.js - 200 OK (0ms)
821
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-01 22:50:34 -0700
822
+ Served asset /javascript1_spec.js - 200 OK (0ms)
823
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-01 22:50:34 -0700
824
+ Served asset /specs/asset_spec.js - 200 OK (0ms)
825
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-01 22:50:34 -0700
826
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
827
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-01 22:50:34 -0700
828
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
829
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-02 11:45:41 -0700
830
+ Processing by Teabag::SpecController#index as HTML
831
+ Parameters: {"suite"=>nil}
832
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (8.0ms)
833
+ Completed 200 OK in 9ms (Views: 8.4ms)
834
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-02 11:45:41 -0700
835
+ Served asset /jasmine.css - 200 OK (0ms)
836
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-02 11:45:41 -0700
837
+ Served asset /jasmine-1.3.0.js - 200 OK (0ms)
838
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-02 11:45:41 -0700
839
+ Served asset /teabag.css - 200 OK (0ms)
840
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-02 11:45:41 -0700
841
+ Served asset /jasmine-jquery.js - 200 OK (0ms)
842
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-02 11:45:41 -0700
843
+ Served asset /spec_helper.js - 200 OK (0ms)
844
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-02 11:45:41 -0700
845
+ Served asset /javascript1_spec.js - 200 OK (0ms)
846
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-02 11:45:41 -0700
847
+ Served asset /specs/asset_spec.js - 200 OK (0ms)
848
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-02 11:45:41 -0700
849
+ Served asset /teabag.js - 200 OK (0ms)
850
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-02 11:45:41 -0700
851
+ Served asset /jasmine-html.js - 200 OK (0ms)
852
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-02 11:45:41 -0700
853
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
854
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-02 11:45:41 -0700
855
+ Served asset /nested_path/nested_spec.js - 200 OK (0ms)
856
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-02 11:45:41 -0700
857
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
858
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-02 11:55:20 -0700
859
+ Processing by Teabag::SpecController#index as HTML
860
+ Parameters: {"suite"=>nil}
861
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (6.2ms)
862
+ Completed 200 OK in 7ms (Views: 6.5ms)
863
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-02 11:55:20 -0700
864
+ Served asset /jasmine.css - 200 OK (0ms)
865
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-02 11:55:20 -0700
866
+ Served asset /teabag.css - 200 OK (0ms)
867
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-02 11:55:20 -0700
868
+ Served asset /spec_helper.js - 200 OK (0ms)
869
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-02 11:55:20 -0700
870
+ Served asset /teabag.js - 200 OK (0ms)
871
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-02 11:55:20 -0700
872
+ Served asset /jasmine-html.js - 200 OK (0ms)
873
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-02 11:55:20 -0700
874
+ Served asset /jasmine-1.3.0.js - 200 OK (0ms)
875
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-02 11:55:20 -0700
876
+ Served asset /jasmine-jquery.js - 200 OK (0ms)
877
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-02 11:55:20 -0700
878
+ Served asset /javascript1_spec.js - 200 OK (0ms)
879
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-02 11:55:20 -0700
880
+ Served asset /specs/asset_spec.js - 200 OK (0ms)
881
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-02 11:55:20 -0700
882
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
883
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-02 11:55:20 -0700
884
+ Served asset /nested_path/nested_spec.js - 200 OK (0ms)
885
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-02 11:55:20 -0700
886
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
887
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-02 13:10:22 -0700
888
+ Processing by Teabag::SpecController#index as HTML
889
+ Parameters: {"suite"=>nil}
890
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (8.4ms)
891
+ Completed 200 OK in 9ms (Views: 8.7ms)
892
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-02 13:10:22 -0700
893
+ Served asset /jasmine.css - 200 OK (0ms)
894
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-02 13:10:22 -0700
895
+ Served asset /teabag.css - 200 OK (0ms)
896
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-02 13:10:22 -0700
897
+ Served asset /jasmine-html.js - 200 OK (0ms)
898
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-02 13:10:22 -0700
899
+ Served asset /jasmine-1.3.0.js - 200 OK (0ms)
900
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-02 13:10:22 -0700
901
+ Served asset /jasmine-jquery.js - 200 OK (0ms)
902
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-02 13:10:22 -0700
903
+ Served asset /specs/asset_spec.js - 200 OK (0ms)
904
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-02 13:10:22 -0700
905
+ Served asset /teabag.js - 200 OK (0ms)
906
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-02 13:10:22 -0700
907
+ Served asset /spec_helper.js - 200 OK (0ms)
908
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-02 13:10:22 -0700
909
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
910
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-02 13:10:22 -0700
911
+ Served asset /nested_path/nested_spec.js - 200 OK (0ms)
912
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-02 13:10:22 -0700
913
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
914
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-02 13:10:22 -0700
915
+ Served asset /javascript1_spec.js - 200 OK (0ms)
916
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-02 13:26:22 -0700
917
+ Processing by Teabag::SpecController#index as HTML
918
+ Parameters: {"suite"=>nil}
919
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (8.8ms)
920
+ Completed 200 OK in 9ms (Views: 9.1ms)
921
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-02 13:26:22 -0700
922
+ Served asset /jasmine.css - 200 OK (0ms)
923
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-02 13:26:22 -0700
924
+ Served asset /jasmine-jquery.js - 200 OK (0ms)
925
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-02 13:26:22 -0700
926
+ Served asset /jasmine-1.3.0.js - 200 OK (0ms)
927
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-02 13:26:22 -0700
928
+ Served asset /teabag.css - 200 OK (0ms)
929
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-02 13:26:22 -0700
930
+ Served asset /teabag.js - 200 OK (0ms)
931
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-02 13:26:22 -0700
932
+ Served asset /jasmine-html.js - 200 OK (0ms)
933
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-02 13:26:22 -0700
934
+ Served asset /spec_helper.js - 200 OK (0ms)
935
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-02 13:26:22 -0700
936
+ Served asset /specs/asset_spec.js - 200 OK (0ms)
937
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-02 13:26:22 -0700
938
+ Served asset /javascript1_spec.js - 200 OK (0ms)
939
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-02 13:26:22 -0700
940
+ Served asset /nested_path/nested_spec.js - 200 OK (0ms)
941
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-02 13:26:22 -0700
942
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
943
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-02 13:26:22 -0700
944
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
945
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-02 13:28:22 -0700
946
+ Processing by Teabag::SpecController#index as HTML
947
+ Parameters: {"suite"=>nil}
948
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (7.2ms)
949
+ Completed 200 OK in 8ms (Views: 7.6ms)
950
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-02 13:28:22 -0700
951
+ Served asset /jasmine.css - 200 OK (0ms)
952
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-02 13:28:22 -0700
953
+ Served asset /jasmine-1.3.0.js - 200 OK (0ms)
954
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-02 13:28:22 -0700
955
+ Served asset /jasmine-jquery.js - 200 OK (0ms)
956
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-02 13:28:22 -0700
957
+ Served asset /teabag.css - 200 OK (0ms)
958
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-02 13:28:22 -0700
959
+ Served asset /jasmine-html.js - 200 OK (0ms)
960
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-02 13:28:22 -0700
961
+ Served asset /spec_helper.js - 200 OK (0ms)
962
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-02 13:28:22 -0700
963
+ Served asset /specs/asset_spec.js - 200 OK (0ms)
964
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-02 13:28:22 -0700
965
+ Compiled teabag.js (0ms) (pid 7144)
966
+ Served asset /teabag.js - 200 OK (11ms)
967
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-02 13:28:22 -0700
968
+ Served asset /javascript1_spec.js - 200 OK (0ms)
969
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-02 13:28:22 -0700
970
+ Served asset /nested_path/nested_spec.js - 200 OK (0ms)
971
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-02 13:28:22 -0700
972
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
973
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-02 13:28:22 -0700
974
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
975
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-02 13:28:41 -0700
976
+ Processing by Teabag::SpecController#index as HTML
977
+ Parameters: {"suite"=>nil}
978
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (8.5ms)
979
+ Completed 200 OK in 9ms (Views: 8.9ms)
980
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-02 13:28:41 -0700
981
+ Served asset /jasmine.css - 200 OK (0ms)
982
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-02 13:28:41 -0700
983
+ Served asset /teabag.css - 200 OK (0ms)
984
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-02 13:28:41 -0700
985
+ Served asset /jasmine-jquery.js - 200 OK (0ms)
986
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-02 13:28:41 -0700
987
+ Served asset /jasmine-1.3.0.js - 200 OK (0ms)
988
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-02 13:28:41 -0700
989
+ Served asset /jasmine-html.js - 200 OK (0ms)
990
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-02 13:28:41 -0700
991
+ Served asset /specs/asset_spec.js - 200 OK (0ms)
992
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-02 13:28:41 -0700
993
+ Served asset /spec_helper.js - 200 OK (0ms)
994
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-02 13:28:41 -0700
995
+ Compiled teabag.js (0ms) (pid 7144)
996
+ Served asset /teabag.js - 200 OK (32ms)
997
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-02 13:28:41 -0700
998
+ Served asset /javascript1_spec.js - 200 OK (0ms)
999
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-02 13:28:41 -0700
1000
+ Served asset /nested_path/nested_spec.js - 200 OK (0ms)
1001
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-02 13:28:41 -0700
1002
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
1003
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-02 13:28:41 -0700
1004
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
1005
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-02 13:31:02 -0700
1006
+ Processing by Teabag::SpecController#index as HTML
1007
+ Parameters: {"suite"=>nil}
1008
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (8.6ms)
1009
+ Completed 200 OK in 9ms (Views: 9.0ms)
1010
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-02 13:31:02 -0700
1011
+ Served asset /jasmine.css - 200 OK (0ms)
1012
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-02 13:31:02 -0700
1013
+ Served asset /teabag.css - 200 OK (0ms)
1014
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-02 13:31:02 -0700
1015
+ Served asset /jasmine-html.js - 200 OK (0ms)
1016
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-02 13:31:02 -0700
1017
+ Served asset /jasmine-jquery.js - 200 OK (0ms)
1018
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-02 13:31:02 -0700
1019
+ Served asset /spec_helper.js - 200 OK (0ms)
1020
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-02 13:31:02 -0700
1021
+ Served asset /jasmine-1.3.0.js - 200 OK (0ms)
1022
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-02 13:31:02 -0700
1023
+ Served asset /specs/asset_spec.js - 200 OK (0ms)
1024
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-02 13:31:02 -0700
1025
+ Compiled teabag.js (0ms) (pid 7144)
1026
+ Served asset /teabag.js - 200 OK (9ms)
1027
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-02 13:31:02 -0700
1028
+ Served asset /javascript1_spec.js - 200 OK (0ms)
1029
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-02 13:31:02 -0700
1030
+ Served asset /nested_path/nested_spec.js - 200 OK (0ms)
1031
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-02 13:31:02 -0700
1032
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
1033
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-02 13:31:02 -0700
1034
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
1035
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-02 13:32:23 -0700
1036
+ Processing by Teabag::SpecController#index as HTML
1037
+ Parameters: {"suite"=>nil}
1038
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (5.9ms)
1039
+ Completed 200 OK in 6ms (Views: 6.2ms)
1040
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-02 13:32:23 -0700
1041
+ Served asset /jasmine.css - 200 OK (0ms)
1042
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-02 13:32:23 -0700
1043
+ Served asset /teabag.css - 200 OK (0ms)
1044
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-02 13:32:23 -0700
1045
+ Served asset /jasmine-html.js - 200 OK (0ms)
1046
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-02 13:32:23 -0700
1047
+ Compiled teabag/console-reporter.js (0ms) (pid 7144)
1048
+ Compiled teabag/html-reporter.js (0ms) (pid 7144)
1049
+ Compiled teabag.js (5ms) (pid 7144)
1050
+ Served asset /teabag.js - 200 OK (11ms)
1051
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-02 13:32:23 -0700
1052
+ Served asset /jasmine-1.3.0.js - 200 OK (0ms)
1053
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-02 13:32:23 -0700
1054
+ Served asset /jasmine-jquery.js - 200 OK (0ms)
1055
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-02 13:32:23 -0700
1056
+ Served asset /spec_helper.js - 200 OK (0ms)
1057
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-02 13:32:23 -0700
1058
+ Served asset /specs/asset_spec.js - 200 OK (0ms)
1059
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-02 13:32:23 -0700
1060
+ Served asset /javascript1_spec.js - 200 OK (0ms)
1061
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-02 13:32:23 -0700
1062
+ Served asset /nested_path/nested_spec.js - 200 OK (0ms)
1063
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-02 13:32:23 -0700
1064
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
1065
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-02 13:32:23 -0700
1066
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
1067
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-02 19:41:52 -0700
1068
+ Processing by Teabag::SpecController#index as HTML
1069
+ Parameters: {"suite"=>nil}
1070
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (9.2ms)
1071
+ Completed 200 OK in 10ms (Views: 9.7ms)
1072
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-02 19:41:52 -0700
1073
+ Served asset /jasmine.css - 200 OK (0ms)
1074
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-02 19:41:52 -0700
1075
+ Served asset /teabag.css - 200 OK (0ms)
1076
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-02 19:41:52 -0700
1077
+ Served asset /jasmine-1.3.0.js - 200 OK (0ms)
1078
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-02 19:41:52 -0700
1079
+ Served asset /spec_helper.js - 404 Not Found (6ms)
1080
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-02 19:41:52 -0700
1081
+ Served asset /jasmine-html.js - 200 OK (0ms)
1082
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-02 19:41:52 -0700
1083
+ Served asset /jasmine-jquery.js - 200 OK (0ms)
1084
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-02 19:41:52 -0700
1085
+ Served asset /specs/asset_spec.js - 200 OK (0ms)
1086
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-02 19:41:52 -0700
1087
+ Served asset /teabag.js - 200 OK (0ms)
1088
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-02 19:43:19 -0700
1089
+ Processing by Teabag::SpecController#index as HTML
1090
+ Parameters: {"suite"=>nil}
1091
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (3.9ms)
1092
+ Completed 200 OK in 4ms (Views: 4.3ms)
1093
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-02 19:43:19 -0700
1094
+ Served asset /jasmine.css - 200 OK (0ms)
1095
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-02 19:43:19 -0700
1096
+ Served asset /teabag.css - 200 OK (0ms)
1097
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-02 19:43:19 -0700
1098
+ Served asset /jasmine-1.3.0.js - 200 OK (0ms)
1099
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-02 19:43:19 -0700
1100
+ Served asset /jasmine-html.js - 200 OK (0ms)
1101
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-02 19:43:19 -0700
1102
+ Served asset /jasmine-jquery.js - 200 OK (0ms)
1103
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-02 19:43:19 -0700
1104
+ Served asset /teabag.js - 200 OK (0ms)
1105
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-02 19:43:19 -0700
1106
+ Served asset /spec_helper.js - 404 Not Found (5ms)
1107
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-02 19:43:19 -0700
1108
+ Served asset /specs/asset_spec.js - 200 OK (0ms)
1109
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-02 19:43:52 -0700
1110
+ Processing by Teabag::SpecController#index as HTML
1111
+ Parameters: {"suite"=>nil}
1112
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (4.4ms)
1113
+ Completed 200 OK in 5ms (Views: 4.8ms)
1114
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-02 19:43:52 -0700
1115
+ Served asset /jasmine.css - 200 OK (0ms)
1116
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-02 19:43:52 -0700
1117
+ Served asset /teabag.css - 200 OK (0ms)
1118
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-02 19:43:52 -0700
1119
+ Served asset /jasmine-1.3.0.js - 200 OK (0ms)
1120
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-02 19:43:52 -0700
1121
+ Served asset /jasmine-jquery.js - 200 OK (0ms)
1122
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-02 19:43:52 -0700
1123
+ Served asset /teabag.js - 200 OK (0ms)
1124
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-02 19:43:52 -0700
1125
+ Served asset /spec_helper.js - 404 Not Found (3ms)
1126
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-02 19:43:52 -0700
1127
+ Served asset /jasmine-html.js - 200 OK (0ms)
1128
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-02 19:43:52 -0700
1129
+ Served asset /specs/asset_spec.js - 200 OK (0ms)
1130
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-02 19:44:41 -0700
1131
+ Processing by Teabag::SpecController#index as HTML
1132
+ Parameters: {"suite"=>nil}
1133
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (3.1ms)
1134
+ Completed 200 OK in 4ms (Views: 3.4ms)
1135
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-02 19:44:41 -0700
1136
+ Served asset /jasmine.css - 200 OK (0ms)
1137
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-02 19:44:41 -0700
1138
+ Served asset /jasmine-1.3.0.js - 200 OK (0ms)
1139
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-02 19:44:41 -0700
1140
+ Served asset /spec_helper.js - 404 Not Found (4ms)
1141
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-02 19:44:41 -0700
1142
+ Served asset /jasmine-html.js - 200 OK (0ms)
1143
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-02 19:44:41 -0700
1144
+ Served asset /teabag.css - 200 OK (0ms)
1145
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-02 19:44:41 -0700
1146
+ Served asset /jasmine-jquery.js - 200 OK (0ms)
1147
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-02 19:44:41 -0700
1148
+ Served asset /teabag.js - 200 OK (0ms)
1149
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-02 19:44:41 -0700
1150
+ Served asset /specs/asset_spec.js - 200 OK (0ms)
1151
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-02 19:45:24 -0700
1152
+ Processing by Teabag::SpecController#index as HTML
1153
+ Parameters: {"suite"=>nil}
1154
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (4.7ms)
1155
+ Completed 200 OK in 5ms (Views: 5.1ms)
1156
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-02 19:45:24 -0700
1157
+ Served asset /jasmine.css - 200 OK (0ms)
1158
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-02 19:45:24 -0700
1159
+ Served asset /teabag.css - 200 OK (0ms)
1160
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-02 19:45:24 -0700
1161
+ Served asset /jasmine-1.3.0.js - 200 OK (0ms)
1162
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-02 19:45:24 -0700
1163
+ Served asset /jasmine-jquery.js - 200 OK (0ms)
1164
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-02 19:45:24 -0700
1165
+ Served asset /spec_helper.js - 404 Not Found (26ms)
1166
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-02 19:45:24 -0700
1167
+ Served asset /jasmine-html.js - 200 OK (0ms)
1168
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-02 19:45:24 -0700
1169
+ Served asset /teabag.js - 200 OK (0ms)
1170
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-02 19:45:24 -0700
1171
+ Served asset /specs/asset_spec.js - 200 OK (0ms)
1172
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-02 19:45:48 -0700
1173
+ Processing by Teabag::SpecController#index as HTML
1174
+ Parameters: {"suite"=>nil}
1175
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.7ms)
1176
+ Completed 200 OK in 3ms (Views: 3.0ms)
1177
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-02 19:45:49 -0700
1178
+ Served asset /jasmine.css - 200 OK (0ms)
1179
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-02 19:45:49 -0700
1180
+ Served asset /teabag.css - 200 OK (0ms)
1181
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-02 19:45:49 -0700
1182
+ Served asset /jasmine-1.3.0.js - 200 OK (0ms)
1183
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-02 19:45:49 -0700
1184
+ Served asset /jasmine-jquery.js - 200 OK (0ms)
1185
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-02 19:45:49 -0700
1186
+ Served asset /teabag.js - 200 OK (0ms)
1187
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-02 19:45:49 -0700
1188
+ Served asset /spec_helper.js - 404 Not Found (3ms)
1189
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-02 19:45:49 -0700
1190
+ Served asset /specs/asset_spec.js - 200 OK (0ms)
1191
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-02 19:45:49 -0700
1192
+ Served asset /jasmine-html.js - 200 OK (0ms)
1193
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-03 10:08:38 -0700
1194
+ Processing by Teabag::SpecController#index as HTML
1195
+ Parameters: {"suite"=>nil}
1196
+ Compiled jasmine-1.3.0.js (0ms) (pid 654)
1197
+ Compiled coffeescript1_spec.js (131ms) (pid 654)
1198
+ Compiled coffeescript2_spec.js (93ms) (pid 654)
1199
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (251.1ms)
1200
+ Completed 200 OK in 277ms (Views: 274.3ms)
1201
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-03 10:08:38 -0700
1202
+ Compiled jasmine.css (2ms) (pid 654)
1203
+ Served asset /jasmine.css - 200 OK (16ms)
1204
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-03 10:08:38 -0700
1205
+ Compiled teabag.css (0ms) (pid 654)
1206
+ Served asset /teabag.css - 200 OK (6ms)
1207
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-03 10:08:38 -0700
1208
+ Served asset /jasmine-1.3.0.js - 200 OK (3ms)
1209
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-03 10:08:38 -0700
1210
+ Compiled spec_helper.js (95ms) (pid 654)
1211
+ Served asset /spec_helper.js - 200 OK (101ms)
1212
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-03 10:08:38 -0700
1213
+ Compiled teabag/console-reporter.js (0ms) (pid 654)
1214
+ Compiled teabag/html-reporter.js (0ms) (pid 654)
1215
+ Compiled teabag.js (6ms) (pid 654)
1216
+ Served asset /teabag.js - 200 OK (13ms)
1217
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-03 10:08:38 -0700
1218
+ Compiled jasmine-html.js (0ms) (pid 654)
1219
+ Served asset /jasmine-html.js - 200 OK (8ms)
1220
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-03 10:08:38 -0700
1221
+ Compiled specs/asset_spec.js (0ms) (pid 654)
1222
+ Served asset /specs/asset_spec.js - 200 OK (4ms)
1223
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-03 10:08:38 -0700
1224
+ Compiled javascript1_spec.js (0ms) (pid 654)
1225
+ Served asset /javascript1_spec.js - 200 OK (5ms)
1226
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-03 10:08:38 -0700
1227
+ Compiled nested_path/nested_spec.js (0ms) (pid 654)
1228
+ Served asset /nested_path/nested_spec.js - 200 OK (30ms)
1229
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-03 10:08:38 -0700
1230
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
1231
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-03 10:08:38 -0700
1232
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
1233
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-03 18:07:03 -0700
1234
+ Processing by Teabag::SpecController#index as HTML
1235
+ Parameters: {"suite"=>nil}
1236
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (12.2ms)
1237
+ Completed 500 Internal Server Error in 39ms
1238
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-03 18:17:03 -0700
1239
+ Processing by Teabag::SpecController#index as HTML
1240
+ Parameters: {"suite"=>nil}
1241
+ Compiled jasmine-1.3.0.js (0ms) (pid 8218)
1242
+ Compiled coffeescript1_spec.js (106ms) (pid 8218)
1243
+ Compiled coffeescript2_spec.js (95ms) (pid 8218)
1244
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (226.7ms)
1245
+ Completed 200 OK in 250ms (Views: 250.0ms)
1246
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-03 18:17:04 -0700
1247
+ Compiled jasmine.css (0ms) (pid 8218)
1248
+ Served asset /jasmine.css - 200 OK (11ms)
1249
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-03 18:17:04 -0700
1250
+ Served asset /jasmine-1.3.0.js - 200 OK (3ms)
1251
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-03 18:17:04 -0700
1252
+ Compiled teabag.css (1ms) (pid 8218)
1253
+ Served asset /teabag.css - 200 OK (6ms)
1254
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-03 18:17:04 -0700
1255
+ Compiled jasmine-html.js (0ms) (pid 8218)
1256
+ Served asset /jasmine-html.js - 200 OK (7ms)
1257
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-03 18:17:04 -0700
1258
+ Compiled jasmine-jquery.js (0ms) (pid 8218)
1259
+ Served asset /jasmine-jquery.js - 200 OK (8ms)
1260
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-03 18:17:04 -0700
1261
+ Compiled teabag/console-reporter.js (0ms) (pid 8218)
1262
+ Compiled teabag/html-reporter.js (0ms) (pid 8218)
1263
+ Compiled teabag.js (6ms) (pid 8218)
1264
+ Served asset /teabag.js - 200 OK (13ms)
1265
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-03 18:17:04 -0700
1266
+ Compiled spec_helper.js (98ms) (pid 8218)
1267
+ Served asset /spec_helper.js - 200 OK (104ms)
1268
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-03 18:17:04 -0700
1269
+ Compiled javascript1_spec.js (0ms) (pid 8218)
1270
+ Served asset /javascript1_spec.js - 200 OK (33ms)
1271
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-03 18:17:04 -0700
1272
+ Compiled nested_path/nested_spec.js (0ms) (pid 8218)
1273
+ Served asset /nested_path/nested_spec.js - 200 OK (6ms)
1274
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-03 18:17:04 -0700
1275
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
1276
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-03 18:17:04 -0700
1277
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
1278
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-03 18:17:35 -0700
1279
+ Processing by Teabag::SpecController#index as HTML
1280
+ Parameters: {"suite"=>nil}
1281
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (5.8ms)
1282
+ Completed 200 OK in 28ms (Views: 27.8ms)
1283
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-03 18:17:35 -0700
1284
+ Served asset /jasmine.css - 200 OK (2ms)
1285
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-03 18:17:35 -0700
1286
+ Served asset /jasmine-1.3.0.js - 200 OK (6ms)
1287
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-03 18:17:35 -0700
1288
+ Served asset /teabag.css - 200 OK (2ms)
1289
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-03 18:17:35 -0700
1290
+ Served asset /jasmine-jquery.js - 200 OK (19ms)
1291
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-03 18:17:35 -0700
1292
+ Served asset /teabag.js - 200 OK (3ms)
1293
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-03 18:17:35 -0700
1294
+ Served asset /jasmine-html.js - 200 OK (2ms)
1295
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-03 18:17:35 -0700
1296
+ Served asset /spec_helper.js - 404 Not Found (3ms)
1297
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-03 18:17:35 -0700
1298
+ Compiled specs/asset_spec.js (0ms) (pid 8242)
1299
+ Served asset /specs/asset_spec.js - 200 OK (5ms)
1300
+ Started GET "/teabag/" for 127.0.0.1 at 2012-12-03 18:45:27 -0700
1301
+ Processing by Teabag::SpecController#index as HTML
1302
+ Parameters: {"suite"=>nil}
1303
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (12.5ms)
1304
+ Completed 200 OK in 35ms (Views: 35.1ms)
1305
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-03 18:45:27 -0700
1306
+ Served asset /jasmine.css - 200 OK (2ms)
1307
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-03 18:45:27 -0700
1308
+ Served asset /teabag.css - 200 OK (4ms)
1309
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-03 18:45:27 -0700
1310
+ Served asset /jasmine-html.js - 200 OK (19ms)
1311
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-03 18:45:27 -0700
1312
+ Served asset /jasmine-1.3.0.js - 200 OK (3ms)
1313
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-03 18:45:27 -0700
1314
+ Served asset /jasmine-jquery.js - 200 OK (4ms)
1315
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-03 18:45:27 -0700
1316
+ Served asset /teabag.js - 200 OK (5ms)
1317
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-03 18:45:27 -0700
1318
+ Served asset /spec_helper.js - 200 OK (2ms)
1319
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-03 18:45:27 -0700
1320
+ Served asset /javascript1_spec.js - 200 OK (2ms)
1321
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-03 18:45:27 -0700
1322
+ Served asset /nested_path/nested_spec.js - 200 OK (2ms)
1323
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-03 18:45:27 -0700
1324
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
1325
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-03 18:45:27 -0700
1326
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
1327
+ Started GET "/teabag/" for 127.0.0.1 at 2012-12-03 18:46:21 -0700
1328
+ Processing by Teabag::SpecController#index as HTML
1329
+ Parameters: {"suite"=>nil}
1330
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (12.8ms)
1331
+ Completed 200 OK in 36ms (Views: 35.6ms)
1332
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-03 18:46:21 -0700
1333
+ Served asset /jasmine.css - 200 OK (2ms)
1334
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-03 18:46:21 -0700
1335
+ Served asset /jasmine-1.3.0.js - 200 OK (23ms)
1336
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-03 18:46:21 -0700
1337
+ Served asset /jasmine-html.js - 200 OK (2ms)
1338
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-03 18:46:21 -0700
1339
+ Served asset /jasmine-jquery.js - 200 OK (3ms)
1340
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-03 18:46:21 -0700
1341
+ Served asset /teabag.css - 200 OK (1ms)
1342
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-03 18:46:21 -0700
1343
+ Served asset /spec_helper.js - 200 OK (4ms)
1344
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-03 18:46:21 -0700
1345
+ Served asset /teabag.js - 200 OK (5ms)
1346
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-03 18:46:21 -0700
1347
+ Served asset /javascript1_spec.js - 200 OK (2ms)
1348
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-03 18:46:21 -0700
1349
+ Served asset /nested_path/nested_spec.js - 200 OK (2ms)
1350
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-03 18:46:21 -0700
1351
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
1352
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-03 18:46:21 -0700
1353
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
1354
+ Started GET "/teabag/" for 127.0.0.1 at 2012-12-03 18:46:29 -0700
1355
+ Processing by Teabag::SpecController#index as HTML
1356
+ Parameters: {"suite"=>nil}
1357
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (12.9ms)
1358
+ Completed 200 OK in 36ms (Views: 35.8ms)
1359
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-03 18:46:29 -0700
1360
+ Served asset /jasmine.css - 200 OK (2ms)
1361
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-03 18:46:29 -0700
1362
+ Served asset /teabag.css - 200 OK (5ms)
1363
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-03 18:46:29 -0700
1364
+ Served asset /jasmine-1.3.0.js - 200 OK (19ms)
1365
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-03 18:46:29 -0700
1366
+ Served asset /jasmine-html.js - 200 OK (2ms)
1367
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-03 18:46:29 -0700
1368
+ Served asset /jasmine-jquery.js - 200 OK (3ms)
1369
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-03 18:46:29 -0700
1370
+ Served asset /spec_helper.js - 200 OK (3ms)
1371
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-03 18:46:29 -0700
1372
+ Served asset /teabag.js - 200 OK (3ms)
1373
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-03 18:46:29 -0700
1374
+ Served asset /javascript1_spec.js - 200 OK (2ms)
1375
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-03 18:46:29 -0700
1376
+ Served asset /nested_path/nested_spec.js - 200 OK (2ms)
1377
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-03 18:46:29 -0700
1378
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
1379
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-03 18:46:29 -0700
1380
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
1381
+ Started GET "/teabag/app" for 127.0.0.1 at 2012-12-03 18:47:23 -0700
1382
+ Processing by Teabag::SpecController#index as HTML
1383
+ Parameters: {"suite"=>"app"}
1384
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (6.8ms)
1385
+ Completed 200 OK in 31ms (Views: 30.6ms)
1386
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-03 18:47:23 -0700
1387
+ Served asset /jasmine.css - 200 OK (2ms)
1388
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-03 18:47:23 -0700
1389
+ Served asset /jasmine-html.js - 200 OK (6ms)
1390
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-03 18:47:23 -0700
1391
+ Served asset /teabag.css - 200 OK (1ms)
1392
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-03 18:47:23 -0700
1393
+ Served asset /teabag.js - 200 OK (3ms)
1394
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-03 18:47:23 -0700
1395
+ Served asset /jasmine-1.3.0.js - 200 OK (2ms)
1396
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-03 18:47:23 -0700
1397
+ Served asset /jasmine-jquery.js - 200 OK (2ms)
1398
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-03 18:47:23 -0700
1399
+ Served asset /spec_helper.js - 200 OK (2ms)
1400
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-03 18:47:23 -0700
1401
+ Served asset /specs/asset_spec.js - 200 OK (1ms)
1402
+ Started GET "/teabag/app" for 127.0.0.1 at 2012-12-03 18:47:37 -0700
1403
+ Processing by Teabag::SpecController#index as HTML
1404
+ Parameters: {"suite"=>"app"}
1405
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (6.6ms)
1406
+ Completed 200 OK in 29ms (Views: 28.8ms)
1407
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-03 18:47:37 -0700
1408
+ Served asset /jasmine.css - 200 OK (2ms)
1409
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-03 18:47:37 -0700
1410
+ Served asset /teabag.css - 200 OK (6ms)
1411
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-03 18:47:37 -0700
1412
+ Served asset /jasmine-1.3.0.js - 200 OK (2ms)
1413
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-03 18:47:37 -0700
1414
+ Served asset /spec_helper.js - 200 OK (2ms)
1415
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-03 18:47:37 -0700
1416
+ Served asset /jasmine-jquery.js - 200 OK (2ms)
1417
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-03 18:47:37 -0700
1418
+ Served asset /teabag.js - 200 OK (3ms)
1419
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-03 18:47:37 -0700
1420
+ Served asset /jasmine-html.js - 200 OK (2ms)
1421
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-03 18:47:37 -0700
1422
+ Served asset /specs/asset_spec.js - 200 OK (1ms)
1423
+ Started GET "/teabag/app" for 127.0.0.1 at 2012-12-03 18:48:01 -0700
1424
+ Processing by Teabag::SpecController#index as HTML
1425
+ Parameters: {"suite"=>"app"}
1426
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (6.5ms)
1427
+ Completed 200 OK in 29ms (Views: 29.3ms)
1428
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-03 18:48:02 -0700
1429
+ Served asset /jasmine.css - 200 OK (2ms)
1430
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-03 18:48:02 -0700
1431
+ Served asset /teabag.css - 200 OK (2ms)
1432
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-03 18:48:02 -0700
1433
+ Served asset /jasmine-html.js - 200 OK (3ms)
1434
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-03 18:48:02 -0700
1435
+ Served asset /jasmine-1.3.0.js - 200 OK (18ms)
1436
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-03 18:48:02 -0700
1437
+ Served asset /teabag.js - 200 OK (3ms)
1438
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-03 18:48:02 -0700
1439
+ Served asset /jasmine-jquery.js - 200 OK (2ms)
1440
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-03 18:48:02 -0700
1441
+ Served asset /spec_helper.js - 200 OK (2ms)
1442
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-03 18:48:02 -0700
1443
+ Served asset /specs/asset_spec.js - 200 OK (1ms)
1444
+ Started GET "/teabag/default" for 127.0.0.1 at 2012-12-03 18:48:19 -0700
1445
+ Processing by Teabag::SpecController#index as HTML
1446
+ Parameters: {"suite"=>"default"}
1447
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (12.7ms)
1448
+ Completed 200 OK in 36ms (Views: 35.4ms)
1449
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-03 18:48:19 -0700
1450
+ Served asset /jasmine.css - 200 OK (2ms)
1451
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-03 18:48:19 -0700
1452
+ Served asset /jasmine-1.3.0.js - 200 OK (22ms)
1453
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-03 18:48:19 -0700
1454
+ Served asset /jasmine-jquery.js - 200 OK (2ms)
1455
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-03 18:48:19 -0700
1456
+ Served asset /jasmine-html.js - 200 OK (2ms)
1457
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-03 18:48:19 -0700
1458
+ Served asset /teabag.css - 200 OK (1ms)
1459
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-03 18:48:19 -0700
1460
+ Served asset /teabag.js - 200 OK (5ms)
1461
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-03 18:48:19 -0700
1462
+ Served asset /spec_helper.js - 200 OK (2ms)
1463
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-03 18:48:19 -0700
1464
+ Served asset /javascript1_spec.js - 200 OK (2ms)
1465
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-03 18:48:19 -0700
1466
+ Served asset /nested_path/nested_spec.js - 200 OK (2ms)
1467
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-03 18:48:19 -0700
1468
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
1469
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-03 18:48:19 -0700
1470
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
1471
+ Started GET "/teabag/default" for 127.0.0.1 at 2012-12-03 18:50:51 -0700
1472
+ Processing by Teabag::SpecController#index as HTML
1473
+ Parameters: {"suite"=>"default"}
1474
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (12.6ms)
1475
+ Completed 200 OK in 35ms (Views: 34.6ms)
1476
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-03 18:50:51 -0700
1477
+ Served asset /jasmine.css - 200 OK (2ms)
1478
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-03 18:50:51 -0700
1479
+ Served asset /teabag.css - 200 OK (1ms)
1480
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-03 18:50:51 -0700
1481
+ Served asset /jasmine-jquery.js - 200 OK (3ms)
1482
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-03 18:50:51 -0700
1483
+ Served asset /jasmine-1.3.0.js - 200 OK (4ms)
1484
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-03 18:50:52 -0700
1485
+ Served asset /teabag.js - 200 OK (4ms)
1486
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-03 18:50:52 -0700
1487
+ Served asset /jasmine-html.js - 200 OK (2ms)
1488
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-03 18:50:52 -0700
1489
+ Served asset /spec_helper.js - 200 OK (2ms)
1490
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-03 18:50:52 -0700
1491
+ Served asset /javascript1_spec.js - 200 OK (2ms)
1492
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-03 18:50:52 -0700
1493
+ Served asset /nested_path/nested_spec.js - 200 OK (2ms)
1494
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-03 18:50:52 -0700
1495
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
1496
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-03 18:50:52 -0700
1497
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
1498
+ Started GET "/teabag/default" for 127.0.0.1 at 2012-12-03 18:52:09 -0700
1499
+ Processing by Teabag::SpecController#index as HTML
1500
+ Parameters: {"suite"=>"default"}
1501
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (13.6ms)
1502
+ Completed 200 OK in 37ms (Views: 36.7ms)
1503
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-03 18:52:09 -0700
1504
+ Served asset /jasmine.css - 200 OK (2ms)
1505
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-03 18:52:09 -0700
1506
+ Served asset /teabag.css - 200 OK (1ms)
1507
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-03 18:52:09 -0700
1508
+ Served asset /jasmine-jquery.js - 200 OK (23ms)
1509
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-03 18:52:09 -0700
1510
+ Served asset /jasmine-1.3.0.js - 200 OK (2ms)
1511
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-03 18:52:09 -0700
1512
+ Served asset /spec_helper.js - 200 OK (2ms)
1513
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-03 18:52:09 -0700
1514
+ Served asset /teabag.js - 200 OK (4ms)
1515
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-03 18:52:09 -0700
1516
+ Served asset /jasmine-html.js - 200 OK (2ms)
1517
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-03 18:52:09 -0700
1518
+ Served asset /javascript1_spec.js - 200 OK (2ms)
1519
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-03 18:52:09 -0700
1520
+ Served asset /nested_path/nested_spec.js - 200 OK (2ms)
1521
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-03 18:52:09 -0700
1522
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
1523
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-03 18:52:09 -0700
1524
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
1525
+ Started GET "/assets/specs/asset_spec.js" for 127.0.0.1 at 2012-12-03 18:52:09 -0700
1526
+ Served asset /specs/asset_spec.js - 200 OK (1ms)
1527
+ Started GET "/teabag/default" for 127.0.0.1 at 2012-12-03 18:52:24 -0700
1528
+ Processing by Teabag::SpecController#index as HTML
1529
+ Parameters: {"suite"=>"default"}
1530
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (12.8ms)
1531
+ Completed 200 OK in 36ms (Views: 35.7ms)
1532
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-03 18:52:24 -0700
1533
+ Served asset /jasmine.css - 200 OK (2ms)
1534
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-03 18:52:24 -0700
1535
+ Served asset /jasmine-1.3.0.js - 200 OK (23ms)
1536
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-03 18:52:25 -0700
1537
+ Served asset /teabag.css - 200 OK (2ms)
1538
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-03 18:52:25 -0700
1539
+ Served asset /spec_helper.js - 200 OK (2ms)
1540
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-03 18:52:25 -0700
1541
+ Served asset /jasmine-html.js - 200 OK (3ms)
1542
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-03 18:52:25 -0700
1543
+ Served asset /jasmine-jquery.js - 200 OK (3ms)
1544
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-03 18:52:25 -0700
1545
+ Served asset /teabag.js - 200 OK (4ms)
1546
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-03 18:52:25 -0700
1547
+ Served asset /nested_path/nested_spec.js - 200 OK (2ms)
1548
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-03 18:52:25 -0700
1549
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
1550
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-03 18:52:25 -0700
1551
+ Served asset /javascript1_spec.js - 200 OK (2ms)
1552
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-03 18:52:25 -0700
1553
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
1554
+ Started GET "/teabag/default" for 127.0.0.1 at 2012-12-03 18:52:43 -0700
1555
+ Processing by Teabag::SpecController#index as HTML
1556
+ Parameters: {"suite"=>"default"}
1557
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (12.7ms)
1558
+ Completed 200 OK in 35ms (Views: 34.7ms)
1559
+ Started GET "/assets/jasmine.css" for 127.0.0.1 at 2012-12-03 18:52:43 -0700
1560
+ Served asset /jasmine.css - 200 OK (2ms)
1561
+ Started GET "/assets/teabag.js" for 127.0.0.1 at 2012-12-03 18:52:43 -0700
1562
+ Served asset /teabag.js - 200 OK (6ms)
1563
+ Started GET "/assets/jasmine-1.3.0.js" for 127.0.0.1 at 2012-12-03 18:52:43 -0700
1564
+ Served asset /jasmine-1.3.0.js - 200 OK (2ms)
1565
+ Started GET "/assets/jasmine-jquery.js" for 127.0.0.1 at 2012-12-03 18:52:43 -0700
1566
+ Served asset /jasmine-jquery.js - 200 OK (2ms)
1567
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-03 18:52:43 -0700
1568
+ Served asset /teabag.css - 200 OK (1ms)
1569
+ Started GET "/assets/jasmine-html.js" for 127.0.0.1 at 2012-12-03 18:52:43 -0700
1570
+ Served asset /jasmine-html.js - 200 OK (3ms)
1571
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-03 18:52:43 -0700
1572
+ Served asset /spec_helper.js - 200 OK (2ms)
1573
+ Started GET "/assets/javascript1_spec.js" for 127.0.0.1 at 2012-12-03 18:52:43 -0700
1574
+ Served asset /javascript1_spec.js - 200 OK (2ms)
1575
+ Started GET "/assets/nested_path/nested_spec.js" for 127.0.0.1 at 2012-12-03 18:52:43 -0700
1576
+ Served asset /nested_path/nested_spec.js - 200 OK (2ms)
1577
+ Started GET "/assets/coffeescript1_spec.js.coffee" for 127.0.0.1 at 2012-12-03 18:52:43 -0700
1578
+ Served asset /coffeescript1_spec.js.coffee - 200 OK (0ms)
1579
+ Started GET "/assets/coffeescript2_spec.coffee" for 127.0.0.1 at 2012-12-03 18:52:43 -0700
1580
+ Served asset /coffeescript2_spec.coffee - 200 OK (0ms)
1581
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-04 16:19:02 -0700
1582
+ Processing by Teabag::SpecController#index as */*
1583
+ Parameters: {"suite"=>nil}
1584
+ Compiled coffeescript1_spec.js (188ms) (pid 36608)
1585
+ Compiled coffeescript2_spec.js (102ms) (pid 36608)
1586
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (314.4ms)
1587
+ Completed 200 OK in 328ms (Views: 327.4ms)
1588
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-04 16:19:47 -0700
1589
+ Processing by Teabag::SpecController#index as */*
1590
+ Parameters: {"suite"=>nil}
1591
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (30.1ms)
1592
+ Completed 200 OK in 41ms (Views: 40.8ms)
1593
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-04 16:20:27 -0700
1594
+ Processing by Teabag::SpecController#index as */*
1595
+ Parameters: {"suite"=>nil}
1596
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (16.0ms)
1597
+ Completed 200 OK in 44ms (Views: 43.5ms)
1598
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-04 16:21:19 -0700
1599
+ Processing by Teabag::SpecController#index as */*
1600
+ Parameters: {"suite"=>nil}
1601
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (10.0ms)
1602
+ Completed 200 OK in 36ms (Views: 36.1ms)
1603
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-04 16:21:30 -0700
1604
+ Processing by Teabag::SpecController#index as */*
1605
+ Parameters: {"suite"=>nil}
1606
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (10.3ms)
1607
+ Completed 200 OK in 40ms (Views: 39.8ms)
1608
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-04 16:22:00 -0700
1609
+ Processing by Teabag::SpecController#index as */*
1610
+ Parameters: {"suite"=>nil}
1611
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (10.1ms)
1612
+ Completed 200 OK in 19ms (Views: 19.3ms)
1613
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-04 17:56:19 -0700
1614
+ Processing by Teabag::SpecController#index as */*
1615
+ Parameters: {"suite"=>nil}
1616
+ Compiled coffeescript1_spec.js (180ms) (pid 36763)
1617
+ Compiled coffeescript2_spec.js (96ms) (pid 36763)
1618
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (297.1ms)
1619
+ Completed 200 OK in 327ms (Views: 326.9ms)
1620
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-04 17:56:40 -0700
1621
+ Processing by Teabag::SpecController#index as */*
1622
+ Parameters: {"suite"=>nil}
1623
+ Compiled coffeescript1_spec.js (103ms) (pid 36793)
1624
+ Compiled coffeescript2_spec.js (95ms) (pid 36793)
1625
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (216.7ms)
1626
+ Completed 200 OK in 246ms (Views: 245.8ms)
1627
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-04 18:45:37 -0700
1628
+ Processing by Teabag::SpecController#index as */*
1629
+ Parameters: {"suite"=>nil}
1630
+ Compiled coffeescript1_spec.js (189ms) (pid 37476)
1631
+ Compiled coffeescript2_spec.js (95ms) (pid 37476)
1632
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (302.8ms)
1633
+ Completed 200 OK in 331ms (Views: 330.5ms)
1634
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-04 18:47:10 -0700
1635
+ Processing by Teabag::SpecController#index as */*
1636
+ Parameters: {"suite"=>nil}
1637
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (9.9ms)
1638
+ Completed 200 OK in 19ms (Views: 18.8ms)
1639
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-04 18:47:34 -0700
1640
+ Processing by Teabag::SpecController#index as */*
1641
+ Parameters: {"suite"=>nil}
1642
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (10.1ms)
1643
+ Completed 200 OK in 39ms (Views: 38.6ms)
1644
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-05 13:26:59 -0700
1645
+ Processing by Teabag::SpecController#index as */*
1646
+ Parameters: {"suite"=>nil}
1647
+ Compiled coffeescript1_spec.js (210ms) (pid 3948)
1648
+ Compiled coffeescript2_spec.js (91ms) (pid 3948)
1649
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (323.4ms)
1650
+ Completed 200 OK in 337ms (Views: 336.7ms)
1651
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-05 14:24:01 -0700
1652
+ Processing by Teabag::SpecController#index as */*
1653
+ Parameters: {"suite"=>nil}
1654
+ Compiled coffeescript1_spec.js (104ms) (pid 10350)
1655
+ Compiled coffeescript2_spec.js (96ms) (pid 10350)
1656
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (219.6ms)
1657
+ Completed 200 OK in 252ms (Views: 251.4ms)
1658
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-05 14:59:59 -0700
1659
+ Processing by Teabag::SpecController#index as */*
1660
+ Parameters: {"suite"=>nil}
1661
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (10.0ms)
1662
+ Completed 200 OK in 41ms (Views: 40.4ms)
1663
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-05 15:00:17 -0700
1664
+ Processing by Teabag::SpecController#index as */*
1665
+ Parameters: {"suite"=>nil}
1666
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (9.0ms)
1667
+ Completed 200 OK in 37ms (Views: 37.0ms)
1668
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-05 16:25:34 -0700
1669
+ Processing by Teabag::SpecController#index as */*
1670
+ Parameters: {"suite"=>nil}
1671
+ Compiled coffeescript1_spec.js (106ms) (pid 14009)
1672
+ Compiled coffeescript2_spec.js (94ms) (pid 14009)
1673
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (219.7ms)
1674
+ Completed 200 OK in 232ms (Views: 232.2ms)
1675
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-05 21:42:02 -0700
1676
+ Processing by Teabag::SpecController#index as */*
1677
+ Parameters: {"suite"=>nil}
1678
+ Compiled coffeescript1_spec.js (108ms) (pid 15200)
1679
+ Compiled coffeescript2_spec.js (94ms) (pid 15200)
1680
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (219.1ms)
1681
+ Completed 200 OK in 228ms (Views: 228.2ms)
1682
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-05 21:42:39 -0700
1683
+ Processing by Teabag::SpecController#index as */*
1684
+ Parameters: {"suite"=>nil}
1685
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (9.1ms)
1686
+ Completed 200 OK in 19ms (Views: 18.3ms)
1687
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-05 21:44:30 -0700
1688
+ Processing by Teabag::SpecController#index as */*
1689
+ Parameters: {"suite"=>nil}
1690
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (9.0ms)
1691
+ Completed 200 OK in 18ms (Views: 18.1ms)
1692
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-05 21:54:01 -0700
1693
+ Processing by Teabag::SpecController#index as */*
1694
+ Parameters: {"suite"=>nil}
1695
+ Compiled coffeescript1_spec.js (117ms) (pid 15481)
1696
+ Compiled coffeescript2_spec.js (94ms) (pid 15481)
1697
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (229.0ms)
1698
+ Completed 200 OK in 256ms (Views: 255.6ms)
1699
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-05 22:02:29 -0700
1700
+ Processing by Teabag::SpecController#index as */*
1701
+ Parameters: {"suite"=>nil}
1702
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (13.6ms)
1703
+ Completed 200 OK in 44ms (Views: 43.3ms)
1704
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-05 22:03:07 -0700
1705
+ Processing by Teabag::SpecController#index as */*
1706
+ Parameters: {"suite"=>nil}
1707
+ Compiled coffeescript1_spec.js (107ms) (pid 15666)
1708
+ Compiled coffeescript2_spec.js (106ms) (pid 15666)
1709
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (230.7ms)
1710
+ Completed 200 OK in 240ms (Views: 239.6ms)
1711
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-05 22:21:43 -0700
1712
+ Processing by Teabag::SpecController#index as */*
1713
+ Parameters: {"suite"=>nil}
1714
+ Compiled coffeescript1_spec.js (109ms) (pid 16047)
1715
+ Compiled coffeescript2_spec.js (97ms) (pid 16047)
1716
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (224.5ms)
1717
+ Completed 200 OK in 234ms (Views: 234.1ms)
1718
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-05 22:52:50 -0700
1719
+ Processing by Teabag::SpecController#index as */*
1720
+ Parameters: {"suite"=>nil}
1721
+ Compiled coffeescript1_spec.js (108ms) (pid 16947)
1722
+ Compiled coffeescript2_spec.js (94ms) (pid 16947)
1723
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (220.1ms)
1724
+ Completed 200 OK in 229ms (Views: 229.1ms)
1725
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-05 22:53:57 -0700
1726
+ Processing by Teabag::SpecController#index as */*
1727
+ Parameters: {"suite"=>nil}
1728
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (9.1ms)
1729
+ Completed 200 OK in 19ms (Views: 18.3ms)
1730
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-05 23:46:18 -0700
1731
+ Processing by Teabag::SpecController#index as */*
1732
+ Parameters: {"suite"=>nil}
1733
+ Compiled coffeescript1_spec.js (110ms) (pid 18192)
1734
+ Compiled coffeescript2_spec.js (95ms) (pid 18192)
1735
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (222.6ms)
1736
+ Completed 200 OK in 232ms (Views: 232.0ms)
1737
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-06 00:10:47 -0700
1738
+ Processing by Teabag::SpecController#index as */*
1739
+ Parameters: {"suite"=>nil}
1740
+ Compiled coffeescript1_spec.js (113ms) (pid 18784)
1741
+ Compiled coffeescript2_spec.js (96ms) (pid 18784)
1742
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (227.9ms)
1743
+ Completed 200 OK in 257ms (Views: 256.5ms)
1744
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-06 00:11:13 -0700
1745
+ Processing by Teabag::SpecController#index as */*
1746
+ Parameters: {"suite"=>nil}
1747
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (9.9ms)
1748
+ Completed 200 OK in 19ms (Views: 19.2ms)
1749
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-06 00:20:04 -0700
1750
+ Processing by Teabag::SpecController#index as */*
1751
+ Parameters: {"suite"=>nil}
1752
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (10.0ms)
1753
+ Completed 200 OK in 37ms (Views: 37.3ms)
1754
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-06 21:50:23 -0700
1755
+ Processing by Teabag::SpecController#index as */*
1756
+ Parameters: {"suite"=>nil}
1757
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.4ms)
1758
+ Completed 200 OK in 13ms (Views: 13.0ms)
1759
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-06 21:56:19 -0700
1760
+ Processing by Teabag::SpecController#index as */*
1761
+ Parameters: {"suite"=>nil}
1762
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.4ms)
1763
+ Completed 200 OK in 14ms (Views: 13.3ms)
1764
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-06 21:56:59 -0700
1765
+ Processing by Teabag::SpecController#index as */*
1766
+ Parameters: {"suite"=>nil}
1767
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.3ms)
1768
+ Completed 200 OK in 12ms (Views: 11.5ms)
1769
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-06 21:57:35 -0700
1770
+ Processing by Teabag::SpecController#index as */*
1771
+ Parameters: {"suite"=>nil}
1772
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.4ms)
1773
+ Completed 200 OK in 32ms (Views: 32.0ms)
1774
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-06 22:35:30 -0700
1775
+ Processing by Teabag::SpecController#index as */*
1776
+ Parameters: {"suite"=>nil}
1777
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.6ms)
1778
+ Completed 200 OK in 15ms (Views: 15.1ms)
1779
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-06 22:35:46 -0700
1780
+ Processing by Teabag::SpecController#index as */*
1781
+ Parameters: {"suite"=>nil}
1782
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.4ms)
1783
+ Completed 200 OK in 31ms (Views: 30.4ms)
1784
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-06 22:36:51 -0700
1785
+ Processing by Teabag::SpecController#index as */*
1786
+ Parameters: {"suite"=>nil}
1787
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.6ms)
1788
+ Completed 200 OK in 31ms (Views: 30.7ms)
1789
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-06 22:37:02 -0700
1790
+ Processing by Teabag::SpecController#index as */*
1791
+ Parameters: {"suite"=>nil}
1792
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (3.5ms)
1793
+ Completed 200 OK in 36ms (Views: 36.0ms)
1794
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-06 22:38:46 -0700
1795
+ Processing by Teabag::SpecController#index as */*
1796
+ Parameters: {"suite"=>nil}
1797
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.3ms)
1798
+ Completed 200 OK in 12ms (Views: 11.4ms)
1799
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-06 22:39:32 -0700
1800
+ Processing by Teabag::SpecController#index as */*
1801
+ Parameters: {"suite"=>nil}
1802
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.5ms)
1803
+ Completed 200 OK in 31ms (Views: 30.8ms)
1804
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-06 22:40:10 -0700
1805
+ Processing by Teabag::SpecController#index as */*
1806
+ Parameters: {"suite"=>nil}
1807
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.3ms)
1808
+ Completed 200 OK in 12ms (Views: 11.4ms)
1809
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-06 22:40:29 -0700
1810
+ Processing by Teabag::SpecController#index as */*
1811
+ Parameters: {"suite"=>nil}
1812
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.4ms)
1813
+ Completed 200 OK in 30ms (Views: 29.9ms)
1814
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-06 23:09:42 -0700
1815
+ Processing by Teabag::SpecController#index as */*
1816
+ Parameters: {"suite"=>nil}
1817
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.4ms)
1818
+ Completed 200 OK in 12ms (Views: 11.5ms)
1819
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-06 23:17:41 -0700
1820
+ Processing by Teabag::SpecController#index as */*
1821
+ Parameters: {"suite"=>nil}
1822
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.4ms)
1823
+ Completed 200 OK in 12ms (Views: 11.4ms)
1824
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-06 23:17:51 -0700
1825
+ Processing by Teabag::SpecController#index as */*
1826
+ Parameters: {"suite"=>nil}
1827
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.4ms)
1828
+ Completed 200 OK in 30ms (Views: 29.5ms)
1829
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-06 23:26:40 -0700
1830
+ Processing by Teabag::SpecController#index as */*
1831
+ Parameters: {"suite"=>nil}
1832
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.4ms)
1833
+ Completed 200 OK in 12ms (Views: 11.5ms)
1834
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-06 23:34:36 -0700
1835
+ Processing by Teabag::SpecController#index as */*
1836
+ Parameters: {"suite"=>nil}
1837
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.5ms)
1838
+ Completed 200 OK in 30ms (Views: 29.8ms)
1839
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-07 00:12:21 -0700
1840
+ Processing by Teabag::SpecController#index as */*
1841
+ Parameters: {"suite"=>nil}
1842
+ Completed 500 Internal Server Error in 0ms
1843
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-07 00:13:44 -0700
1844
+ Processing by Teabag::SpecController#index as */*
1845
+ Parameters: {"suite"=>nil}
1846
+ Completed 500 Internal Server Error in 0ms
1847
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-07 00:14:30 -0700
1848
+ Processing by Teabag::SpecController#index as */*
1849
+ Parameters: {"suite"=>nil}
1850
+ Completed 500 Internal Server Error in 0ms
1851
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-07 00:14:54 -0700
1852
+ Processing by Teabag::SpecController#index as */*
1853
+ Parameters: {"suite"=>nil}
1854
+ Completed 500 Internal Server Error in 0ms
1855
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-07 00:15:51 -0700
1856
+ Processing by Teabag::SpecController#index as */*
1857
+ Parameters: {"suite"=>nil}
1858
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.4ms)
1859
+ Completed 200 OK in 31ms (Views: 30.4ms)
1860
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-07 00:16:33 -0700
1861
+ Processing by Teabag::SpecController#index as */*
1862
+ Parameters: {"suite"=>nil}
1863
+ Completed 500 Internal Server Error in 0ms
1864
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-07 00:16:43 -0700
1865
+ Processing by Teabag::SpecController#index as */*
1866
+ Parameters: {"suite"=>nil}
1867
+ Completed 500 Internal Server Error in 135176ms
1868
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-07 00:19:21 -0700
1869
+ Processing by Teabag::SpecController#index as */*
1870
+ Parameters: {"suite"=>nil}
1871
+ Completed 500 Internal Server Error in 67613ms
1872
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-07 00:20:35 -0700
1873
+ Processing by Teabag::SpecController#index as */*
1874
+ Parameters: {"suite"=>"foo"}
1875
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (3.9ms)
1876
+ Completed 200 OK in 31ms (Views: 30.8ms)
1877
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-07 00:20:50 -0700
1878
+ Processing by Teabag::SpecController#index as */*
1879
+ Parameters: {"suite"=>"foo"}
1880
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.4ms)
1881
+ Completed 200 OK in 12ms (Views: 11.7ms)
1882
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-07 00:23:03 -0700
1883
+ Processing by Teabag::SpecController#index as */*
1884
+ Parameters: {"suite"=>"foo"}
1885
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (3.2ms)
1886
+ Completed 200 OK in 30ms (Views: 29.4ms)
1887
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-07 00:23:49 -0700
1888
+ Processing by Teabag::SpecController#index as */*
1889
+ Parameters: {"suite"=>"foo"}
1890
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.6ms)
1891
+ Completed 200 OK in 31ms (Views: 30.4ms)
1892
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-07 00:25:06 -0700
1893
+ Processing by Teabag::SpecController#index as */*
1894
+ Parameters: {"suite"=>"foo"}
1895
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.4ms)
1896
+ Completed 200 OK in 12ms (Views: 11.9ms)
1897
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-07 00:25:12 -0700
1898
+ Processing by Teabag::SpecController#index as */*
1899
+ Parameters: {"suite"=>"foo"}
1900
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.6ms)
1901
+ Completed 200 OK in 31ms (Views: 30.8ms)
1902
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-07 00:25:18 -0700
1903
+ Processing by Teabag::SpecController#index as */*
1904
+ Parameters: {"suite"=>"foo"}
1905
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.4ms)
1906
+ Completed 200 OK in 12ms (Views: 11.5ms)
1907
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-07 00:55:33 -0700
1908
+ Processing by Teabag::SpecController#index as */*
1909
+ Parameters: {"suite"=>"foo"}
1910
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.4ms)
1911
+ Completed 200 OK in 13ms (Views: 12.8ms)
1912
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-07 18:49:09 -0700
1913
+ Processing by Teabag::SpecController#index as */*
1914
+ Parameters: {"suite"=>"foo"}
1915
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (3.1ms)
1916
+ Completed 200 OK in 32ms (Views: 32.3ms)
1917
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 12:45:01 -0700
1918
+ Processing by Teabag::SpecController#index as */*
1919
+ Parameters: {"suite"=>"foo"}
1920
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.6ms)
1921
+ Completed 200 OK in 15ms (Views: 14.6ms)
1922
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 12:57:16 -0700
1923
+ Processing by Teabag::SpecController#index as */*
1924
+ Parameters: {"suite"=>"foo"}
1925
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.7ms)
1926
+ Completed 200 OK in 15ms (Views: 14.6ms)
1927
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 13:03:42 -0700
1928
+ Processing by Teabag::SpecController#index as */*
1929
+ Parameters: {"suite"=>"foo"}
1930
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.6ms)
1931
+ Completed 200 OK in 34ms (Views: 33.3ms)
1932
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 13:06:49 -0700
1933
+ Processing by Teabag::SpecController#index as */*
1934
+ Parameters: {"suite"=>"foo"}
1935
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.5ms)
1936
+ Completed 200 OK in 29ms (Views: 28.6ms)
1937
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 13:07:01 -0700
1938
+ Processing by Teabag::SpecController#index as */*
1939
+ Parameters: {"suite"=>"foo"}
1940
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.6ms)
1941
+ Completed 200 OK in 29ms (Views: 28.8ms)
1942
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 13:07:40 -0700
1943
+ Processing by Teabag::SpecController#index as */*
1944
+ Parameters: {"suite"=>"foo"}
1945
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.6ms)
1946
+ Completed 200 OK in 12ms (Views: 11.6ms)
1947
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 13:08:14 -0700
1948
+ Processing by Teabag::SpecController#index as */*
1949
+ Parameters: {"suite"=>"foo"}
1950
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.6ms)
1951
+ Completed 200 OK in 29ms (Views: 28.6ms)
1952
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 13:08:49 -0700
1953
+ Processing by Teabag::SpecController#index as */*
1954
+ Parameters: {"suite"=>"foo"}
1955
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.6ms)
1956
+ Completed 200 OK in 12ms (Views: 11.7ms)
1957
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 13:10:53 -0700
1958
+ Processing by Teabag::SpecController#index as */*
1959
+ Parameters: {"suite"=>"foo"}
1960
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.6ms)
1961
+ Completed 200 OK in 12ms (Views: 11.4ms)
1962
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 13:11:20 -0700
1963
+ Processing by Teabag::SpecController#index as */*
1964
+ Parameters: {"suite"=>"foo"}
1965
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.8ms)
1966
+ Completed 200 OK in 12ms (Views: 11.6ms)
1967
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 13:17:52 -0700
1968
+ Processing by Teabag::SpecController#index as */*
1969
+ Parameters: {"suite"=>"foo"}
1970
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.6ms)
1971
+ Completed 200 OK in 12ms (Views: 11.9ms)
1972
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 13:35:02 -0700
1973
+ Processing by Teabag::SpecController#index as */*
1974
+ Parameters: {"suite"=>"foo"}
1975
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.5ms)
1976
+ Completed 200 OK in 12ms (Views: 12.3ms)
1977
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 13:45:41 -0700
1978
+ Processing by Teabag::SpecController#index as */*
1979
+ Parameters: {"suite"=>"foo"}
1980
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.6ms)
1981
+ Completed 200 OK in 30ms (Views: 29.4ms)
1982
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 13:46:15 -0700
1983
+ Processing by Teabag::SpecController#index as */*
1984
+ Parameters: {"suite"=>"foo"}
1985
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.6ms)
1986
+ Completed 200 OK in 12ms (Views: 11.4ms)
1987
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 13:47:16 -0700
1988
+ Processing by Teabag::SpecController#index as */*
1989
+ Parameters: {"suite"=>"foo"}
1990
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.6ms)
1991
+ Completed 200 OK in 30ms (Views: 29.6ms)
1992
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 13:48:01 -0700
1993
+ Processing by Teabag::SpecController#index as */*
1994
+ Parameters: {"suite"=>"foo"}
1995
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.5ms)
1996
+ Completed 200 OK in 30ms (Views: 29.9ms)
1997
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 14:04:06 -0700
1998
+ Processing by Teabag::SpecController#index as */*
1999
+ Parameters: {"suite"=>"foo"}
2000
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.5ms)
2001
+ Completed 200 OK in 12ms (Views: 11.3ms)
2002
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 14:49:55 -0700
2003
+ Processing by Teabag::SpecController#index as */*
2004
+ Parameters: {"suite"=>"foo"}
2005
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.6ms)
2006
+ Completed 200 OK in 14ms (Views: 14.0ms)
2007
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 19:58:11 -0700
2008
+ Processing by Teabag::SpecController#index as */*
2009
+ Parameters: {"suite"=>"foo"}
2010
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.7ms)
2011
+ Completed 200 OK in 15ms (Views: 14.9ms)
2012
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 19:58:29 -0700
2013
+ Processing by Teabag::SpecController#index as */*
2014
+ Parameters: {"suite"=>"foo"}
2015
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.7ms)
2016
+ Completed 200 OK in 11ms (Views: 11.3ms)
2017
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 20:01:31 -0700
2018
+ Processing by Teabag::SpecController#index as */*
2019
+ Parameters: {"suite"=>"foo"}
2020
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.8ms)
2021
+ Completed 200 OK in 13ms (Views: 12.9ms)
2022
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 20:01:56 -0700
2023
+ Processing by Teabag::SpecController#index as */*
2024
+ Parameters: {"suite"=>"foo"}
2025
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.7ms)
2026
+ Completed 200 OK in 11ms (Views: 11.0ms)
2027
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 20:03:15 -0700
2028
+ Processing by Teabag::SpecController#index as */*
2029
+ Parameters: {"suite"=>"foo"}
2030
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.7ms)
2031
+ Completed 200 OK in 12ms (Views: 11.4ms)
2032
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 20:03:59 -0700
2033
+ Processing by Teabag::SpecController#index as */*
2034
+ Parameters: {"suite"=>"foo"}
2035
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.8ms)
2036
+ Completed 200 OK in 12ms (Views: 11.5ms)
2037
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 20:27:03 -0700
2038
+ Processing by Teabag::SpecController#index as */*
2039
+ Parameters: {"suite"=>"foo"}
2040
+ Compiled teabag/base/reporters/console_spec.js (95ms) (pid 4437)
2041
+ Compiled teabag/base/reporters/html_spec.js (93ms) (pid 4437)
2042
+ Compiled teabag/base/runner_spec.js (92ms) (pid 4437)
2043
+ Compiled teabag/jasmine/reporters/console_spec.js (92ms) (pid 4437)
2044
+ Compiled teabag/jasmine/reporters/html_spec.js (93ms) (pid 4437)
2045
+ Compiled teabag/jasmine/runner_spec.js (94ms) (pid 4437)
2046
+ Compiled teabag/mocha/reporters/console_spec.js (93ms) (pid 4437)
2047
+ Compiled teabag/mocha/reporters/html_spec.js (93ms) (pid 4437)
2048
+ Compiled teabag/mocha/runner_spec.js (95ms) (pid 4437)
2049
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1042.0ms)
2050
+ Completed 200 OK in 1052ms (Views: 1051.8ms)
2051
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 21:01:39 -0700
2052
+ Processing by Teabag::SpecController#index as */*
2053
+ Parameters: {"suite"=>"foo"}
2054
+ Compiled teabag/base/reporters/console_spec.js (94ms) (pid 6051)
2055
+ Compiled teabag/base/reporters/html_spec.js (93ms) (pid 6051)
2056
+ Compiled teabag/base/runner_spec.js (92ms) (pid 6051)
2057
+ Compiled teabag/jasmine/reporters/console_spec.js (97ms) (pid 6051)
2058
+ Compiled teabag/jasmine/reporters/html_spec.js (93ms) (pid 6051)
2059
+ Compiled teabag/jasmine/runner_spec.js (91ms) (pid 6051)
2060
+ Compiled teabag/mocha/reporters/console_spec.js (93ms) (pid 6051)
2061
+ Compiled teabag/mocha/reporters/html_spec.js (92ms) (pid 6051)
2062
+ Compiled teabag/mocha/runner_spec.js (94ms) (pid 6051)
2063
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (971.3ms)
2064
+ Completed 200 OK in 980ms (Views: 980.3ms)
2065
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 21:09:49 -0700
2066
+ Processing by Teabag::SpecController#index as */*
2067
+ Parameters: {"suite"=>"foo"}
2068
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (52.0ms)
2069
+ Completed 200 OK in 61ms (Views: 60.7ms)
2070
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 21:10:47 -0700
2071
+ Processing by Teabag::SpecController#index as */*
2072
+ Parameters: {"suite"=>"foo"}
2073
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (52.4ms)
2074
+ Completed 200 OK in 61ms (Views: 61.3ms)
2075
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 21:24:48 -0700
2076
+ Processing by Teabag::SpecController#index as */*
2077
+ Parameters: {"suite"=>"foo"}
2078
+ Compiled teabag/base/reporters/console_spec.js (205ms) (pid 6578)
2079
+ Compiled teabag/base/reporters/html_spec.js (94ms) (pid 6578)
2080
+ Compiled teabag/base/runner_spec.js (94ms) (pid 6578)
2081
+ Compiled teabag/jasmine/reporters/console_spec.js (93ms) (pid 6578)
2082
+ Compiled teabag/jasmine/reporters/html_spec.js (93ms) (pid 6578)
2083
+ Compiled teabag/jasmine/runner_spec.js (92ms) (pid 6578)
2084
+ Compiled teabag/mocha/reporters/console_spec.js (93ms) (pid 6578)
2085
+ Compiled teabag/mocha/reporters/html_spec.js (93ms) (pid 6578)
2086
+ Compiled teabag/mocha/runner_spec.js (95ms) (pid 6578)
2087
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1070.2ms)
2088
+ Completed 200 OK in 1083ms (Views: 1082.9ms)
2089
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 21:25:31 -0700
2090
+ Processing by Teabag::SpecController#index as */*
2091
+ Parameters: {"suite"=>"foo"}
2092
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (54.0ms)
2093
+ Completed 200 OK in 64ms (Views: 63.9ms)
2094
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 21:31:23 -0700
2095
+ Processing by Teabag::SpecController#index as */*
2096
+ Parameters: {"suite"=>"foo"}
2097
+ Compiled teabag/base/reporters/console_spec.js (114ms) (pid 7229)
2098
+ Compiled teabag/base/reporters/html_spec.js (94ms) (pid 7229)
2099
+ Compiled teabag/base/runner_spec.js (95ms) (pid 7229)
2100
+ Compiled teabag/jasmine/reporters/console_spec.js (95ms) (pid 7229)
2101
+ Compiled teabag/jasmine/reporters/html_spec.js (95ms) (pid 7229)
2102
+ Compiled teabag/jasmine/runner_spec.js (94ms) (pid 7229)
2103
+ Compiled teabag/mocha/reporters/console_spec.js (126ms) (pid 7229)
2104
+ Compiled teabag/mocha/reporters/html_spec.js (95ms) (pid 7229)
2105
+ Compiled teabag/mocha/runner_spec.js (94ms) (pid 7229)
2106
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (985.9ms)
2107
+ Completed 200 OK in 996ms (Views: 995.8ms)
2108
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 21:31:44 -0700
2109
+ Processing by Teabag::SpecController#index as */*
2110
+ Parameters: {"suite"=>"foo"}
2111
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (52.6ms)
2112
+ Completed 200 OK in 61ms (Views: 61.3ms)
2113
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 21:33:36 -0700
2114
+ Processing by Teabag::SpecController#index as */*
2115
+ Parameters: {"suite"=>"foo"}
2116
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (54.8ms)
2117
+ Completed 200 OK in 65ms (Views: 64.5ms)
2118
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 21:34:03 -0700
2119
+ Processing by Teabag::SpecController#index as */*
2120
+ Parameters: {"suite"=>"foo"}
2121
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (51.9ms)
2122
+ Completed 200 OK in 61ms (Views: 60.6ms)
2123
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 21:45:33 -0700
2124
+ Processing by Teabag::SpecController#index as */*
2125
+ Parameters: {"suite"=>"foo"}
2126
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (53.6ms)
2127
+ Completed 200 OK in 63ms (Views: 62.5ms)
2128
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 21:56:36 -0700
2129
+ Processing by Teabag::SpecController#index as */*
2130
+ Parameters: {"suite"=>"foo"}
2131
+ Compiled teabag/base/reporters/console_spec.js (94ms) (pid 8347)
2132
+ Compiled teabag/base/reporters/html_spec.js (93ms) (pid 8347)
2133
+ Compiled teabag/base/runner_spec.js (93ms) (pid 8347)
2134
+ Compiled teabag/jasmine/reporters/console_spec.js (92ms) (pid 8347)
2135
+ Compiled teabag/jasmine/reporters/html_spec.js (93ms) (pid 8347)
2136
+ Compiled teabag/jasmine/runner_spec.js (93ms) (pid 8347)
2137
+ Compiled teabag/mocha/reporters/console_spec.js (92ms) (pid 8347)
2138
+ Compiled teabag/mocha/reporters/html_spec.js (120ms) (pid 8347)
2139
+ Compiled teabag/mocha/runner_spec.js (92ms) (pid 8347)
2140
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (966.6ms)
2141
+ Completed 200 OK in 977ms (Views: 976.5ms)
2142
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 21:58:08 -0700
2143
+ Processing by Teabag::SpecController#index as */*
2144
+ Parameters: {"suite"=>"foo"}
2145
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (53.6ms)
2146
+ Completed 200 OK in 62ms (Views: 62.1ms)
2147
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 21:58:24 -0700
2148
+ Processing by Teabag::SpecController#index as */*
2149
+ Parameters: {"suite"=>"foo"}
2150
+ Compiled teabag/base/reporters/console_spec.js (94ms) (pid 8448)
2151
+ Compiled teabag/base/reporters/html_spec.js (92ms) (pid 8448)
2152
+ Compiled teabag/base/runner_spec.js (94ms) (pid 8448)
2153
+ Compiled teabag/jasmine/reporters/console_spec.js (93ms) (pid 8448)
2154
+ Compiled teabag/jasmine/reporters/html_spec.js (93ms) (pid 8448)
2155
+ Compiled teabag/jasmine/runner_spec.js (122ms) (pid 8448)
2156
+ Compiled teabag/mocha/reporters/console_spec.js (92ms) (pid 8448)
2157
+ Compiled teabag/mocha/reporters/html_spec.js (93ms) (pid 8448)
2158
+ Compiled teabag/mocha/runner_spec.js (93ms) (pid 8448)
2159
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (963.4ms)
2160
+ Completed 200 OK in 973ms (Views: 972.8ms)
2161
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 22:00:16 -0700
2162
+ Processing by Teabag::SpecController#index as */*
2163
+ Parameters: {"suite"=>"foo"}
2164
+ Compiled teabag/base/reporters/console_spec.js (112ms) (pid 8801)
2165
+ Compiled teabag/base/reporters/html_spec.js (92ms) (pid 8801)
2166
+ Compiled teabag/base/runner_spec.js (92ms) (pid 8801)
2167
+ Compiled teabag/jasmine/reporters/console_spec.js (93ms) (pid 8801)
2168
+ Compiled teabag/jasmine/reporters/html_spec.js (92ms) (pid 8801)
2169
+ Compiled teabag/jasmine/runner_spec.js (92ms) (pid 8801)
2170
+ Compiled teabag/mocha/reporters/console_spec.js (92ms) (pid 8801)
2171
+ Compiled teabag/mocha/reporters/html_spec.js (93ms) (pid 8801)
2172
+ Compiled teabag/mocha/runner_spec.js (94ms) (pid 8801)
2173
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (962.8ms)
2174
+ Completed 200 OK in 972ms (Views: 971.6ms)
2175
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 22:33:52 -0700
2176
+ Processing by Teabag::SpecController#index as */*
2177
+ Parameters: {"suite"=>"foo"}
2178
+ Compiled teabag/base/reporters/console_spec.js (113ms) (pid 9843)
2179
+ Compiled teabag/base/reporters/html_spec.js (94ms) (pid 9843)
2180
+ Compiled teabag/base/runner_spec.js (94ms) (pid 9843)
2181
+ Compiled teabag/jasmine/reporters/console_spec.js (94ms) (pid 9843)
2182
+ Compiled teabag/jasmine/reporters/html_spec.js (93ms) (pid 9843)
2183
+ Compiled teabag/jasmine/runner_spec.js (125ms) (pid 9843)
2184
+ Compiled teabag/mocha/reporters/console_spec.js (94ms) (pid 9843)
2185
+ Compiled teabag/mocha/reporters/html_spec.js (93ms) (pid 9843)
2186
+ Compiled teabag/mocha/runner_spec.js (95ms) (pid 9843)
2187
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (979.6ms)
2188
+ Completed 200 OK in 989ms (Views: 988.5ms)
2189
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-09 22:34:18 -0700
2190
+ Processing by Teabag::SpecController#index as */*
2191
+ Parameters: {"suite"=>"foo"}
2192
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (56.3ms)
2193
+ Completed 200 OK in 65ms (Views: 65.3ms)
2194
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-10 00:18:19 -0700
2195
+ Processing by Teabag::SpecController#index as */*
2196
+ Parameters: {"suite"=>"foo"}
2197
+ Compiled teabag/base/reporters/console_spec.js (170ms) (pid 12515)
2198
+ Compiled teabag/base/reporters/html_spec.js (98ms) (pid 12515)
2199
+ Compiled teabag/base/runner_spec.js (93ms) (pid 12515)
2200
+ Compiled teabag/jasmine/reporters/console_spec.js (94ms) (pid 12515)
2201
+ Compiled teabag/jasmine/reporters/html_spec.js (94ms) (pid 12515)
2202
+ Compiled teabag/jasmine/runner_spec.js (96ms) (pid 12515)
2203
+ Compiled teabag/mocha/reporters/console_spec.js (123ms) (pid 12515)
2204
+ Compiled teabag/mocha/reporters/html_spec.js (94ms) (pid 12515)
2205
+ Compiled teabag/mocha/runner_spec.js (95ms) (pid 12515)
2206
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1041.1ms)
2207
+ Completed 200 OK in 1052ms (Views: 1052.2ms)
2208
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-10 00:19:00 -0700
2209
+ Processing by Teabag::SpecController#index as */*
2210
+ Parameters: {"suite"=>"foo"}
2211
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (54.9ms)
2212
+ Completed 200 OK in 64ms (Views: 63.8ms)
2213
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-10 12:54:38 -0700
2214
+ Processing by Teabag::SpecController#index as */*
2215
+ Parameters: {"suite"=>"foo"}
2216
+ Compiled teabag/base/reporters/console_spec.js (95ms) (pid 16784)
2217
+ Compiled teabag/base/reporters/html_spec.js (117ms) (pid 16784)
2218
+ Compiled teabag/base/runner_spec.js (92ms) (pid 16784)
2219
+ Compiled teabag/jasmine/reporters/console_spec.js (92ms) (pid 16784)
2220
+ Compiled teabag/jasmine/reporters/html_spec.js (96ms) (pid 16784)
2221
+ Compiled teabag/jasmine/runner_spec.js (98ms) (pid 16784)
2222
+ Compiled teabag/mocha/reporters/console_spec.js (96ms) (pid 16784)
2223
+ Compiled teabag/mocha/reporters/html_spec.js (123ms) (pid 16784)
2224
+ Compiled teabag/mocha/runner_spec.js (92ms) (pid 16784)
2225
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (990.7ms)
2226
+ Completed 200 OK in 1004ms (Views: 1003.5ms)
2227
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-10 12:55:12 -0700
2228
+ Processing by Teabag::SpecController#index as */*
2229
+ Parameters: {"suite"=>"foo"}
2230
+ Compiled teabag/base/reporters/console_spec.js (93ms) (pid 16843)
2231
+ Compiled teabag/base/reporters/html_spec.js (119ms) (pid 16843)
2232
+ Compiled teabag/base/runner_spec.js (94ms) (pid 16843)
2233
+ Compiled teabag/jasmine/reporters/console_spec.js (94ms) (pid 16843)
2234
+ Compiled teabag/jasmine/reporters/html_spec.js (96ms) (pid 16843)
2235
+ Compiled teabag/jasmine/runner_spec.js (94ms) (pid 16843)
2236
+ Compiled teabag/mocha/reporters/console_spec.js (95ms) (pid 16843)
2237
+ Compiled teabag/mocha/reporters/html_spec.js (129ms) (pid 16843)
2238
+ Compiled teabag/mocha/runner_spec.js (96ms) (pid 16843)
2239
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (986.1ms)
2240
+ Completed 200 OK in 995ms (Views: 994.8ms)
2241
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-10 21:43:04 -0700
2242
+ Processing by Teabag::SpecController#index as */*
2243
+ Parameters: {"suite"=>"foo"}
2244
+ Compiled teabag/base/reporters/console_spec.js (163ms) (pid 25581)
2245
+ Compiled teabag/base/reporters/html_spec.js (94ms) (pid 25581)
2246
+ Compiled teabag/base/runner_spec.js (117ms) (pid 25581)
2247
+ Compiled teabag/jasmine/reporters/console_spec.js (93ms) (pid 25581)
2248
+ Compiled teabag/jasmine/reporters/html_spec.js (93ms) (pid 25581)
2249
+ Compiled teabag/jasmine/runner_spec.js (121ms) (pid 25581)
2250
+ Compiled teabag/mocha/reporters/console_spec.js (94ms) (pid 25581)
2251
+ Compiled teabag/mocha/reporters/html_spec.js (93ms) (pid 25581)
2252
+ Compiled teabag/mocha/runner_spec.js (92ms) (pid 25581)
2253
+ Compiled phantomjs/runner.js (146ms) (pid 25581)
2254
+ Compiled teabag/phantomjs/runner_spec.js (290ms) (pid 25581)
2255
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1337.2ms)
2256
+ Completed 200 OK in 1347ms (Views: 1346.5ms)
2257
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-10 22:10:11 -0700
2258
+ Processing by Teabag::SpecController#index as */*
2259
+ Parameters: {"suite"=>"foo"}
2260
+ Compiled teabag/base/runner_spec.js (125ms) (pid 25997)
2261
+ Compiled teabag/jasmine/runner_spec.js (102ms) (pid 25997)
2262
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (291.1ms)
2263
+ Completed 200 OK in 303ms (Views: 303.2ms)
2264
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-10 22:10:33 -0700
2265
+ Processing by Teabag::SpecController#index as */*
2266
+ Parameters: {"suite"=>"foo"}
2267
+ Compiled teabag/base/reporters/console_spec.js (162ms) (pid 26050)
2268
+ Compiled teabag/base/reporters/html_spec.js (92ms) (pid 26050)
2269
+ Compiled teabag/base/runner_spec.js (120ms) (pid 26050)
2270
+ Compiled teabag/jasmine/reporters/html_spec.js (93ms) (pid 26050)
2271
+ Compiled teabag/jasmine/runner_spec.js (101ms) (pid 26050)
2272
+ Compiled teabag/mocha/reporters/console_spec.js (120ms) (pid 26050)
2273
+ Compiled teabag/mocha/reporters/html_spec.js (92ms) (pid 26050)
2274
+ Compiled teabag/mocha/runner_spec.js (93ms) (pid 26050)
2275
+ Compiled phantomjs/runner.js (117ms) (pid 26050)
2276
+ Compiled teabag/phantomjs/runner_spec.js (262ms) (pid 26050)
2277
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1210.8ms)
2278
+ Completed 200 OK in 1220ms (Views: 1219.6ms)
2279
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-10 22:14:25 -0700
2280
+ Processing by Teabag::SpecController#index as */*
2281
+ Parameters: {"suite"=>"foo"}
2282
+ Compiled teabag/base/reporters/console_spec.js (144ms) (pid 26144)
2283
+ Compiled teabag/base/reporters/html_spec.js (94ms) (pid 26144)
2284
+ Compiled teabag/base/runner_spec.js (119ms) (pid 26144)
2285
+ Compiled teabag/jasmine/reporters/html_spec.js (93ms) (pid 26144)
2286
+ Compiled teabag/jasmine/runner_spec.js (101ms) (pid 26144)
2287
+ Compiled teabag/mocha/reporters/console_spec.js (93ms) (pid 26144)
2288
+ Compiled teabag/mocha/reporters/html_spec.js (94ms) (pid 26144)
2289
+ Compiled teabag/mocha/runner_spec.js (94ms) (pid 26144)
2290
+ Compiled phantomjs/runner.js (118ms) (pid 26144)
2291
+ Compiled teabag/phantomjs/runner_spec.js (261ms) (pid 26144)
2292
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1231.9ms)
2293
+ Completed 200 OK in 1241ms (Views: 1240.8ms)
2294
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-10 22:14:46 -0700
2295
+ Processing by Teabag::SpecController#index as */*
2296
+ Parameters: {"suite"=>"foo"}
2297
+ Compiled teabag/base/reporters/console_spec.js (165ms) (pid 26214)
2298
+ Compiled teabag/base/reporters/html_spec.js (92ms) (pid 26214)
2299
+ Compiled teabag/base/runner_spec.js (119ms) (pid 26214)
2300
+ Compiled teabag/jasmine/reporters/html_spec.js (93ms) (pid 26214)
2301
+ Compiled teabag/jasmine/runner_spec.js (107ms) (pid 26214)
2302
+ Compiled teabag/mocha/reporters/console_spec.js (94ms) (pid 26214)
2303
+ Compiled teabag/mocha/reporters/html_spec.js (93ms) (pid 26214)
2304
+ Compiled teabag/mocha/runner_spec.js (93ms) (pid 26214)
2305
+ Compiled phantomjs/runner.js (117ms) (pid 26214)
2306
+ Compiled teabag/phantomjs/runner_spec.js (261ms) (pid 26214)
2307
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1224.2ms)
2308
+ Completed 200 OK in 1233ms (Views: 1233.0ms)
2309
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-10 22:15:14 -0700
2310
+ Processing by Teabag::SpecController#index as */*
2311
+ Parameters: {"suite"=>"foo"}
2312
+ Compiled teabag/base/reporters/console_spec.js (163ms) (pid 26276)
2313
+ Compiled teabag/base/reporters/html_spec.js (93ms) (pid 26276)
2314
+ Compiled teabag/base/runner_spec.js (120ms) (pid 26276)
2315
+ Compiled teabag/jasmine/reporters/html_spec.js (93ms) (pid 26276)
2316
+ Compiled teabag/jasmine/runner_spec.js (102ms) (pid 26276)
2317
+ Compiled teabag/mocha/reporters/console_spec.js (121ms) (pid 26276)
2318
+ Compiled teabag/mocha/reporters/html_spec.js (94ms) (pid 26276)
2319
+ Compiled teabag/mocha/runner_spec.js (93ms) (pid 26276)
2320
+ Compiled phantomjs/runner.js (120ms) (pid 26276)
2321
+ Compiled teabag/phantomjs/runner_spec.js (269ms) (pid 26276)
2322
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1228.4ms)
2323
+ Completed 200 OK in 1238ms (Views: 1238.2ms)
2324
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-10 22:16:48 -0700
2325
+ Processing by Teabag::SpecController#index as */*
2326
+ Parameters: {"suite"=>"foo"}
2327
+ Compiled teabag/base/reporters/console_spec.js (131ms) (pid 26346)
2328
+ Compiled teabag/base/reporters/html_spec.js (94ms) (pid 26346)
2329
+ Compiled teabag/base/runner_spec.js (119ms) (pid 26346)
2330
+ Compiled teabag/jasmine/reporters/html_spec.js (92ms) (pid 26346)
2331
+ Compiled teabag/jasmine/runner_spec.js (101ms) (pid 26346)
2332
+ Compiled teabag/mocha/reporters/console_spec.js (93ms) (pid 26346)
2333
+ Compiled teabag/mocha/reporters/html_spec.js (123ms) (pid 26346)
2334
+ Compiled teabag/mocha/runner_spec.js (94ms) (pid 26346)
2335
+ Compiled phantomjs/runner.js (117ms) (pid 26346)
2336
+ Compiled teabag/phantomjs/runner_spec.js (263ms) (pid 26346)
2337
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1197.8ms)
2338
+ Completed 200 OK in 1210ms (Views: 1209.8ms)
2339
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-10 22:30:22 -0700
2340
+ Processing by Teabag::SpecController#index as */*
2341
+ Parameters: {"suite"=>"foo"}
2342
+ Compiled teabag/base/reporters/console_spec.js (145ms) (pid 27045)
2343
+ Compiled teabag/base/reporters/html_spec.js (120ms) (pid 27045)
2344
+ Compiled teabag/base/runner_spec.js (118ms) (pid 27045)
2345
+ Compiled teabag/jasmine/reporters/html_spec.js (94ms) (pid 27045)
2346
+ Compiled teabag/jasmine/runner_spec.js (101ms) (pid 27045)
2347
+ Compiled teabag/mocha/reporters/console_spec.js (95ms) (pid 27045)
2348
+ Compiled teabag/mocha/reporters/html_spec.js (93ms) (pid 27045)
2349
+ Compiled teabag/mocha/runner_spec.js (93ms) (pid 27045)
2350
+ Compiled phantomjs/runner.js (118ms) (pid 27045)
2351
+ Compiled teabag/phantomjs/runner_spec.js (261ms) (pid 27045)
2352
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1232.9ms)
2353
+ Completed 200 OK in 1244ms (Views: 1243.4ms)
2354
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-10 22:33:57 -0700
2355
+ Processing by Teabag::SpecController#index as */*
2356
+ Parameters: {"suite"=>"foo"}
2357
+ Compiled teabag/base/reporters/console_spec.js (145ms) (pid 27158)
2358
+ Compiled teabag/base/reporters/html_spec.js (118ms) (pid 27158)
2359
+ Compiled teabag/base/runner_spec.js (114ms) (pid 27158)
2360
+ Compiled teabag/base/teabag_spec.js (104ms) (pid 27158)
2361
+ Compiled teabag/jasmine/reporters/html_spec.js (94ms) (pid 27158)
2362
+ Compiled teabag/jasmine/runner_spec.js (100ms) (pid 27158)
2363
+ Compiled teabag/mocha/reporters/console_spec.js (121ms) (pid 27158)
2364
+ Compiled teabag/mocha/reporters/html_spec.js (93ms) (pid 27158)
2365
+ Compiled teabag/mocha/runner_spec.js (93ms) (pid 27158)
2366
+ Compiled phantomjs/runner.js (118ms) (pid 27158)
2367
+ Compiled teabag/phantomjs/runner_spec.js (262ms) (pid 27158)
2368
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1337.4ms)
2369
+ Completed 200 OK in 1346ms (Views: 1346.1ms)
2370
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-10 23:20:39 -0700
2371
+ Processing by Teabag::SpecController#index as */*
2372
+ Parameters: {"suite"=>"foo"}
2373
+ Compiled teabag/base/reporters/console_spec.js (159ms) (pid 27850)
2374
+ Compiled teabag/base/reporters/html_spec.js (94ms) (pid 27850)
2375
+ Compiled teabag/base/runner_spec.js (114ms) (pid 27850)
2376
+ Compiled teabag/base/teabag_spec.js (109ms) (pid 27850)
2377
+ Compiled teabag/jasmine/reporters/html_spec.js (98ms) (pid 27850)
2378
+ Compiled teabag/jasmine/runner_spec.js (123ms) (pid 27850)
2379
+ Compiled teabag/mocha/reporters/console_spec.js (137ms) (pid 27850)
2380
+ Compiled teabag/mocha/reporters/html_spec.js (102ms) (pid 27850)
2381
+ Compiled teabag/mocha/runner_spec.js (98ms) (pid 27850)
2382
+ Compiled phantomjs/runner.js (122ms) (pid 27850)
2383
+ Compiled teabag/phantomjs/runner_spec.js (272ms) (pid 27850)
2384
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1435.7ms)
2385
+ Completed 200 OK in 1448ms (Views: 1448.1ms)
2386
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-10 23:21:04 -0700
2387
+ Processing by Teabag::SpecController#index as */*
2388
+ Parameters: {"suite"=>"foo"}
2389
+ Compiled teabag/base/reporters/console_spec.js (163ms) (pid 27920)
2390
+ Compiled teabag/base/reporters/html_spec.js (93ms) (pid 27920)
2391
+ Compiled teabag/base/runner_spec.js (113ms) (pid 27920)
2392
+ Compiled teabag/base/teabag_spec.js (105ms) (pid 27920)
2393
+ Compiled teabag/jasmine/reporters/html_spec.js (93ms) (pid 27920)
2394
+ Compiled teabag/jasmine/runner_spec.js (151ms) (pid 27920)
2395
+ Compiled teabag/mocha/reporters/console_spec.js (93ms) (pid 27920)
2396
+ Compiled teabag/mocha/reporters/html_spec.js (95ms) (pid 27920)
2397
+ Compiled teabag/mocha/runner_spec.js (92ms) (pid 27920)
2398
+ Compiled phantomjs/runner.js (145ms) (pid 27920)
2399
+ Compiled teabag/phantomjs/runner_spec.js (288ms) (pid 27920)
2400
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1373.1ms)
2401
+ Completed 200 OK in 1382ms (Views: 1381.9ms)
2402
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-11 00:55:46 -0700
2403
+ Processing by Teabag::SpecController#index as */*
2404
+ Parameters: {"suite"=>"foo"}
2405
+ Compiled teabag/base/reporters/console_spec.js (153ms) (pid 30064)
2406
+ Compiled teabag/base/reporters/html_spec.js (97ms) (pid 30064)
2407
+ Compiled teabag/base/reporters_spec.js (95ms) (pid 30064)
2408
+ Compiled teabag/base/runner_spec.js (115ms) (pid 30064)
2409
+ Compiled teabag/base/teabag_spec.js (106ms) (pid 30064)
2410
+ Compiled teabag/jasmine/reporters/html_spec.js (124ms) (pid 30064)
2411
+ Compiled teabag/jasmine/runner_spec.js (124ms) (pid 30064)
2412
+ Compiled teabag/mocha/reporters/console_spec.js (95ms) (pid 30064)
2413
+ Compiled teabag/mocha/reporters/html_spec.js (95ms) (pid 30064)
2414
+ Compiled teabag/mocha/runner_spec.js (94ms) (pid 30064)
2415
+ Compiled phantomjs/runner.js (119ms) (pid 30064)
2416
+ Compiled teabag/phantomjs/runner_spec.js (294ms) (pid 30064)
2417
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1492.8ms)
2418
+ Completed 200 OK in 1503ms (Views: 1502.8ms)
2419
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-11 00:56:23 -0700
2420
+ Processing by Teabag::SpecController#index as */*
2421
+ Parameters: {"suite"=>"foo"}
2422
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (59.3ms)
2423
+ Completed 200 OK in 68ms (Views: 67.9ms)
2424
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-11 00:56:41 -0700
2425
+ Processing by Teabag::SpecController#index as */*
2426
+ Parameters: {"suite"=>"foo"}
2427
+ Compiled teabag/base/reporters/console_spec.js (138ms) (pid 30167)
2428
+ Compiled teabag/base/reporters/html_spec.js (95ms) (pid 30167)
2429
+ Compiled teabag/base/reporters_spec.js (95ms) (pid 30167)
2430
+ Compiled teabag/base/runner_spec.js (121ms) (pid 30167)
2431
+ Compiled teabag/base/teabag_spec.js (105ms) (pid 30167)
2432
+ Compiled teabag/jasmine/reporters/html_spec.js (95ms) (pid 30167)
2433
+ Compiled teabag/jasmine/runner_spec.js (124ms) (pid 30167)
2434
+ Compiled teabag/mocha/reporters/console_spec.js (94ms) (pid 30167)
2435
+ Compiled teabag/mocha/reporters/html_spec.js (95ms) (pid 30167)
2436
+ Compiled teabag/mocha/runner_spec.js (96ms) (pid 30167)
2437
+ Compiled phantomjs/runner.js (148ms) (pid 30167)
2438
+ Compiled teabag/phantomjs/runner_spec.js (293ms) (pid 30167)
2439
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1496.2ms)
2440
+ Completed 200 OK in 1507ms (Views: 1506.4ms)
2441
+ Started GET "/teabag/default" for 127.0.0.1 at 2012-12-11 20:01:51 -0700
2442
+ Processing by Teabag::SpecController#index as HTML
2443
+ Parameters: {"suite"=>"default"}
2444
+ Compiled teabag/base/reporters/console_spec.js (136ms) (pid 45100)
2445
+ Compiled teabag/base/reporters/html_spec.js (96ms) (pid 45100)
2446
+ Compiled teabag/base/reporters_spec.js (150ms) (pid 45100)
2447
+ Compiled teabag/base/runner_spec.js (116ms) (pid 45100)
2448
+ Compiled teabag/base/teabag_spec.js (104ms) (pid 45100)
2449
+ Compiled teabag/jasmine/reporters/html_spec.js (104ms) (pid 45100)
2450
+ Compiled teabag/jasmine/runner_spec.js (124ms) (pid 45100)
2451
+ Compiled teabag/mocha/reporters/console_spec.js (95ms) (pid 45100)
2452
+ Compiled teabag/mocha/reporters/html_spec.js (95ms) (pid 45100)
2453
+ Compiled teabag/mocha/runner_spec.js (94ms) (pid 45100)
2454
+ Compiled phantomjs/runner.js (123ms) (pid 45100)
2455
+ Compiled teabag/phantomjs/runner_spec.js (266ms) (pid 45100)
2456
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1519.0ms)
2457
+ Completed 500 Internal Server Error in 1525ms
2458
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-11 20:03:26 -0700
2459
+ Processing by Teabag::SpecController#index as HTML
2460
+ Parameters: {"suite"=>nil}
2461
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (42.9ms)
2462
+ Completed 500 Internal Server Error in 63ms
2463
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-11 20:03:40 -0700
2464
+ Processing by Teabag::SpecController#index as HTML
2465
+ Parameters: {"suite"=>nil}
2466
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (8.8ms)
2467
+ Completed 500 Internal Server Error in 9ms
2468
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-11 20:03:47 -0700
2469
+ Processing by Teabag::SpecController#index as HTML
2470
+ Parameters: {"suite"=>nil}
2471
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (61.0ms)
2472
+ Completed 200 OK in 81ms (Views: 80.9ms)
2473
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-11 20:03:47 -0700
2474
+ Compiled teabag.css (0ms) (pid 45229)
2475
+ Served asset /teabag.css - 200 OK (14ms)
2476
+ Started GET "/assets/teabag/jasmine.js" for 127.0.0.1 at 2012-12-11 20:03:47 -0700
2477
+ Compiled jasmine-1.3.0.js (23ms) (pid 45229)
2478
+ Compiled teabag/base/runner.js (105ms) (pid 45229)
2479
+ Compiled teabag/base/reporters/console.js (119ms) (pid 45229)
2480
+ Compiled teabag/base/reporters/html.js (164ms) (pid 45229)
2481
+ Compiled teabag/base/reporters.js (422ms) (pid 45229)
2482
+ Compiled teabag/base/teabag.js (640ms) (pid 45229)
2483
+ Compiled teabag/jasmine/reporters/html.js (104ms) (pid 45229)
2484
+ Compiled teabag/jasmine.js (898ms) (pid 45229)
2485
+ Served asset /teabag/jasmine.js - 200 OK (908ms)
2486
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-11 20:03:48 -0700
2487
+ Compiled spec_helper.js (138ms) (pid 45229)
2488
+ Served asset /spec_helper.js - 200 OK (145ms)
2489
+ Started GET "/assets/teabag/base/reporters/console_spec.coffee" for 127.0.0.1 at 2012-12-11 20:03:48 -0700
2490
+ Served asset /teabag/base/reporters/console_spec.coffee - 200 OK (0ms)
2491
+ Started GET "/assets/teabag/base/reporters_spec.coffee" for 127.0.0.1 at 2012-12-11 20:03:48 -0700
2492
+ Served asset /teabag/base/reporters_spec.coffee - 200 OK (0ms)
2493
+ Started GET "/assets/teabag/base/reporters/html_spec.coffee" for 127.0.0.1 at 2012-12-11 20:03:48 -0700
2494
+ Served asset /teabag/base/reporters/html_spec.coffee - 200 OK (0ms)
2495
+ Started GET "/assets/teabag/base/runner_spec.coffee" for 127.0.0.1 at 2012-12-11 20:03:48 -0700
2496
+ Served asset /teabag/base/runner_spec.coffee - 200 OK (0ms)
2497
+ Started GET "/assets/teabag/base/teabag_spec.coffee" for 127.0.0.1 at 2012-12-11 20:03:48 -0700
2498
+ Served asset /teabag/base/teabag_spec.coffee - 200 OK (0ms)
2499
+ Started GET "/assets/teabag/jasmine/reporters/html_spec.coffee" for 127.0.0.1 at 2012-12-11 20:03:48 -0700
2500
+ Served asset /teabag/jasmine/reporters/html_spec.coffee - 200 OK (0ms)
2501
+ Started GET "/assets/teabag/mocha/reporters/console_spec.coffee" for 127.0.0.1 at 2012-12-11 20:03:48 -0700
2502
+ Served asset /teabag/mocha/reporters/console_spec.coffee - 200 OK (0ms)
2503
+ Started GET "/assets/teabag/jasmine/runner_spec.coffee" for 127.0.0.1 at 2012-12-11 20:03:48 -0700
2504
+ Served asset /teabag/jasmine/runner_spec.coffee - 200 OK (0ms)
2505
+ Started GET "/assets/teabag/mocha/reporters/html_spec.coffee" for 127.0.0.1 at 2012-12-11 20:03:48 -0700
2506
+ Served asset /teabag/mocha/reporters/html_spec.coffee - 200 OK (0ms)
2507
+ Started GET "/assets/teabag/mocha/runner_spec.coffee" for 127.0.0.1 at 2012-12-11 20:03:48 -0700
2508
+ Served asset /teabag/mocha/runner_spec.coffee - 200 OK (0ms)
2509
+ Started GET "/assets/teabag/phantomjs/runner_spec.coffee" for 127.0.0.1 at 2012-12-11 20:03:48 -0700
2510
+ Served asset /teabag/phantomjs/runner_spec.coffee - 200 OK (0ms)
2511
+ Started GET "/teabag" for 127.0.0.1 at 2012-12-11 20:03:57 -0700
2512
+ Processing by Teabag::SpecController#index as HTML
2513
+ Parameters: {"suite"=>nil}
2514
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (9.5ms)
2515
+ Completed 200 OK in 10ms (Views: 10.1ms)
2516
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-11 20:03:57 -0700
2517
+ Served asset /teabag.css - 200 OK (0ms)
2518
+ Started GET "/assets/teabag/base/reporters/html_spec.coffee" for 127.0.0.1 at 2012-12-11 20:03:57 -0700
2519
+ Served asset /teabag/base/reporters/html_spec.coffee - 200 OK (0ms)
2520
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-11 20:03:57 -0700
2521
+ Served asset /spec_helper.js - 200 OK (0ms)
2522
+ Started GET "/assets/teabag/base/reporters_spec.coffee" for 127.0.0.1 at 2012-12-11 20:03:57 -0700
2523
+ Served asset /teabag/base/reporters_spec.coffee - 200 OK (0ms)
2524
+ Started GET "/assets/teabag/base/reporters/console_spec.coffee" for 127.0.0.1 at 2012-12-11 20:03:57 -0700
2525
+ Served asset /teabag/base/reporters/console_spec.coffee - 200 OK (0ms)
2526
+ Started GET "/assets/teabag/jasmine.js" for 127.0.0.1 at 2012-12-11 20:03:57 -0700
2527
+ Served asset /teabag/jasmine.js - 200 OK (0ms)
2528
+ Started GET "/assets/teabag/base/runner_spec.coffee" for 127.0.0.1 at 2012-12-11 20:03:57 -0700
2529
+ Served asset /teabag/base/runner_spec.coffee - 200 OK (0ms)
2530
+ Started GET "/assets/teabag/base/teabag_spec.coffee" for 127.0.0.1 at 2012-12-11 20:03:57 -0700
2531
+ Served asset /teabag/base/teabag_spec.coffee - 200 OK (0ms)
2532
+ Started GET "/assets/teabag/jasmine/reporters/html_spec.coffee" for 127.0.0.1 at 2012-12-11 20:03:57 -0700
2533
+ Served asset /teabag/jasmine/reporters/html_spec.coffee - 200 OK (0ms)
2534
+ Started GET "/assets/teabag/jasmine/runner_spec.coffee" for 127.0.0.1 at 2012-12-11 20:03:57 -0700
2535
+ Served asset /teabag/jasmine/runner_spec.coffee - 200 OK (0ms)
2536
+ Started GET "/assets/teabag/mocha/reporters/console_spec.coffee" for 127.0.0.1 at 2012-12-11 20:03:57 -0700
2537
+ Served asset /teabag/mocha/reporters/console_spec.coffee - 200 OK (0ms)
2538
+ Started GET "/assets/teabag/mocha/reporters/html_spec.coffee" for 127.0.0.1 at 2012-12-11 20:03:57 -0700
2539
+ Served asset /teabag/mocha/reporters/html_spec.coffee - 200 OK (0ms)
2540
+ Started GET "/assets/teabag/mocha/runner_spec.coffee" for 127.0.0.1 at 2012-12-11 20:03:57 -0700
2541
+ Served asset /teabag/mocha/runner_spec.coffee - 200 OK (0ms)
2542
+ Started GET "/assets/teabag/phantomjs/runner_spec.coffee" for 127.0.0.1 at 2012-12-11 20:03:57 -0700
2543
+ Served asset /teabag/phantomjs/runner_spec.coffee - 200 OK (0ms)
2544
+ Started GET "/teabag/default" for 127.0.0.1 at 2012-12-11 20:04:05 -0700
2545
+ Processing by Teabag::SpecController#index as HTML
2546
+ Parameters: {"suite"=>"default"}
2547
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (61.3ms)
2548
+ Completed 200 OK in 67ms (Views: 66.7ms)
2549
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-11 20:04:05 -0700
2550
+ Served asset /teabag.css - 200 OK (2ms)
2551
+ Started GET "/assets/teabag/jasmine.js" for 127.0.0.1 at 2012-12-11 20:04:05 -0700
2552
+ Served asset /teabag/jasmine.js - 200 OK (27ms)
2553
+ Started GET "/assets/teabag/base/reporters/console_spec.coffee" for 127.0.0.1 at 2012-12-11 20:04:05 -0700
2554
+ Served asset /teabag/base/reporters/console_spec.coffee - 200 OK (0ms)
2555
+ Started GET "/assets/teabag/base/reporters_spec.coffee" for 127.0.0.1 at 2012-12-11 20:04:05 -0700
2556
+ Served asset /teabag/base/reporters_spec.coffee - 200 OK (0ms)
2557
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-11 20:04:05 -0700
2558
+ Served asset /spec_helper.js - 200 OK (2ms)
2559
+ Started GET "/assets/teabag/base/reporters/html_spec.coffee" for 127.0.0.1 at 2012-12-11 20:04:05 -0700
2560
+ Served asset /teabag/base/reporters/html_spec.coffee - 200 OK (0ms)
2561
+ Started GET "/assets/teabag/base/runner_spec.coffee" for 127.0.0.1 at 2012-12-11 20:04:05 -0700
2562
+ Served asset /teabag/base/runner_spec.coffee - 200 OK (0ms)
2563
+ Started GET "/assets/teabag/base/teabag_spec.coffee" for 127.0.0.1 at 2012-12-11 20:04:05 -0700
2564
+ Served asset /teabag/base/teabag_spec.coffee - 200 OK (0ms)
2565
+ Started GET "/assets/teabag/jasmine/reporters/html_spec.coffee" for 127.0.0.1 at 2012-12-11 20:04:05 -0700
2566
+ Served asset /teabag/jasmine/reporters/html_spec.coffee - 200 OK (0ms)
2567
+ Started GET "/assets/teabag/jasmine/runner_spec.coffee" for 127.0.0.1 at 2012-12-11 20:04:05 -0700
2568
+ Served asset /teabag/jasmine/runner_spec.coffee - 200 OK (0ms)
2569
+ Started GET "/assets/teabag/mocha/reporters/console_spec.coffee" for 127.0.0.1 at 2012-12-11 20:04:05 -0700
2570
+ Served asset /teabag/mocha/reporters/console_spec.coffee - 200 OK (0ms)
2571
+ Started GET "/assets/teabag/phantomjs/runner_spec.coffee" for 127.0.0.1 at 2012-12-11 20:04:05 -0700
2572
+ Served asset /teabag/phantomjs/runner_spec.coffee - 200 OK (0ms)
2573
+ Started GET "/assets/teabag/mocha/runner_spec.coffee" for 127.0.0.1 at 2012-12-11 20:04:05 -0700
2574
+ Served asset /teabag/mocha/runner_spec.coffee - 200 OK (0ms)
2575
+ Started GET "/assets/teabag/mocha/reporters/html_spec.coffee" for 127.0.0.1 at 2012-12-11 20:04:05 -0700
2576
+ Served asset /teabag/mocha/reporters/html_spec.coffee - 200 OK (0ms)
2577
+ Started GET "/teabag/jasmine" for 127.0.0.1 at 2012-12-11 20:04:06 -0700
2578
+ Processing by Teabag::SpecController#index as HTML
2579
+ Parameters: {"suite"=>"jasmine"}
2580
+ Compiled jquery.js (2ms) (pid 45261)
2581
+ Compiled jasmine-jquery.js (0ms) (pid 45261)
2582
+ Compiled teabag/jasmine_jspec.js (151ms) (pid 45261)
2583
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (163.1ms)
2584
+ Completed 200 OK in 164ms (Views: 163.7ms)
2585
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-11 20:04:06 -0700
2586
+ Served asset /teabag.css - 200 OK (0ms)
2587
+ Started GET "/assets/teabag/jasmine.js" for 127.0.0.1 at 2012-12-11 20:04:06 -0700
2588
+ Served asset /teabag/jasmine.js - 200 OK (0ms)
2589
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-11 20:04:06 -0700
2590
+ Served asset /spec_helper.js - 200 OK (0ms)
2591
+ Started GET "/assets/teabag/jasmine_jspec.coffee" for 127.0.0.1 at 2012-12-11 20:04:06 -0700
2592
+ Served asset /teabag/jasmine_jspec.coffee - 200 OK (0ms)
2593
+ Started GET "/teabag/fixtures/fixture.html?1355281446774" for 127.0.0.1 at 2012-12-11 20:04:06 -0700
2594
+ Processing by Teabag::SpecController#fixtures as HTML
2595
+ Parameters: {"1355281446774"=>nil, "filename"=>"fixture"}
2596
+ Rendered /Users/jejacks0n/Projects/teabag/spec/javascripts/fixtures/fixture.html.haml (1.5ms)
2597
+ Completed 200 OK in 3ms (Views: 2.5ms)
2598
+ Started GET "/teabag/mocha" for 127.0.0.1 at 2012-12-11 20:04:08 -0700
2599
+ Processing by Teabag::SpecController#index as HTML
2600
+ Parameters: {"suite"=>"mocha"}
2601
+ Compiled teabag/mocha_mspec.js (110ms) (pid 45261)
2602
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (120.1ms)
2603
+ Completed 200 OK in 121ms (Views: 120.7ms)
2604
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-11 20:04:08 -0700
2605
+ Served asset /teabag.css - 200 OK (0ms)
2606
+ Started GET "/assets/expect.js" for 127.0.0.1 at 2012-12-11 20:04:08 -0700
2607
+ Compiled expect.js (0ms) (pid 45261)
2608
+ Served asset /expect.js - 200 OK (10ms)
2609
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-11 20:04:08 -0700
2610
+ Served asset /spec_helper.js - 200 OK (0ms)
2611
+ Started GET "/assets/teabag/mocha_mspec.coffee" for 127.0.0.1 at 2012-12-11 20:04:08 -0700
2612
+ Served asset /teabag/mocha_mspec.coffee - 200 OK (0ms)
2613
+ Started GET "/assets/teabag/mocha.js" for 127.0.0.1 at 2012-12-11 20:04:08 -0700
2614
+ Compiled mocha-1.7.3.js (2ms) (pid 45261)
2615
+ Compiled teabag/mocha/reporters/console.js (111ms) (pid 45261)
2616
+ Compiled teabag/mocha/reporters/html.js (112ms) (pid 45261)
2617
+ Compiled teabag/mocha.js (379ms) (pid 45261)
2618
+ Served asset /teabag/mocha.js - 200 OK (387ms)
2619
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-11 20:09:45 -0700
2620
+ Processing by Teabag::SpecController#index as */*
2621
+ Parameters: {"suite"=>"foo"}
2622
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (60.8ms)
2623
+ Completed 200 OK in 70ms (Views: 70.0ms)
2624
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-11 20:10:44 -0700
2625
+ Processing by Teabag::SpecController#index as */*
2626
+ Parameters: {"suite"=>"foo"}
2627
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (60.0ms)
2628
+ Completed 200 OK in 69ms (Views: 68.6ms)
2629
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-11 20:17:50 -0700
2630
+ Processing by Teabag::SpecController#index as */*
2631
+ Parameters: {"suite"=>"foo"}
2632
+ Compiled teabag/base/reporters/console_spec.js (137ms) (pid 45571)
2633
+ Compiled teabag/base/reporters/html_spec.js (95ms) (pid 45571)
2634
+ Compiled teabag/base/reporters_spec.js (149ms) (pid 45571)
2635
+ Compiled teabag/base/runner_spec.js (114ms) (pid 45571)
2636
+ Compiled teabag/base/teabag_spec.js (105ms) (pid 45571)
2637
+ Compiled teabag/jasmine/reporters/html_spec.js (104ms) (pid 45571)
2638
+ Compiled teabag/jasmine/runner_spec.js (125ms) (pid 45571)
2639
+ Compiled teabag/mocha/reporters/console_spec.js (121ms) (pid 45571)
2640
+ Compiled teabag/mocha/reporters/html_spec.js (93ms) (pid 45571)
2641
+ Compiled teabag/mocha/runner_spec.js (92ms) (pid 45571)
2642
+ Compiled phantomjs/runner.js (119ms) (pid 45571)
2643
+ Compiled teabag/phantomjs/runner_spec.js (264ms) (pid 45571)
2644
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1493.3ms)
2645
+ Completed 200 OK in 1503ms (Views: 1502.6ms)
2646
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-11 20:22:30 -0700
2647
+ Processing by Teabag::SpecController#index as */*
2648
+ Parameters: {"suite"=>"foo"}
2649
+ Compiled teabag/base/reporters/console_spec.js (156ms) (pid 45705)
2650
+ Compiled teabag/base/reporters/html_spec.js (96ms) (pid 45705)
2651
+ Compiled teabag/base/reporters_spec.js (115ms) (pid 45705)
2652
+ Compiled teabag/base/runner_spec.js (115ms) (pid 45705)
2653
+ Compiled teabag/base/teabag_spec.js (107ms) (pid 45705)
2654
+ Compiled teabag/jasmine/reporters/html_spec.js (130ms) (pid 45705)
2655
+ Compiled teabag/jasmine/runner_spec.js (124ms) (pid 45705)
2656
+ Compiled teabag/mocha/reporters/console_spec.js (94ms) (pid 45705)
2657
+ Compiled teabag/mocha/reporters/html_spec.js (95ms) (pid 45705)
2658
+ Compiled teabag/mocha/runner_spec.js (94ms) (pid 45705)
2659
+ Compiled phantomjs/runner.js (120ms) (pid 45705)
2660
+ Compiled teabag/phantomjs/runner_spec.js (292ms) (pid 45705)
2661
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1514.7ms)
2662
+ Completed 200 OK in 1525ms (Views: 1525.2ms)
2663
+ Started GET "/teabag/default" for 127.0.0.1 at 2012-12-11 20:23:24 -0700
2664
+ Processing by Teabag::SpecController#index as HTML
2665
+ Parameters: {"suite"=>"default"}
2666
+ Compiled teabag/base/reporters/console_spec.js (136ms) (pid 45792)
2667
+ Compiled teabag/base/reporters/html_spec.js (96ms) (pid 45792)
2668
+ Compiled teabag/base/reporters_spec.js (143ms) (pid 45792)
2669
+ Compiled teabag/base/runner_spec.js (116ms) (pid 45792)
2670
+ Compiled teabag/base/teabag_spec.js (105ms) (pid 45792)
2671
+ Compiled teabag/jasmine/reporters/html_spec.js (102ms) (pid 45792)
2672
+ Compiled teabag/jasmine/runner_spec.js (124ms) (pid 45792)
2673
+ Compiled teabag/mocha/reporters/console_spec.js (94ms) (pid 45792)
2674
+ Compiled teabag/mocha/reporters/html_spec.js (94ms) (pid 45792)
2675
+ Compiled teabag/mocha/runner_spec.js (94ms) (pid 45792)
2676
+ Compiled phantomjs/runner.js (120ms) (pid 45792)
2677
+ Compiled teabag/phantomjs/runner_spec.js (265ms) (pid 45792)
2678
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1494.5ms)
2679
+ Completed 200 OK in 1501ms (Views: 1500.4ms)
2680
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-11 20:23:26 -0700
2681
+ Compiled teabag.css (3ms) (pid 45792)
2682
+ Served asset /teabag.css - 200 OK (11ms)
2683
+ Started GET "/assets/teabag/jasmine.js" for 127.0.0.1 at 2012-12-11 20:23:26 -0700
2684
+ Compiled jasmine-1.3.0.js (0ms) (pid 45792)
2685
+ Compiled teabag/base/runner.js (108ms) (pid 45792)
2686
+ Compiled teabag/base/reporters/console.js (118ms) (pid 45792)
2687
+ Compiled teabag/base/reporters/html.js (164ms) (pid 45792)
2688
+ Compiled teabag/base/reporters.js (430ms) (pid 45792)
2689
+ Compiled teabag/base/teabag.js (679ms) (pid 45792)
2690
+ Compiled teabag/jasmine/reporters/html.js (105ms) (pid 45792)
2691
+ Compiled teabag/jasmine.js (913ms) (pid 45792)
2692
+ Served asset /teabag/jasmine.js - 200 OK (919ms)
2693
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-11 20:23:27 -0700
2694
+ Compiled spec_helper.js (105ms) (pid 45792)
2695
+ Served asset /spec_helper.js - 200 OK (111ms)
2696
+ Started GET "/assets/teabag/base/reporters_spec.coffee" for 127.0.0.1 at 2012-12-11 20:23:27 -0700
2697
+ Served asset /teabag/base/reporters_spec.coffee - 200 OK (0ms)
2698
+ Started GET "/assets/teabag/base/reporters/console_spec.coffee" for 127.0.0.1 at 2012-12-11 20:23:27 -0700
2699
+ Served asset /teabag/base/reporters/console_spec.coffee - 200 OK (0ms)
2700
+ Started GET "/assets/teabag/base/reporters/html_spec.coffee" for 127.0.0.1 at 2012-12-11 20:23:27 -0700
2701
+ Served asset /teabag/base/reporters/html_spec.coffee - 200 OK (0ms)
2702
+ Started GET "/assets/teabag/base/runner_spec.coffee" for 127.0.0.1 at 2012-12-11 20:23:27 -0700
2703
+ Served asset /teabag/base/runner_spec.coffee - 200 OK (0ms)
2704
+ Started GET "/assets/teabag/base/teabag_spec.coffee" for 127.0.0.1 at 2012-12-11 20:23:27 -0700
2705
+ Served asset /teabag/base/teabag_spec.coffee - 200 OK (0ms)
2706
+ Started GET "/assets/teabag/jasmine/reporters/html_spec.coffee" for 127.0.0.1 at 2012-12-11 20:23:27 -0700
2707
+ Served asset /teabag/jasmine/reporters/html_spec.coffee - 200 OK (0ms)
2708
+ Started GET "/assets/teabag/jasmine/runner_spec.coffee" for 127.0.0.1 at 2012-12-11 20:23:27 -0700
2709
+ Served asset /teabag/jasmine/runner_spec.coffee - 200 OK (0ms)
2710
+ Started GET "/assets/teabag/mocha/reporters/html_spec.coffee" for 127.0.0.1 at 2012-12-11 20:23:27 -0700
2711
+ Served asset /teabag/mocha/reporters/html_spec.coffee - 200 OK (0ms)
2712
+ Started GET "/assets/teabag/mocha/reporters/console_spec.coffee" for 127.0.0.1 at 2012-12-11 20:23:27 -0700
2713
+ Served asset /teabag/mocha/reporters/console_spec.coffee - 200 OK (0ms)
2714
+ Started GET "/assets/teabag/mocha/runner_spec.coffee" for 127.0.0.1 at 2012-12-11 20:23:27 -0700
2715
+ Served asset /teabag/mocha/runner_spec.coffee - 200 OK (0ms)
2716
+ Started GET "/assets/teabag/phantomjs/runner_spec.coffee" for 127.0.0.1 at 2012-12-11 20:23:27 -0700
2717
+ Served asset /teabag/phantomjs/runner_spec.coffee - 200 OK (0ms)
2718
+ Started GET "/teabag/jasmine" for 127.0.0.1 at 2012-12-11 20:23:27 -0700
2719
+ Processing by Teabag::SpecController#index as HTML
2720
+ Parameters: {"suite"=>"jasmine"}
2721
+ Compiled jquery.js (2ms) (pid 45792)
2722
+ Compiled jasmine-jquery.js (0ms) (pid 45792)
2723
+ Compiled teabag/jasmine_jspec.js (117ms) (pid 45792)
2724
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (178.9ms)
2725
+ Completed 200 OK in 180ms (Views: 179.6ms)
2726
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-11 20:23:28 -0700
2727
+ Served asset /teabag.css - 200 OK (0ms)
2728
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-11 20:23:28 -0700
2729
+ Served asset /spec_helper.js - 200 OK (0ms)
2730
+ Started GET "/assets/teabag/jasmine.js" for 127.0.0.1 at 2012-12-11 20:23:28 -0700
2731
+ Served asset /teabag/jasmine.js - 200 OK (0ms)
2732
+ Started GET "/assets/teabag/jasmine_jspec.coffee" for 127.0.0.1 at 2012-12-11 20:23:28 -0700
2733
+ Served asset /teabag/jasmine_jspec.coffee - 200 OK (0ms)
2734
+ Started GET "/teabag/fixtures/fixture.html?1355282608162" for 127.0.0.1 at 2012-12-11 20:23:28 -0700
2735
+ Processing by Teabag::SpecController#fixtures as HTML
2736
+ Parameters: {"1355282608162"=>nil, "filename"=>"fixture"}
2737
+ Rendered /Users/jejacks0n/Projects/teabag/spec/javascripts/fixtures/fixture.html.haml (1.5ms)
2738
+ Completed 200 OK in 3ms (Views: 2.5ms)
2739
+ Started GET "/teabag/mocha" for 127.0.0.1 at 2012-12-11 20:23:29 -0700
2740
+ Processing by Teabag::SpecController#index as HTML
2741
+ Parameters: {"suite"=>"mocha"}
2742
+ Compiled teabag/mocha_mspec.js (113ms) (pid 45792)
2743
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (124.8ms)
2744
+ Completed 200 OK in 126ms (Views: 125.5ms)
2745
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-11 20:23:29 -0700
2746
+ Served asset /teabag.css - 200 OK (0ms)
2747
+ Started GET "/assets/expect.js" for 127.0.0.1 at 2012-12-11 20:23:29 -0700
2748
+ Compiled expect.js (1ms) (pid 45792)
2749
+ Served asset /expect.js - 200 OK (9ms)
2750
+ Started GET "/assets/teabag/mocha.js" for 127.0.0.1 at 2012-12-11 20:23:29 -0700
2751
+ Compiled mocha-1.7.3.js (1ms) (pid 45792)
2752
+ Compiled teabag/mocha/reporters/console.js (133ms) (pid 45792)
2753
+ Compiled teabag/mocha/reporters/html.js (109ms) (pid 45792)
2754
+ Compiled teabag/mocha.js (368ms) (pid 45792)
2755
+ Served asset /teabag/mocha.js - 200 OK (376ms)
2756
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-11 20:23:30 -0700
2757
+ Served asset /spec_helper.js - 200 OK (0ms)
2758
+ Started GET "/assets/teabag/mocha_mspec.coffee" for 127.0.0.1 at 2012-12-11 20:23:30 -0700
2759
+ Served asset /teabag/mocha_mspec.coffee - 200 OK (0ms)
2760
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-11 20:57:45 -0700
2761
+ Processing by Teabag::SpecController#index as */*
2762
+ Parameters: {"suite"=>"foo"}
2763
+ Compiled teabag/base/reporters/console_spec.js (227ms) (pid 46770)
2764
+ Compiled teabag/base/reporters/html_spec.js (98ms) (pid 46770)
2765
+ Compiled teabag/base/reporters_spec.js (115ms) (pid 46770)
2766
+ Compiled teabag/base/runner_spec.js (116ms) (pid 46770)
2767
+ Compiled teabag/base/teabag_spec.js (104ms) (pid 46770)
2768
+ Compiled teabag/jasmine/reporters/html_spec.js (106ms) (pid 46770)
2769
+ Compiled teabag/jasmine/runner_spec.js (127ms) (pid 46770)
2770
+ Compiled teabag/mocha/reporters/console_spec.js (95ms) (pid 46770)
2771
+ Compiled teabag/mocha/reporters/html_spec.js (94ms) (pid 46770)
2772
+ Compiled teabag/mocha/runner_spec.js (95ms) (pid 46770)
2773
+ Compiled phantomjs/runner.js (119ms) (pid 46770)
2774
+ Compiled teabag/phantomjs/runner_spec.js (262ms) (pid 46770)
2775
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1609.4ms)
2776
+ Completed 200 OK in 1619ms (Views: 1619.2ms)
2777
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-11 21:31:39 -0700
2778
+ Processing by Teabag::SpecController#index as */*
2779
+ Parameters: {"suite"=>"foo"}
2780
+ Compiled teabag/base/reporters/console_spec.js (138ms) (pid 47726)
2781
+ Compiled teabag/base/reporters/html_spec.js (96ms) (pid 47726)
2782
+ Compiled teabag/base/reporters_spec.js (140ms) (pid 47726)
2783
+ Compiled teabag/base/runner_spec.js (115ms) (pid 47726)
2784
+ Compiled teabag/base/teabag_spec.js (105ms) (pid 47726)
2785
+ Compiled teabag/jasmine/reporters/html_spec.js (102ms) (pid 47726)
2786
+ Compiled teabag/jasmine/runner_spec.js (123ms) (pid 47726)
2787
+ Compiled teabag/mocha/reporters/console_spec.js (94ms) (pid 47726)
2788
+ Compiled teabag/mocha/reporters/html_spec.js (94ms) (pid 47726)
2789
+ Compiled teabag/mocha/runner_spec.js (94ms) (pid 47726)
2790
+ Compiled phantomjs/runner.js (118ms) (pid 47726)
2791
+ Compiled teabag/phantomjs/runner_spec.js (261ms) (pid 47726)
2792
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1491.9ms)
2793
+ Completed 200 OK in 1502ms (Views: 1501.6ms)
2794
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-11 22:07:51 -0700
2795
+ Processing by Teabag::SpecController#index as */*
2796
+ Parameters: {"suite"=>"foo"}
2797
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (58.4ms)
2798
+ Completed 200 OK in 68ms (Views: 67.6ms)
2799
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-11 22:09:26 -0700
2800
+ Processing by Teabag::SpecController#index as */*
2801
+ Parameters: {"suite"=>"foo"}
2802
+ Compiled teabag/base/reporters/console_spec.js (154ms) (pid 49614)
2803
+ Compiled teabag/base/reporters/html_spec.js (96ms) (pid 49614)
2804
+ Compiled teabag/base/reporters_spec.js (115ms) (pid 49614)
2805
+ Compiled teabag/base/runner_spec.js (113ms) (pid 49614)
2806
+ Compiled teabag/base/teabag_spec.js (106ms) (pid 49614)
2807
+ Compiled teabag/jasmine/reporters/html_spec.js (102ms) (pid 49614)
2808
+ Compiled teabag/jasmine/runner_spec.js (125ms) (pid 49614)
2809
+ Compiled teabag/mocha/reporters/console_spec.js (93ms) (pid 49614)
2810
+ Compiled teabag/mocha/reporters/html_spec.js (99ms) (pid 49614)
2811
+ Compiled teabag/mocha/runner_spec.js (98ms) (pid 49614)
2812
+ Compiled phantomjs/runner.js (118ms) (pid 49614)
2813
+ Compiled teabag/phantomjs/runner_spec.js (291ms) (pid 49614)
2814
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1523.9ms)
2815
+ Completed 200 OK in 1534ms (Views: 1533.9ms)
2816
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-11 22:16:31 -0700
2817
+ Processing by Teabag::SpecController#index as */*
2818
+ Parameters: {"suite"=>"foo"}
2819
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (59.1ms)
2820
+ Completed 200 OK in 68ms (Views: 67.7ms)
2821
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-11 22:30:36 -0700
2822
+ Processing by Teabag::SpecController#index as */*
2823
+ Parameters: {"suite"=>"foo"}
2824
+ Compiled teabag/base/reporters/console_spec.js (162ms) (pid 49897)
2825
+ Compiled teabag/base/reporters/html_spec.js (97ms) (pid 49897)
2826
+ Compiled teabag/base/reporters_spec.js (125ms) (pid 49897)
2827
+ Compiled teabag/base/runner_spec.js (115ms) (pid 49897)
2828
+ Compiled teabag/base/teabag_spec.js (105ms) (pid 49897)
2829
+ Compiled teabag/jasmine/reporters/html_spec.js (103ms) (pid 49897)
2830
+ Compiled teabag/jasmine/runner_spec.js (127ms) (pid 49897)
2831
+ Compiled teabag/mocha/reporters/console_spec.js (93ms) (pid 49897)
2832
+ Compiled teabag/mocha/reporters/html_spec.js (93ms) (pid 49897)
2833
+ Compiled teabag/mocha/runner_spec.js (93ms) (pid 49897)
2834
+ Compiled phantomjs/runner.js (120ms) (pid 49897)
2835
+ Compiled teabag/phantomjs/runner_spec.js (295ms) (pid 49897)
2836
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1546.7ms)
2837
+ Completed 200 OK in 1560ms (Views: 1559.3ms)
2838
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-11 22:34:25 -0700
2839
+ Processing by Teabag::SpecController#index as */*
2840
+ Parameters: {"suite"=>"foo"}
2841
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (59.5ms)
2842
+ Completed 200 OK in 68ms (Views: 68.2ms)
2843
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-11 22:43:11 -0700
2844
+ Processing by Teabag::SpecController#index as */*
2845
+ Parameters: {"suite"=>"foo"}
2846
+ Compiled teabag/base/reporters/console_spec.js (166ms) (pid 51015)
2847
+ Compiled teabag/base/reporters/html_spec.js (102ms) (pid 51015)
2848
+ Compiled teabag/base/reporters_spec.js (117ms) (pid 51015)
2849
+ Compiled teabag/base/runner_spec.js (116ms) (pid 51015)
2850
+ Compiled teabag/base/teabag_spec.js (107ms) (pid 51015)
2851
+ Compiled teabag/jasmine/reporters/html_spec.js (105ms) (pid 51015)
2852
+ Compiled teabag/jasmine/runner_spec.js (155ms) (pid 51015)
2853
+ Compiled teabag/mocha/reporters/console_spec.js (95ms) (pid 51015)
2854
+ Compiled teabag/mocha/reporters/html_spec.js (94ms) (pid 51015)
2855
+ Compiled teabag/mocha/runner_spec.js (93ms) (pid 51015)
2856
+ Compiled phantomjs/runner.js (119ms) (pid 51015)
2857
+ Compiled teabag/phantomjs/runner_spec.js (292ms) (pid 51015)
2858
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1553.2ms)
2859
+ Completed 200 OK in 1568ms (Views: 1567.3ms)
2860
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-11 22:44:40 -0700
2861
+ Processing by Teabag::SpecController#index as */*
2862
+ Parameters: {"suite"=>"foo"}
2863
+ Compiled teabag/base/reporters/console_spec.js (153ms) (pid 51097)
2864
+ Compiled teabag/base/reporters/html_spec.js (95ms) (pid 51097)
2865
+ Compiled teabag/base/reporters_spec.js (116ms) (pid 51097)
2866
+ Compiled teabag/base/runner_spec.js (114ms) (pid 51097)
2867
+ Compiled teabag/base/teabag_spec.js (105ms) (pid 51097)
2868
+ Compiled teabag/jasmine/reporters/html_spec.js (103ms) (pid 51097)
2869
+ Compiled teabag/jasmine/runner_spec.js (154ms) (pid 51097)
2870
+ Compiled teabag/mocha/reporters/console_spec.js (96ms) (pid 51097)
2871
+ Compiled teabag/mocha/reporters/html_spec.js (94ms) (pid 51097)
2872
+ Compiled teabag/mocha/runner_spec.js (93ms) (pid 51097)
2873
+ Compiled phantomjs/runner.js (118ms) (pid 51097)
2874
+ Compiled teabag/phantomjs/runner_spec.js (290ms) (pid 51097)
2875
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1507.3ms)
2876
+ Completed 200 OK in 1516ms (Views: 1515.9ms)
2877
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-11 22:45:34 -0700
2878
+ Processing by Teabag::SpecController#index as */*
2879
+ Parameters: {"suite"=>"foo"}
2880
+ Compiled teabag/base/reporters/console_spec.js (153ms) (pid 51329)
2881
+ Compiled teabag/base/reporters/html_spec.js (95ms) (pid 51329)
2882
+ Compiled teabag/base/reporters_spec.js (115ms) (pid 51329)
2883
+ Compiled teabag/base/runner_spec.js (113ms) (pid 51329)
2884
+ Compiled teabag/base/teabag_spec.js (106ms) (pid 51329)
2885
+ Compiled teabag/jasmine/reporters/html_spec.js (129ms) (pid 51329)
2886
+ Compiled teabag/jasmine/runner_spec.js (123ms) (pid 51329)
2887
+ Compiled teabag/mocha/reporters/console_spec.js (94ms) (pid 51329)
2888
+ Compiled teabag/mocha/reporters/html_spec.js (93ms) (pid 51329)
2889
+ Compiled teabag/mocha/runner_spec.js (93ms) (pid 51329)
2890
+ Compiled phantomjs/runner.js (118ms) (pid 51329)
2891
+ Compiled teabag/phantomjs/runner_spec.js (292ms) (pid 51329)
2892
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1499.8ms)
2893
+ Completed 200 OK in 1510ms (Views: 1509.8ms)
2894
+ Started GET "/teabag/default" for 127.0.0.1 at 2012-12-11 23:02:46 -0700
2895
+ Processing by Teabag::SpecController#index as HTML
2896
+ Parameters: {"suite"=>"default"}
2897
+ Compiled teabag/base/reporters/console_spec.js (231ms) (pid 52365)
2898
+ Compiled teabag/base/reporters/html_spec.js (96ms) (pid 52365)
2899
+ Compiled teabag/base/reporters_spec.js (116ms) (pid 52365)
2900
+ Compiled teabag/base/runner_spec.js (114ms) (pid 52365)
2901
+ Compiled teabag/base/teabag_spec.js (103ms) (pid 52365)
2902
+ Compiled teabag/jasmine/reporters/html_spec.js (103ms) (pid 52365)
2903
+ Compiled teabag/jasmine/runner_spec.js (124ms) (pid 52365)
2904
+ Compiled teabag/mocha/reporters/console_spec.js (93ms) (pid 52365)
2905
+ Compiled teabag/mocha/reporters/html_spec.js (93ms) (pid 52365)
2906
+ Compiled teabag/mocha/runner_spec.js (95ms) (pid 52365)
2907
+ Compiled phantomjs/runner.js (120ms) (pid 52365)
2908
+ Compiled teabag/phantomjs/runner_spec.js (266ms) (pid 52365)
2909
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1626.1ms)
2910
+ Completed 200 OK in 1632ms (Views: 1631.8ms)
2911
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-11 23:02:48 -0700
2912
+ Compiled teabag.css (1ms) (pid 52365)
2913
+ Served asset /teabag.css - 200 OK (11ms)
2914
+ Started GET "/assets/teabag/base/reporters/console_spec.coffee" for 127.0.0.1 at 2012-12-11 23:02:48 -0700
2915
+ Served asset /teabag/base/reporters/console_spec.coffee - 200 OK (0ms)
2916
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-11 23:02:48 -0700
2917
+ Error compiling asset spec_helper.js:
2918
+ Sprockets::FileNotFound: couldn't find file 'testing'
2919
+ (in /Users/jejacks0n/Projects/teabag/spec/javascripts/spec_helper.coffee:1)
2920
+ Served asset /spec_helper.js - 500 Internal Server Error
2921
+
2922
+
2923
+ Started GET "/assets/teabag/base/reporters_spec.coffee" for 127.0.0.1 at 2012-12-11 23:02:48 -0700
2924
+ Served asset /teabag/base/reporters_spec.coffee - 200 OK (0ms)
2925
+ Started GET "/assets/teabag/base/reporters/html_spec.coffee" for 127.0.0.1 at 2012-12-11 23:02:48 -0700
2926
+ Served asset /teabag/base/reporters/html_spec.coffee - 200 OK (0ms)
2927
+ Started GET "/assets/teabag/jasmine.js" for 127.0.0.1 at 2012-12-11 23:02:48 -0700
2928
+ Compiled jasmine-1.3.0.js (1ms) (pid 52365)
2929
+ Compiled teabag/base/runner.js (104ms) (pid 52365)
2930
+ Compiled teabag/base/reporters/console.js (118ms) (pid 52365)
2931
+ Compiled teabag/base/reporters/html.js (163ms) (pid 52365)
2932
+ Compiled teabag/base/reporters.js (416ms) (pid 52365)
2933
+ Compiled teabag/base/teabag.js (636ms) (pid 52365)
2934
+ Compiled teabag/jasmine/reporters/html.js (127ms) (pid 52365)
2935
+ Compiled teabag/jasmine.js (891ms) (pid 52365)
2936
+ Served asset /teabag/jasmine.js - 200 OK (918ms)
2937
+ Started GET "/assets/teabag/base/runner_spec.coffee" for 127.0.0.1 at 2012-12-11 23:02:49 -0700
2938
+ Served asset /teabag/base/runner_spec.coffee - 200 OK (0ms)
2939
+ Started GET "/assets/teabag/base/teabag_spec.coffee" for 127.0.0.1 at 2012-12-11 23:02:49 -0700
2940
+ Served asset /teabag/base/teabag_spec.coffee - 200 OK (0ms)
2941
+ Started GET "/assets/teabag/jasmine/reporters/html_spec.coffee" for 127.0.0.1 at 2012-12-11 23:02:49 -0700
2942
+ Served asset /teabag/jasmine/reporters/html_spec.coffee - 200 OK (0ms)
2943
+ Started GET "/assets/teabag/jasmine/runner_spec.coffee" for 127.0.0.1 at 2012-12-11 23:02:49 -0700
2944
+ Served asset /teabag/jasmine/runner_spec.coffee - 200 OK (0ms)
2945
+ Started GET "/assets/teabag/mocha/reporters/console_spec.coffee" for 127.0.0.1 at 2012-12-11 23:02:49 -0700
2946
+ Served asset /teabag/mocha/reporters/console_spec.coffee - 200 OK (0ms)
2947
+ Started GET "/assets/teabag/mocha/reporters/html_spec.coffee" for 127.0.0.1 at 2012-12-11 23:02:49 -0700
2948
+ Served asset /teabag/mocha/reporters/html_spec.coffee - 200 OK (0ms)
2949
+ Started GET "/assets/teabag/mocha/runner_spec.coffee" for 127.0.0.1 at 2012-12-11 23:02:49 -0700
2950
+ Served asset /teabag/mocha/runner_spec.coffee - 200 OK (0ms)
2951
+ Started GET "/assets/teabag/phantomjs/runner_spec.coffee" for 127.0.0.1 at 2012-12-11 23:02:49 -0700
2952
+ Served asset /teabag/phantomjs/runner_spec.coffee - 200 OK (0ms)
2953
+ Started GET "/teabag/jasmine" for 127.0.0.1 at 2012-12-11 23:03:01 -0700
2954
+ Processing by Teabag::SpecController#index as HTML
2955
+ Parameters: {"suite"=>"jasmine"}
2956
+ Compiled jquery.js (1ms) (pid 52422)
2957
+ Compiled jasmine-jquery.js (0ms) (pid 52422)
2958
+ Compiled teabag/jasmine_jspec.js (153ms) (pid 52422)
2959
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (167.4ms)
2960
+ Completed 200 OK in 173ms (Views: 172.8ms)
2961
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-11 23:03:02 -0700
2962
+ Served asset /teabag.css - 200 OK (3ms)
2963
+ Started GET "/assets/teabag/jasmine_jspec.coffee" for 127.0.0.1 at 2012-12-11 23:03:02 -0700
2964
+ Served asset /teabag/jasmine_jspec.coffee - 200 OK (0ms)
2965
+ Started GET "/assets/teabag/jasmine.js" for 127.0.0.1 at 2012-12-11 23:03:02 -0700
2966
+ Served asset /teabag/jasmine.js - 200 OK (26ms)
2967
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-11 23:03:02 -0700
2968
+ Error compiling asset spec_helper.js:
2969
+ Sprockets::FileNotFound: couldn't find file 'testing'
2970
+ (in /Users/jejacks0n/Projects/teabag/spec/javascripts/spec_helper.coffee:1)
2971
+ Served asset /spec_helper.js - 500 Internal Server Error
2972
+
2973
+
2974
+ Started GET "/teabag/fixtures/fixture.html?1355292182119" for 127.0.0.1 at 2012-12-11 23:03:02 -0700
2975
+ Processing by Teabag::SpecController#fixtures as HTML
2976
+ Parameters: {"1355292182119"=>nil, "filename"=>"fixture"}
2977
+ Rendered /Users/jejacks0n/Projects/teabag/spec/javascripts/fixtures/fixture.html.haml (1.6ms)
2978
+ Completed 200 OK in 3ms (Views: 2.5ms)
2979
+ Started GET "/teabag/jasmine" for 127.0.0.1 at 2012-12-11 23:05:59 -0700
2980
+ Processing by Teabag::SpecController#index as HTML
2981
+ Parameters: {"suite"=>"jasmine"}
2982
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (9.7ms)
2983
+ Completed 200 OK in 15ms (Views: 15.1ms)
2984
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-11 23:05:59 -0700
2985
+ Served asset /teabag.css - 200 OK (2ms)
2986
+ Started GET "/assets/teabag/jasmine.js" for 127.0.0.1 at 2012-12-11 23:05:59 -0700
2987
+ Served asset /teabag/jasmine.js - 200 OK (10ms)
2988
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-11 23:05:59 -0700
2989
+ Error compiling asset spec_helper.js:
2990
+ ExecJS::ProgramError: Error: Parse error on line 1: Unexpected 'POST_IF'
2991
+ (in /Users/jejacks0n/Projects/teabag/spec/javascripts/spec_helper.coffee)
2992
+ Served asset /spec_helper.js - 500 Internal Server Error
2993
+
2994
+
2995
+ Started GET "/assets/teabag/jasmine_jspec.coffee" for 127.0.0.1 at 2012-12-11 23:06:00 -0700
2996
+ Served asset /teabag/jasmine_jspec.coffee - 200 OK (0ms)
2997
+ Started GET "/teabag/fixtures/fixture.html?1355292360037" for 127.0.0.1 at 2012-12-11 23:06:00 -0700
2998
+ Processing by Teabag::SpecController#fixtures as HTML
2999
+ Parameters: {"1355292360037"=>nil, "filename"=>"fixture"}
3000
+ Rendered /Users/jejacks0n/Projects/teabag/spec/javascripts/fixtures/fixture.html.haml (1.7ms)
3001
+ Completed 200 OK in 3ms (Views: 2.7ms)
3002
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-11 23:51:47 -0700
3003
+ Processing by Teabag::SpecController#index as */*
3004
+ Parameters: {"suite"=>"foo"}
3005
+ Compiled phantomjs/runner.js (124ms) (pid 54666)
3006
+ Compiled teabag/phantomjs/runner_spec.js (140ms) (pid 54666)
3007
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (332.0ms)
3008
+ Completed 200 OK in 341ms (Views: 341.3ms)
3009
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-11 23:52:05 -0700
3010
+ Processing by Teabag::SpecController#index as */*
3011
+ Parameters: {"suite"=>"foo"}
3012
+ Compiled teabag/base/reporters/console_spec.js (153ms) (pid 54719)
3013
+ Compiled teabag/base/reporters/html_spec.js (96ms) (pid 54719)
3014
+ Compiled teabag/base/reporters_spec.js (115ms) (pid 54719)
3015
+ Compiled teabag/base/runner_spec.js (117ms) (pid 54719)
3016
+ Compiled teabag/base/teabag_spec.js (105ms) (pid 54719)
3017
+ Compiled teabag/jasmine/reporters/html_spec.js (104ms) (pid 54719)
3018
+ Compiled teabag/jasmine/runner_spec.js (153ms) (pid 54719)
3019
+ Compiled teabag/mocha/reporters/console_spec.js (95ms) (pid 54719)
3020
+ Compiled teabag/mocha/reporters/html_spec.js (96ms) (pid 54719)
3021
+ Compiled teabag/mocha/runner_spec.js (93ms) (pid 54719)
3022
+ Compiled phantomjs/runner.js (122ms) (pid 54719)
3023
+ Compiled teabag/phantomjs/runner_spec.js (295ms) (pid 54719)
3024
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1518.4ms)
3025
+ Completed 200 OK in 1529ms (Views: 1528.8ms)
3026
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-11 23:57:42 -0700
3027
+ Processing by Teabag::SpecController#index as */*
3028
+ Parameters: {"suite"=>"foo"}
3029
+ Compiled teabag/base/reporters/console_spec.js (156ms) (pid 54857)
3030
+ Compiled teabag/base/reporters/html_spec.js (96ms) (pid 54857)
3031
+ Compiled teabag/base/reporters_spec.js (115ms) (pid 54857)
3032
+ Compiled teabag/base/runner_spec.js (115ms) (pid 54857)
3033
+ Compiled teabag/base/teabag_spec.js (103ms) (pid 54857)
3034
+ Compiled teabag/jasmine/reporters/html_spec.js (104ms) (pid 54857)
3035
+ Compiled teabag/jasmine/runner_spec.js (154ms) (pid 54857)
3036
+ Compiled teabag/mocha/reporters/console_spec.js (94ms) (pid 54857)
3037
+ Compiled teabag/mocha/reporters/html_spec.js (95ms) (pid 54857)
3038
+ Compiled teabag/mocha/runner_spec.js (95ms) (pid 54857)
3039
+ Compiled phantomjs/runner.js (136ms) (pid 54857)
3040
+ Compiled teabag/phantomjs/runner_spec.js (308ms) (pid 54857)
3041
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1531.5ms)
3042
+ Completed 200 OK in 1542ms (Views: 1541.8ms)
3043
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-11 23:58:08 -0700
3044
+ Processing by Teabag::SpecController#index as */*
3045
+ Parameters: {"suite"=>"foo"}
3046
+ Compiled teabag/base/reporters/console_spec.js (137ms) (pid 54934)
3047
+ Compiled teabag/base/reporters/html_spec.js (123ms) (pid 54934)
3048
+ Compiled teabag/base/reporters_spec.js (116ms) (pid 54934)
3049
+ Compiled teabag/base/runner_spec.js (115ms) (pid 54934)
3050
+ Compiled teabag/base/teabag_spec.js (104ms) (pid 54934)
3051
+ Compiled teabag/jasmine/reporters/html_spec.js (103ms) (pid 54934)
3052
+ Compiled teabag/jasmine/runner_spec.js (153ms) (pid 54934)
3053
+ Compiled teabag/mocha/reporters/console_spec.js (96ms) (pid 54934)
3054
+ Compiled teabag/mocha/reporters/html_spec.js (94ms) (pid 54934)
3055
+ Compiled teabag/mocha/runner_spec.js (95ms) (pid 54934)
3056
+ Compiled phantomjs/runner.js (152ms) (pid 54934)
3057
+ Compiled teabag/phantomjs/runner_spec.js (298ms) (pid 54934)
3058
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1531.6ms)
3059
+ Completed 200 OK in 1541ms (Views: 1540.4ms)
3060
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-11 23:58:34 -0700
3061
+ Processing by Teabag::SpecController#index as */*
3062
+ Parameters: {"suite"=>"foo"}
3063
+ Compiled teabag/base/reporters/console_spec.js (155ms) (pid 55009)
3064
+ Compiled teabag/base/reporters/html_spec.js (97ms) (pid 55009)
3065
+ Compiled teabag/base/reporters_spec.js (117ms) (pid 55009)
3066
+ Compiled teabag/base/runner_spec.js (114ms) (pid 55009)
3067
+ Compiled teabag/base/teabag_spec.js (105ms) (pid 55009)
3068
+ Compiled teabag/jasmine/reporters/html_spec.js (131ms) (pid 55009)
3069
+ Compiled teabag/jasmine/runner_spec.js (125ms) (pid 55009)
3070
+ Compiled teabag/mocha/reporters/console_spec.js (95ms) (pid 55009)
3071
+ Compiled teabag/mocha/reporters/html_spec.js (95ms) (pid 55009)
3072
+ Compiled teabag/mocha/runner_spec.js (93ms) (pid 55009)
3073
+ Compiled phantomjs/runner.js (120ms) (pid 55009)
3074
+ Compiled teabag/phantomjs/runner_spec.js (296ms) (pid 55009)
3075
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1524.7ms)
3076
+ Completed 200 OK in 1535ms (Views: 1534.9ms)
3077
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-11 23:59:03 -0700
3078
+ Processing by Teabag::SpecController#index as */*
3079
+ Parameters: {"suite"=>"foo"}
3080
+ Compiled teabag/base/reporters/console_spec.js (163ms) (pid 55092)
3081
+ Compiled teabag/base/reporters/html_spec.js (100ms) (pid 55092)
3082
+ Compiled teabag/base/reporters_spec.js (116ms) (pid 55092)
3083
+ Compiled teabag/base/runner_spec.js (115ms) (pid 55092)
3084
+ Compiled teabag/base/teabag_spec.js (104ms) (pid 55092)
3085
+ Compiled teabag/jasmine/reporters/html_spec.js (104ms) (pid 55092)
3086
+ Compiled teabag/jasmine/runner_spec.js (153ms) (pid 55092)
3087
+ Compiled teabag/mocha/reporters/console_spec.js (93ms) (pid 55092)
3088
+ Compiled teabag/mocha/reporters/html_spec.js (94ms) (pid 55092)
3089
+ Compiled teabag/mocha/runner_spec.js (95ms) (pid 55092)
3090
+ Compiled phantomjs/runner.js (121ms) (pid 55092)
3091
+ Compiled teabag/phantomjs/runner_spec.js (293ms) (pid 55092)
3092
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1522.8ms)
3093
+ Completed 200 OK in 1532ms (Views: 1531.7ms)
3094
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-12 00:39:16 -0700
3095
+ Processing by Teabag::SpecController#index as */*
3096
+ Parameters: {"suite"=>"foo"}
3097
+ Compiled teabag/base/reporters/console_spec.js (154ms) (pid 56405)
3098
+ Compiled teabag/base/reporters/html_spec.js (96ms) (pid 56405)
3099
+ Compiled teabag/base/reporters_spec.js (150ms) (pid 56405)
3100
+ Compiled teabag/base/runner_spec.js (114ms) (pid 56405)
3101
+ Compiled teabag/base/teabag_spec.js (104ms) (pid 56405)
3102
+ Compiled teabag/jasmine/reporters/html_spec.js (102ms) (pid 56405)
3103
+ Compiled teabag/jasmine/runner_spec.js (125ms) (pid 56405)
3104
+ Compiled teabag/mocha/reporters/console_spec.js (94ms) (pid 56405)
3105
+ Compiled teabag/mocha/reporters/html_spec.js (94ms) (pid 56405)
3106
+ Compiled teabag/mocha/runner_spec.js (99ms) (pid 56405)
3107
+ Compiled phantomjs/runner.js (122ms) (pid 56405)
3108
+ Compiled teabag/phantomjs/runner_spec.js (297ms) (pid 56405)
3109
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1549.5ms)
3110
+ Completed 200 OK in 1559ms (Views: 1558.4ms)
3111
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-12 00:44:12 -0700
3112
+ Processing by Teabag::SpecController#index as */*
3113
+ Parameters: {"suite"=>"foo"}
3114
+ Compiled teabag/base/reporters/console_spec.js (228ms) (pid 57369)
3115
+ Compiled teabag/base/reporters/html_spec.js (96ms) (pid 57369)
3116
+ Compiled teabag/base/reporters_spec.js (145ms) (pid 57369)
3117
+ Compiled teabag/base/runner_spec.js (112ms) (pid 57369)
3118
+ Compiled teabag/base/teabag_spec.js (102ms) (pid 57369)
3119
+ Compiled teabag/jasmine/reporters/html_spec.js (130ms) (pid 57369)
3120
+ Compiled teabag/jasmine/runner_spec.js (124ms) (pid 57369)
3121
+ Compiled teabag/mocha/reporters/console_spec.js (92ms) (pid 57369)
3122
+ Compiled teabag/mocha/reporters/html_spec.js (92ms) (pid 57369)
3123
+ Compiled teabag/mocha/runner_spec.js (94ms) (pid 57369)
3124
+ Compiled phantomjs/runner.js (120ms) (pid 57369)
3125
+ Compiled teabag/phantomjs/runner_spec.js (292ms) (pid 57369)
3126
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1603.6ms)
3127
+ Completed 200 OK in 1614ms (Views: 1613.5ms)
3128
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-12 01:36:40 -0700
3129
+ Processing by Teabag::SpecController#index as */*
3130
+ Parameters: {"suite"=>"foo"}
3131
+ Compiled teabag/base/reporters/console_spec.js (155ms) (pid 59483)
3132
+ Compiled teabag/base/reporters/html_spec.js (100ms) (pid 59483)
3133
+ Compiled teabag/base/reporters_spec.js (149ms) (pid 59483)
3134
+ Compiled teabag/base/runner_spec.js (117ms) (pid 59483)
3135
+ Compiled teabag/base/teabag_spec.js (104ms) (pid 59483)
3136
+ Compiled teabag/jasmine/reporters/html_spec.js (102ms) (pid 59483)
3137
+ Compiled teabag/jasmine/runner_spec.js (124ms) (pid 59483)
3138
+ Compiled teabag/mocha/reporters/console_spec.js (94ms) (pid 59483)
3139
+ Compiled teabag/mocha/reporters/html_spec.js (93ms) (pid 59483)
3140
+ Compiled teabag/mocha/runner_spec.js (93ms) (pid 59483)
3141
+ Compiled phantomjs/runner.js (120ms) (pid 59483)
3142
+ Compiled teabag/phantomjs/runner_spec.js (294ms) (pid 59483)
3143
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1550.8ms)
3144
+ Completed 200 OK in 1560ms (Views: 1560.1ms)
3145
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-12 01:38:00 -0700
3146
+ Processing by Teabag::SpecController#index as */*
3147
+ Parameters: {"suite"=>"foo"}
3148
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (61.8ms)
3149
+ Completed 200 OK in 71ms (Views: 70.6ms)
3150
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-12 01:39:57 -0700
3151
+ Processing by Teabag::SpecController#index as */*
3152
+ Parameters: {"suite"=>"foo"}
3153
+ Compiled teabag/base/reporters/console_spec.js (158ms) (pid 59627)
3154
+ Compiled teabag/base/reporters/html_spec.js (99ms) (pid 59627)
3155
+ Compiled teabag/base/reporters_spec.js (150ms) (pid 59627)
3156
+ Compiled teabag/base/runner_spec.js (114ms) (pid 59627)
3157
+ Compiled teabag/base/teabag_spec.js (105ms) (pid 59627)
3158
+ Compiled teabag/jasmine/reporters/html_spec.js (130ms) (pid 59627)
3159
+ Compiled teabag/jasmine/runner_spec.js (123ms) (pid 59627)
3160
+ Compiled teabag/mocha/reporters/console_spec.js (93ms) (pid 59627)
3161
+ Compiled teabag/mocha/reporters/html_spec.js (93ms) (pid 59627)
3162
+ Compiled teabag/mocha/runner_spec.js (93ms) (pid 59627)
3163
+ Compiled phantomjs/runner.js (120ms) (pid 59627)
3164
+ Compiled teabag/phantomjs/runner_spec.js (265ms) (pid 59627)
3165
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1549.1ms)
3166
+ Completed 200 OK in 1559ms (Views: 1558.3ms)
3167
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-12 01:40:37 -0700
3168
+ Processing by Teabag::SpecController#index as */*
3169
+ Parameters: {"suite"=>"foo"}
3170
+ Compiled teabag/base/reporters/console_spec.js (153ms) (pid 59702)
3171
+ Compiled teabag/base/reporters/html_spec.js (95ms) (pid 59702)
3172
+ Compiled teabag/base/reporters_spec.js (148ms) (pid 59702)
3173
+ Compiled teabag/base/runner_spec.js (113ms) (pid 59702)
3174
+ Compiled teabag/base/teabag_spec.js (104ms) (pid 59702)
3175
+ Compiled teabag/jasmine/reporters/html_spec.js (102ms) (pid 59702)
3176
+ Compiled teabag/jasmine/runner_spec.js (123ms) (pid 59702)
3177
+ Compiled teabag/mocha/reporters/console_spec.js (93ms) (pid 59702)
3178
+ Compiled teabag/mocha/reporters/html_spec.js (94ms) (pid 59702)
3179
+ Compiled teabag/mocha/runner_spec.js (94ms) (pid 59702)
3180
+ Compiled phantomjs/runner.js (121ms) (pid 59702)
3181
+ Compiled teabag/phantomjs/runner_spec.js (295ms) (pid 59702)
3182
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1538.9ms)
3183
+ Completed 200 OK in 1549ms (Views: 1548.9ms)
3184
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-12 01:41:01 -0700
3185
+ Processing by Teabag::SpecController#index as */*
3186
+ Parameters: {"suite"=>"foo"}
3187
+ Compiled teabag/base/reporters/console_spec.js (153ms) (pid 59780)
3188
+ Compiled teabag/base/reporters/html_spec.js (96ms) (pid 59780)
3189
+ Compiled teabag/base/reporters_spec.js (147ms) (pid 59780)
3190
+ Compiled teabag/base/runner_spec.js (114ms) (pid 59780)
3191
+ Compiled teabag/base/teabag_spec.js (106ms) (pid 59780)
3192
+ Compiled teabag/jasmine/reporters/html_spec.js (103ms) (pid 59780)
3193
+ Compiled teabag/jasmine/runner_spec.js (125ms) (pid 59780)
3194
+ Compiled teabag/mocha/reporters/console_spec.js (94ms) (pid 59780)
3195
+ Compiled teabag/mocha/reporters/html_spec.js (94ms) (pid 59780)
3196
+ Compiled teabag/mocha/runner_spec.js (95ms) (pid 59780)
3197
+ Compiled phantomjs/runner.js (121ms) (pid 59780)
3198
+ Compiled teabag/phantomjs/runner_spec.js (294ms) (pid 59780)
3199
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1546.0ms)
3200
+ Completed 200 OK in 1555ms (Views: 1554.9ms)
3201
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-12 16:02:38 -0700
3202
+ Processing by Teabag::SpecController#index as */*
3203
+ Parameters: {"suite"=>"foo"}
3204
+ Compiled teabag/base/reporters/console_spec.js (156ms) (pid 69416)
3205
+ Compiled teabag/base/reporters/html_spec.js (97ms) (pid 69416)
3206
+ Compiled teabag/base/reporters_spec.js (150ms) (pid 69416)
3207
+ Compiled teabag/base/runner_spec.js (116ms) (pid 69416)
3208
+ Compiled teabag/base/teabag_spec.js (105ms) (pid 69416)
3209
+ Compiled teabag/jasmine/reporters/html_spec.js (104ms) (pid 69416)
3210
+ Compiled teabag/jasmine/runner_spec.js (124ms) (pid 69416)
3211
+ Compiled teabag/mocha/reporters/console_spec.js (95ms) (pid 69416)
3212
+ Compiled teabag/mocha/reporters/html_spec.js (94ms) (pid 69416)
3213
+ Compiled teabag/mocha/runner_spec.js (95ms) (pid 69416)
3214
+ Compiled phantomjs/runner.js (124ms) (pid 69416)
3215
+ Compiled teabag/phantomjs/runner_spec.js (300ms) (pid 69416)
3216
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1584.2ms)
3217
+ Completed 200 OK in 1596ms (Views: 1596.2ms)
3218
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-12 16:03:22 -0700
3219
+ Processing by Teabag::SpecController#index as */*
3220
+ Parameters: {"suite"=>"foo"}
3221
+ Compiled teabag/base/reporters/console_spec.js (141ms) (pid 69504)
3222
+ Compiled teabag/base/reporters/html_spec.js (99ms) (pid 69504)
3223
+ Compiled teabag/base/reporters_spec.js (149ms) (pid 69504)
3224
+ Compiled teabag/base/runner_spec.js (117ms) (pid 69504)
3225
+ Compiled teabag/base/teabag_spec.js (106ms) (pid 69504)
3226
+ Compiled teabag/jasmine/reporters/html_spec.js (104ms) (pid 69504)
3227
+ Compiled teabag/jasmine/runner_spec.js (152ms) (pid 69504)
3228
+ Compiled teabag/mocha/reporters/console_spec.js (101ms) (pid 69504)
3229
+ Compiled teabag/mocha/reporters/html_spec.js (95ms) (pid 69504)
3230
+ Compiled teabag/mocha/runner_spec.js (96ms) (pid 69504)
3231
+ Compiled phantomjs/runner.js (125ms) (pid 69504)
3232
+ Compiled teabag/phantomjs/runner_spec.js (298ms) (pid 69504)
3233
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1582.6ms)
3234
+ Completed 200 OK in 1592ms (Views: 1591.5ms)
3235
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-12 19:59:57 -0700
3236
+ Processing by Teabag::SpecController#index as */*
3237
+ Parameters: {"suite"=>"foo"}
3238
+ Compiled teabag/base/reporters/console_spec.js (139ms) (pid 76907)
3239
+ Compiled teabag/base/reporters/html_spec.js (98ms) (pid 76907)
3240
+ Compiled teabag/base/reporters_spec.js (178ms) (pid 76907)
3241
+ Compiled teabag/base/runner_spec.js (116ms) (pid 76907)
3242
+ Compiled teabag/base/teabag_spec.js (105ms) (pid 76907)
3243
+ Compiled teabag/jasmine/reporters/html_spec.js (106ms) (pid 76907)
3244
+ Compiled teabag/jasmine/runner_spec.js (129ms) (pid 76907)
3245
+ Compiled teabag/mocha/reporters/console_spec.js (129ms) (pid 76907)
3246
+ Compiled teabag/mocha/reporters/html_spec.js (95ms) (pid 76907)
3247
+ Compiled teabag/mocha/runner_spec.js (95ms) (pid 76907)
3248
+ Compiled phantomjs/runner.js (122ms) (pid 76907)
3249
+ Compiled teabag/phantomjs/runner_spec.js (271ms) (pid 76907)
3250
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1572.9ms)
3251
+ Completed 200 OK in 1584ms (Views: 1584.1ms)
3252
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-12 22:29:06 -0700
3253
+ Processing by Teabag::SpecController#index as */*
3254
+ Parameters: {"suite"=>"foo"}
3255
+ Compiled teabag/base/reporters/console_spec.js (141ms) (pid 79084)
3256
+ Compiled teabag/base/reporters/html_spec.js (98ms) (pid 79084)
3257
+ Compiled teabag/base/reporters_spec.js (190ms) (pid 79084)
3258
+ Compiled teabag/base/runner_spec.js (116ms) (pid 79084)
3259
+ Compiled teabag/base/teabag_spec.js (112ms) (pid 79084)
3260
+ Compiled teabag/jasmine/reporters/html_spec.js (110ms) (pid 79084)
3261
+ Compiled teabag/jasmine/runner_spec.js (125ms) (pid 79084)
3262
+ Compiled teabag/mocha/reporters/console_spec.js (124ms) (pid 79084)
3263
+ Compiled teabag/mocha/reporters/html_spec.js (97ms) (pid 79084)
3264
+ Compiled teabag/mocha/runner_spec.js (95ms) (pid 79084)
3265
+ Compiled phantomjs/runner.js (123ms) (pid 79084)
3266
+ Compiled teabag/phantomjs/runner_spec.js (271ms) (pid 79084)
3267
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1595.7ms)
3268
+ Completed 200 OK in 1608ms (Views: 1607.4ms)
3269
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-12 23:21:08 -0700
3270
+ Processing by Teabag::SpecController#index as */*
3271
+ Parameters: {"suite"=>"foo"}
3272
+ Compiled teabag/base/reporters/console_spec.js (140ms) (pid 81111)
3273
+ Compiled teabag/base/reporters/html_spec.js (97ms) (pid 81111)
3274
+ Compiled teabag/base/reporters_spec.js (162ms) (pid 81111)
3275
+ Compiled teabag/base/runner_spec.js (116ms) (pid 81111)
3276
+ Compiled teabag/base/teabag_spec.js (106ms) (pid 81111)
3277
+ Compiled teabag/jasmine/reporters/html_spec.js (105ms) (pid 81111)
3278
+ Compiled teabag/jasmine/runner_spec.js (125ms) (pid 81111)
3279
+ Compiled teabag/mocha/reporters/console_spec.js (101ms) (pid 81111)
3280
+ Compiled teabag/mocha/reporters/html_spec.js (95ms) (pid 81111)
3281
+ Compiled teabag/mocha/runner_spec.js (95ms) (pid 81111)
3282
+ Compiled phantomjs/runner.js (123ms) (pid 81111)
3283
+ Compiled teabag/phantomjs/runner_spec.js (298ms) (pid 81111)
3284
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1590.9ms)
3285
+ Completed 200 OK in 1600ms (Views: 1600.0ms)
3286
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-13 00:15:08 -0700
3287
+ Processing by Teabag::SpecController#index as */*
3288
+ Parameters: {"suite"=>"foo"}
3289
+ Compiled teabag/base/reporters/console_spec.js (139ms) (pid 82091)
3290
+ Compiled teabag/base/reporters/html_spec.js (99ms) (pid 82091)
3291
+ Compiled teabag/base/reporters_spec.js (165ms) (pid 82091)
3292
+ Compiled teabag/base/runner_spec.js (117ms) (pid 82091)
3293
+ Compiled teabag/base/teabag_spec.js (132ms) (pid 82091)
3294
+ Compiled phantomjs/runner.js (124ms) (pid 82091)
3295
+ Compiled teabag/phantomjs/runner_spec.js (278ms) (pid 82091)
3296
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1005.6ms)
3297
+ Completed 200 OK in 1016ms (Views: 1015.9ms)
3298
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-13 10:53:03 -0700
3299
+ Processing by Teabag::SpecController#index as */*
3300
+ Parameters: {"suite"=>"foo"}
3301
+ Compiled teabag/base/reporters/console_spec.js (211ms) (pid 83521)
3302
+ Compiled teabag/base/reporters/html_spec.js (100ms) (pid 83521)
3303
+ Compiled teabag/base/reporters_spec.js (164ms) (pid 83521)
3304
+ Compiled teabag/base/runner_spec.js (117ms) (pid 83521)
3305
+ Compiled teabag/base/teabag_spec.js (107ms) (pid 83521)
3306
+ Compiled phantomjs/runner.js (124ms) (pid 83521)
3307
+ Compiled teabag/phantomjs/runner_spec.js (310ms) (pid 83521)
3308
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1070.2ms)
3309
+ Completed 200 OK in 1082ms (Views: 1081.5ms)
3310
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-13 18:57:21 -0700
3311
+ Processing by Teabag::SpecController#index as */*
3312
+ Parameters: {"suite"=>"foo"}
3313
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (6.1ms)
3314
+ Completed 200 OK in 19ms (Views: 18.9ms)
3315
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-13 18:57:46 -0700
3316
+ Processing by Teabag::SpecController#index as */*
3317
+ Parameters: {"suite"=>"foo"}
3318
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (6.1ms)
3319
+ Completed 200 OK in 15ms (Views: 14.8ms)
3320
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-13 19:41:07 -0700
3321
+ Processing by Teabag::SpecController#index as */*
3322
+ Parameters: {"suite"=>"foo"}
3323
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (5.1ms)
3324
+ Completed 200 OK in 15ms (Views: 14.6ms)
3325
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-13 19:44:59 -0700
3326
+ Processing by Teabag::SpecController#index as */*
3327
+ Parameters: {"suite"=>"foo"}
3328
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (6.1ms)
3329
+ Completed 200 OK in 15ms (Views: 14.9ms)
3330
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-13 20:26:31 -0700
3331
+ Processing by Teabag::SpecController#index as */*
3332
+ Parameters: {"suite"=>"foo"}
3333
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (5.3ms)
3334
+ Completed 200 OK in 16ms (Views: 15.7ms)
3335
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-13 21:03:28 -0700
3336
+ Processing by Teabag::SpecController#index as */*
3337
+ Parameters: {"suite"=>"foo"}
3338
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (6.3ms)
3339
+ Completed 200 OK in 16ms (Views: 16.1ms)
3340
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-13 21:10:54 -0700
3341
+ Processing by Teabag::SpecController#index as */*
3342
+ Parameters: {"suite"=>"foo"}
3343
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (22.1ms)
3344
+ Completed 200 OK in 31ms (Views: 30.6ms)
3345
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-13 21:23:30 -0700
3346
+ Processing by Teabag::SpecController#index as */*
3347
+ Parameters: {"suite"=>"foo"}
3348
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (5.3ms)
3349
+ Completed 200 OK in 15ms (Views: 14.5ms)
3350
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-13 23:25:50 -0700
3351
+ Processing by Teabag::SpecController#index as */*
3352
+ Parameters: {"suite"=>"foo"}
3353
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (5.3ms)
3354
+ Completed 200 OK in 18ms (Views: 17.7ms)
3355
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-13 23:58:24 -0700
3356
+ Processing by Teabag::SpecController#index as */*
3357
+ Parameters: {"suite"=>"foo"}
3358
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (21.9ms)
3359
+ Completed 200 OK in 35ms (Views: 34.3ms)
3360
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-14 00:01:51 -0700
3361
+ Processing by Teabag::SpecController#index as */*
3362
+ Parameters: {"suite"=>"foo"}
3363
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (7.3ms)
3364
+ Completed 200 OK in 20ms (Views: 20.0ms)
3365
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-14 00:03:59 -0700
3366
+ Processing by Teabag::SpecController#index as */*
3367
+ Parameters: {"suite"=>"foo"}
3368
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (7.0ms)
3369
+ Completed 200 OK in 32ms (Views: 32.1ms)
3370
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-14 00:08:06 -0700
3371
+ Processing by Teabag::SpecController#index as */*
3372
+ Parameters: {"suite"=>"foo"}
3373
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (7.8ms)
3374
+ Completed 200 OK in 17ms (Views: 16.7ms)
3375
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-14 00:33:51 -0700
3376
+ Processing by Teabag::SpecController#index as */*
3377
+ Parameters: {"suite"=>"foo"}
3378
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (8.0ms)
3379
+ Completed 200 OK in 17ms (Views: 17.1ms)
3380
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-14 00:36:29 -0700
3381
+ Processing by Teabag::SpecController#index as */*
3382
+ Parameters: {"suite"=>"foo"}
3383
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (7.7ms)
3384
+ Completed 200 OK in 34ms (Views: 34.2ms)
3385
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-14 00:37:04 -0700
3386
+ Processing by Teabag::SpecController#index as */*
3387
+ Parameters: {"suite"=>"foo"}
3388
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (7.9ms)
3389
+ Completed 200 OK in 17ms (Views: 16.9ms)
3390
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-14 00:42:56 -0700
3391
+ Processing by Teabag::SpecController#index as */*
3392
+ Parameters: {"suite"=>"foo"}
3393
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (7.0ms)
3394
+ Completed 200 OK in 34ms (Views: 33.6ms)
3395
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-14 00:45:14 -0700
3396
+ Processing by Teabag::SpecController#index as */*
3397
+ Parameters: {"suite"=>"foo"}
3398
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (25.3ms)
3399
+ Completed 200 OK in 36ms (Views: 35.7ms)
3400
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-14 00:53:53 -0700
3401
+ Processing by Teabag::SpecController#index as */*
3402
+ Parameters: {"suite"=>"foo"}
3403
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (7.0ms)
3404
+ Completed 200 OK in 17ms (Views: 16.5ms)
3405
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-14 01:18:03 -0700
3406
+ Processing by Teabag::SpecController#index as */*
3407
+ Parameters: {"suite"=>"foo"}
3408
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (7.6ms)
3409
+ Completed 200 OK in 36ms (Views: 35.5ms)
3410
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-14 13:07:15 -0700
3411
+ Processing by Teabag::SpecController#index as */*
3412
+ Parameters: {"suite"=>"foo"}
3413
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (6.9ms)
3414
+ Completed 200 OK in 18ms (Views: 18.1ms)
3415
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-14 13:12:39 -0700
3416
+ Processing by Teabag::SpecController#index as */*
3417
+ Parameters: {"suite"=>"foo"}
3418
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (7.9ms)
3419
+ Completed 200 OK in 35ms (Views: 35.1ms)
3420
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-14 13:13:19 -0700
3421
+ Processing by Teabag::SpecController#index as */*
3422
+ Parameters: {"suite"=>"foo"}
3423
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (6.9ms)
3424
+ Completed 200 OK in 16ms (Views: 16.1ms)
3425
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-14 13:14:25 -0700
3426
+ Processing by Teabag::SpecController#index as */*
3427
+ Parameters: {"suite"=>"foo"}
3428
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (6.9ms)
3429
+ Completed 200 OK in 16ms (Views: 15.7ms)
3430
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-14 13:14:50 -0700
3431
+ Processing by Teabag::SpecController#index as */*
3432
+ Parameters: {"suite"=>"foo"}
3433
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (8.0ms)
3434
+ Completed 200 OK in 18ms (Views: 17.5ms)
3435
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-14 13:16:34 -0700
3436
+ Processing by Teabag::SpecController#index as */*
3437
+ Parameters: {"suite"=>"foo"}
3438
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (6.9ms)
3439
+ Completed 200 OK in 16ms (Views: 15.8ms)
3440
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-14 13:20:42 -0700
3441
+ Processing by Teabag::SpecController#index as */*
3442
+ Parameters: {"suite"=>"foo"}
3443
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (6.8ms)
3444
+ Completed 200 OK in 16ms (Views: 15.5ms)
3445
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-14 13:21:09 -0700
3446
+ Processing by Teabag::SpecController#index as */*
3447
+ Parameters: {"suite"=>"foo"}
3448
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (7.0ms)
3449
+ Completed 200 OK in 16ms (Views: 16.0ms)
3450
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-14 13:21:23 -0700
3451
+ Processing by Teabag::SpecController#index as */*
3452
+ Parameters: {"suite"=>"foo"}
3453
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (7.3ms)
3454
+ Completed 200 OK in 16ms (Views: 15.9ms)
3455
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-14 13:21:52 -0700
3456
+ Processing by Teabag::SpecController#index as */*
3457
+ Parameters: {"suite"=>"foo"}
3458
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (6.7ms)
3459
+ Completed 200 OK in 33ms (Views: 32.8ms)