teabag 0.3.3 → 0.3.4
Sign up to get free protection for your applications and to get access to all the features.
- data/app/views/teabag/spec/index.html.erb +11 -6
- data/lib/teabag/engine.rb +20 -0
- data/lib/teabag/version.rb +1 -1
- data/spec/dummy/log/development.log +2757 -0
- data/spec/dummy/tmp/cache/assets/C4E/9B0/sprockets%2Fa807397434c9262c3d62da3e91152184 +0 -0
- data/spec/dummy/tmp/cache/assets/C59/250/sprockets%2Fa80d3fe493d2476e58c4323996064512 +0 -0
- data/spec/dummy/tmp/cache/assets/C75/D50/sprockets%2F5302968a40e08d2c011aa38666d273f6 +0 -0
- data/spec/dummy/tmp/cache/assets/C89/700/sprockets%2F259935a7704fef0069303ea63fa89408 +0 -0
- data/spec/dummy/tmp/cache/assets/C8A/460/sprockets%2F77bffd9959420103906722b404ae8d59 +0 -0
- data/spec/dummy/tmp/cache/assets/C91/FA0/sprockets%2F2eb81283f5789ae91a69344552db3856 +0 -0
- data/spec/dummy/tmp/cache/assets/CAA/0C0/sprockets%2F057b0ce384f16d9202ae84473436cc35 +0 -0
- data/spec/dummy/tmp/cache/assets/CD9/DD0/sprockets%2Fe5774759168a731da1c1149ecf0e1b03 +0 -0
- data/spec/dummy/tmp/cache/assets/CDB/630/sprockets%2Ffd1626fe1016c81d57217f7f80c4370a +0 -0
- data/spec/dummy/tmp/cache/assets/CE1/250/sprockets%2Ffdc680a0d4383d37910e549ca96f5303 +0 -0
- data/spec/dummy/tmp/cache/assets/CE1/730/sprockets%2Fa1678837061e18d7aca0286c07acf676 +0 -0
- data/spec/dummy/tmp/cache/assets/CE3/1F0/sprockets%2Fe69a515d3a9d14c669be8871012a7d07 +0 -0
- data/spec/dummy/tmp/cache/assets/CE9/9E0/sprockets%2F135480d497ed7e4884462dc0ef0b80d7 +0 -0
- data/spec/dummy/tmp/cache/assets/D00/110/sprockets%2F6a6353b7723a8b21708e0fbfe04bd422 +0 -0
- data/spec/dummy/tmp/cache/assets/D35/F00/sprockets%2F8e7f22358123b7eb5e21d17f442ce0ac +0 -0
- data/spec/dummy/tmp/cache/assets/D45/C30/sprockets%2Fcc744877558178a3adb77c441cadce70 +0 -0
- data/spec/dummy/tmp/cache/assets/D49/1F0/sprockets%2F773b56f87127c6605e7d1d3faf2b6af6 +0 -0
- data/spec/dummy/tmp/cache/assets/D49/A10/sprockets%2Fc4656bd995a6f297c26d19b13aadb963 +0 -0
- data/spec/dummy/tmp/cache/assets/D50/D70/sprockets%2Fe2a3e6c95b11e0801a4eebae3a026026 +0 -0
- data/spec/dummy/tmp/cache/assets/D6A/950/sprockets%2F429b1806cb7580ebf29f9a12c33cbea6 +0 -0
- data/spec/dummy/tmp/cache/assets/D6C/9C0/sprockets%2Fd66bdf546164ba223e20f56b5591ddfd +0 -0
- data/spec/dummy/tmp/cache/assets/DA5/0A0/sprockets%2F7a4b5928cec69ab65afff309a04d6b47 +0 -0
- data/spec/dummy/tmp/cache/assets/DB5/040/sprockets%2F9a9da5df88713663b9fbc945facca891 +0 -0
- data/spec/dummy/tmp/cache/assets/DF6/0E0/sprockets%2F85b10db6e1afe643aba6d396abdd77f0 +0 -0
- data/spec/dummy/tmp/cache/assets/DFC/C30/sprockets%2Fb50a07cb30b0bd0eec8e98e5de79d65d +0 -0
- metadata +4 -4
@@ -5,14 +5,19 @@
|
|
5
5
|
<%= stylesheet_link_tag *@suite.stylesheets %>
|
6
6
|
<%= javascript_include_tag *@suite.javascripts %>
|
7
7
|
<%= csrf_meta_tags %>
|
8
|
+
<script type="text/javascript">
|
9
|
+
window.originalOnload = window.onload
|
10
|
+
window.onload = function() {
|
11
|
+
if (window.originalOnload) window.originalOnload();
|
12
|
+
|
13
|
+
// start the execution of the specs
|
14
|
+
Teabag.version = "<%= Teabag::VERSION %>";
|
15
|
+
Teabag.fixturePath = "<%= Teabag.configuration.mount_at %>/fixtures";
|
16
|
+
Teabag.execute()
|
17
|
+
}
|
18
|
+
</script>
|
8
19
|
</head>
|
9
20
|
<body>
|
10
21
|
<div id="teabag-fixtures"></div>
|
11
|
-
|
12
|
-
<script type="text/javascript">
|
13
|
-
Teabag.version = "<%= Teabag::VERSION %>";
|
14
|
-
Teabag.fixturePath = "<%= Teabag.configuration.mount_at %>/fixtures";
|
15
|
-
Teabag.execute()
|
16
|
-
</script>
|
17
22
|
</body>
|
18
23
|
</html>
|
data/lib/teabag/engine.rb
CHANGED
@@ -11,6 +11,26 @@ module Teabag
|
|
11
11
|
Teabag.configuration.asset_paths.each do |path|
|
12
12
|
app.config.assets.paths << Teabag.configuration.root.join(path).to_s
|
13
13
|
end
|
14
|
+
|
15
|
+
# todo: temporary bug fix for rails including more files that is should -- adds a flatten before uniq.
|
16
|
+
module ::Sprockets::Helpers::RailsHelper
|
17
|
+
def javascript_include_tag(*sources)
|
18
|
+
options = sources.extract_options!
|
19
|
+
debug = options.key?(:debug) ? options.delete(:debug) : debug_assets?
|
20
|
+
body = options.key?(:body) ? options.delete(:body) : false
|
21
|
+
digest = options.key?(:digest) ? options.delete(:digest) : digest_assets?
|
22
|
+
|
23
|
+
sources.collect do |source|
|
24
|
+
if debug && asset = asset_paths.asset_for(source, 'js')
|
25
|
+
asset.to_a.map { |dep|
|
26
|
+
super(dep.pathname.to_s, { :src => path_to_asset(dep, :ext => 'js', :body => true, :digest => digest) }.merge!(options))
|
27
|
+
}
|
28
|
+
else
|
29
|
+
super(source.to_s, { :src => path_to_asset(source, :ext => 'js', :body => body, :digest => digest) }.merge!(options))
|
30
|
+
end
|
31
|
+
end.flatten.uniq.join("\n").html_safe
|
32
|
+
end
|
33
|
+
end
|
14
34
|
end
|
15
35
|
end
|
16
36
|
end
|
data/lib/teabag/version.rb
CHANGED
@@ -312537,3 +312537,2760 @@ Served asset /teabag/mocha/reporters/html_mspec.js - 200 OK (3ms)
|
|
312537
312537
|
|
312538
312538
|
Started GET "/assets/teabag/mocha/runner_mspec.js" for 127.0.0.1 at 2012-12-16 20:18:53 -0700
|
312539
312539
|
Served asset /teabag/mocha/runner_mspec.js - 200 OK (3ms)
|
312540
|
+
|
312541
|
+
|
312542
|
+
Started GET "/assets/teabag-index.js" for 127.0.0.1 at 2012-12-20 17:20:24 -0700
|
312543
|
+
Error compiling asset teabag-index.js:
|
312544
|
+
Sprockets::FileNotFound: couldn't find file 'test'
|
312545
|
+
(in /Users/jejacks0n/Projects/teabag/app/assets/javascripts/teabag-index.js.erb)
|
312546
|
+
Served asset /teabag-index.js - 500 Internal Server Error
|
312547
|
+
|
312548
|
+
|
312549
|
+
|
312550
|
+
|
312551
|
+
Started GET "/assets/teabag-index.js" for 127.0.0.1 at 2012-12-20 17:20:46 -0700
|
312552
|
+
Error compiling asset teabag-index.js:
|
312553
|
+
Sprockets::FileNotFound: couldn't find file 'test'
|
312554
|
+
(in /Users/jejacks0n/Projects/teabag/app/assets/javascripts/teabag-index.js.erb)
|
312555
|
+
Served asset /teabag-index.js - 500 Internal Server Error
|
312556
|
+
|
312557
|
+
|
312558
|
+
|
312559
|
+
|
312560
|
+
Started GET "/assets/teabag-index.js" for 127.0.0.1 at 2012-12-20 17:20:57 -0700
|
312561
|
+
Error compiling asset teabag-index.js:
|
312562
|
+
Sprockets::FileNotFound: couldn't find file 'test'
|
312563
|
+
(in /Users/jejacks0n/Projects/teabag/app/assets/javascripts/teabag-index.js.erb)
|
312564
|
+
Served asset /teabag-index.js - 500 Internal Server Error
|
312565
|
+
|
312566
|
+
|
312567
|
+
|
312568
|
+
|
312569
|
+
Started GET "/assets/teabag-index.js?suite=default" for 127.0.0.1 at 2012-12-20 17:22:12 -0700
|
312570
|
+
Error compiling asset teabag-index.js:
|
312571
|
+
Sprockets::FileNotFound: couldn't find file 'test'
|
312572
|
+
(in /Users/jejacks0n/Projects/teabag/app/assets/javascripts/teabag-index.js.erb)
|
312573
|
+
Served asset /teabag-index.js - 500 Internal Server Error
|
312574
|
+
|
312575
|
+
|
312576
|
+
|
312577
|
+
|
312578
|
+
Started GET "/assets/teabag-index.js?suite=default" for 127.0.0.1 at 2012-12-20 17:25:55 -0700
|
312579
|
+
Error compiling asset teabag-index.js:
|
312580
|
+
Errno::ENOENT: No such file or directory - /Users/jejacks0n/Projects/teabag/app/assets/javascripts/teabag-index.js.erb
|
312581
|
+
Served asset /teabag-index.js - 500 Internal Server Error
|
312582
|
+
|
312583
|
+
|
312584
|
+
|
312585
|
+
|
312586
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 17:33:25 -0700
|
312587
|
+
Processing by Teabag::SpecController#index as HTML
|
312588
|
+
Parameters: {"suite"=>nil}
|
312589
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (9.5ms)
|
312590
|
+
Completed 200 OK in 19ms (Views: 19.1ms)
|
312591
|
+
|
312592
|
+
|
312593
|
+
Started GET "/teabag.js" for 127.0.0.1 at 2012-12-20 17:33:25 -0700
|
312594
|
+
Processing by Teabag::SpecController#index as JS
|
312595
|
+
Parameters: {"suite"=>nil}
|
312596
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb (1.6ms)
|
312597
|
+
Completed 500 Internal Server Error in 4ms
|
312598
|
+
|
312599
|
+
ActionView::Template::Error (undefined method `require_asset' for #<Sprockets::Environment:0x007fd9295f3d90>):
|
312600
|
+
1: <%
|
312601
|
+
2: env = Rails.application.assets
|
312602
|
+
3: env.require_asset 'test'
|
312603
|
+
4: %>
|
312604
|
+
/Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb:3:in `___sers_jejacks_n__rojects_teabag_app_views_teabag_spec_index_js_erb__3005014626724433063_70285343104940'
|
312605
|
+
actionpack (3.2.9) lib/action_view/template.rb:145:in `block in render'
|
312606
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:125:in `instrument'
|
312607
|
+
actionpack (3.2.9) lib/action_view/template.rb:143:in `render'
|
312608
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
312609
|
+
actionpack (3.2.9) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
312610
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
|
312611
|
+
activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
312612
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
|
312613
|
+
actionpack (3.2.9) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
312614
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
312615
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
312616
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
312617
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
312618
|
+
actionpack (3.2.9) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
312619
|
+
actionpack (3.2.9) lib/action_view/renderer/renderer.rb:17:in `render'
|
312620
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
312621
|
+
actionpack (3.2.9) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
312622
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
312623
|
+
actionpack (3.2.9) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
312624
|
+
actionpack (3.2.9) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
312625
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:88:in `render'
|
312626
|
+
actionpack (3.2.9) lib/action_controller/metal/rendering.rb:16:in `render'
|
312627
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
312628
|
+
activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
312629
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
312630
|
+
activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
312631
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
312632
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
312633
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
312634
|
+
actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
312635
|
+
actionpack (3.2.9) lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
|
312636
|
+
/Users/jejacks0n/Projects/teabag/app/controllers/teabag/spec_controller.rb:12:in `index'
|
312637
|
+
actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
312638
|
+
actionpack (3.2.9) lib/abstract_controller/base.rb:167:in `process_action'
|
312639
|
+
actionpack (3.2.9) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
312640
|
+
actionpack (3.2.9) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
312641
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:403:in `_run__4520719786558496898__process_action__3363161276113687580__callbacks'
|
312642
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
|
312643
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
312644
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
312645
|
+
actionpack (3.2.9) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
312646
|
+
actionpack (3.2.9) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
312647
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
312648
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
|
312649
|
+
activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
312650
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
|
312651
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
312652
|
+
actionpack (3.2.9) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
312653
|
+
actionpack (3.2.9) lib/abstract_controller/base.rb:121:in `process'
|
312654
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:45:in `process'
|
312655
|
+
actionpack (3.2.9) lib/action_controller/metal.rb:203:in `dispatch'
|
312656
|
+
actionpack (3.2.9) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
312657
|
+
actionpack (3.2.9) lib/action_controller/metal.rb:246:in `block in action'
|
312658
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
312659
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
312660
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
312661
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
312662
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
312663
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
312664
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
312665
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
312666
|
+
railties (3.2.9) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
312667
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
312668
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
312669
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
312670
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
312671
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
312672
|
+
rack (1.4.1) lib/rack/etag.rb:23:in `call'
|
312673
|
+
rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
|
312674
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/head.rb:14:in `call'
|
312675
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
312676
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
312677
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
|
312678
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
|
312679
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
312680
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
312681
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `_run__468444990488711192__call__2795777800140921151__callbacks'
|
312682
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
|
312683
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
312684
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
312685
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
312686
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
312687
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
312688
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
312689
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
312690
|
+
railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
|
312691
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
|
312692
|
+
activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
|
312693
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
|
312694
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
312695
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
312696
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
312697
|
+
activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
312698
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
312699
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
|
312700
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
312701
|
+
railties (3.2.9) lib/rails/application.rb:223:in `call'
|
312702
|
+
railties (3.2.9) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
312703
|
+
rack (1.4.1) lib/rack/lint.rb:48:in `_call'
|
312704
|
+
rack (1.4.1) lib/rack/lint.rb:36:in `call'
|
312705
|
+
rack (1.4.1) lib/rack/showexceptions.rb:24:in `call'
|
312706
|
+
rack (1.4.1) lib/rack/commonlogger.rb:20:in `call'
|
312707
|
+
rack (1.4.1) lib/rack/chunked.rb:43:in `call'
|
312708
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
312709
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
312710
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
312711
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
312712
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
312713
|
+
|
312714
|
+
|
312715
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
|
312716
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
|
312717
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.3ms)
|
312718
|
+
|
312719
|
+
|
312720
|
+
Started GET "/assets/teabag.css?body=1" for 127.0.0.1 at 2012-12-20 17:33:25 -0700
|
312721
|
+
Served asset /teabag.css - 200 OK (3ms)
|
312722
|
+
|
312723
|
+
|
312724
|
+
Started GET "/assets/teabag-index.js" for 127.0.0.1 at 2012-12-20 17:33:25 -0700
|
312725
|
+
Served asset /teabag-index.js - 404 Not Found (32ms)
|
312726
|
+
|
312727
|
+
ActionController::RoutingError (No route matches [GET] "/assets/teabag-index.js"):
|
312728
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
312729
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
312730
|
+
railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
|
312731
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
|
312732
|
+
activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
|
312733
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
|
312734
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
312735
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
312736
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
312737
|
+
activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
312738
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
312739
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
|
312740
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
312741
|
+
railties (3.2.9) lib/rails/application.rb:223:in `call'
|
312742
|
+
railties (3.2.9) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
312743
|
+
rack (1.4.1) lib/rack/lint.rb:48:in `_call'
|
312744
|
+
rack (1.4.1) lib/rack/lint.rb:36:in `call'
|
312745
|
+
rack (1.4.1) lib/rack/showexceptions.rb:24:in `call'
|
312746
|
+
rack (1.4.1) lib/rack/commonlogger.rb:20:in `call'
|
312747
|
+
rack (1.4.1) lib/rack/chunked.rb:43:in `call'
|
312748
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
312749
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
312750
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
312751
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
312752
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
312753
|
+
|
312754
|
+
|
312755
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.2ms)
|
312756
|
+
|
312757
|
+
|
312758
|
+
Started GET "/teabag.js" for 127.0.0.1 at 2012-12-20 17:33:27 -0700
|
312759
|
+
Processing by Teabag::SpecController#index as JS
|
312760
|
+
Parameters: {"suite"=>nil}
|
312761
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb (1.1ms)
|
312762
|
+
Completed 500 Internal Server Error in 3ms
|
312763
|
+
|
312764
|
+
ActionView::Template::Error (undefined method `require_asset' for #<Sprockets::Environment:0x007fd9295f3d90>):
|
312765
|
+
1: <%
|
312766
|
+
2: env = Rails.application.assets
|
312767
|
+
3: env.require_asset 'test'
|
312768
|
+
4: %>
|
312769
|
+
/Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb:3:in `___sers_jejacks_n__rojects_teabag_app_views_teabag_spec_index_js_erb__3005014626724433063_70285343104940'
|
312770
|
+
actionpack (3.2.9) lib/action_view/template.rb:145:in `block in render'
|
312771
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:125:in `instrument'
|
312772
|
+
actionpack (3.2.9) lib/action_view/template.rb:143:in `render'
|
312773
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
312774
|
+
actionpack (3.2.9) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
312775
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
|
312776
|
+
activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
312777
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
|
312778
|
+
actionpack (3.2.9) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
312779
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
312780
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
312781
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
312782
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
312783
|
+
actionpack (3.2.9) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
312784
|
+
actionpack (3.2.9) lib/action_view/renderer/renderer.rb:17:in `render'
|
312785
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
312786
|
+
actionpack (3.2.9) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
312787
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
312788
|
+
actionpack (3.2.9) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
312789
|
+
actionpack (3.2.9) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
312790
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:88:in `render'
|
312791
|
+
actionpack (3.2.9) lib/action_controller/metal/rendering.rb:16:in `render'
|
312792
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
312793
|
+
activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
312794
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
312795
|
+
activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
312796
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
312797
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
312798
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
312799
|
+
actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
312800
|
+
actionpack (3.2.9) lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
|
312801
|
+
/Users/jejacks0n/Projects/teabag/app/controllers/teabag/spec_controller.rb:12:in `index'
|
312802
|
+
actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
312803
|
+
actionpack (3.2.9) lib/abstract_controller/base.rb:167:in `process_action'
|
312804
|
+
actionpack (3.2.9) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
312805
|
+
actionpack (3.2.9) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
312806
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:403:in `_run__4520719786558496898__process_action__3363161276113687580__callbacks'
|
312807
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
|
312808
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
312809
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
312810
|
+
actionpack (3.2.9) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
312811
|
+
actionpack (3.2.9) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
312812
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
312813
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
|
312814
|
+
activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
312815
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
|
312816
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
312817
|
+
actionpack (3.2.9) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
312818
|
+
actionpack (3.2.9) lib/abstract_controller/base.rb:121:in `process'
|
312819
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:45:in `process'
|
312820
|
+
actionpack (3.2.9) lib/action_controller/metal.rb:203:in `dispatch'
|
312821
|
+
actionpack (3.2.9) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
312822
|
+
actionpack (3.2.9) lib/action_controller/metal.rb:246:in `block in action'
|
312823
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
312824
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
312825
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
312826
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
312827
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
312828
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
312829
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
312830
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
312831
|
+
railties (3.2.9) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
312832
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
312833
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
312834
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
312835
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
312836
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
312837
|
+
rack (1.4.1) lib/rack/etag.rb:23:in `call'
|
312838
|
+
rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
|
312839
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/head.rb:14:in `call'
|
312840
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
312841
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
312842
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
|
312843
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
|
312844
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
312845
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
312846
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `_run__468444990488711192__call__2795777800140921151__callbacks'
|
312847
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
|
312848
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
312849
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
312850
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
312851
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
312852
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
312853
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
312854
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
312855
|
+
railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
|
312856
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
|
312857
|
+
activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
|
312858
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
|
312859
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
312860
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
312861
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
312862
|
+
activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
312863
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
312864
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
|
312865
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
312866
|
+
railties (3.2.9) lib/rails/application.rb:223:in `call'
|
312867
|
+
railties (3.2.9) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
312868
|
+
rack (1.4.1) lib/rack/lint.rb:48:in `_call'
|
312869
|
+
rack (1.4.1) lib/rack/lint.rb:36:in `call'
|
312870
|
+
rack (1.4.1) lib/rack/showexceptions.rb:24:in `call'
|
312871
|
+
rack (1.4.1) lib/rack/commonlogger.rb:20:in `call'
|
312872
|
+
rack (1.4.1) lib/rack/chunked.rb:43:in `call'
|
312873
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
312874
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
312875
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
312876
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
312877
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
312878
|
+
|
312879
|
+
|
312880
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
|
312881
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
|
312882
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.5ms)
|
312883
|
+
|
312884
|
+
|
312885
|
+
Started GET "/teabag.js" for 127.0.0.1 at 2012-12-20 17:33:39 -0700
|
312886
|
+
Processing by Teabag::SpecController#index as JS
|
312887
|
+
Parameters: {"suite"=>nil}
|
312888
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb (72011.3ms)
|
312889
|
+
Completed 500 Internal Server Error in 72013ms
|
312890
|
+
|
312891
|
+
ActionView::Template::Error (undefined method `require_asset' for #<Sprockets::Environment:0x007fd9295f3d90>):
|
312892
|
+
1: <%
|
312893
|
+
2: env = Rails.application.assets
|
312894
|
+
3: env.find_asset(path)
|
312895
|
+
4: #env.require_asset 'test'
|
312896
|
+
5: %>
|
312897
|
+
/Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb:3:in `___sers_jejacks_n__rojects_teabag_app_views_teabag_spec_index_js_erb__3005014626724433063_70285343104940'
|
312898
|
+
actionpack (3.2.9) lib/action_view/template.rb:145:in `block in render'
|
312899
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:125:in `instrument'
|
312900
|
+
actionpack (3.2.9) lib/action_view/template.rb:143:in `render'
|
312901
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
312902
|
+
actionpack (3.2.9) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
312903
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
|
312904
|
+
activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
312905
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
|
312906
|
+
actionpack (3.2.9) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
312907
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
312908
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
312909
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
312910
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
312911
|
+
actionpack (3.2.9) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
312912
|
+
actionpack (3.2.9) lib/action_view/renderer/renderer.rb:17:in `render'
|
312913
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
312914
|
+
actionpack (3.2.9) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
312915
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
312916
|
+
actionpack (3.2.9) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
312917
|
+
actionpack (3.2.9) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
312918
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:88:in `render'
|
312919
|
+
actionpack (3.2.9) lib/action_controller/metal/rendering.rb:16:in `render'
|
312920
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
312921
|
+
activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
312922
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
312923
|
+
activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
312924
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
312925
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
312926
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
312927
|
+
actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
312928
|
+
actionpack (3.2.9) lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
|
312929
|
+
/Users/jejacks0n/Projects/teabag/app/controllers/teabag/spec_controller.rb:12:in `index'
|
312930
|
+
actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
312931
|
+
actionpack (3.2.9) lib/abstract_controller/base.rb:167:in `process_action'
|
312932
|
+
actionpack (3.2.9) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
312933
|
+
actionpack (3.2.9) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
312934
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:403:in `_run__4520719786558496898__process_action__3363161276113687580__callbacks'
|
312935
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
|
312936
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
312937
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
312938
|
+
actionpack (3.2.9) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
312939
|
+
actionpack (3.2.9) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
312940
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
312941
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
|
312942
|
+
activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
312943
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
|
312944
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
312945
|
+
actionpack (3.2.9) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
312946
|
+
actionpack (3.2.9) lib/abstract_controller/base.rb:121:in `process'
|
312947
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:45:in `process'
|
312948
|
+
actionpack (3.2.9) lib/action_controller/metal.rb:203:in `dispatch'
|
312949
|
+
actionpack (3.2.9) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
312950
|
+
actionpack (3.2.9) lib/action_controller/metal.rb:246:in `block in action'
|
312951
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
312952
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
312953
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
312954
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
312955
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
312956
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
312957
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
312958
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
312959
|
+
railties (3.2.9) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
312960
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
312961
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
312962
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
312963
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
312964
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
312965
|
+
rack (1.4.1) lib/rack/etag.rb:23:in `call'
|
312966
|
+
rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
|
312967
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/head.rb:14:in `call'
|
312968
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
312969
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
312970
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
|
312971
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
|
312972
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
312973
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
312974
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `_run__468444990488711192__call__2795777800140921151__callbacks'
|
312975
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
|
312976
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
312977
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
312978
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
312979
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
312980
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
312981
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
312982
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
312983
|
+
railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
|
312984
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
|
312985
|
+
activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
|
312986
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
|
312987
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
312988
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
312989
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
312990
|
+
activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
312991
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
312992
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
|
312993
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
312994
|
+
railties (3.2.9) lib/rails/application.rb:223:in `call'
|
312995
|
+
railties (3.2.9) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
312996
|
+
rack (1.4.1) lib/rack/lint.rb:48:in `_call'
|
312997
|
+
rack (1.4.1) lib/rack/lint.rb:36:in `call'
|
312998
|
+
rack (1.4.1) lib/rack/showexceptions.rb:24:in `call'
|
312999
|
+
rack (1.4.1) lib/rack/commonlogger.rb:20:in `call'
|
313000
|
+
rack (1.4.1) lib/rack/chunked.rb:43:in `call'
|
313001
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
313002
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
313003
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
313004
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
313005
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
313006
|
+
|
313007
|
+
|
313008
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
|
313009
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
|
313010
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.3ms)
|
313011
|
+
|
313012
|
+
|
313013
|
+
Started GET "/teabag.js" for 127.0.0.1 at 2012-12-20 17:34:53 -0700
|
313014
|
+
Processing by Teabag::SpecController#index as JS
|
313015
|
+
Parameters: {"suite"=>nil}
|
313016
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb (4.9ms)
|
313017
|
+
Completed 500 Internal Server Error in 7ms
|
313018
|
+
|
313019
|
+
ActionView::Template::Error (undefined local variable or method `path' for #<#<Class:0x007fd92fdfbf78>:0x007fd9290b2110>):
|
313020
|
+
1: <%
|
313021
|
+
2: env = Rails.application.assets
|
313022
|
+
3: env.find_asset(path)
|
313023
|
+
4: #env.require_asset 'test'
|
313024
|
+
5: %>
|
313025
|
+
/Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb:3:in `___sers_jejacks_n__rojects_teabag_app_views_teabag_spec_index_js_erb__3005014626724433063_70285336609140'
|
313026
|
+
actionpack (3.2.9) lib/action_view/template.rb:145:in `block in render'
|
313027
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:125:in `instrument'
|
313028
|
+
actionpack (3.2.9) lib/action_view/template.rb:143:in `render'
|
313029
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
313030
|
+
actionpack (3.2.9) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
313031
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
|
313032
|
+
activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
313033
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
|
313034
|
+
actionpack (3.2.9) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
313035
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
313036
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
313037
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
313038
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
313039
|
+
actionpack (3.2.9) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
313040
|
+
actionpack (3.2.9) lib/action_view/renderer/renderer.rb:17:in `render'
|
313041
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
313042
|
+
actionpack (3.2.9) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
313043
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
313044
|
+
actionpack (3.2.9) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
313045
|
+
actionpack (3.2.9) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
313046
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:88:in `render'
|
313047
|
+
actionpack (3.2.9) lib/action_controller/metal/rendering.rb:16:in `render'
|
313048
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
313049
|
+
activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
313050
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
313051
|
+
activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
313052
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
313053
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
313054
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
313055
|
+
actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
313056
|
+
actionpack (3.2.9) lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
|
313057
|
+
/Users/jejacks0n/Projects/teabag/app/controllers/teabag/spec_controller.rb:12:in `index'
|
313058
|
+
actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
313059
|
+
actionpack (3.2.9) lib/abstract_controller/base.rb:167:in `process_action'
|
313060
|
+
actionpack (3.2.9) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
313061
|
+
actionpack (3.2.9) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
313062
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:403:in `_run__4520719786558496898__process_action__3363161276113687580__callbacks'
|
313063
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
|
313064
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
313065
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
313066
|
+
actionpack (3.2.9) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
313067
|
+
actionpack (3.2.9) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
313068
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
313069
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
|
313070
|
+
activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
313071
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
|
313072
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
313073
|
+
actionpack (3.2.9) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
313074
|
+
actionpack (3.2.9) lib/abstract_controller/base.rb:121:in `process'
|
313075
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:45:in `process'
|
313076
|
+
actionpack (3.2.9) lib/action_controller/metal.rb:203:in `dispatch'
|
313077
|
+
actionpack (3.2.9) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
313078
|
+
actionpack (3.2.9) lib/action_controller/metal.rb:246:in `block in action'
|
313079
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
313080
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
313081
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
313082
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
313083
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
313084
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
313085
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
313086
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
313087
|
+
railties (3.2.9) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
313088
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
313089
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
313090
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
313091
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
313092
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
313093
|
+
rack (1.4.1) lib/rack/etag.rb:23:in `call'
|
313094
|
+
rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
|
313095
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/head.rb:14:in `call'
|
313096
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
313097
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
313098
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
|
313099
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
|
313100
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
313101
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
313102
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `_run__468444990488711192__call__2795777800140921151__callbacks'
|
313103
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
|
313104
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
313105
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
313106
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
313107
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
313108
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
313109
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
313110
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
313111
|
+
railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
|
313112
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
|
313113
|
+
activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
|
313114
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
|
313115
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
313116
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
313117
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
313118
|
+
activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
313119
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
313120
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
|
313121
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
313122
|
+
railties (3.2.9) lib/rails/application.rb:223:in `call'
|
313123
|
+
railties (3.2.9) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
313124
|
+
rack (1.4.1) lib/rack/lint.rb:48:in `_call'
|
313125
|
+
rack (1.4.1) lib/rack/lint.rb:36:in `call'
|
313126
|
+
rack (1.4.1) lib/rack/showexceptions.rb:24:in `call'
|
313127
|
+
rack (1.4.1) lib/rack/commonlogger.rb:20:in `call'
|
313128
|
+
rack (1.4.1) lib/rack/chunked.rb:43:in `call'
|
313129
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
313130
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
313131
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
313132
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
313133
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
313134
|
+
|
313135
|
+
|
313136
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
|
313137
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
|
313138
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.3ms)
|
313139
|
+
|
313140
|
+
|
313141
|
+
Started GET "/teabag.js" for 127.0.0.1 at 2012-12-20 17:35:01 -0700
|
313142
|
+
Processing by Teabag::SpecController#index as JS
|
313143
|
+
Parameters: {"suite"=>nil}
|
313144
|
+
Compiled teabag-jasmine.js (20ms) (pid 8404)
|
313145
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb (36.2ms)
|
313146
|
+
Completed 200 OK in 38ms (Views: 37.9ms)
|
313147
|
+
|
313148
|
+
|
313149
|
+
Started GET "/teabag.js" for 127.0.0.1 at 2012-12-20 17:36:14 -0700
|
313150
|
+
Processing by Teabag::SpecController#index as JS
|
313151
|
+
Parameters: {"suite"=>nil}
|
313152
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb (1.5ms)
|
313153
|
+
Completed 200 OK in 4ms (Views: 3.2ms)
|
313154
|
+
|
313155
|
+
|
313156
|
+
Started GET "/teabag.js" for 127.0.0.1 at 2012-12-20 17:36:34 -0700
|
313157
|
+
Processing by Teabag::SpecController#index as JS
|
313158
|
+
Parameters: {"suite"=>nil}
|
313159
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb (0.7ms)
|
313160
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
313161
|
+
|
313162
|
+
|
313163
|
+
Started GET "/teabag.js" for 127.0.0.1 at 2012-12-20 17:37:30 -0700
|
313164
|
+
Processing by Teabag::SpecController#index as JS
|
313165
|
+
Parameters: {"suite"=>nil}
|
313166
|
+
ERROR: compiling ___sers_jejacks_n__rojects_teabag_app_views_teabag_spec_index_js_erb__3005014626724433063_70285352181440 RAISED /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb:4: syntax error, unexpected ')', expecting keyword_do_cond or ';' or '\n'
|
313167
|
+
...or file in @suite.javascripts );@output_buffer.safe_concat('
|
313168
|
+
... ^
|
313169
|
+
/Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb:6: syntax error, unexpected keyword_end
|
313170
|
+
');@output_buffer.append= ( end );@output_buffer.safe_concat('
|
313171
|
+
^
|
313172
|
+
/Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb:8: syntax error, unexpected keyword_ensure, expecting ')'
|
313173
|
+
/Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb:10: syntax error, unexpected keyword_end, expecting ')'
|
313174
|
+
Function body: def ___sers_jejacks_n__rojects_teabag_app_views_teabag_spec_index_js_erb__3005014626724433063_70285352181440(local_assigns, output_buffer)
|
313175
|
+
_old_virtual_path, @virtual_path = @virtual_path, "teabag/spec/index";_old_output_buffer = @output_buffer;;@output_buffer = output_buffer || ActionView::OutputBuffer.new;
|
313176
|
+
env = Rails.application.assets
|
313177
|
+
|
313178
|
+
@output_buffer.append= ( for file in @suite.javascripts );@output_buffer.safe_concat('
|
313179
|
+
');@output_buffer.safe_concat(' ');@output_buffer.append= ( raw env.find_asset(file) );@output_buffer.safe_concat('
|
313180
|
+
');@output_buffer.append= ( end );@output_buffer.safe_concat('
|
313181
|
+
');@output_buffer.to_s
|
313182
|
+
ensure
|
313183
|
+
@virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer
|
313184
|
+
end
|
313185
|
+
|
313186
|
+
Backtrace: /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_view/template.rb:297:in `module_eval'
|
313187
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_view/template.rb:297:in `compile'
|
313188
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_view/template.rb:244:in `block in compile!'
|
313189
|
+
<internal:prelude>:10:in `synchronize'
|
313190
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_view/template.rb:232:in `compile!'
|
313191
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_view/template.rb:144:in `block in render'
|
313192
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.9/lib/active_support/notifications.rb:125:in `instrument'
|
313193
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_view/template.rb:143:in `render'
|
313194
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
313195
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
313196
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.9/lib/active_support/notifications.rb:123:in `block in instrument'
|
313197
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.9/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
313198
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.9/lib/active_support/notifications.rb:123:in `instrument'
|
313199
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
313200
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
313201
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
313202
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
313203
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_view/renderer/template_renderer.rb:18:in `render'
|
313204
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_view/renderer/renderer.rb:36:in `render_template'
|
313205
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_view/renderer/renderer.rb:17:in `render'
|
313206
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/abstract_controller/rendering.rb:110:in `_render_template'
|
313207
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
313208
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
313209
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
313210
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
313211
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/abstract_controller/rendering.rb:88:in `render'
|
313212
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_controller/metal/rendering.rb:16:in `render'
|
313213
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
313214
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.9/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
313215
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
313216
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.9/lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
313217
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
313218
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
313219
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_controller/metal/instrumentation.rb:39:in `render'
|
313220
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
313221
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
|
313222
|
+
/Users/jejacks0n/Projects/teabag/app/controllers/teabag/spec_controller.rb:12:in `index'
|
313223
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
313224
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/abstract_controller/base.rb:167:in `process_action'
|
313225
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_controller/metal/rendering.rb:10:in `process_action'
|
313226
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
313227
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.9/lib/active_support/callbacks.rb:403:in `_run__4520719786558496898__process_action__3363161276113687580__callbacks'
|
313228
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.9/lib/active_support/callbacks.rb:405:in `__run_callback'
|
313229
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.9/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
313230
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.9/lib/active_support/callbacks.rb:81:in `run_callbacks'
|
313231
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/abstract_controller/callbacks.rb:17:in `process_action'
|
313232
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_controller/metal/rescue.rb:29:in `process_action'
|
313233
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
313234
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.9/lib/active_support/notifications.rb:123:in `block in instrument'
|
313235
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.9/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
313236
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.9/lib/active_support/notifications.rb:123:in `instrument'
|
313237
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
313238
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
313239
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/abstract_controller/base.rb:121:in `process'
|
313240
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/abstract_controller/rendering.rb:45:in `process'
|
313241
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_controller/metal.rb:203:in `dispatch'
|
313242
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
313243
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_controller/metal.rb:246:in `block in action'
|
313244
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/routing/route_set.rb:73:in `call'
|
313245
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
313246
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/routing/route_set.rb:36:in `call'
|
313247
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
|
313248
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
|
313249
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
|
313250
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/routing/route_set.rb:601:in `call'
|
313251
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/railties-3.2.9/lib/rails/engine.rb:479:in `call'
|
313252
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/railties-3.2.9/lib/rails/railtie/configurable.rb:30:in `method_missing'
|
313253
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
|
313254
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
|
313255
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
|
313256
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/routing/route_set.rb:601:in `call'
|
313257
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
313258
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call'
|
313259
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/rack-1.4.1/lib/rack/conditionalget.rb:25:in `call'
|
313260
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/head.rb:14:in `call'
|
313261
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
313262
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/flash.rb:242:in `call'
|
313263
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context'
|
313264
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call'
|
313265
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
313266
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
313267
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.9/lib/active_support/callbacks.rb:405:in `_run__468444990488711192__call__2795777800140921151__callbacks'
|
313268
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.9/lib/active_support/callbacks.rb:405:in `__run_callback'
|
313269
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.9/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
313270
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.9/lib/active_support/callbacks.rb:81:in `run_callbacks'
|
313271
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
313272
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
313273
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
313274
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
313275
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
313276
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/railties-3.2.9/lib/rails/rack/logger.rb:32:in `call_app'
|
313277
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/railties-3.2.9/lib/rails/rack/logger.rb:16:in `block in call'
|
313278
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.9/lib/active_support/tagged_logging.rb:22:in `tagged'
|
313279
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/railties-3.2.9/lib/rails/rack/logger.rb:16:in `call'
|
313280
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
313281
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call'
|
313282
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call'
|
313283
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.9/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
313284
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call'
|
313285
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/static.rb:62:in `call'
|
313286
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/railties-3.2.9/lib/rails/engine.rb:479:in `call'
|
313287
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/railties-3.2.9/lib/rails/application.rb:223:in `call'
|
313288
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/railties-3.2.9/lib/rails/railtie/configurable.rb:30:in `method_missing'
|
313289
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/rack-1.4.1/lib/rack/lint.rb:48:in `_call'
|
313290
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/rack-1.4.1/lib/rack/lint.rb:36:in `call'
|
313291
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/rack-1.4.1/lib/rack/showexceptions.rb:24:in `call'
|
313292
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/rack-1.4.1/lib/rack/commonlogger.rb:20:in `call'
|
313293
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/rack-1.4.1/lib/rack/chunked.rb:43:in `call'
|
313294
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call'
|
313295
|
+
/Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service'
|
313296
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
313297
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
313298
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
313299
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb (0.9ms)
|
313300
|
+
Completed 500 Internal Server Error in 3ms
|
313301
|
+
|
313302
|
+
ActionView::Template::Error (/Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb:4: syntax error, unexpected ')', expecting keyword_do_cond or ';' or '\n'
|
313303
|
+
...or file in @suite.javascripts );@output_buffer.safe_concat('
|
313304
|
+
... ^
|
313305
|
+
/Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb:6: syntax error, unexpected keyword_end
|
313306
|
+
');@output_buffer.append= ( end );@output_buffer.safe_concat('
|
313307
|
+
^
|
313308
|
+
/Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb:8: syntax error, unexpected keyword_ensure, expecting ')'
|
313309
|
+
/Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb:10: syntax error, unexpected keyword_end, expecting ')'):
|
313310
|
+
1: <%
|
313311
|
+
2: env = Rails.application.assets
|
313312
|
+
3: %>
|
313313
|
+
4: <%= for file in @suite.javascripts %>
|
313314
|
+
5: <%= raw env.find_asset(file) %>
|
313315
|
+
6: <%= end %>
|
313316
|
+
actionpack (3.2.9) lib/action_view/template.rb:297:in `module_eval'
|
313317
|
+
actionpack (3.2.9) lib/action_view/template.rb:297:in `compile'
|
313318
|
+
actionpack (3.2.9) lib/action_view/template.rb:244:in `block in compile!'
|
313319
|
+
<internal:prelude>:10:in `synchronize'
|
313320
|
+
actionpack (3.2.9) lib/action_view/template.rb:232:in `compile!'
|
313321
|
+
actionpack (3.2.9) lib/action_view/template.rb:144:in `block in render'
|
313322
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:125:in `instrument'
|
313323
|
+
actionpack (3.2.9) lib/action_view/template.rb:143:in `render'
|
313324
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
313325
|
+
actionpack (3.2.9) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
313326
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
|
313327
|
+
activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
313328
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
|
313329
|
+
actionpack (3.2.9) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
313330
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
313331
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
313332
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
313333
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
313334
|
+
actionpack (3.2.9) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
313335
|
+
actionpack (3.2.9) lib/action_view/renderer/renderer.rb:17:in `render'
|
313336
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
313337
|
+
actionpack (3.2.9) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
313338
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
313339
|
+
actionpack (3.2.9) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
313340
|
+
actionpack (3.2.9) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
313341
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:88:in `render'
|
313342
|
+
actionpack (3.2.9) lib/action_controller/metal/rendering.rb:16:in `render'
|
313343
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
313344
|
+
activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
313345
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
313346
|
+
activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
313347
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
313348
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
313349
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
313350
|
+
actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
313351
|
+
actionpack (3.2.9) lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
|
313352
|
+
/Users/jejacks0n/Projects/teabag/app/controllers/teabag/spec_controller.rb:12:in `index'
|
313353
|
+
actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
313354
|
+
actionpack (3.2.9) lib/abstract_controller/base.rb:167:in `process_action'
|
313355
|
+
actionpack (3.2.9) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
313356
|
+
actionpack (3.2.9) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
313357
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:403:in `_run__4520719786558496898__process_action__3363161276113687580__callbacks'
|
313358
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
|
313359
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
313360
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
313361
|
+
actionpack (3.2.9) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
313362
|
+
actionpack (3.2.9) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
313363
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
313364
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
|
313365
|
+
activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
313366
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
|
313367
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
313368
|
+
actionpack (3.2.9) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
313369
|
+
actionpack (3.2.9) lib/abstract_controller/base.rb:121:in `process'
|
313370
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:45:in `process'
|
313371
|
+
actionpack (3.2.9) lib/action_controller/metal.rb:203:in `dispatch'
|
313372
|
+
actionpack (3.2.9) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
313373
|
+
actionpack (3.2.9) lib/action_controller/metal.rb:246:in `block in action'
|
313374
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
313375
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
313376
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
313377
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
313378
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
313379
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
313380
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
313381
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
313382
|
+
railties (3.2.9) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
313383
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
313384
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
313385
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
313386
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
313387
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
313388
|
+
rack (1.4.1) lib/rack/etag.rb:23:in `call'
|
313389
|
+
rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
|
313390
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/head.rb:14:in `call'
|
313391
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
313392
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
313393
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
|
313394
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
|
313395
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
313396
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
313397
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `_run__468444990488711192__call__2795777800140921151__callbacks'
|
313398
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
|
313399
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
313400
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
313401
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
313402
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
313403
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
313404
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
313405
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
313406
|
+
railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
|
313407
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
|
313408
|
+
activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
|
313409
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
|
313410
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
313411
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
313412
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
313413
|
+
activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
313414
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
313415
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
|
313416
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
313417
|
+
railties (3.2.9) lib/rails/application.rb:223:in `call'
|
313418
|
+
railties (3.2.9) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
313419
|
+
rack (1.4.1) lib/rack/lint.rb:48:in `_call'
|
313420
|
+
rack (1.4.1) lib/rack/lint.rb:36:in `call'
|
313421
|
+
rack (1.4.1) lib/rack/showexceptions.rb:24:in `call'
|
313422
|
+
rack (1.4.1) lib/rack/commonlogger.rb:20:in `call'
|
313423
|
+
rack (1.4.1) lib/rack/chunked.rb:43:in `call'
|
313424
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
313425
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
313426
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
313427
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
313428
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
313429
|
+
|
313430
|
+
|
313431
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
|
313432
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
313433
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.0ms)
|
313434
|
+
|
313435
|
+
|
313436
|
+
Started GET "/teabag.js" for 127.0.0.1 at 2012-12-20 17:37:40 -0700
|
313437
|
+
Processing by Teabag::SpecController#index as JS
|
313438
|
+
Parameters: {"suite"=>nil}
|
313439
|
+
Compiled teabag/base/reporters/html.js (232ms) (pid 8404)
|
313440
|
+
Compiled teabag/base/reporters.js (137ms) (pid 8404)
|
313441
|
+
Compiled teabag/base/teabag.js (111ms) (pid 8404)
|
313442
|
+
Compiled teabag/jasmine.js (117ms) (pid 8404)
|
313443
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb (797.3ms)
|
313444
|
+
Completed 200 OK in 799ms (Views: 799.0ms)
|
313445
|
+
|
313446
|
+
|
313447
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 17:38:29 -0700
|
313448
|
+
Processing by Teabag::SpecController#index as HTML
|
313449
|
+
Parameters: {"suite"=>nil}
|
313450
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (3.1ms)
|
313451
|
+
Completed 200 OK in 5ms (Views: 4.6ms)
|
313452
|
+
|
313453
|
+
|
313454
|
+
Started GET "/assets/teabag.css?body=1" for 127.0.0.1 at 2012-12-20 17:38:29 -0700
|
313455
|
+
Served asset /teabag.css - 200 OK (0ms)
|
313456
|
+
|
313457
|
+
|
313458
|
+
Started GET "/teabag.js" for 127.0.0.1 at 2012-12-20 17:38:29 -0700
|
313459
|
+
Processing by Teabag::SpecController#index as JS
|
313460
|
+
Parameters: {"suite"=>nil}
|
313461
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb (29.7ms)
|
313462
|
+
Completed 500 Internal Server Error in 32ms
|
313463
|
+
|
313464
|
+
ActionView::Template::Error (undefined local variable or method `env' for #<#<Class:0x007fd92fdfbf78>:0x007fd92ead3180>):
|
313465
|
+
1: <% for file in @suite.javascripts %>
|
313466
|
+
2: <%= raw env.find_asset(file) %>
|
313467
|
+
3: <% end %>
|
313468
|
+
/Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb:2:in `block in ___sers_jejacks_n__rojects_teabag_app_views_teabag_spec_index_js_erb__3005014626724433063_70285374722440'
|
313469
|
+
/Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb:1:in `each'
|
313470
|
+
/Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb:1:in `___sers_jejacks_n__rojects_teabag_app_views_teabag_spec_index_js_erb__3005014626724433063_70285374722440'
|
313471
|
+
actionpack (3.2.9) lib/action_view/template.rb:145:in `block in render'
|
313472
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:125:in `instrument'
|
313473
|
+
actionpack (3.2.9) lib/action_view/template.rb:143:in `render'
|
313474
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
313475
|
+
actionpack (3.2.9) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
313476
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
|
313477
|
+
activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
313478
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
|
313479
|
+
actionpack (3.2.9) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
313480
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
313481
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
313482
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
313483
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
313484
|
+
actionpack (3.2.9) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
313485
|
+
actionpack (3.2.9) lib/action_view/renderer/renderer.rb:17:in `render'
|
313486
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
313487
|
+
actionpack (3.2.9) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
313488
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
313489
|
+
actionpack (3.2.9) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
313490
|
+
actionpack (3.2.9) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
313491
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:88:in `render'
|
313492
|
+
actionpack (3.2.9) lib/action_controller/metal/rendering.rb:16:in `render'
|
313493
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
313494
|
+
activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
313495
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
313496
|
+
activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
313497
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
313498
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
313499
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
313500
|
+
actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
313501
|
+
actionpack (3.2.9) lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
|
313502
|
+
/Users/jejacks0n/Projects/teabag/app/controllers/teabag/spec_controller.rb:12:in `index'
|
313503
|
+
actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
313504
|
+
actionpack (3.2.9) lib/abstract_controller/base.rb:167:in `process_action'
|
313505
|
+
actionpack (3.2.9) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
313506
|
+
actionpack (3.2.9) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
313507
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:403:in `_run__4520719786558496898__process_action__3363161276113687580__callbacks'
|
313508
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
|
313509
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
313510
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
313511
|
+
actionpack (3.2.9) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
313512
|
+
actionpack (3.2.9) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
313513
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
313514
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
|
313515
|
+
activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
313516
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
|
313517
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
313518
|
+
actionpack (3.2.9) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
313519
|
+
actionpack (3.2.9) lib/abstract_controller/base.rb:121:in `process'
|
313520
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:45:in `process'
|
313521
|
+
actionpack (3.2.9) lib/action_controller/metal.rb:203:in `dispatch'
|
313522
|
+
actionpack (3.2.9) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
313523
|
+
actionpack (3.2.9) lib/action_controller/metal.rb:246:in `block in action'
|
313524
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
313525
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
313526
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
313527
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
313528
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
313529
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
313530
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
313531
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
313532
|
+
railties (3.2.9) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
313533
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
313534
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
313535
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
313536
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
313537
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
313538
|
+
rack (1.4.1) lib/rack/etag.rb:23:in `call'
|
313539
|
+
rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
|
313540
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/head.rb:14:in `call'
|
313541
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
313542
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
313543
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
|
313544
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
|
313545
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
313546
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
313547
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `_run__468444990488711192__call__2795777800140921151__callbacks'
|
313548
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
|
313549
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
313550
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
313551
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
313552
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
313553
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
313554
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
313555
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
313556
|
+
railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
|
313557
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
|
313558
|
+
activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
|
313559
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
|
313560
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
313561
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
313562
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
313563
|
+
activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
313564
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
313565
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
|
313566
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
313567
|
+
railties (3.2.9) lib/rails/application.rb:223:in `call'
|
313568
|
+
railties (3.2.9) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
313569
|
+
rack (1.4.1) lib/rack/lint.rb:48:in `_call'
|
313570
|
+
rack (1.4.1) lib/rack/lint.rb:36:in `call'
|
313571
|
+
rack (1.4.1) lib/rack/showexceptions.rb:24:in `call'
|
313572
|
+
rack (1.4.1) lib/rack/commonlogger.rb:20:in `call'
|
313573
|
+
rack (1.4.1) lib/rack/chunked.rb:43:in `call'
|
313574
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
313575
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
313576
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
313577
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
313578
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
313579
|
+
|
313580
|
+
|
313581
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
|
313582
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
313583
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.8ms)
|
313584
|
+
|
313585
|
+
|
313586
|
+
Started GET "/teabag.js" for 127.0.0.1 at 2012-12-20 17:38:43 -0700
|
313587
|
+
Processing by Teabag::SpecController#index as JS
|
313588
|
+
Parameters: {"suite"=>nil}
|
313589
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb (11.1ms)
|
313590
|
+
Completed 500 Internal Server Error in 13ms
|
313591
|
+
|
313592
|
+
ActionView::Template::Error (undefined local variable or method `env' for #<#<Class:0x007fd92fdfbf78>:0x007fd92fc711a8>):
|
313593
|
+
1: <% for file in @suite.javascripts %>
|
313594
|
+
2: <%= raw env.find_asset(file) %>
|
313595
|
+
3: <% end %>
|
313596
|
+
/Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb:2:in `block in ___sers_jejacks_n__rojects_teabag_app_views_teabag_spec_index_js_erb__3005014626724433063_70285374722440'
|
313597
|
+
/Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb:1:in `each'
|
313598
|
+
/Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb:1:in `___sers_jejacks_n__rojects_teabag_app_views_teabag_spec_index_js_erb__3005014626724433063_70285374722440'
|
313599
|
+
actionpack (3.2.9) lib/action_view/template.rb:145:in `block in render'
|
313600
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:125:in `instrument'
|
313601
|
+
actionpack (3.2.9) lib/action_view/template.rb:143:in `render'
|
313602
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
313603
|
+
actionpack (3.2.9) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
313604
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
|
313605
|
+
activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
313606
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
|
313607
|
+
actionpack (3.2.9) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
313608
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
313609
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
313610
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
313611
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
313612
|
+
actionpack (3.2.9) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
313613
|
+
actionpack (3.2.9) lib/action_view/renderer/renderer.rb:17:in `render'
|
313614
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
313615
|
+
actionpack (3.2.9) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
313616
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
313617
|
+
actionpack (3.2.9) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
313618
|
+
actionpack (3.2.9) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
313619
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:88:in `render'
|
313620
|
+
actionpack (3.2.9) lib/action_controller/metal/rendering.rb:16:in `render'
|
313621
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
313622
|
+
activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
313623
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
313624
|
+
activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
313625
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
313626
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
313627
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
313628
|
+
actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
313629
|
+
actionpack (3.2.9) lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
|
313630
|
+
/Users/jejacks0n/Projects/teabag/app/controllers/teabag/spec_controller.rb:12:in `index'
|
313631
|
+
actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
313632
|
+
actionpack (3.2.9) lib/abstract_controller/base.rb:167:in `process_action'
|
313633
|
+
actionpack (3.2.9) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
313634
|
+
actionpack (3.2.9) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
313635
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:403:in `_run__4520719786558496898__process_action__3363161276113687580__callbacks'
|
313636
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
|
313637
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
313638
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
313639
|
+
actionpack (3.2.9) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
313640
|
+
actionpack (3.2.9) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
313641
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
313642
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
|
313643
|
+
activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
313644
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
|
313645
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
313646
|
+
actionpack (3.2.9) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
313647
|
+
actionpack (3.2.9) lib/abstract_controller/base.rb:121:in `process'
|
313648
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:45:in `process'
|
313649
|
+
actionpack (3.2.9) lib/action_controller/metal.rb:203:in `dispatch'
|
313650
|
+
actionpack (3.2.9) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
313651
|
+
actionpack (3.2.9) lib/action_controller/metal.rb:246:in `block in action'
|
313652
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
313653
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
313654
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
313655
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
313656
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
313657
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
313658
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
313659
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
313660
|
+
railties (3.2.9) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
313661
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
313662
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
313663
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
313664
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
313665
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
313666
|
+
rack (1.4.1) lib/rack/etag.rb:23:in `call'
|
313667
|
+
rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
|
313668
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/head.rb:14:in `call'
|
313669
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
313670
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
313671
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
|
313672
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
|
313673
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
313674
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
313675
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `_run__468444990488711192__call__2795777800140921151__callbacks'
|
313676
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
|
313677
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
313678
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
313679
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
313680
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
313681
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
313682
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
313683
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
313684
|
+
railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
|
313685
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
|
313686
|
+
activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
|
313687
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
|
313688
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
313689
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
313690
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
313691
|
+
activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
313692
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
313693
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
|
313694
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
313695
|
+
railties (3.2.9) lib/rails/application.rb:223:in `call'
|
313696
|
+
railties (3.2.9) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
313697
|
+
rack (1.4.1) lib/rack/lint.rb:48:in `_call'
|
313698
|
+
rack (1.4.1) lib/rack/lint.rb:36:in `call'
|
313699
|
+
rack (1.4.1) lib/rack/showexceptions.rb:24:in `call'
|
313700
|
+
rack (1.4.1) lib/rack/commonlogger.rb:20:in `call'
|
313701
|
+
rack (1.4.1) lib/rack/chunked.rb:43:in `call'
|
313702
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
313703
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
313704
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
313705
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
313706
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
313707
|
+
|
313708
|
+
|
313709
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
|
313710
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
313711
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.0ms)
|
313712
|
+
|
313713
|
+
|
313714
|
+
Started GET "/teabag.js" for 127.0.0.1 at 2012-12-20 17:38:55 -0700
|
313715
|
+
Processing by Teabag::SpecController#index as JS
|
313716
|
+
Parameters: {"suite"=>nil}
|
313717
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb (9.0ms)
|
313718
|
+
Completed 200 OK in 11ms (Views: 10.7ms)
|
313719
|
+
|
313720
|
+
|
313721
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 17:39:01 -0700
|
313722
|
+
Processing by Teabag::SpecController#index as HTML
|
313723
|
+
Parameters: {"suite"=>nil}
|
313724
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.9ms)
|
313725
|
+
Completed 200 OK in 5ms (Views: 4.8ms)
|
313726
|
+
|
313727
|
+
|
313728
|
+
Started GET "/assets/teabag.css?body=1" for 127.0.0.1 at 2012-12-20 17:39:01 -0700
|
313729
|
+
Served asset /teabag.css - 200 OK (0ms)
|
313730
|
+
|
313731
|
+
|
313732
|
+
Started GET "/teabag.js" for 127.0.0.1 at 2012-12-20 17:39:01 -0700
|
313733
|
+
Processing by Teabag::SpecController#index as JS
|
313734
|
+
Parameters: {"suite"=>nil}
|
313735
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb (8.5ms)
|
313736
|
+
Completed 200 OK in 10ms (Views: 10.0ms)
|
313737
|
+
|
313738
|
+
|
313739
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 17:39:22 -0700
|
313740
|
+
Processing by Teabag::SpecController#index as HTML
|
313741
|
+
Parameters: {"suite"=>nil}
|
313742
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1.9ms)
|
313743
|
+
Completed 200 OK in 3ms (Views: 3.1ms)
|
313744
|
+
|
313745
|
+
|
313746
|
+
Started GET "/assets/teabag.css?body=1" for 127.0.0.1 at 2012-12-20 17:39:22 -0700
|
313747
|
+
Served asset /teabag.css - 200 OK (0ms)
|
313748
|
+
|
313749
|
+
|
313750
|
+
Started GET "/teabag.js" for 127.0.0.1 at 2012-12-20 17:39:22 -0700
|
313751
|
+
Processing by Teabag::SpecController#index as JS
|
313752
|
+
Parameters: {"suite"=>nil}
|
313753
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb (7.4ms)
|
313754
|
+
Completed 200 OK in 9ms (Views: 8.9ms)
|
313755
|
+
|
313756
|
+
|
313757
|
+
Started GET "/teabag.js" for 127.0.0.1 at 2012-12-20 17:39:26 -0700
|
313758
|
+
Processing by Teabag::SpecController#index as JS
|
313759
|
+
Parameters: {"suite"=>nil}
|
313760
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb (6.5ms)
|
313761
|
+
Completed 200 OK in 8ms (Views: 7.9ms)
|
313762
|
+
|
313763
|
+
|
313764
|
+
Started GET "/teabag.js" for 127.0.0.1 at 2012-12-20 17:39:26 -0700
|
313765
|
+
Processing by Teabag::SpecController#index as JS
|
313766
|
+
Parameters: {"suite"=>nil}
|
313767
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb (7.5ms)
|
313768
|
+
Completed 200 OK in 9ms (Views: 9.1ms)
|
313769
|
+
|
313770
|
+
|
313771
|
+
Started GET "/teabag.js" for 127.0.0.1 at 2012-12-20 17:39:30 -0700
|
313772
|
+
Processing by Teabag::SpecController#index as JS
|
313773
|
+
Parameters: {"suite"=>nil}
|
313774
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb (6.4ms)
|
313775
|
+
Completed 200 OK in 8ms (Views: 7.8ms)
|
313776
|
+
|
313777
|
+
|
313778
|
+
Started GET "/teabag.js" for 127.0.0.1 at 2012-12-20 17:39:46 -0700
|
313779
|
+
Processing by Teabag::SpecController#index as JS
|
313780
|
+
Parameters: {"suite"=>nil}
|
313781
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb (9.0ms)
|
313782
|
+
Completed 200 OK in 11ms (Views: 10.6ms)
|
313783
|
+
|
313784
|
+
|
313785
|
+
Started GET "/teabag/default.js" for 127.0.0.1 at 2012-12-20 17:39:59 -0700
|
313786
|
+
Processing by Teabag::SpecController#index as JS
|
313787
|
+
Parameters: {"suite"=>"default"}
|
313788
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb (27.3ms)
|
313789
|
+
Completed 200 OK in 29ms (Views: 29.0ms)
|
313790
|
+
|
313791
|
+
|
313792
|
+
Started GET "/teabag/jasmine.js" for 127.0.0.1 at 2012-12-20 17:40:04 -0700
|
313793
|
+
Processing by Teabag::SpecController#index as JS
|
313794
|
+
Parameters: {"suite"=>"jasmine"}
|
313795
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb (41.8ms)
|
313796
|
+
Completed 200 OK in 44ms (Views: 43.3ms)
|
313797
|
+
|
313798
|
+
|
313799
|
+
Started GET "/teabag/mocha.js" for 127.0.0.1 at 2012-12-20 17:40:07 -0700
|
313800
|
+
Processing by Teabag::SpecController#index as JS
|
313801
|
+
Parameters: {"suite"=>"mocha"}
|
313802
|
+
Compiled teabag/mocha.js (111ms) (pid 8404)
|
313803
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb (228.3ms)
|
313804
|
+
Completed 200 OK in 230ms (Views: 229.7ms)
|
313805
|
+
|
313806
|
+
|
313807
|
+
Started GET "/teabag/mocha.js" for 127.0.0.1 at 2012-12-20 17:40:41 -0700
|
313808
|
+
Processing by Teabag::SpecController#index as JS
|
313809
|
+
Parameters: {"suite"=>"mocha"}
|
313810
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb (6.1ms)
|
313811
|
+
Completed 200 OK in 9ms (Views: 8.2ms)
|
313812
|
+
|
313813
|
+
|
313814
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 17:47:03 -0700
|
313815
|
+
Processing by Teabag::SpecController#index as HTML
|
313816
|
+
Parameters: {"suite"=>nil}
|
313817
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (6.6ms)
|
313818
|
+
Completed 200 OK in 13ms (Views: 12.5ms)
|
313819
|
+
|
313820
|
+
|
313821
|
+
Started GET "/assets/teabag.css?body=1" for 127.0.0.1 at 2012-12-20 17:47:03 -0700
|
313822
|
+
Served asset /teabag.css - 200 OK (3ms)
|
313823
|
+
|
313824
|
+
|
313825
|
+
Started GET "/teabag.js" for 127.0.0.1 at 2012-12-20 17:47:03 -0700
|
313826
|
+
Processing by Teabag::SpecController#index as JS
|
313827
|
+
Parameters: {"suite"=>nil}
|
313828
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb (105.2ms)
|
313829
|
+
Completed 200 OK in 107ms (Views: 106.8ms)
|
313830
|
+
|
313831
|
+
|
313832
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 17:48:17 -0700
|
313833
|
+
Processing by Teabag::SpecController#index as HTML
|
313834
|
+
Parameters: {"suite"=>nil}
|
313835
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2.0ms)
|
313836
|
+
Completed 200 OK in 4ms (Views: 3.2ms)
|
313837
|
+
|
313838
|
+
|
313839
|
+
Started GET "/assets/teabag.css?body=1" for 127.0.0.1 at 2012-12-20 17:48:17 -0700
|
313840
|
+
Served asset /teabag.css - 200 OK (0ms)
|
313841
|
+
|
313842
|
+
|
313843
|
+
Started GET "/teabag.js" for 127.0.0.1 at 2012-12-20 17:48:17 -0700
|
313844
|
+
Processing by Teabag::SpecController#index as JS
|
313845
|
+
Parameters: {"suite"=>nil}
|
313846
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb (8.9ms)
|
313847
|
+
Completed 200 OK in 11ms (Views: 10.4ms)
|
313848
|
+
|
313849
|
+
|
313850
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 18:01:52 -0700
|
313851
|
+
Processing by Teabag::SpecController#index as HTML
|
313852
|
+
Parameters: {"suite"=>nil}
|
313853
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (7.4ms)
|
313854
|
+
Completed 200 OK in 14ms (Views: 13.6ms)
|
313855
|
+
|
313856
|
+
|
313857
|
+
Started GET "/assets/teabag.css?body=1" for 127.0.0.1 at 2012-12-20 18:01:52 -0700
|
313858
|
+
Served asset /teabag.css - 200 OK (3ms)
|
313859
|
+
|
313860
|
+
|
313861
|
+
Started GET "/teabag.js" for 127.0.0.1 at 2012-12-20 18:01:52 -0700
|
313862
|
+
Processing by Teabag::SpecController#index as JS
|
313863
|
+
Parameters: {"suite"=>nil}
|
313864
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.js.erb (113.5ms)
|
313865
|
+
Completed 200 OK in 115ms (Views: 115.0ms)
|
313866
|
+
|
313867
|
+
|
313868
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 18:02:49 -0700
|
313869
|
+
Processing by Teabag::SpecController#index as HTML
|
313870
|
+
Parameters: {"suite"=>nil}
|
313871
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (8.1ms)
|
313872
|
+
Completed 200 OK in 18ms (Views: 17.2ms)
|
313873
|
+
|
313874
|
+
|
313875
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 18:03:11 -0700
|
313876
|
+
Processing by Teabag::SpecController#index as HTML
|
313877
|
+
Parameters: {"suite"=>nil}
|
313878
|
+
|
313879
|
+
|
313880
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 18:03:21 -0700
|
313881
|
+
Processing by Teabag::SpecController#index as HTML
|
313882
|
+
Parameters: {"suite"=>nil}
|
313883
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (211.1ms)
|
313884
|
+
Completed 200 OK in 217ms (Views: 216.9ms)
|
313885
|
+
|
313886
|
+
|
313887
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 18:04:23 -0700
|
313888
|
+
Processing by Teabag::SpecController#index as HTML
|
313889
|
+
Parameters: {"suite"=>nil}
|
313890
|
+
|
313891
|
+
|
313892
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 18:06:53 -0700
|
313893
|
+
Processing by Teabag::SpecController#index as HTML
|
313894
|
+
Parameters: {"suite"=>nil}
|
313895
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (69074.7ms)
|
313896
|
+
Completed 200 OK in 69081ms (Views: 69080.7ms)
|
313897
|
+
|
313898
|
+
|
313899
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 18:18:44 -0700
|
313900
|
+
Processing by Teabag::SpecController#index as HTML
|
313901
|
+
Parameters: {"suite"=>nil}
|
313902
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (21030.6ms)
|
313903
|
+
Completed 200 OK in 21032ms (Views: 21031.9ms)
|
313904
|
+
|
313905
|
+
|
313906
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 18:19:53 -0700
|
313907
|
+
Processing by Teabag::SpecController#index as HTML
|
313908
|
+
Parameters: {"suite"=>nil}
|
313909
|
+
Compiled spec_helper.js (196ms) (pid 8948)
|
313910
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (3069.2ms)
|
313911
|
+
Completed 200 OK in 3071ms (Views: 3070.5ms)
|
313912
|
+
|
313913
|
+
|
313914
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 18:20:11 -0700
|
313915
|
+
Processing by Teabag::SpecController#index as HTML
|
313916
|
+
Parameters: {"suite"=>nil}
|
313917
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (22559.0ms)
|
313918
|
+
Completed 200 OK in 22561ms (Views: 22560.6ms)
|
313919
|
+
|
313920
|
+
|
313921
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 18:22:26 -0700
|
313922
|
+
Processing by Teabag::SpecController#index as HTML
|
313923
|
+
Parameters: {"suite"=>nil}
|
313924
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (26.9ms)
|
313925
|
+
Completed 200 OK in 28ms (Views: 28.0ms)
|
313926
|
+
|
313927
|
+
|
313928
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 18:22:40 -0700
|
313929
|
+
Processing by Teabag::SpecController#index as HTML
|
313930
|
+
Parameters: {"suite"=>nil}
|
313931
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (36346.1ms)
|
313932
|
+
Completed 500 Internal Server Error in 36353ms
|
313933
|
+
|
313934
|
+
ActionView::Template::Error (undefined method `collect' for nil:NilClass):
|
313935
|
+
3: <head>
|
313936
|
+
4: <title>Teabag :: Javascript Test Runner</title>
|
313937
|
+
5: <%= stylesheet_link_tag *@suite.stylesheets %>
|
313938
|
+
6: <%= javascript_include_tag *@suite.javascripts %>
|
313939
|
+
7: <%= csrf_meta_tags %>
|
313940
|
+
8: <script type="text/javascript">
|
313941
|
+
9: window.originalOnload = window.onload
|
313942
|
+
actionpack (3.2.9) lib/action_view/helpers/asset_tag_helpers/asset_include_tag.rb:57:in `include_tag'
|
313943
|
+
actionpack (3.2.9) lib/action_view/helpers/asset_tag_helpers/javascript_tag_helpers.rb:192:in `javascript_include_tag'
|
313944
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:29:in `block (2 levels) in javascript_include_tag'
|
313945
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:28:in `map'
|
313946
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:28:in `block in javascript_include_tag'
|
313947
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:26:in `collect'
|
313948
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:26:in `javascript_include_tag'
|
313949
|
+
/Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb:6:in `___sers_jejacks_n__rojects_teabag_app_views_teabag_spec_index_html_erb__2664025588729755644_70163859823240'
|
313950
|
+
actionpack (3.2.9) lib/action_view/template.rb:145:in `block in render'
|
313951
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:125:in `instrument'
|
313952
|
+
actionpack (3.2.9) lib/action_view/template.rb:143:in `render'
|
313953
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
313954
|
+
actionpack (3.2.9) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
313955
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
|
313956
|
+
activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
313957
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
|
313958
|
+
actionpack (3.2.9) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
313959
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
313960
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
313961
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
313962
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
313963
|
+
actionpack (3.2.9) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
313964
|
+
actionpack (3.2.9) lib/action_view/renderer/renderer.rb:17:in `render'
|
313965
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
313966
|
+
actionpack (3.2.9) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
313967
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
313968
|
+
actionpack (3.2.9) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
313969
|
+
actionpack (3.2.9) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
313970
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:88:in `render'
|
313971
|
+
actionpack (3.2.9) lib/action_controller/metal/rendering.rb:16:in `render'
|
313972
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
313973
|
+
activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
313974
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
313975
|
+
activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
313976
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
313977
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
313978
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
313979
|
+
actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
313980
|
+
actionpack (3.2.9) lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
|
313981
|
+
/Users/jejacks0n/Projects/teabag/app/controllers/teabag/spec_controller.rb:13:in `index'
|
313982
|
+
actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
313983
|
+
actionpack (3.2.9) lib/abstract_controller/base.rb:167:in `process_action'
|
313984
|
+
actionpack (3.2.9) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
313985
|
+
actionpack (3.2.9) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
313986
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:403:in `_run__4409545302958912893__process_action__4195469920988687315__callbacks'
|
313987
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
|
313988
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
313989
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
313990
|
+
actionpack (3.2.9) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
313991
|
+
actionpack (3.2.9) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
313992
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
313993
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
|
313994
|
+
activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
313995
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
|
313996
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
313997
|
+
actionpack (3.2.9) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
313998
|
+
actionpack (3.2.9) lib/abstract_controller/base.rb:121:in `process'
|
313999
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:45:in `process'
|
314000
|
+
actionpack (3.2.9) lib/action_controller/metal.rb:203:in `dispatch'
|
314001
|
+
actionpack (3.2.9) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
314002
|
+
actionpack (3.2.9) lib/action_controller/metal.rb:246:in `block in action'
|
314003
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
314004
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
314005
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
314006
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
314007
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
314008
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
314009
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
314010
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
314011
|
+
railties (3.2.9) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
314012
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
314013
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
314014
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
314015
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
314016
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
314017
|
+
rack (1.4.1) lib/rack/etag.rb:23:in `call'
|
314018
|
+
rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
|
314019
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/head.rb:14:in `call'
|
314020
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
314021
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
314022
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
|
314023
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
|
314024
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
314025
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
314026
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `_run__483571330158663446__call__1095007070688312883__callbacks'
|
314027
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
|
314028
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
314029
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
314030
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
314031
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
314032
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
314033
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
314034
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
314035
|
+
railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
|
314036
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
|
314037
|
+
activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
|
314038
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
|
314039
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
314040
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
314041
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
314042
|
+
activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
314043
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
314044
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
|
314045
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
314046
|
+
railties (3.2.9) lib/rails/application.rb:223:in `call'
|
314047
|
+
railties (3.2.9) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
314048
|
+
rack (1.4.1) lib/rack/lint.rb:48:in `_call'
|
314049
|
+
rack (1.4.1) lib/rack/lint.rb:36:in `call'
|
314050
|
+
rack (1.4.1) lib/rack/showexceptions.rb:24:in `call'
|
314051
|
+
rack (1.4.1) lib/rack/commonlogger.rb:20:in `call'
|
314052
|
+
rack (1.4.1) lib/rack/chunked.rb:43:in `call'
|
314053
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
314054
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
314055
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
314056
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
314057
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
314058
|
+
|
314059
|
+
|
314060
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
|
314061
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
314062
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.6ms)
|
314063
|
+
|
314064
|
+
|
314065
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 18:23:17 -0700
|
314066
|
+
Processing by Teabag::SpecController#index as HTML
|
314067
|
+
Parameters: {"suite"=>nil}
|
314068
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (30512.1ms)
|
314069
|
+
Completed 500 Internal Server Error in 30514ms
|
314070
|
+
|
314071
|
+
ActionView::Template::Error (undefined method `collect' for nil:NilClass):
|
314072
|
+
3: <head>
|
314073
|
+
4: <title>Teabag :: Javascript Test Runner</title>
|
314074
|
+
5: <%= stylesheet_link_tag *@suite.stylesheets %>
|
314075
|
+
6: <%= javascript_include_tag *@suite.javascripts %>
|
314076
|
+
7: <%= csrf_meta_tags %>
|
314077
|
+
8: <script type="text/javascript">
|
314078
|
+
9: window.originalOnload = window.onload
|
314079
|
+
actionpack (3.2.9) lib/action_view/helpers/asset_tag_helpers/asset_include_tag.rb:57:in `include_tag'
|
314080
|
+
actionpack (3.2.9) lib/action_view/helpers/asset_tag_helpers/javascript_tag_helpers.rb:192:in `javascript_include_tag'
|
314081
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:29:in `block (2 levels) in javascript_include_tag'
|
314082
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:28:in `map'
|
314083
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:28:in `block in javascript_include_tag'
|
314084
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:26:in `collect'
|
314085
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:26:in `javascript_include_tag'
|
314086
|
+
/Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb:6:in `___sers_jejacks_n__rojects_teabag_app_views_teabag_spec_index_html_erb__2664025588729755644_70163859823240'
|
314087
|
+
actionpack (3.2.9) lib/action_view/template.rb:145:in `block in render'
|
314088
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:125:in `instrument'
|
314089
|
+
actionpack (3.2.9) lib/action_view/template.rb:143:in `render'
|
314090
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
314091
|
+
actionpack (3.2.9) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
314092
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
|
314093
|
+
activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
314094
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
|
314095
|
+
actionpack (3.2.9) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
314096
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
314097
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
314098
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
314099
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
314100
|
+
actionpack (3.2.9) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
314101
|
+
actionpack (3.2.9) lib/action_view/renderer/renderer.rb:17:in `render'
|
314102
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
314103
|
+
actionpack (3.2.9) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
314104
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
314105
|
+
actionpack (3.2.9) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
314106
|
+
actionpack (3.2.9) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
314107
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:88:in `render'
|
314108
|
+
actionpack (3.2.9) lib/action_controller/metal/rendering.rb:16:in `render'
|
314109
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
314110
|
+
activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
314111
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
314112
|
+
activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
314113
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
314114
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
314115
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
314116
|
+
actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
314117
|
+
actionpack (3.2.9) lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
|
314118
|
+
/Users/jejacks0n/Projects/teabag/app/controllers/teabag/spec_controller.rb:13:in `index'
|
314119
|
+
actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
314120
|
+
actionpack (3.2.9) lib/abstract_controller/base.rb:167:in `process_action'
|
314121
|
+
actionpack (3.2.9) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
314122
|
+
actionpack (3.2.9) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
314123
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:403:in `_run__4409545302958912893__process_action__4195469920988687315__callbacks'
|
314124
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
|
314125
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
314126
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
314127
|
+
actionpack (3.2.9) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
314128
|
+
actionpack (3.2.9) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
314129
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
314130
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
|
314131
|
+
activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
314132
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
|
314133
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
314134
|
+
actionpack (3.2.9) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
314135
|
+
actionpack (3.2.9) lib/abstract_controller/base.rb:121:in `process'
|
314136
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:45:in `process'
|
314137
|
+
actionpack (3.2.9) lib/action_controller/metal.rb:203:in `dispatch'
|
314138
|
+
actionpack (3.2.9) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
314139
|
+
actionpack (3.2.9) lib/action_controller/metal.rb:246:in `block in action'
|
314140
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
314141
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
314142
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
314143
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
314144
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
314145
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
314146
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
314147
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
314148
|
+
railties (3.2.9) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
314149
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
314150
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
314151
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
314152
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
314153
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
314154
|
+
rack (1.4.1) lib/rack/etag.rb:23:in `call'
|
314155
|
+
rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
|
314156
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/head.rb:14:in `call'
|
314157
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
314158
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
314159
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
|
314160
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
|
314161
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
314162
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
314163
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `_run__483571330158663446__call__1095007070688312883__callbacks'
|
314164
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
|
314165
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
314166
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
314167
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
314168
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
314169
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
314170
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
314171
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
314172
|
+
railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
|
314173
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
|
314174
|
+
activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
|
314175
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
|
314176
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
314177
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
314178
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
314179
|
+
activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
314180
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
314181
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
|
314182
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
314183
|
+
railties (3.2.9) lib/rails/application.rb:223:in `call'
|
314184
|
+
railties (3.2.9) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
314185
|
+
rack (1.4.1) lib/rack/lint.rb:48:in `_call'
|
314186
|
+
rack (1.4.1) lib/rack/lint.rb:36:in `call'
|
314187
|
+
rack (1.4.1) lib/rack/showexceptions.rb:24:in `call'
|
314188
|
+
rack (1.4.1) lib/rack/commonlogger.rb:20:in `call'
|
314189
|
+
rack (1.4.1) lib/rack/chunked.rb:43:in `call'
|
314190
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
314191
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
314192
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
314193
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
314194
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
314195
|
+
|
314196
|
+
|
314197
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
|
314198
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
314199
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.9ms)
|
314200
|
+
|
314201
|
+
|
314202
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 18:24:05 -0700
|
314203
|
+
Processing by Teabag::SpecController#index as HTML
|
314204
|
+
Parameters: {"suite"=>nil}
|
314205
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (17.7ms)
|
314206
|
+
Completed 500 Internal Server Error in 19ms
|
314207
|
+
|
314208
|
+
ActionView::Template::Error (undefined method `collect' for nil:NilClass):
|
314209
|
+
3: <head>
|
314210
|
+
4: <title>Teabag :: Javascript Test Runner</title>
|
314211
|
+
5: <%= stylesheet_link_tag *@suite.stylesheets %>
|
314212
|
+
6: <%= javascript_include_tag *@suite.javascripts %>
|
314213
|
+
7: <%= csrf_meta_tags %>
|
314214
|
+
8: <script type="text/javascript">
|
314215
|
+
9: window.originalOnload = window.onload
|
314216
|
+
actionpack (3.2.9) lib/action_view/helpers/asset_tag_helpers/asset_include_tag.rb:57:in `include_tag'
|
314217
|
+
actionpack (3.2.9) lib/action_view/helpers/asset_tag_helpers/javascript_tag_helpers.rb:192:in `javascript_include_tag'
|
314218
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:29:in `block (2 levels) in javascript_include_tag'
|
314219
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:28:in `map'
|
314220
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:28:in `block in javascript_include_tag'
|
314221
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:26:in `collect'
|
314222
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:26:in `javascript_include_tag'
|
314223
|
+
/Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb:6:in `___sers_jejacks_n__rojects_teabag_app_views_teabag_spec_index_html_erb__2664025588729755644_70163859823240'
|
314224
|
+
actionpack (3.2.9) lib/action_view/template.rb:145:in `block in render'
|
314225
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:125:in `instrument'
|
314226
|
+
actionpack (3.2.9) lib/action_view/template.rb:143:in `render'
|
314227
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
314228
|
+
actionpack (3.2.9) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
314229
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
|
314230
|
+
activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
314231
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
|
314232
|
+
actionpack (3.2.9) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
314233
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
314234
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
314235
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
314236
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
314237
|
+
actionpack (3.2.9) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
314238
|
+
actionpack (3.2.9) lib/action_view/renderer/renderer.rb:17:in `render'
|
314239
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
314240
|
+
actionpack (3.2.9) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
314241
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
314242
|
+
actionpack (3.2.9) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
314243
|
+
actionpack (3.2.9) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
314244
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:88:in `render'
|
314245
|
+
actionpack (3.2.9) lib/action_controller/metal/rendering.rb:16:in `render'
|
314246
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
314247
|
+
activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
314248
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
314249
|
+
activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
314250
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
314251
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
314252
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
314253
|
+
actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
314254
|
+
actionpack (3.2.9) lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
|
314255
|
+
/Users/jejacks0n/Projects/teabag/app/controllers/teabag/spec_controller.rb:13:in `index'
|
314256
|
+
actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
314257
|
+
actionpack (3.2.9) lib/abstract_controller/base.rb:167:in `process_action'
|
314258
|
+
actionpack (3.2.9) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
314259
|
+
actionpack (3.2.9) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
314260
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:403:in `_run__4409545302958912893__process_action__4195469920988687315__callbacks'
|
314261
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
|
314262
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
314263
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
314264
|
+
actionpack (3.2.9) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
314265
|
+
actionpack (3.2.9) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
314266
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
314267
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
|
314268
|
+
activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
314269
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
|
314270
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
314271
|
+
actionpack (3.2.9) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
314272
|
+
actionpack (3.2.9) lib/abstract_controller/base.rb:121:in `process'
|
314273
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:45:in `process'
|
314274
|
+
actionpack (3.2.9) lib/action_controller/metal.rb:203:in `dispatch'
|
314275
|
+
actionpack (3.2.9) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
314276
|
+
actionpack (3.2.9) lib/action_controller/metal.rb:246:in `block in action'
|
314277
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
314278
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
314279
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
314280
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
314281
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
314282
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
314283
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
314284
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
314285
|
+
railties (3.2.9) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
314286
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
314287
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
314288
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
314289
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
314290
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
314291
|
+
rack (1.4.1) lib/rack/etag.rb:23:in `call'
|
314292
|
+
rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
|
314293
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/head.rb:14:in `call'
|
314294
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
314295
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
314296
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
|
314297
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
|
314298
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
314299
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
314300
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `_run__483571330158663446__call__1095007070688312883__callbacks'
|
314301
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
|
314302
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
314303
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
314304
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
314305
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
314306
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
314307
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
314308
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
314309
|
+
railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
|
314310
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
|
314311
|
+
activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
|
314312
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
|
314313
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
314314
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
314315
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
314316
|
+
activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
314317
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
314318
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
|
314319
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
314320
|
+
railties (3.2.9) lib/rails/application.rb:223:in `call'
|
314321
|
+
railties (3.2.9) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
314322
|
+
rack (1.4.1) lib/rack/lint.rb:48:in `_call'
|
314323
|
+
rack (1.4.1) lib/rack/lint.rb:36:in `call'
|
314324
|
+
rack (1.4.1) lib/rack/showexceptions.rb:24:in `call'
|
314325
|
+
rack (1.4.1) lib/rack/commonlogger.rb:20:in `call'
|
314326
|
+
rack (1.4.1) lib/rack/chunked.rb:43:in `call'
|
314327
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
314328
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
314329
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
314330
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
314331
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
314332
|
+
|
314333
|
+
|
314334
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
|
314335
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
314336
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.9ms)
|
314337
|
+
|
314338
|
+
|
314339
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 18:24:31 -0700
|
314340
|
+
Processing by Teabag::SpecController#index as HTML
|
314341
|
+
Parameters: {"suite"=>nil}
|
314342
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (41.0ms)
|
314343
|
+
Completed 500 Internal Server Error in 42ms
|
314344
|
+
|
314345
|
+
ActionView::Template::Error (undefined method `collect' for nil:NilClass):
|
314346
|
+
3: <head>
|
314347
|
+
4: <title>Teabag :: Javascript Test Runner</title>
|
314348
|
+
5: <%= stylesheet_link_tag *@suite.stylesheets %>
|
314349
|
+
6: <%= javascript_include_tag *@suite.javascripts %>
|
314350
|
+
7: <%= csrf_meta_tags %>
|
314351
|
+
8: <script type="text/javascript">
|
314352
|
+
9: window.originalOnload = window.onload
|
314353
|
+
actionpack (3.2.9) lib/action_view/helpers/asset_tag_helpers/asset_include_tag.rb:57:in `include_tag'
|
314354
|
+
actionpack (3.2.9) lib/action_view/helpers/asset_tag_helpers/javascript_tag_helpers.rb:192:in `javascript_include_tag'
|
314355
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:29:in `block (2 levels) in javascript_include_tag'
|
314356
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:28:in `map'
|
314357
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:28:in `block in javascript_include_tag'
|
314358
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:26:in `collect'
|
314359
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:26:in `javascript_include_tag'
|
314360
|
+
/Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb:6:in `___sers_jejacks_n__rojects_teabag_app_views_teabag_spec_index_html_erb__2664025588729755644_70163859823240'
|
314361
|
+
actionpack (3.2.9) lib/action_view/template.rb:145:in `block in render'
|
314362
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:125:in `instrument'
|
314363
|
+
actionpack (3.2.9) lib/action_view/template.rb:143:in `render'
|
314364
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
314365
|
+
actionpack (3.2.9) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
314366
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
|
314367
|
+
activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
314368
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
|
314369
|
+
actionpack (3.2.9) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
314370
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
314371
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
314372
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
314373
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
314374
|
+
actionpack (3.2.9) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
314375
|
+
actionpack (3.2.9) lib/action_view/renderer/renderer.rb:17:in `render'
|
314376
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
314377
|
+
actionpack (3.2.9) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
314378
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
314379
|
+
actionpack (3.2.9) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
314380
|
+
actionpack (3.2.9) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
314381
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:88:in `render'
|
314382
|
+
actionpack (3.2.9) lib/action_controller/metal/rendering.rb:16:in `render'
|
314383
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
314384
|
+
activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
314385
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
314386
|
+
activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
314387
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
314388
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
314389
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
314390
|
+
actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
314391
|
+
actionpack (3.2.9) lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
|
314392
|
+
/Users/jejacks0n/Projects/teabag/app/controllers/teabag/spec_controller.rb:13:in `index'
|
314393
|
+
actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
314394
|
+
actionpack (3.2.9) lib/abstract_controller/base.rb:167:in `process_action'
|
314395
|
+
actionpack (3.2.9) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
314396
|
+
actionpack (3.2.9) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
314397
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:403:in `_run__4409545302958912893__process_action__4195469920988687315__callbacks'
|
314398
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
|
314399
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
314400
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
314401
|
+
actionpack (3.2.9) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
314402
|
+
actionpack (3.2.9) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
314403
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
314404
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
|
314405
|
+
activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
314406
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
|
314407
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
314408
|
+
actionpack (3.2.9) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
314409
|
+
actionpack (3.2.9) lib/abstract_controller/base.rb:121:in `process'
|
314410
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:45:in `process'
|
314411
|
+
actionpack (3.2.9) lib/action_controller/metal.rb:203:in `dispatch'
|
314412
|
+
actionpack (3.2.9) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
314413
|
+
actionpack (3.2.9) lib/action_controller/metal.rb:246:in `block in action'
|
314414
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
314415
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
314416
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
314417
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
314418
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
314419
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
314420
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
314421
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
314422
|
+
railties (3.2.9) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
314423
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
314424
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
314425
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
314426
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
314427
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
314428
|
+
rack (1.4.1) lib/rack/etag.rb:23:in `call'
|
314429
|
+
rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
|
314430
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/head.rb:14:in `call'
|
314431
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
314432
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
314433
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
|
314434
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
|
314435
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
314436
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
314437
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `_run__483571330158663446__call__1095007070688312883__callbacks'
|
314438
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
|
314439
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
314440
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
314441
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
314442
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
314443
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
314444
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
314445
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
314446
|
+
railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
|
314447
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
|
314448
|
+
activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
|
314449
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
|
314450
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
314451
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
314452
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
314453
|
+
activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
314454
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
314455
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
|
314456
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
314457
|
+
railties (3.2.9) lib/rails/application.rb:223:in `call'
|
314458
|
+
railties (3.2.9) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
314459
|
+
rack (1.4.1) lib/rack/lint.rb:48:in `_call'
|
314460
|
+
rack (1.4.1) lib/rack/lint.rb:36:in `call'
|
314461
|
+
rack (1.4.1) lib/rack/showexceptions.rb:24:in `call'
|
314462
|
+
rack (1.4.1) lib/rack/commonlogger.rb:20:in `call'
|
314463
|
+
rack (1.4.1) lib/rack/chunked.rb:43:in `call'
|
314464
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
314465
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
314466
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
314467
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
314468
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
314469
|
+
|
314470
|
+
|
314471
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
|
314472
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
|
314473
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.5ms)
|
314474
|
+
|
314475
|
+
|
314476
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 18:24:35 -0700
|
314477
|
+
Processing by Teabag::SpecController#index as HTML
|
314478
|
+
Parameters: {"suite"=>nil}
|
314479
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (18.0ms)
|
314480
|
+
Completed 500 Internal Server Error in 19ms
|
314481
|
+
|
314482
|
+
ActionView::Template::Error (undefined method `collect' for nil:NilClass):
|
314483
|
+
3: <head>
|
314484
|
+
4: <title>Teabag :: Javascript Test Runner</title>
|
314485
|
+
5: <%= stylesheet_link_tag *@suite.stylesheets %>
|
314486
|
+
6: <%= javascript_include_tag *@suite.javascripts %>
|
314487
|
+
7: <%= csrf_meta_tags %>
|
314488
|
+
8: <script type="text/javascript">
|
314489
|
+
9: window.originalOnload = window.onload
|
314490
|
+
actionpack (3.2.9) lib/action_view/helpers/asset_tag_helpers/asset_include_tag.rb:57:in `include_tag'
|
314491
|
+
actionpack (3.2.9) lib/action_view/helpers/asset_tag_helpers/javascript_tag_helpers.rb:192:in `javascript_include_tag'
|
314492
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:29:in `block (2 levels) in javascript_include_tag'
|
314493
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:28:in `map'
|
314494
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:28:in `block in javascript_include_tag'
|
314495
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:26:in `collect'
|
314496
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:26:in `javascript_include_tag'
|
314497
|
+
/Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb:6:in `___sers_jejacks_n__rojects_teabag_app_views_teabag_spec_index_html_erb__2664025588729755644_70163859823240'
|
314498
|
+
actionpack (3.2.9) lib/action_view/template.rb:145:in `block in render'
|
314499
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:125:in `instrument'
|
314500
|
+
actionpack (3.2.9) lib/action_view/template.rb:143:in `render'
|
314501
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
314502
|
+
actionpack (3.2.9) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
314503
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
|
314504
|
+
activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
314505
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
|
314506
|
+
actionpack (3.2.9) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
314507
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
314508
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
314509
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
314510
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
314511
|
+
actionpack (3.2.9) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
314512
|
+
actionpack (3.2.9) lib/action_view/renderer/renderer.rb:17:in `render'
|
314513
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
314514
|
+
actionpack (3.2.9) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
314515
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
314516
|
+
actionpack (3.2.9) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
314517
|
+
actionpack (3.2.9) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
314518
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:88:in `render'
|
314519
|
+
actionpack (3.2.9) lib/action_controller/metal/rendering.rb:16:in `render'
|
314520
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
314521
|
+
activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
314522
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
314523
|
+
activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
314524
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
314525
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
314526
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
314527
|
+
actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
314528
|
+
actionpack (3.2.9) lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
|
314529
|
+
/Users/jejacks0n/Projects/teabag/app/controllers/teabag/spec_controller.rb:13:in `index'
|
314530
|
+
actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
314531
|
+
actionpack (3.2.9) lib/abstract_controller/base.rb:167:in `process_action'
|
314532
|
+
actionpack (3.2.9) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
314533
|
+
actionpack (3.2.9) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
314534
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:403:in `_run__4409545302958912893__process_action__4195469920988687315__callbacks'
|
314535
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
|
314536
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
314537
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
314538
|
+
actionpack (3.2.9) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
314539
|
+
actionpack (3.2.9) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
314540
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
314541
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
|
314542
|
+
activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
314543
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
|
314544
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
314545
|
+
actionpack (3.2.9) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
314546
|
+
actionpack (3.2.9) lib/abstract_controller/base.rb:121:in `process'
|
314547
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:45:in `process'
|
314548
|
+
actionpack (3.2.9) lib/action_controller/metal.rb:203:in `dispatch'
|
314549
|
+
actionpack (3.2.9) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
314550
|
+
actionpack (3.2.9) lib/action_controller/metal.rb:246:in `block in action'
|
314551
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
314552
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
314553
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
314554
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
314555
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
314556
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
314557
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
314558
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
314559
|
+
railties (3.2.9) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
314560
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
314561
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
314562
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
314563
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
314564
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
314565
|
+
rack (1.4.1) lib/rack/etag.rb:23:in `call'
|
314566
|
+
rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
|
314567
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/head.rb:14:in `call'
|
314568
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
314569
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
314570
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
|
314571
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
|
314572
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
314573
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
314574
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `_run__483571330158663446__call__1095007070688312883__callbacks'
|
314575
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
|
314576
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
314577
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
314578
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
314579
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
314580
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
314581
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
314582
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
314583
|
+
railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
|
314584
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
|
314585
|
+
activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
|
314586
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
|
314587
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
314588
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
314589
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
314590
|
+
activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
314591
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
314592
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
|
314593
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
314594
|
+
railties (3.2.9) lib/rails/application.rb:223:in `call'
|
314595
|
+
railties (3.2.9) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
314596
|
+
rack (1.4.1) lib/rack/lint.rb:48:in `_call'
|
314597
|
+
rack (1.4.1) lib/rack/lint.rb:36:in `call'
|
314598
|
+
rack (1.4.1) lib/rack/showexceptions.rb:24:in `call'
|
314599
|
+
rack (1.4.1) lib/rack/commonlogger.rb:20:in `call'
|
314600
|
+
rack (1.4.1) lib/rack/chunked.rb:43:in `call'
|
314601
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
314602
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
314603
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
314604
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
314605
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
314606
|
+
|
314607
|
+
|
314608
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
|
314609
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
|
314610
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.9ms)
|
314611
|
+
|
314612
|
+
|
314613
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 18:24:40 -0700
|
314614
|
+
Processing by Teabag::SpecController#index as HTML
|
314615
|
+
Parameters: {"suite"=>nil}
|
314616
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (18.1ms)
|
314617
|
+
Completed 500 Internal Server Error in 20ms
|
314618
|
+
|
314619
|
+
ActionView::Template::Error (undefined method `collect' for nil:NilClass):
|
314620
|
+
3: <head>
|
314621
|
+
4: <title>Teabag :: Javascript Test Runner</title>
|
314622
|
+
5: <%= stylesheet_link_tag *@suite.stylesheets %>
|
314623
|
+
6: <%= javascript_include_tag *@suite.javascripts %>
|
314624
|
+
7: <%= csrf_meta_tags %>
|
314625
|
+
8: <script type="text/javascript">
|
314626
|
+
9: window.originalOnload = window.onload
|
314627
|
+
actionpack (3.2.9) lib/action_view/helpers/asset_tag_helpers/asset_include_tag.rb:57:in `include_tag'
|
314628
|
+
actionpack (3.2.9) lib/action_view/helpers/asset_tag_helpers/javascript_tag_helpers.rb:192:in `javascript_include_tag'
|
314629
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:29:in `block (2 levels) in javascript_include_tag'
|
314630
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:28:in `map'
|
314631
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:28:in `block in javascript_include_tag'
|
314632
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:26:in `collect'
|
314633
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:26:in `javascript_include_tag'
|
314634
|
+
/Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb:6:in `___sers_jejacks_n__rojects_teabag_app_views_teabag_spec_index_html_erb__2664025588729755644_70163859823240'
|
314635
|
+
actionpack (3.2.9) lib/action_view/template.rb:145:in `block in render'
|
314636
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:125:in `instrument'
|
314637
|
+
actionpack (3.2.9) lib/action_view/template.rb:143:in `render'
|
314638
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
314639
|
+
actionpack (3.2.9) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
314640
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
|
314641
|
+
activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
314642
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
|
314643
|
+
actionpack (3.2.9) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
314644
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
314645
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
314646
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
314647
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
314648
|
+
actionpack (3.2.9) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
314649
|
+
actionpack (3.2.9) lib/action_view/renderer/renderer.rb:17:in `render'
|
314650
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
314651
|
+
actionpack (3.2.9) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
314652
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
314653
|
+
actionpack (3.2.9) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
314654
|
+
actionpack (3.2.9) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
314655
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:88:in `render'
|
314656
|
+
actionpack (3.2.9) lib/action_controller/metal/rendering.rb:16:in `render'
|
314657
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
314658
|
+
activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
314659
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
314660
|
+
activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
314661
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
314662
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
314663
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
314664
|
+
actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
314665
|
+
actionpack (3.2.9) lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
|
314666
|
+
/Users/jejacks0n/Projects/teabag/app/controllers/teabag/spec_controller.rb:13:in `index'
|
314667
|
+
actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
314668
|
+
actionpack (3.2.9) lib/abstract_controller/base.rb:167:in `process_action'
|
314669
|
+
actionpack (3.2.9) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
314670
|
+
actionpack (3.2.9) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
314671
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:403:in `_run__4409545302958912893__process_action__4195469920988687315__callbacks'
|
314672
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
|
314673
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
314674
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
314675
|
+
actionpack (3.2.9) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
314676
|
+
actionpack (3.2.9) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
314677
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
314678
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
|
314679
|
+
activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
314680
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
|
314681
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
314682
|
+
actionpack (3.2.9) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
314683
|
+
actionpack (3.2.9) lib/abstract_controller/base.rb:121:in `process'
|
314684
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:45:in `process'
|
314685
|
+
actionpack (3.2.9) lib/action_controller/metal.rb:203:in `dispatch'
|
314686
|
+
actionpack (3.2.9) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
314687
|
+
actionpack (3.2.9) lib/action_controller/metal.rb:246:in `block in action'
|
314688
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
314689
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
314690
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
314691
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
314692
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
314693
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
314694
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
314695
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
314696
|
+
railties (3.2.9) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
314697
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
314698
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
314699
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
314700
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
314701
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
314702
|
+
rack (1.4.1) lib/rack/etag.rb:23:in `call'
|
314703
|
+
rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
|
314704
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/head.rb:14:in `call'
|
314705
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
314706
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
314707
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
|
314708
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
|
314709
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
314710
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
314711
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `_run__483571330158663446__call__1095007070688312883__callbacks'
|
314712
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
|
314713
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
314714
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
314715
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
314716
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
314717
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
314718
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
314719
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
314720
|
+
railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
|
314721
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
|
314722
|
+
activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
|
314723
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
|
314724
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
314725
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
314726
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
314727
|
+
activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
314728
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
314729
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
|
314730
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
314731
|
+
railties (3.2.9) lib/rails/application.rb:223:in `call'
|
314732
|
+
railties (3.2.9) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
314733
|
+
rack (1.4.1) lib/rack/lint.rb:48:in `_call'
|
314734
|
+
rack (1.4.1) lib/rack/lint.rb:36:in `call'
|
314735
|
+
rack (1.4.1) lib/rack/showexceptions.rb:24:in `call'
|
314736
|
+
rack (1.4.1) lib/rack/commonlogger.rb:20:in `call'
|
314737
|
+
rack (1.4.1) lib/rack/chunked.rb:43:in `call'
|
314738
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
314739
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
314740
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
314741
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
314742
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
314743
|
+
|
314744
|
+
|
314745
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
|
314746
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
|
314747
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.7ms)
|
314748
|
+
|
314749
|
+
|
314750
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 18:25:06 -0700
|
314751
|
+
Processing by Teabag::SpecController#index as HTML
|
314752
|
+
Parameters: {"suite"=>nil}
|
314753
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (208.7ms)
|
314754
|
+
Completed 200 OK in 215ms (Views: 214.6ms)
|
314755
|
+
|
314756
|
+
|
314757
|
+
Started GET "/assets/teabag.css?body=1" for 127.0.0.1 at 2012-12-20 18:25:06 -0700
|
314758
|
+
Served asset /teabag.css - 200 OK (3ms)
|
314759
|
+
|
314760
|
+
|
314761
|
+
Started GET "/assets/teabag/base/teabag.js?body=1" for 127.0.0.1 at 2012-12-20 18:25:06 -0700
|
314762
|
+
Served asset /teabag/base/teabag.js - 200 OK (30ms)
|
314763
|
+
|
314764
|
+
|
314765
|
+
Started GET "/assets/jasmine-1.3.0.js?body=1" for 127.0.0.1 at 2012-12-20 18:25:06 -0700
|
314766
|
+
Served asset /jasmine-1.3.0.js - 200 OK (3ms)
|
314767
|
+
|
314768
|
+
|
314769
|
+
Started GET "/assets/teabag/base/runner.js?body=1" for 127.0.0.1 at 2012-12-20 18:25:06 -0700
|
314770
|
+
Served asset /teabag/base/runner.js - 200 OK (6ms)
|
314771
|
+
|
314772
|
+
|
314773
|
+
Started GET "/assets/teabag/base/reporters.js?body=1" for 127.0.0.1 at 2012-12-20 18:25:06 -0700
|
314774
|
+
Served asset /teabag/base/reporters.js - 200 OK (24ms)
|
314775
|
+
|
314776
|
+
|
314777
|
+
Started GET "/assets/teabag/base/reporters/html.js?body=1" for 127.0.0.1 at 2012-12-20 18:25:06 -0700
|
314778
|
+
Served asset /teabag/base/reporters/html.js - 200 OK (15ms)
|
314779
|
+
|
314780
|
+
|
314781
|
+
Started GET "/assets/teabag/base/reporters/console.js?body=1" for 127.0.0.1 at 2012-12-20 18:25:06 -0700
|
314782
|
+
Served asset /teabag/base/reporters/console.js - 200 OK (5ms)
|
314783
|
+
|
314784
|
+
|
314785
|
+
Started GET "/assets/teabag/base/reporters/html/progress_view.js?body=1" for 127.0.0.1 at 2012-12-20 18:25:06 -0700
|
314786
|
+
Served asset /teabag/base/reporters/html/progress_view.js - 200 OK (6ms)
|
314787
|
+
|
314788
|
+
|
314789
|
+
Started GET "/assets/teabag/base/reporters/html/spec_view.js?body=1" for 127.0.0.1 at 2012-12-20 18:25:06 -0700
|
314790
|
+
Served asset /teabag/base/reporters/html/spec_view.js - 200 OK (11ms)
|
314791
|
+
|
314792
|
+
|
314793
|
+
Started GET "/assets/teabag/base/reporters/html/failure_view.js?body=1" for 127.0.0.1 at 2012-12-20 18:25:06 -0700
|
314794
|
+
Served asset /teabag/base/reporters/html/failure_view.js - 200 OK (5ms)
|
314795
|
+
|
314796
|
+
|
314797
|
+
Started GET "/assets/teabag/base/reporters/html/suite_view.js?body=1" for 127.0.0.1 at 2012-12-20 18:25:06 -0700
|
314798
|
+
Served asset /teabag/base/reporters/html/suite_view.js - 200 OK (5ms)
|
314799
|
+
|
314800
|
+
|
314801
|
+
Started GET "/assets/teabag/jasmine/reporters/html.js?body=1" for 127.0.0.1 at 2012-12-20 18:25:06 -0700
|
314802
|
+
Served asset /teabag/jasmine/reporters/html.js - 200 OK (10ms)
|
314803
|
+
|
314804
|
+
|
314805
|
+
Started GET "/assets/teabag/jasmine.js?body=1" for 127.0.0.1 at 2012-12-20 18:25:06 -0700
|
314806
|
+
Served asset /teabag/jasmine.js - 200 OK (57ms)
|
314807
|
+
|
314808
|
+
|
314809
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2012-12-20 18:25:06 -0700
|
314810
|
+
Served asset /spec_helper.js - 200 OK (5ms)
|
314811
|
+
|
314812
|
+
|
314813
|
+
Started GET "/assets/teabag/base/reporters/console_spec.js?body=1" for 127.0.0.1 at 2012-12-20 18:25:06 -0700
|
314814
|
+
Served asset /teabag/base/reporters/console_spec.js - 200 OK (4ms)
|
314815
|
+
|
314816
|
+
|
314817
|
+
Started GET "/assets/teabag/base/reporters/html/failure_view_spec.js?body=1" for 127.0.0.1 at 2012-12-20 18:25:06 -0700
|
314818
|
+
Served asset /teabag/base/reporters/html/failure_view_spec.js - 200 OK (5ms)
|
314819
|
+
|
314820
|
+
|
314821
|
+
Started GET "/assets/teabag/base/reporters/html/progress_view_spec.js?body=1" for 127.0.0.1 at 2012-12-20 18:25:06 -0700
|
314822
|
+
Served asset /teabag/base/reporters/html/progress_view_spec.js - 200 OK (8ms)
|
314823
|
+
|
314824
|
+
|
314825
|
+
Started GET "/assets/teabag/base/reporters/html/spec_view_spec.js?body=1" for 127.0.0.1 at 2012-12-20 18:25:06 -0700
|
314826
|
+
Served asset /teabag/base/reporters/html/spec_view_spec.js - 200 OK (8ms)
|
314827
|
+
|
314828
|
+
|
314829
|
+
Started GET "/assets/teabag/base/reporters/html/suite_view_spec.js?body=1" for 127.0.0.1 at 2012-12-20 18:25:06 -0700
|
314830
|
+
Served asset /teabag/base/reporters/html/suite_view_spec.js - 200 OK (8ms)
|
314831
|
+
|
314832
|
+
|
314833
|
+
Started GET "/assets/teabag/base/reporters_spec.js?body=1" for 127.0.0.1 at 2012-12-20 18:25:06 -0700
|
314834
|
+
Served asset /teabag/base/reporters_spec.js - 200 OK (7ms)
|
314835
|
+
|
314836
|
+
|
314837
|
+
Started GET "/assets/teabag/base/reporters/html_spec.js?body=1" for 127.0.0.1 at 2012-12-20 18:25:06 -0700
|
314838
|
+
Served asset /teabag/base/reporters/html_spec.js - 200 OK (7ms)
|
314839
|
+
|
314840
|
+
|
314841
|
+
Started GET "/assets/teabag/base/runner_spec.js?body=1" for 127.0.0.1 at 2012-12-20 18:25:06 -0700
|
314842
|
+
Served asset /teabag/base/runner_spec.js - 200 OK (5ms)
|
314843
|
+
|
314844
|
+
|
314845
|
+
Started GET "/assets/teabag/base/teabag_spec.js?body=1" for 127.0.0.1 at 2012-12-20 18:25:06 -0700
|
314846
|
+
Served asset /teabag/base/teabag_spec.js - 200 OK (5ms)
|
314847
|
+
|
314848
|
+
|
314849
|
+
Started GET "/assets/teabag/phantomjs/runner_spec.js?body=1" for 127.0.0.1 at 2012-12-20 18:25:06 -0700
|
314850
|
+
Served asset /teabag/phantomjs/runner_spec.js - 200 OK (6ms)
|
314851
|
+
|
314852
|
+
|
314853
|
+
Started GET "/assets/phantomjs/runner.js?body=1" for 127.0.0.1 at 2012-12-20 18:25:06 -0700
|
314854
|
+
Served asset /phantomjs/runner.js - 200 OK (6ms)
|
314855
|
+
|
314856
|
+
|
314857
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 18:25:10 -0700
|
314858
|
+
Processing by Teabag::SpecController#index as HTML
|
314859
|
+
Parameters: {"suite"=>nil}
|
314860
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (52.1ms)
|
314861
|
+
Completed 200 OK in 54ms (Views: 53.4ms)
|
314862
|
+
|
314863
|
+
|
314864
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 18:27:18 -0700
|
314865
|
+
Processing by Teabag::SpecController#index as HTML
|
314866
|
+
Parameters: {"suite"=>nil}
|
314867
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (226.7ms)
|
314868
|
+
Completed 200 OK in 233ms (Views: 232.8ms)
|
314869
|
+
|
314870
|
+
|
314871
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 18:27:45 -0700
|
314872
|
+
Processing by Teabag::SpecController#index as HTML
|
314873
|
+
Parameters: {"suite"=>nil}
|
314874
|
+
|
314875
|
+
|
314876
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 18:28:57 -0700
|
314877
|
+
Processing by Teabag::SpecController#index as HTML
|
314878
|
+
Parameters: {"suite"=>nil}
|
314879
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (174625.1ms)
|
314880
|
+
Completed 200 OK in 174632ms (Views: 174631.1ms)
|
314881
|
+
|
314882
|
+
|
314883
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 18:32:08 -0700
|
314884
|
+
Processing by Teabag::SpecController#index as HTML
|
314885
|
+
Parameters: {"suite"=>nil}
|
314886
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (221.7ms)
|
314887
|
+
Completed 200 OK in 228ms (Views: 227.6ms)
|
314888
|
+
|
314889
|
+
|
314890
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 18:32:29 -0700
|
314891
|
+
Processing by Teabag::SpecController#index as HTML
|
314892
|
+
Parameters: {"suite"=>nil}
|
314893
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (87348.4ms)
|
314894
|
+
Completed 200 OK in 87350ms (Views: 87349.8ms)
|
314895
|
+
|
314896
|
+
|
314897
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 18:34:00 -0700
|
314898
|
+
Processing by Teabag::SpecController#index as HTML
|
314899
|
+
Parameters: {"suite"=>nil}
|
314900
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (24053.1ms)
|
314901
|
+
Completed 200 OK in 24055ms (Views: 24054.3ms)
|
314902
|
+
|
314903
|
+
|
314904
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 18:34:26 -0700
|
314905
|
+
Processing by Teabag::SpecController#index as HTML
|
314906
|
+
Parameters: {"suite"=>nil}
|
314907
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (64868.3ms)
|
314908
|
+
Completed 200 OK in 64870ms (Views: 64869.7ms)
|
314909
|
+
|
314910
|
+
|
314911
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 18:35:43 -0700
|
314912
|
+
Processing by Teabag::SpecController#index as HTML
|
314913
|
+
Parameters: {"suite"=>nil}
|
314914
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (61598.3ms)
|
314915
|
+
Completed 500 Internal Server Error in 61608ms
|
314916
|
+
|
314917
|
+
ActionView::Template::Error (undefined method `put' for #<#<Class:0x007f9723e5b368>:0x007f9723a9de60>):
|
314918
|
+
3: <head>
|
314919
|
+
4: <title>Teabag :: Javascript Test Runner</title>
|
314920
|
+
5: <%= stylesheet_link_tag *@suite.stylesheets %>
|
314921
|
+
6: <%= javascript_include_tag *@suite.javascripts %>
|
314922
|
+
7: <%= csrf_meta_tags %>
|
314923
|
+
8: <script type="text/javascript">
|
314924
|
+
9: window.originalOnload = window.onload
|
314925
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:35:in `javascript_include_tag'
|
314926
|
+
/Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb:6:in `___sers_jejacks_n__rojects_teabag_app_views_teabag_spec_index_html_erb__4430845629729849167_70143559166780'
|
314927
|
+
actionpack (3.2.9) lib/action_view/template.rb:145:in `block in render'
|
314928
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:125:in `instrument'
|
314929
|
+
actionpack (3.2.9) lib/action_view/template.rb:143:in `render'
|
314930
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
314931
|
+
actionpack (3.2.9) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
314932
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
|
314933
|
+
activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
314934
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
|
314935
|
+
actionpack (3.2.9) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
314936
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
314937
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
314938
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
314939
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
314940
|
+
actionpack (3.2.9) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
314941
|
+
actionpack (3.2.9) lib/action_view/renderer/renderer.rb:17:in `render'
|
314942
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
314943
|
+
actionpack (3.2.9) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
314944
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
314945
|
+
actionpack (3.2.9) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
314946
|
+
actionpack (3.2.9) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
314947
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:88:in `render'
|
314948
|
+
actionpack (3.2.9) lib/action_controller/metal/rendering.rb:16:in `render'
|
314949
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
314950
|
+
activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
314951
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
314952
|
+
activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
314953
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
314954
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
314955
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
314956
|
+
actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
314957
|
+
actionpack (3.2.9) lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
|
314958
|
+
/Users/jejacks0n/Projects/teabag/app/controllers/teabag/spec_controller.rb:13:in `index'
|
314959
|
+
actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
314960
|
+
actionpack (3.2.9) lib/abstract_controller/base.rb:167:in `process_action'
|
314961
|
+
actionpack (3.2.9) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
314962
|
+
actionpack (3.2.9) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
314963
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:403:in `_run__2716838231294269240__process_action__3939076846681546975__callbacks'
|
314964
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
|
314965
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
314966
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
314967
|
+
actionpack (3.2.9) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
314968
|
+
actionpack (3.2.9) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
314969
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
314970
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
|
314971
|
+
activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
314972
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
|
314973
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
314974
|
+
actionpack (3.2.9) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
314975
|
+
actionpack (3.2.9) lib/abstract_controller/base.rb:121:in `process'
|
314976
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:45:in `process'
|
314977
|
+
actionpack (3.2.9) lib/action_controller/metal.rb:203:in `dispatch'
|
314978
|
+
actionpack (3.2.9) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
314979
|
+
actionpack (3.2.9) lib/action_controller/metal.rb:246:in `block in action'
|
314980
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
314981
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
314982
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
314983
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
314984
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
314985
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
314986
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
314987
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
314988
|
+
railties (3.2.9) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
314989
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
314990
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
314991
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
314992
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
314993
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
314994
|
+
rack (1.4.1) lib/rack/etag.rb:23:in `call'
|
314995
|
+
rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
|
314996
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/head.rb:14:in `call'
|
314997
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
314998
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
314999
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
|
315000
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
|
315001
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
315002
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
315003
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `_run__3808961109065215247__call__1052611369074149150__callbacks'
|
315004
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
|
315005
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
315006
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
315007
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
315008
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
315009
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
315010
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
315011
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
315012
|
+
railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
|
315013
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
|
315014
|
+
activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
|
315015
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
|
315016
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
315017
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
315018
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
315019
|
+
activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
315020
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
315021
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
|
315022
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
315023
|
+
railties (3.2.9) lib/rails/application.rb:223:in `call'
|
315024
|
+
railties (3.2.9) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
315025
|
+
rack (1.4.1) lib/rack/lint.rb:48:in `_call'
|
315026
|
+
rack (1.4.1) lib/rack/lint.rb:36:in `call'
|
315027
|
+
rack (1.4.1) lib/rack/showexceptions.rb:24:in `call'
|
315028
|
+
rack (1.4.1) lib/rack/commonlogger.rb:20:in `call'
|
315029
|
+
rack (1.4.1) lib/rack/chunked.rb:43:in `call'
|
315030
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
315031
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
315032
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
315033
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
315034
|
+
/Users/jejacks0n/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
315035
|
+
|
315036
|
+
|
315037
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms)
|
315038
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms)
|
315039
|
+
Rendered /Users/jejacks0n/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (13.8ms)
|
315040
|
+
|
315041
|
+
|
315042
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 18:37:07 -0700
|
315043
|
+
Processing by Teabag::SpecController#index as HTML
|
315044
|
+
Parameters: {"suite"=>nil}
|
315045
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (790686.3ms)
|
315046
|
+
Completed 200 OK in 790708ms (Views: 790707.9ms)
|
315047
|
+
|
315048
|
+
|
315049
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 18:50:39 -0700
|
315050
|
+
Processing by Teabag::SpecController#index as HTML
|
315051
|
+
Parameters: {"suite"=>nil}
|
315052
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (2514.3ms)
|
315053
|
+
Completed 200 OK in 2525ms (Views: 2524.5ms)
|
315054
|
+
|
315055
|
+
|
315056
|
+
Started GET "/assets/teabag.css?body=1" for 127.0.0.1 at 2012-12-20 18:50:42 -0700
|
315057
|
+
Served asset /teabag.css - 200 OK (4ms)
|
315058
|
+
|
315059
|
+
|
315060
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 18:52:07 -0700
|
315061
|
+
Processing by Teabag::SpecController#index as HTML
|
315062
|
+
Parameters: {"suite"=>nil}
|
315063
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (234.6ms)
|
315064
|
+
Completed 200 OK in 241ms (Views: 240.8ms)
|
315065
|
+
|
315066
|
+
|
315067
|
+
Started GET "/assets/teabag.css?body=1" for 127.0.0.1 at 2012-12-20 18:52:07 -0700
|
315068
|
+
Served asset /teabag.css - 200 OK (3ms)
|
315069
|
+
|
315070
|
+
|
315071
|
+
Started GET "/assets/teabag/base/teabag.js?body=1" for 127.0.0.1 at 2012-12-20 18:52:07 -0700
|
315072
|
+
Served asset /teabag/base/teabag.js - 200 OK (31ms)
|
315073
|
+
|
315074
|
+
|
315075
|
+
Started GET "/assets/jasmine-1.3.0.js?body=1" for 127.0.0.1 at 2012-12-20 18:52:07 -0700
|
315076
|
+
Served asset /jasmine-1.3.0.js - 200 OK (3ms)
|
315077
|
+
|
315078
|
+
|
315079
|
+
Started GET "/assets/teabag/base/reporters/html.js?body=1" for 127.0.0.1 at 2012-12-20 18:52:07 -0700
|
315080
|
+
Served asset /teabag/base/reporters/html.js - 200 OK (15ms)
|
315081
|
+
|
315082
|
+
|
315083
|
+
Started GET "/assets/teabag/base/reporters/console.js?body=1" for 127.0.0.1 at 2012-12-20 18:52:07 -0700
|
315084
|
+
Served asset /teabag/base/reporters/console.js - 200 OK (4ms)
|
315085
|
+
|
315086
|
+
|
315087
|
+
Started GET "/assets/teabag/base/runner.js?body=1" for 127.0.0.1 at 2012-12-20 18:52:07 -0700
|
315088
|
+
Served asset /teabag/base/runner.js - 200 OK (6ms)
|
315089
|
+
|
315090
|
+
|
315091
|
+
Started GET "/assets/teabag/base/reporters.js?body=1" for 127.0.0.1 at 2012-12-20 18:52:07 -0700
|
315092
|
+
Served asset /teabag/base/reporters.js - 200 OK (20ms)
|
315093
|
+
|
315094
|
+
|
315095
|
+
Started GET "/assets/teabag/base/reporters/html/progress_view.js?body=1" for 127.0.0.1 at 2012-12-20 18:52:07 -0700
|
315096
|
+
Served asset /teabag/base/reporters/html/progress_view.js - 200 OK (5ms)
|
315097
|
+
|
315098
|
+
|
315099
|
+
Started GET "/assets/teabag/base/reporters/html/spec_view.js?body=1" for 127.0.0.1 at 2012-12-20 18:52:07 -0700
|
315100
|
+
Served asset /teabag/base/reporters/html/spec_view.js - 200 OK (4ms)
|
315101
|
+
|
315102
|
+
|
315103
|
+
Started GET "/assets/teabag/base/reporters/html/failure_view.js?body=1" for 127.0.0.1 at 2012-12-20 18:52:07 -0700
|
315104
|
+
Served asset /teabag/base/reporters/html/failure_view.js - 200 OK (29ms)
|
315105
|
+
|
315106
|
+
|
315107
|
+
Started GET "/assets/teabag/base/reporters/html/suite_view.js?body=1" for 127.0.0.1 at 2012-12-20 18:52:07 -0700
|
315108
|
+
Served asset /teabag/base/reporters/html/suite_view.js - 200 OK (7ms)
|
315109
|
+
|
315110
|
+
|
315111
|
+
Started GET "/assets/teabag/jasmine/reporters/html.js?body=1" for 127.0.0.1 at 2012-12-20 18:52:07 -0700
|
315112
|
+
Served asset /teabag/jasmine/reporters/html.js - 200 OK (7ms)
|
315113
|
+
|
315114
|
+
|
315115
|
+
Started GET "/assets/teabag/jasmine.js?body=1" for 127.0.0.1 at 2012-12-20 18:52:08 -0700
|
315116
|
+
Served asset /teabag/jasmine.js - 200 OK (30ms)
|
315117
|
+
|
315118
|
+
|
315119
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2012-12-20 18:52:08 -0700
|
315120
|
+
Served asset /spec_helper.js - 200 OK (5ms)
|
315121
|
+
|
315122
|
+
|
315123
|
+
Started GET "/assets/teabag/base/reporters/console_spec.js?body=1" for 127.0.0.1 at 2012-12-20 18:52:08 -0700
|
315124
|
+
Served asset /teabag/base/reporters/console_spec.js - 200 OK (4ms)
|
315125
|
+
|
315126
|
+
|
315127
|
+
Started GET "/assets/teabag/base/reporters/html/failure_view_spec.js?body=1" for 127.0.0.1 at 2012-12-20 18:52:08 -0700
|
315128
|
+
Served asset /teabag/base/reporters/html/failure_view_spec.js - 200 OK (5ms)
|
315129
|
+
|
315130
|
+
|
315131
|
+
Started GET "/assets/teabag/base/reporters/html/progress_view_spec.js?body=1" for 127.0.0.1 at 2012-12-20 18:52:08 -0700
|
315132
|
+
Served asset /teabag/base/reporters/html/progress_view_spec.js - 200 OK (7ms)
|
315133
|
+
|
315134
|
+
|
315135
|
+
Started GET "/assets/teabag/base/reporters/html/spec_view_spec.js?body=1" for 127.0.0.1 at 2012-12-20 18:52:08 -0700
|
315136
|
+
Served asset /teabag/base/reporters/html/spec_view_spec.js - 200 OK (4ms)
|
315137
|
+
|
315138
|
+
|
315139
|
+
Started GET "/assets/teabag/base/reporters/html/suite_view_spec.js?body=1" for 127.0.0.1 at 2012-12-20 18:52:08 -0700
|
315140
|
+
Served asset /teabag/base/reporters/html/suite_view_spec.js - 200 OK (4ms)
|
315141
|
+
|
315142
|
+
|
315143
|
+
Started GET "/assets/teabag/base/reporters/html_spec.js?body=1" for 127.0.0.1 at 2012-12-20 18:52:08 -0700
|
315144
|
+
Served asset /teabag/base/reporters/html_spec.js - 200 OK (5ms)
|
315145
|
+
|
315146
|
+
|
315147
|
+
Started GET "/assets/teabag/base/reporters_spec.js?body=1" for 127.0.0.1 at 2012-12-20 18:52:08 -0700
|
315148
|
+
Served asset /teabag/base/reporters_spec.js - 200 OK (4ms)
|
315149
|
+
|
315150
|
+
|
315151
|
+
Started GET "/assets/teabag/base/runner_spec.js?body=1" for 127.0.0.1 at 2012-12-20 18:52:08 -0700
|
315152
|
+
Served asset /teabag/base/runner_spec.js - 200 OK (7ms)
|
315153
|
+
|
315154
|
+
|
315155
|
+
Started GET "/assets/teabag/base/teabag_spec.js?body=1" for 127.0.0.1 at 2012-12-20 18:52:08 -0700
|
315156
|
+
Served asset /teabag/base/teabag_spec.js - 200 OK (6ms)
|
315157
|
+
|
315158
|
+
|
315159
|
+
Started GET "/assets/teabag/phantomjs/runner_spec.js?body=1" for 127.0.0.1 at 2012-12-20 18:52:08 -0700
|
315160
|
+
Served asset /teabag/phantomjs/runner_spec.js - 200 OK (6ms)
|
315161
|
+
|
315162
|
+
|
315163
|
+
Started GET "/assets/phantomjs/runner.js?body=1" for 127.0.0.1 at 2012-12-20 18:52:08 -0700
|
315164
|
+
Served asset /phantomjs/runner.js - 200 OK (5ms)
|
315165
|
+
|
315166
|
+
|
315167
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 18:52:18 -0700
|
315168
|
+
Processing by Teabag::SpecController#index as HTML
|
315169
|
+
Parameters: {"suite"=>nil}
|
315170
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (54.8ms)
|
315171
|
+
Completed 200 OK in 56ms (Views: 56.1ms)
|
315172
|
+
|
315173
|
+
|
315174
|
+
Started GET "/assets/jasmine-1.3.0.js?body=1" for 127.0.0.1 at 2012-12-20 18:52:23 -0700
|
315175
|
+
Served asset /jasmine-1.3.0.js - 304 Not Modified (0ms)
|
315176
|
+
|
315177
|
+
|
315178
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 18:52:42 -0700
|
315179
|
+
Processing by Teabag::SpecController#index as HTML
|
315180
|
+
Parameters: {"suite"=>nil}
|
315181
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (25.6ms)
|
315182
|
+
Completed 200 OK in 27ms (Views: 26.9ms)
|
315183
|
+
|
315184
|
+
|
315185
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 18:53:16 -0700
|
315186
|
+
Processing by Teabag::SpecController#index as HTML
|
315187
|
+
Parameters: {"suite"=>nil}
|
315188
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (224.6ms)
|
315189
|
+
Completed 200 OK in 231ms (Views: 230.9ms)
|
315190
|
+
|
315191
|
+
|
315192
|
+
Started GET "/assets/teabag.css?body=1" for 127.0.0.1 at 2012-12-20 18:53:16 -0700
|
315193
|
+
Served asset /teabag.css - 200 OK (12ms)
|
315194
|
+
|
315195
|
+
|
315196
|
+
Started GET "/assets/jasmine-1.3.0.js?body=1" for 127.0.0.1 at 2012-12-20 18:53:16 -0700
|
315197
|
+
Served asset /jasmine-1.3.0.js - 200 OK (4ms)
|
315198
|
+
|
315199
|
+
|
315200
|
+
Started GET "/assets/teabag/base/teabag.js?body=1" for 127.0.0.1 at 2012-12-20 18:53:16 -0700
|
315201
|
+
Served asset /teabag/base/teabag.js - 200 OK (26ms)
|
315202
|
+
|
315203
|
+
|
315204
|
+
Started GET "/assets/teabag/base/reporters.js?body=1" for 127.0.0.1 at 2012-12-20 18:53:16 -0700
|
315205
|
+
Served asset /teabag/base/reporters.js - 200 OK (40ms)
|
315206
|
+
|
315207
|
+
|
315208
|
+
Started GET "/assets/teabag/base/runner.js?body=1" for 127.0.0.1 at 2012-12-20 18:53:16 -0700
|
315209
|
+
Served asset /teabag/base/runner.js - 200 OK (3ms)
|
315210
|
+
|
315211
|
+
|
315212
|
+
Started GET "/assets/teabag/base/reporters/console.js?body=1" for 127.0.0.1 at 2012-12-20 18:53:16 -0700
|
315213
|
+
Served asset /teabag/base/reporters/console.js - 200 OK (4ms)
|
315214
|
+
|
315215
|
+
|
315216
|
+
Started GET "/assets/teabag/base/reporters/html.js?body=1" for 127.0.0.1 at 2012-12-20 18:53:16 -0700
|
315217
|
+
Served asset /teabag/base/reporters/html.js - 200 OK (14ms)
|
315218
|
+
|
315219
|
+
|
315220
|
+
Started GET "/assets/teabag/base/reporters/html/progress_view.js?body=1" for 127.0.0.1 at 2012-12-20 18:53:16 -0700
|
315221
|
+
Served asset /teabag/base/reporters/html/progress_view.js - 200 OK (7ms)
|
315222
|
+
|
315223
|
+
|
315224
|
+
Started GET "/assets/teabag/base/reporters/html/spec_view.js?body=1" for 127.0.0.1 at 2012-12-20 18:53:16 -0700
|
315225
|
+
Served asset /teabag/base/reporters/html/spec_view.js - 200 OK (4ms)
|
315226
|
+
|
315227
|
+
|
315228
|
+
Started GET "/assets/teabag/base/reporters/html/failure_view.js?body=1" for 127.0.0.1 at 2012-12-20 18:53:16 -0700
|
315229
|
+
Served asset /teabag/base/reporters/html/failure_view.js - 200 OK (4ms)
|
315230
|
+
|
315231
|
+
|
315232
|
+
Started GET "/assets/teabag/base/reporters/html/suite_view.js?body=1" for 127.0.0.1 at 2012-12-20 18:53:16 -0700
|
315233
|
+
Served asset /teabag/base/reporters/html/suite_view.js - 200 OK (4ms)
|
315234
|
+
|
315235
|
+
|
315236
|
+
Started GET "/assets/teabag/jasmine/reporters/html.js?body=1" for 127.0.0.1 at 2012-12-20 18:53:16 -0700
|
315237
|
+
Served asset /teabag/jasmine/reporters/html.js - 200 OK (6ms)
|
315238
|
+
|
315239
|
+
|
315240
|
+
Started GET "/assets/teabag/jasmine.js?body=1" for 127.0.0.1 at 2012-12-20 18:53:16 -0700
|
315241
|
+
Served asset /teabag/jasmine.js - 200 OK (31ms)
|
315242
|
+
|
315243
|
+
|
315244
|
+
Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2012-12-20 18:53:16 -0700
|
315245
|
+
Served asset /spec_helper.js - 200 OK (6ms)
|
315246
|
+
|
315247
|
+
|
315248
|
+
Started GET "/assets/teabag/base/reporters/console_spec.js?body=1" for 127.0.0.1 at 2012-12-20 18:53:16 -0700
|
315249
|
+
Served asset /teabag/base/reporters/console_spec.js - 200 OK (5ms)
|
315250
|
+
|
315251
|
+
|
315252
|
+
Started GET "/assets/teabag/base/reporters/html/failure_view_spec.js?body=1" for 127.0.0.1 at 2012-12-20 18:53:16 -0700
|
315253
|
+
Served asset /teabag/base/reporters/html/failure_view_spec.js - 200 OK (9ms)
|
315254
|
+
|
315255
|
+
|
315256
|
+
Started GET "/assets/teabag/base/reporters/html/progress_view_spec.js?body=1" for 127.0.0.1 at 2012-12-20 18:53:16 -0700
|
315257
|
+
Served asset /teabag/base/reporters/html/progress_view_spec.js - 200 OK (5ms)
|
315258
|
+
|
315259
|
+
|
315260
|
+
Started GET "/assets/teabag/base/reporters/html/spec_view_spec.js?body=1" for 127.0.0.1 at 2012-12-20 18:53:16 -0700
|
315261
|
+
Served asset /teabag/base/reporters/html/spec_view_spec.js - 200 OK (5ms)
|
315262
|
+
|
315263
|
+
|
315264
|
+
Started GET "/assets/teabag/base/reporters/html/suite_view_spec.js?body=1" for 127.0.0.1 at 2012-12-20 18:53:16 -0700
|
315265
|
+
Served asset /teabag/base/reporters/html/suite_view_spec.js - 200 OK (29ms)
|
315266
|
+
|
315267
|
+
|
315268
|
+
Started GET "/assets/teabag/base/reporters/html_spec.js?body=1" for 127.0.0.1 at 2012-12-20 18:53:16 -0700
|
315269
|
+
Served asset /teabag/base/reporters/html_spec.js - 200 OK (7ms)
|
315270
|
+
|
315271
|
+
|
315272
|
+
Started GET "/assets/teabag/base/reporters_spec.js?body=1" for 127.0.0.1 at 2012-12-20 18:53:16 -0700
|
315273
|
+
Served asset /teabag/base/reporters_spec.js - 200 OK (9ms)
|
315274
|
+
|
315275
|
+
|
315276
|
+
Started GET "/assets/teabag/base/teabag_spec.js?body=1" for 127.0.0.1 at 2012-12-20 18:53:16 -0700
|
315277
|
+
Served asset /teabag/base/teabag_spec.js - 200 OK (4ms)
|
315278
|
+
|
315279
|
+
|
315280
|
+
Started GET "/assets/teabag/base/runner_spec.js?body=1" for 127.0.0.1 at 2012-12-20 18:53:16 -0700
|
315281
|
+
Served asset /teabag/base/runner_spec.js - 200 OK (4ms)
|
315282
|
+
|
315283
|
+
|
315284
|
+
Started GET "/assets/teabag/phantomjs/runner_spec.js?body=1" for 127.0.0.1 at 2012-12-20 18:53:16 -0700
|
315285
|
+
Served asset /teabag/phantomjs/runner_spec.js - 200 OK (8ms)
|
315286
|
+
|
315287
|
+
|
315288
|
+
Started GET "/assets/phantomjs/runner.js?body=1" for 127.0.0.1 at 2012-12-20 18:53:16 -0700
|
315289
|
+
Served asset /phantomjs/runner.js - 200 OK (4ms)
|
315290
|
+
|
315291
|
+
|
315292
|
+
Started GET "/teabag" for 127.0.0.1 at 2012-12-20 18:53:18 -0700
|
315293
|
+
Processing by Teabag::SpecController#index as HTML
|
315294
|
+
Parameters: {"suite"=>nil}
|
315295
|
+
Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (29.5ms)
|
315296
|
+
Completed 200 OK in 31ms (Views: 30.9ms)
|