dossier 2.7.1 → 2.8.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (75) hide show
  1. checksums.yaml +7 -0
  2. data/{README.markdown → README.md} +10 -5
  3. data/Rakefile +1 -0
  4. data/app/controllers/dossier/reports_controller.rb +9 -38
  5. data/app/helpers/dossier/application_helper.rb +7 -1
  6. data/app/views/dossier/layouts/application.html.haml +6 -0
  7. data/app/views/dossier/reports/multi.html.haml +8 -3
  8. data/app/views/dossier/reports/show.html.haml +4 -2
  9. data/config/routes.rb +2 -2
  10. data/lib/dossier.rb +4 -8
  11. data/lib/dossier/adapter/active_record.rb +1 -1
  12. data/lib/dossier/formatter.rb +20 -3
  13. data/lib/dossier/multi_report.rb +17 -9
  14. data/lib/dossier/naming.rb +51 -0
  15. data/lib/dossier/renderer.rb +63 -0
  16. data/lib/dossier/report.rb +22 -7
  17. data/lib/dossier/responder.rb +34 -0
  18. data/lib/dossier/result.rb +5 -7
  19. data/lib/dossier/stream_csv.rb +10 -3
  20. data/lib/dossier/version.rb +1 -1
  21. data/lib/dossier/view_context_with_report_formatter.rb +7 -0
  22. data/lib/dossier/xls.rb +2 -2
  23. data/lib/generators/dossier/views/templates/show.html.haml +5 -3
  24. data/spec/dossier/adapter/active_record_spec.rb +1 -1
  25. data/spec/dossier/formatter_spec.rb +38 -3
  26. data/spec/dossier/multi_report_spec.rb +18 -1
  27. data/spec/dossier/naming_spec.rb +29 -0
  28. data/spec/dossier/renderer_spec.rb +57 -0
  29. data/spec/dossier/report_spec.rb +23 -2
  30. data/spec/dossier/responder_spec.rb +59 -0
  31. data/spec/dossier/result_spec.rb +4 -0
  32. data/spec/dossier/stream_csv_spec.rb +75 -0
  33. data/spec/dossier_spec.rb +0 -13
  34. data/spec/dummy/app/controllers/site_controller.rb +0 -4
  35. data/spec/dummy/app/reports/cats/are/super_fun_report.rb +9 -0
  36. data/spec/dummy/app/reports/combination_report.rb +9 -0
  37. data/spec/{support → dummy/app}/reports/employee_report.rb +0 -0
  38. data/spec/{support → dummy/app}/reports/employee_with_custom_client_report.rb +0 -0
  39. data/spec/dummy/app/reports/employee_with_custom_view_report.rb +27 -0
  40. data/spec/dummy/app/reports/hello_my_friends_report.rb +2 -0
  41. data/spec/{support → dummy/app}/reports/test_report.rb +0 -0
  42. data/spec/dummy/app/views/dossier/reports/combination/_options.html.haml +4 -0
  43. data/spec/dummy/app/views/dossier/reports/employee_with_custom_view.html.haml +5 -1
  44. data/spec/dummy/app/views/dossier/reports/employee_with_custom_view/_options.html.haml +6 -0
  45. data/spec/dummy/config/database.yml.travis +5 -0
  46. data/spec/dummy/db/test.sqlite3 +0 -0
  47. data/spec/dummy/log/development.log +3865 -0
  48. data/spec/dummy/log/test.log +44084 -0
  49. data/spec/dummy/tmp/cache/assets/CEA/5A0/sprockets%2Fc0534884cbc43494a05d9e957ea1298d +0 -0
  50. data/spec/dummy/tmp/cache/assets/D40/0D0/sprockets%2F15a6bb0a1346b6d7fe859c14bf729a49 +0 -0
  51. data/spec/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  52. data/spec/dummy/tmp/cache/assets/D51/510/sprockets%2Fca0353abc266080173bbc3c13efa935a +0 -0
  53. data/spec/dummy/tmp/cache/assets/D6C/400/sprockets%2F7fa180a6e05c7ca4346ef58c54bb30f8 +0 -0
  54. data/spec/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  55. data/spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  56. data/spec/dummy/{dossier_test → tmp/restart.txt} +0 -0
  57. data/spec/features/combination_report_spec.rb +13 -10
  58. data/spec/features/employee_spec.rb +76 -0
  59. data/spec/{requests → features}/employee_with_custom_client_spec.rb +3 -2
  60. data/spec/{requests → features}/employee_with_custom_controller_spec.rb +3 -2
  61. data/spec/features/namespaced_report_spec.rb +15 -0
  62. data/spec/fixtures/db/mysql2.yml.travis +4 -0
  63. data/spec/fixtures/db/sqlite3.yml.travis +2 -0
  64. data/spec/helpers/dossier/application_helper_spec.rb +24 -0
  65. data/spec/spec_helper.rb +11 -0
  66. metadata +99 -92
  67. data/spec/fixtures/reports/employee.html +0 -54
  68. data/spec/fixtures/reports/employee_with_custom_client.html +0 -54
  69. data/spec/fixtures/reports/employee_with_custom_view.html +0 -15
  70. data/spec/fixtures/reports/employee_with_footer.html +0 -56
  71. data/spec/fixtures/reports/employee_with_parameters.html +0 -38
  72. data/spec/requests/employee_spec.rb +0 -61
  73. data/spec/support/reports/combination_report.rb +0 -8
  74. data/spec/support/reports/employee_with_custom_view_report.rb +0 -8
  75. data/spec/support/reports/hello_my_friends_report.rb +0 -6
@@ -15,6 +15,10 @@ describe Dossier::Result do
15
15
  let(:adapter_result) { double(:adapter_result, rows: [result_row.values], headers: result_row.keys) }
16
16
  let(:result) { Dossier::Result.new(adapter_result, report).tap { |r| r.extend(EachStubber) } }
17
17
 
18
+ it "requires each to be overridden" do
19
+ expect { described_class.new(adapter_result, report).each }.to raise_error(NotImplementedError, /result must define/i)
20
+ end
21
+
18
22
  describe "initialization with an adapter result object" do
19
23
 
20
24
  it "will raise if the object isn't given" do
@@ -0,0 +1,75 @@
1
+ require 'spec_helper'
2
+
3
+ describe Dossier::StreamCSV do
4
+ let(:collection) {
5
+ [
6
+ %w[hello there sir how are you],
7
+ %w[i am well thanks for asking]
8
+ ]
9
+ }
10
+ let(:headers) { %w[w1 w2 w3 w4 w5 w6] }
11
+ let(:streamer) { described_class.new(collection, headers) }
12
+
13
+ describe "headers" do
14
+ it "allows passing headers" do
15
+ expect(streamer.headers).to eq headers
16
+ end
17
+
18
+ it "formats the headers when streamed" do
19
+ formatted = nil
20
+ streamer.each { |r| formatted = r; break }
21
+ expect(formatted).to eq %w[W1 W2 W3 W4 W5 W6].to_csv
22
+ end
23
+
24
+ describe "using the first element of the collection for headers" do
25
+ let(:streamer) { described_class.new(collection) }
26
+ let!(:original) { collection.dup }
27
+
28
+ it "takes the first element of the collection to be the headers" do
29
+ expect(streamer.headers).to eq original.first
30
+ end
31
+
32
+ it "*only* takes the first element off the collection" do
33
+ streamer.headers
34
+ expect(streamer.headers).to eq original.first
35
+ end
36
+ end
37
+
38
+ describe "explicitly false headers" do
39
+ let(:streamer) { described_class.new(collection, false) }
40
+
41
+ it "will not use headers if they are explicitly false" do
42
+ expect(streamer.headers).to be_nil
43
+ end
44
+
45
+ it "will not stream headers if they are not set" do
46
+ streamer = described_class.new(collection, false)
47
+ expect([].tap { |a| streamer.each { |r| a << r } }).to eq collection.map(&:to_csv)
48
+ end
49
+ end
50
+ end
51
+
52
+ it "calls to csv on each member of the collection" do
53
+ collection.each { |row| row.should_receive(:to_csv) }
54
+ streamer.each {}
55
+ end
56
+
57
+ describe "exceptions" do
58
+ let(:output) { String.new }
59
+ let(:error) { "Woooooooo cats are fluffy!" }
60
+ before(:each) { collection[0].stub(:to_csv).and_return { raise error } }
61
+
62
+ it "provides a backtrace if local request" do
63
+ Rails.application.config.stub(:consider_all_requests_local).and_return(true)
64
+ streamer.each { |line| output << line }
65
+ expect(output).to include(error)
66
+ end
67
+
68
+ it "provides a simple error if not a local request" do
69
+ Rails.application.config.stub(:consider_all_requests_local).and_return(false)
70
+ streamer.each { |line| output << line }
71
+ expect(output).to match /something went wrong/
72
+ end
73
+ end
74
+
75
+ end
@@ -28,17 +28,4 @@ describe Dossier do
28
28
  Dossier.configuration.should_receive(:client)
29
29
  Dossier.client
30
30
  end
31
-
32
- describe "report naming" do
33
- let(:klass) { HelloMyFriendsReport }
34
- let(:name) { 'hello_my_friends' }
35
-
36
- it "converts a report class to a report name" do
37
- expect(Dossier.class_to_name(klass)).to eq(name)
38
- end
39
-
40
- it "converting a report name to a report class" do
41
- expect(Dossier.name_to_class(name)).to eq(klass)
42
- end
43
- end
44
31
  end
@@ -1,8 +1,4 @@
1
1
  class SiteController < ApplicationController
2
- def index
3
- render text: 'wooo!'
4
- end
5
-
6
2
  def report
7
3
  report = EmployeeReport.new
8
4
  render template: 'dossier/reports/show', locals: {report: report.run}
@@ -0,0 +1,9 @@
1
+ module Cats
2
+ module Are
3
+ class SuperFunReport < Dossier::Report
4
+ def sql
5
+ "select 'cats', 'are', 'super', 'fun'"
6
+ end
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ class CombinationReport < Dossier::MultiReport
2
+
3
+ combine EmployeeReport, EmployeeWithCustomViewReport
4
+
5
+ def tiger_stripes
6
+ options.fetch(:tiger_stripes, 0)
7
+ end
8
+
9
+ end
@@ -0,0 +1,27 @@
1
+ class EmployeeWithCustomViewReport < Dossier::Report
2
+ # See spec/dummy/app/views
3
+
4
+ def self.dragon_colors
5
+ %w[blue red green black white silver brown]
6
+ end
7
+
8
+ def sql
9
+ "SELECT * FROM employees WHERE suspended = true"
10
+ end
11
+
12
+ def dragon_color
13
+ options.fetch(:dragon_color, self.class.dragon_colors.sample)
14
+ end
15
+
16
+ def formatter
17
+ @formatter ||= CustomFormatter
18
+ end
19
+
20
+ module CustomFormatter
21
+ include Dossier::Formatter
22
+ def margery_butts(word)
23
+ "Margery Butts #{word}"
24
+ end
25
+ end
26
+
27
+ end
@@ -0,0 +1,2 @@
1
+ class HelloMyFriendsReport < Dossier::Report
2
+ end
@@ -0,0 +1,4 @@
1
+ Some options plz!!
2
+ = form_for report, method: :get do |f|
3
+ = f.label :tiger_stripes
4
+ = f.text_field :tiger_stripes
@@ -1 +1,5 @@
1
- %h1 Yeah. Did you get that memo?
1
+ %h2 Yeah. Did you get that memo?
2
+ = render_options(report)
3
+ %p some report goes here
4
+ = debug report.results.arrays
5
+ %p= margery_butts('woo')
@@ -0,0 +1,6 @@
1
+ %h3 #{report.formatted_title} Options
2
+ options be here matey!
3
+ = form_for report, method: :get do |f|
4
+ = f.label :dragon_color
5
+ = f.select :dragon_color, report.class.dragon_colors.map { |c| [c.titleize, c] }
6
+
@@ -0,0 +1,5 @@
1
+ test:
2
+ adapter: mysql2
3
+ database: dossier_test
4
+ username: root
5
+ encoding: utf8
Binary file
@@ -511,3 +511,3868 @@ NameError (uninitialized constant SiteController::EmployeeReport):
511
511
  Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p194@dossier2/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
512
512
  Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p194@dossier2/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
513
513
  Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p194@dossier2/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.2ms)
514
+ Connecting to database specified by database.yml
515
+ Connecting to database specified by database.yml
516
+ Connecting to database specified by database.yml
517
+ Connecting to database specified by database.yml
518
+ Connecting to database specified by database.yml
519
+ Connecting to database specified by database.yml
520
+ Connecting to database specified by database.yml
521
+ Connecting to database specified by database.yml
522
+ Connecting to database specified by database.yml
523
+ Connecting to database specified by database.yml
524
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (18.7ms)
525
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (2.8ms)
526
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (2.9ms)
527
+ Rendered dossier/reports/employee_with_custom_view.html.haml (1.4ms)
528
+ Rendered dossier/reports/employee_with_custom_view.html.haml (0.1ms)
529
+ Rendered dossier/reports/employee_with_custom_view.html.haml (0.1ms)
530
+ Rendered dossier/reports/employee_with_custom_view.html.haml (0.1ms)
531
+ Rendered dossier/reports/employee_with_custom_view.html.haml (2.0ms)
532
+ Connecting to database specified by database.yml
533
+
534
+
535
+ Started GET "/" for 127.0.0.1 at 2013-05-28 15:12:42 -0400
536
+
537
+ ActionController::RoutingError (No route matches [GET] "/"):
538
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
539
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
540
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
541
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
542
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
543
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
544
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
545
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
546
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
547
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
548
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
549
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
550
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
551
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
552
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
553
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/request_handler.rb:96:in `process_request'
554
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_request_handler.rb:516:in `accept_and_process_next_request'
555
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_request_handler.rb:274:in `main_loop'
556
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:206:in `start_request_handler'
557
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:171:in `block in handle_spawn_application'
558
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/utils.rb:470:in `safe_fork'
559
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:166:in `handle_spawn_application'
560
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:357:in `server_main_loop'
561
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:206:in `start_synchronously'
562
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:180:in `start'
563
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:129:in `start'
564
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:253:in `block (2 levels) in spawn_rack_application'
565
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:132:in `lookup_or_add'
566
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:246:in `block in spawn_rack_application'
567
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:82:in `block in synchronize'
568
+ <internal:prelude>:10:in `synchronize'
569
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:79:in `synchronize'
570
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:244:in `spawn_rack_application'
571
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:137:in `spawn_application'
572
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:275:in `handle_spawn_application'
573
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:357:in `server_main_loop'
574
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:206:in `start_synchronously'
575
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/helper-scripts/passenger-spawn-server:99:in `<main>'
576
+
577
+
578
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (19.0ms)
579
+
580
+
581
+ Started GET "/reports/employee_with_custom_view" for 127.0.0.1 at 2013-05-28 15:12:50 -0400
582
+ Processing by Dossier::ReportsController#show as HTML
583
+ Parameters: {"report"=>"employee_with_custom_view"}
584
+ Completed 500 Internal Server Error in 2ms
585
+
586
+ NameError (uninitialized constant EmployeeWithCustomViewReport):
587
+ activesupport (3.2.13) lib/active_support/inflector/methods.rb:230:in `block in constantize'
588
+ activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `each'
589
+ activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `constantize'
590
+ activesupport (3.2.13) lib/active_support/core_ext/string/inflections.rb:54:in `constantize'
591
+ /Users/adamhunter/Studio/adamhunter/dossier/lib/dossier.rb:26:in `name_to_class'
592
+ /Users/adamhunter/Studio/adamhunter/dossier/app/controllers/dossier/reports_controller.rb:19:in `report_class'
593
+ /Users/adamhunter/Studio/adamhunter/dossier/app/controllers/dossier/reports_controller.rb:23:in `report'
594
+ /Users/adamhunter/Studio/adamhunter/dossier/app/controllers/dossier/reports_controller.rb:9:in `show'
595
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
596
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
597
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
598
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
599
+ activesupport (3.2.13) lib/active_support/callbacks.rb:414:in `_run__918150024287864246__process_action__4515465015970775371__callbacks'
600
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
601
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
602
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
603
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
604
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
605
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
606
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
607
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
608
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
609
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
610
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
611
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
612
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
613
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
614
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
615
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
616
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
617
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
618
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
619
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
620
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
621
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
622
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
623
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
624
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
625
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
626
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
627
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
628
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
629
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
630
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
631
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
632
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
633
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
634
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
635
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
636
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__1925755465331778345__call__3145548377279416885__callbacks'
637
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
638
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
639
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
640
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
641
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
642
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
643
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
644
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
645
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
646
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
647
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
648
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
649
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
650
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
651
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
652
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
653
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
654
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
655
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
656
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
657
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
658
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/request_handler.rb:96:in `process_request'
659
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_request_handler.rb:516:in `accept_and_process_next_request'
660
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_request_handler.rb:274:in `main_loop'
661
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:206:in `start_request_handler'
662
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:171:in `block in handle_spawn_application'
663
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/utils.rb:470:in `safe_fork'
664
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:166:in `handle_spawn_application'
665
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:357:in `server_main_loop'
666
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:206:in `start_synchronously'
667
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:180:in `start'
668
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:129:in `start'
669
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:253:in `block (2 levels) in spawn_rack_application'
670
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:132:in `lookup_or_add'
671
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:246:in `block in spawn_rack_application'
672
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:82:in `block in synchronize'
673
+ <internal:prelude>:10:in `synchronize'
674
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:79:in `synchronize'
675
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:244:in `spawn_rack_application'
676
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:137:in `spawn_application'
677
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:275:in `handle_spawn_application'
678
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:357:in `server_main_loop'
679
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:206:in `start_synchronously'
680
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/helper-scripts/passenger-spawn-server:99:in `<main>'
681
+
682
+
683
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
684
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
685
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.0ms)
686
+
687
+
688
+ Started GET "/reports/employee_with_custom_view" for 127.0.0.1 at 2013-05-28 15:12:57 -0400
689
+ Processing by Dossier::ReportsController#show as HTML
690
+ Parameters: {"report"=>"employee_with_custom_view"}
691
+ Completed 500 Internal Server Error in 1ms
692
+
693
+ NameError (uninitialized constant EmployeeWithCustomViewReport):
694
+ activesupport (3.2.13) lib/active_support/inflector/methods.rb:230:in `block in constantize'
695
+ activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `each'
696
+ activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `constantize'
697
+ activesupport (3.2.13) lib/active_support/core_ext/string/inflections.rb:54:in `constantize'
698
+ /Users/adamhunter/Studio/adamhunter/dossier/lib/dossier.rb:26:in `name_to_class'
699
+ /Users/adamhunter/Studio/adamhunter/dossier/app/controllers/dossier/reports_controller.rb:19:in `report_class'
700
+ /Users/adamhunter/Studio/adamhunter/dossier/app/controllers/dossier/reports_controller.rb:23:in `report'
701
+ /Users/adamhunter/Studio/adamhunter/dossier/app/controllers/dossier/reports_controller.rb:9:in `show'
702
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
703
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
704
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
705
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
706
+ activesupport (3.2.13) lib/active_support/callbacks.rb:414:in `_run__918150024287864246__process_action__4515465015970775371__callbacks'
707
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
708
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
709
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
710
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
711
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
712
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
713
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
714
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
715
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
716
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
717
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
718
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
719
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
720
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
721
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
722
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
723
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
724
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
725
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
726
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
727
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
728
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
729
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
730
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
731
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
732
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
733
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
734
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
735
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
736
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
737
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
738
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
739
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
740
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
741
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
742
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
743
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__1925755465331778345__call__3145548377279416885__callbacks'
744
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
745
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
746
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
747
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
748
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
749
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
750
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
751
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
752
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
753
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
754
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
755
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
756
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
757
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
758
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
759
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
760
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
761
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
762
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
763
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
764
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
765
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/request_handler.rb:96:in `process_request'
766
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_request_handler.rb:516:in `accept_and_process_next_request'
767
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_request_handler.rb:274:in `main_loop'
768
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:206:in `start_request_handler'
769
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:171:in `block in handle_spawn_application'
770
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/utils.rb:470:in `safe_fork'
771
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:166:in `handle_spawn_application'
772
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:357:in `server_main_loop'
773
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:206:in `start_synchronously'
774
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:180:in `start'
775
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:129:in `start'
776
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:253:in `block (2 levels) in spawn_rack_application'
777
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:132:in `lookup_or_add'
778
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:246:in `block in spawn_rack_application'
779
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:82:in `block in synchronize'
780
+ <internal:prelude>:10:in `synchronize'
781
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:79:in `synchronize'
782
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:244:in `spawn_rack_application'
783
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:137:in `spawn_application'
784
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:275:in `handle_spawn_application'
785
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:357:in `server_main_loop'
786
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:206:in `start_synchronously'
787
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/helper-scripts/passenger-spawn-server:99:in `<main>'
788
+
789
+
790
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
791
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
792
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.3ms)
793
+
794
+
795
+ Started GET "/reports/employee_with_custom_view" for 127.0.0.1 at 2013-05-28 15:13:30 -0400
796
+ Processing by Dossier::ReportsController#show as HTML
797
+ Parameters: {"report"=>"employee_with_custom_view"}
798
+ Completed 500 Internal Server Error in 1ms
799
+
800
+ NameError (uninitialized constant EmployeeWithCustomViewReport):
801
+ activesupport (3.2.13) lib/active_support/inflector/methods.rb:230:in `block in constantize'
802
+ activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `each'
803
+ activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `constantize'
804
+ activesupport (3.2.13) lib/active_support/core_ext/string/inflections.rb:54:in `constantize'
805
+ /Users/adamhunter/Studio/adamhunter/dossier/lib/dossier.rb:26:in `name_to_class'
806
+ /Users/adamhunter/Studio/adamhunter/dossier/app/controllers/dossier/reports_controller.rb:19:in `report_class'
807
+ /Users/adamhunter/Studio/adamhunter/dossier/app/controllers/dossier/reports_controller.rb:23:in `report'
808
+ /Users/adamhunter/Studio/adamhunter/dossier/app/controllers/dossier/reports_controller.rb:9:in `show'
809
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
810
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
811
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
812
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
813
+ activesupport (3.2.13) lib/active_support/callbacks.rb:414:in `_run__918150024287864246__process_action__4515465015970775371__callbacks'
814
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
815
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
816
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
817
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
818
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
819
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
820
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
821
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
822
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
823
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
824
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
825
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
826
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
827
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
828
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
829
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
830
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
831
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
832
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
833
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
834
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
835
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
836
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
837
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
838
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
839
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
840
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
841
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
842
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
843
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
844
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
845
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
846
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
847
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
848
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
849
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
850
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__1925755465331778345__call__3145548377279416885__callbacks'
851
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
852
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
853
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
854
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
855
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
856
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
857
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
858
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
859
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
860
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
861
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
862
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
863
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
864
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
865
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
866
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
867
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
868
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
869
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
870
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
871
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
872
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/request_handler.rb:96:in `process_request'
873
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_request_handler.rb:516:in `accept_and_process_next_request'
874
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_request_handler.rb:274:in `main_loop'
875
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:206:in `start_request_handler'
876
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:171:in `block in handle_spawn_application'
877
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/utils.rb:470:in `safe_fork'
878
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:166:in `handle_spawn_application'
879
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:357:in `server_main_loop'
880
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:206:in `start_synchronously'
881
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:180:in `start'
882
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:129:in `start'
883
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:253:in `block (2 levels) in spawn_rack_application'
884
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:132:in `lookup_or_add'
885
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:246:in `block in spawn_rack_application'
886
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:82:in `block in synchronize'
887
+ <internal:prelude>:10:in `synchronize'
888
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:79:in `synchronize'
889
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:244:in `spawn_rack_application'
890
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:137:in `spawn_application'
891
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:275:in `handle_spawn_application'
892
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:357:in `server_main_loop'
893
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:206:in `start_synchronously'
894
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/helper-scripts/passenger-spawn-server:99:in `<main>'
895
+
896
+
897
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
898
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
899
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.7ms)
900
+ Connecting to database specified by database.yml
901
+
902
+
903
+ Started GET "/reports/employee_with_custom_view" for 127.0.0.1 at 2013-05-28 15:13:43 -0400
904
+ Processing by Dossier::ReportsController#show as HTML
905
+ Parameters: {"report"=>"employee_with_custom_view"}
906
+ Completed 500 Internal Server Error in 2ms
907
+
908
+ NameError (uninitialized constant EmployeeWithCustomViewReport):
909
+ activesupport (3.2.13) lib/active_support/inflector/methods.rb:230:in `block in constantize'
910
+ activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `each'
911
+ activesupport (3.2.13) lib/active_support/inflector/methods.rb:229:in `constantize'
912
+ activesupport (3.2.13) lib/active_support/core_ext/string/inflections.rb:54:in `constantize'
913
+ /Users/adamhunter/Studio/adamhunter/dossier/lib/dossier.rb:26:in `name_to_class'
914
+ /Users/adamhunter/Studio/adamhunter/dossier/app/controllers/dossier/reports_controller.rb:19:in `report_class'
915
+ /Users/adamhunter/Studio/adamhunter/dossier/app/controllers/dossier/reports_controller.rb:23:in `report'
916
+ /Users/adamhunter/Studio/adamhunter/dossier/app/controllers/dossier/reports_controller.rb:9:in `show'
917
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
918
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
919
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
920
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
921
+ activesupport (3.2.13) lib/active_support/callbacks.rb:414:in `_run__918150024287864246__process_action__4515465015970775371__callbacks'
922
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
923
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
924
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
925
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
926
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
927
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
928
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
929
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
930
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
931
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
932
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
933
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
934
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
935
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
936
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
937
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
938
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
939
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
940
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
941
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
942
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
943
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
944
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
945
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
946
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
947
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
948
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
949
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
950
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
951
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
952
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
953
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
954
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
955
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
956
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
957
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
958
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__1925755465331778345__call__3145548377279416885__callbacks'
959
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
960
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
961
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
962
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
963
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
964
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
965
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
966
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
967
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
968
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
969
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
970
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
971
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
972
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
973
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
974
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
975
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
976
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
977
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
978
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
979
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
980
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/request_handler.rb:96:in `process_request'
981
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_request_handler.rb:516:in `accept_and_process_next_request'
982
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_request_handler.rb:274:in `main_loop'
983
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:206:in `start_request_handler'
984
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:171:in `block in handle_spawn_application'
985
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/utils.rb:470:in `safe_fork'
986
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:166:in `handle_spawn_application'
987
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:357:in `server_main_loop'
988
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:206:in `start_synchronously'
989
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:180:in `start'
990
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:129:in `start'
991
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:253:in `block (2 levels) in spawn_rack_application'
992
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:132:in `lookup_or_add'
993
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:246:in `block in spawn_rack_application'
994
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:82:in `block in synchronize'
995
+ <internal:prelude>:10:in `synchronize'
996
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:79:in `synchronize'
997
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:244:in `spawn_rack_application'
998
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:137:in `spawn_application'
999
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:275:in `handle_spawn_application'
1000
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:357:in `server_main_loop'
1001
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:206:in `start_synchronously'
1002
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/helper-scripts/passenger-spawn-server:99:in `<main>'
1003
+
1004
+
1005
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
1006
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
1007
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.3ms)
1008
+ Connecting to database specified by database.yml
1009
+ Connecting to database specified by database.yml
1010
+
1011
+
1012
+ Started GET "/reports/employee_with_custom_view" for 127.0.0.1 at 2013-05-28 15:19:00 -0400
1013
+ Processing by Dossier::ReportsController#show as HTML
1014
+ Parameters: {"report"=>"employee_with_custom_view"}
1015
+ Rendered dossier/reports/employee_with_custom_view.html.haml (3.7ms)
1016
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml within layouts/application (15.2ms)
1017
+ Completed 500 Internal Server Error in 39ms
1018
+
1019
+ ActionView::Template::Error (undefined local variable or method `report' for #<#<Class:0x007fc49dbbda28>:0x007fc49dbc4ee0>):
1020
+ 1: %h1= report.formatted_title
1021
+ 2:
1022
+ 3: = link_to 'Download CSV', dossier_report_path(format: 'csv', options: report.options, report: report.class.report_name), class: 'download-csv'
1023
+ 4:
1024
+ /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml:1:in `___sers_adamhunter__tudio_adamhunter_dossier_app_views_dossier_reports_show_html_haml___3326089053695332177_70241218346140'
1025
+ actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
1026
+ activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
1027
+ actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
1028
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
1029
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
1030
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
1031
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1032
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
1033
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
1034
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
1035
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
1036
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
1037
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
1038
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
1039
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
1040
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
1041
+ actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
1042
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
1043
+ actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
1044
+ actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
1045
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
1046
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
1047
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
1048
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
1049
+ /Users/adamhunter/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
1050
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
1051
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
1052
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
1053
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
1054
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
1055
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
1056
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
1057
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
1058
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
1059
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1060
+ activesupport (3.2.13) lib/active_support/callbacks.rb:414:in `_run__918150024287864246__process_action__4515465015970775371__callbacks'
1061
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
1062
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1063
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
1064
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
1065
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
1066
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1067
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
1068
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1069
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
1070
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1071
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
1072
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1073
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
1074
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
1075
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
1076
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1077
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
1078
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
1079
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1080
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
1081
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
1082
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
1083
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
1084
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
1085
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1086
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
1087
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
1088
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
1089
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1090
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
1091
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
1092
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
1093
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
1094
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
1095
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
1096
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1097
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__1925755465331778345__call__3145548377279416885__callbacks'
1098
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
1099
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1100
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
1101
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1102
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1103
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1104
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1105
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1106
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
1107
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
1108
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
1109
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
1110
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1111
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
1112
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
1113
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1114
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
1115
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
1116
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
1117
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
1118
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
1119
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/request_handler.rb:96:in `process_request'
1120
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_request_handler.rb:516:in `accept_and_process_next_request'
1121
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_request_handler.rb:274:in `main_loop'
1122
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:206:in `start_request_handler'
1123
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:171:in `block in handle_spawn_application'
1124
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/utils.rb:470:in `safe_fork'
1125
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:166:in `handle_spawn_application'
1126
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:357:in `server_main_loop'
1127
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:206:in `start_synchronously'
1128
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:180:in `start'
1129
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:129:in `start'
1130
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:253:in `block (2 levels) in spawn_rack_application'
1131
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:132:in `lookup_or_add'
1132
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:246:in `block in spawn_rack_application'
1133
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:82:in `block in synchronize'
1134
+ <internal:prelude>:10:in `synchronize'
1135
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:79:in `synchronize'
1136
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:244:in `spawn_rack_application'
1137
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:137:in `spawn_application'
1138
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:275:in `handle_spawn_application'
1139
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:357:in `server_main_loop'
1140
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:206:in `start_synchronously'
1141
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/helper-scripts/passenger-spawn-server:99:in `<main>'
1142
+
1143
+
1144
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.9ms)
1145
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
1146
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.2ms)
1147
+ Connecting to database specified by database.yml
1148
+
1149
+
1150
+ Started GET "/reports/employee_with_custom_view" for 127.0.0.1 at 2013-05-28 15:24:47 -0400
1151
+ Processing by Dossier::ReportsController#show as HTML
1152
+ Parameters: {"report"=>"employee_with_custom_view"}
1153
+ Rendered dossier/reports/employee_with_custom_view.html.haml within layouts/application (3.9ms)
1154
+ Compiled jquery.js (2ms) (pid 56918)
1155
+ Compiled jquery_ujs.js (0ms) (pid 56918)
1156
+ Compiled application.js (47ms) (pid 56918)
1157
+ Completed 200 OK in 151ms (Views: 148.7ms | ActiveRecord: 0.0ms)
1158
+
1159
+
1160
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 15:24:48 -0400
1161
+ Served asset /application.css - 200 OK (3ms)
1162
+
1163
+
1164
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 15:24:48 -0400
1165
+ Served asset /jquery.js - 200 OK (3ms)
1166
+
1167
+
1168
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 15:24:48 -0400
1169
+ Served asset /jquery_ujs.js - 200 OK (4ms)
1170
+
1171
+
1172
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 15:24:48 -0400
1173
+ Served asset /application.js - 200 OK (10ms)
1174
+
1175
+
1176
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 15:24:51 -0400
1177
+ Processing by Dossier::ReportsController#multi as HTML
1178
+ Parameters: {"report"=>"combination"}
1179
+ EmployeeReport (0.4ms) SELECT * FROM employees WHERE 1=1
1180
+ ORDER BY name ASC
1181
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (18.8ms)
1182
+ Rendered dossier/reports/employee_with_custom_view.html.haml (1.1ms)
1183
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (41.7ms)
1184
+ Completed 200 OK in 85ms (Views: 83.4ms | ActiveRecord: 0.4ms)
1185
+
1186
+
1187
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 15:24:51 -0400
1188
+ Served asset /jquery.js - 304 Not Modified (4ms)
1189
+ Connecting to database specified by database.yml
1190
+
1191
+
1192
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 17:33:37 -0400
1193
+ Processing by Dossier::ReportsController#multi as HTML
1194
+ Parameters: {"report"=>"combination"}
1195
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (11.6ms)
1196
+ Completed 500 Internal Server Error in 34ms
1197
+
1198
+ ActionView::Template::Error (wrong number of arguments (1 for 0)):
1199
+ 1: %h1= multi.class.report_name
1200
+ 2: - multi.reports.each do |report|
1201
+ 3: = report.render layout: false
1202
+ /Users/adamhunter/Studio/adamhunter/dossier/lib/dossier/renderer.rb:10:in `render'
1203
+ /Users/adamhunter/Studio/adamhunter/dossier/lib/dossier/report.rb:65:in `render'
1204
+ /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml:3:in `block in ___sers_adamhunter__tudio_adamhunter_dossier_app_views_dossier_reports_multi_html_haml__2412558634156540912_70241225491580'
1205
+ /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml:2:in `each'
1206
+ /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml:2:in `___sers_adamhunter__tudio_adamhunter_dossier_app_views_dossier_reports_multi_html_haml__2412558634156540912_70241225491580'
1207
+ actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
1208
+ activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
1209
+ actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
1210
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
1211
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
1212
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
1213
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1214
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
1215
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
1216
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
1217
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
1218
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
1219
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
1220
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
1221
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
1222
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
1223
+ actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
1224
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
1225
+ actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
1226
+ actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
1227
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
1228
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
1229
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
1230
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
1231
+ /Users/adamhunter/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
1232
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
1233
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
1234
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
1235
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
1236
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
1237
+ /Users/adamhunter/Studio/adamhunter/dossier/app/controllers/dossier/reports_controller.rb:13:in `multi'
1238
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1239
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
1240
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
1241
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1242
+ activesupport (3.2.13) lib/active_support/callbacks.rb:414:in `_run__918150024287864246__process_action__311356567480637522__callbacks'
1243
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
1244
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1245
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
1246
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
1247
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
1248
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1249
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
1250
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1251
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
1252
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1253
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
1254
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1255
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
1256
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
1257
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
1258
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1259
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
1260
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
1261
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1262
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
1263
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
1264
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
1265
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
1266
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
1267
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1268
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
1269
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
1270
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
1271
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1272
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
1273
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
1274
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
1275
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
1276
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
1277
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
1278
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1279
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__1925755465331778345__call__3145548377279416885__callbacks'
1280
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
1281
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1282
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
1283
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1284
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1285
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1286
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1287
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1288
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
1289
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
1290
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
1291
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
1292
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1293
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
1294
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
1295
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1296
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
1297
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
1298
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
1299
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
1300
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
1301
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/request_handler.rb:96:in `process_request'
1302
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_request_handler.rb:516:in `accept_and_process_next_request'
1303
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_request_handler.rb:274:in `main_loop'
1304
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:206:in `start_request_handler'
1305
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:171:in `block in handle_spawn_application'
1306
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/utils.rb:470:in `safe_fork'
1307
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:166:in `handle_spawn_application'
1308
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:357:in `server_main_loop'
1309
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:206:in `start_synchronously'
1310
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:180:in `start'
1311
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:129:in `start'
1312
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:253:in `block (2 levels) in spawn_rack_application'
1313
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:132:in `lookup_or_add'
1314
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:246:in `block in spawn_rack_application'
1315
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:82:in `block in synchronize'
1316
+ <internal:prelude>:10:in `synchronize'
1317
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:79:in `synchronize'
1318
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:244:in `spawn_rack_application'
1319
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:137:in `spawn_application'
1320
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:275:in `handle_spawn_application'
1321
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:357:in `server_main_loop'
1322
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:206:in `start_synchronously'
1323
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/helper-scripts/passenger-spawn-server:99:in `<main>'
1324
+
1325
+
1326
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
1327
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms)
1328
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (17.2ms)
1329
+
1330
+
1331
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 17:34:47 -0400
1332
+ Processing by Dossier::ReportsController#multi as HTML
1333
+ Parameters: {"report"=>"combination"}
1334
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (1.6ms)
1335
+ Completed 500 Internal Server Error in 7ms
1336
+
1337
+ ActionView::Template::Error (wrong number of arguments (1 for 0)):
1338
+ 1: %h1= multi.class.report_name
1339
+ 2: - multi.reports.each do |report|
1340
+ 3: = report.render layout: false
1341
+ /Users/adamhunter/Studio/adamhunter/dossier/lib/dossier/renderer.rb:10:in `render'
1342
+ /Users/adamhunter/Studio/adamhunter/dossier/lib/dossier/report.rb:65:in `render'
1343
+ /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml:3:in `block in ___sers_adamhunter__tudio_adamhunter_dossier_app_views_dossier_reports_multi_html_haml__2412558634156540912_70241225491580'
1344
+ /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml:2:in `each'
1345
+ /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml:2:in `___sers_adamhunter__tudio_adamhunter_dossier_app_views_dossier_reports_multi_html_haml__2412558634156540912_70241225491580'
1346
+ actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
1347
+ activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
1348
+ actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
1349
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
1350
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
1351
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
1352
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1353
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
1354
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
1355
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
1356
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
1357
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
1358
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
1359
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
1360
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
1361
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
1362
+ actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
1363
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
1364
+ actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
1365
+ actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
1366
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
1367
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
1368
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
1369
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
1370
+ /Users/adamhunter/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
1371
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
1372
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
1373
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
1374
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
1375
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
1376
+ /Users/adamhunter/Studio/adamhunter/dossier/app/controllers/dossier/reports_controller.rb:13:in `multi'
1377
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1378
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
1379
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
1380
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1381
+ activesupport (3.2.13) lib/active_support/callbacks.rb:414:in `_run__918150024287864246__process_action__311356567480637522__callbacks'
1382
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
1383
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1384
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
1385
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
1386
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
1387
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1388
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
1389
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1390
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
1391
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1392
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
1393
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1394
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
1395
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
1396
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
1397
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1398
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
1399
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
1400
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1401
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
1402
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
1403
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
1404
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
1405
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
1406
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1407
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
1408
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
1409
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
1410
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1411
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
1412
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
1413
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
1414
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
1415
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
1416
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
1417
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1418
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__1925755465331778345__call__3145548377279416885__callbacks'
1419
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
1420
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1421
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
1422
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1423
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1424
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1425
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1426
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1427
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
1428
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
1429
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
1430
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
1431
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1432
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
1433
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
1434
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1435
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
1436
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
1437
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
1438
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
1439
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
1440
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/request_handler.rb:96:in `process_request'
1441
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_request_handler.rb:516:in `accept_and_process_next_request'
1442
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_request_handler.rb:274:in `main_loop'
1443
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:206:in `start_request_handler'
1444
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:171:in `block in handle_spawn_application'
1445
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/utils.rb:470:in `safe_fork'
1446
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:166:in `handle_spawn_application'
1447
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:357:in `server_main_loop'
1448
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:206:in `start_synchronously'
1449
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:180:in `start'
1450
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:129:in `start'
1451
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:253:in `block (2 levels) in spawn_rack_application'
1452
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:132:in `lookup_or_add'
1453
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:246:in `block in spawn_rack_application'
1454
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:82:in `block in synchronize'
1455
+ <internal:prelude>:10:in `synchronize'
1456
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:79:in `synchronize'
1457
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:244:in `spawn_rack_application'
1458
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:137:in `spawn_application'
1459
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:275:in `handle_spawn_application'
1460
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:357:in `server_main_loop'
1461
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:206:in `start_synchronously'
1462
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/helper-scripts/passenger-spawn-server:99:in `<main>'
1463
+
1464
+
1465
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
1466
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms)
1467
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.8ms)
1468
+ Connecting to database specified by database.yml
1469
+
1470
+
1471
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 17:34:58 -0400
1472
+ Processing by Dossier::ReportsController#multi as HTML
1473
+ Parameters: {"report"=>"combination"}
1474
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (8.5ms)
1475
+ Completed 500 Internal Server Error in 20ms
1476
+
1477
+ ActionView::Template::Error (wrong number of arguments (2 for 1)):
1478
+ 1: %h1= multi.class.report_name
1479
+ 2: - multi.reports.each do |report|
1480
+ 3: = report.render layout: false
1481
+ /Users/adamhunter/Studio/adamhunter/dossier/lib/dossier/renderer.rb:22:in `render_template'
1482
+ /Users/adamhunter/Studio/adamhunter/dossier/lib/dossier/renderer.rb:11:in `render'
1483
+ /Users/adamhunter/Studio/adamhunter/dossier/lib/dossier/report.rb:65:in `render'
1484
+ /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml:3:in `block in ___sers_adamhunter__tudio_adamhunter_dossier_app_views_dossier_reports_multi_html_haml__2412558634156540912_70241201255020'
1485
+ /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml:2:in `each'
1486
+ /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml:2:in `___sers_adamhunter__tudio_adamhunter_dossier_app_views_dossier_reports_multi_html_haml__2412558634156540912_70241201255020'
1487
+ actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
1488
+ activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
1489
+ actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
1490
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
1491
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
1492
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
1493
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1494
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
1495
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
1496
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
1497
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
1498
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
1499
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
1500
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
1501
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
1502
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
1503
+ actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
1504
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
1505
+ actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
1506
+ actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
1507
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
1508
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
1509
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
1510
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
1511
+ /Users/adamhunter/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
1512
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
1513
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
1514
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
1515
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
1516
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
1517
+ /Users/adamhunter/Studio/adamhunter/dossier/app/controllers/dossier/reports_controller.rb:13:in `multi'
1518
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1519
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
1520
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
1521
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1522
+ activesupport (3.2.13) lib/active_support/callbacks.rb:414:in `_run__918150024287864246__process_action__311356567480637522__callbacks'
1523
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
1524
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1525
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
1526
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
1527
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
1528
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1529
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
1530
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1531
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
1532
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1533
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
1534
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1535
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
1536
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
1537
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
1538
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1539
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
1540
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
1541
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1542
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
1543
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
1544
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
1545
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
1546
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
1547
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1548
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
1549
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
1550
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
1551
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1552
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
1553
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
1554
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
1555
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
1556
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
1557
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
1558
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1559
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__1925755465331778345__call__3145548377279416885__callbacks'
1560
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
1561
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1562
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
1563
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1564
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1565
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1566
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1567
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1568
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
1569
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
1570
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
1571
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
1572
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1573
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
1574
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
1575
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1576
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
1577
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
1578
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
1579
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
1580
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
1581
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/request_handler.rb:96:in `process_request'
1582
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_request_handler.rb:516:in `accept_and_process_next_request'
1583
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_request_handler.rb:274:in `main_loop'
1584
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:206:in `start_request_handler'
1585
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:171:in `block in handle_spawn_application'
1586
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/utils.rb:470:in `safe_fork'
1587
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:166:in `handle_spawn_application'
1588
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:357:in `server_main_loop'
1589
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:206:in `start_synchronously'
1590
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:180:in `start'
1591
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:129:in `start'
1592
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:253:in `block (2 levels) in spawn_rack_application'
1593
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:132:in `lookup_or_add'
1594
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:246:in `block in spawn_rack_application'
1595
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:82:in `block in synchronize'
1596
+ <internal:prelude>:10:in `synchronize'
1597
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:79:in `synchronize'
1598
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:244:in `spawn_rack_application'
1599
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:137:in `spawn_application'
1600
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:275:in `handle_spawn_application'
1601
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:357:in `server_main_loop'
1602
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:206:in `start_synchronously'
1603
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/helper-scripts/passenger-spawn-server:99:in `<main>'
1604
+
1605
+
1606
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
1607
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
1608
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.4ms)
1609
+ Connecting to database specified by database.yml
1610
+
1611
+
1612
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 17:36:34 -0400
1613
+ Processing by Dossier::ReportsController#multi as HTML
1614
+ Parameters: {"report"=>"combination"}
1615
+ EmployeeReport (0.4ms) SELECT * FROM employees WHERE 1=1
1616
+ ORDER BY name ASC
1617
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (37.9ms)
1618
+ Rendered dossier/reports/employee_with_custom_view.html.haml (1.3ms)
1619
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (82.4ms)
1620
+ Completed 200 OK in 135ms (Views: 131.9ms | ActiveRecord: 0.4ms)
1621
+
1622
+
1623
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 17:36:34 -0400
1624
+ Served asset /application.css - 304 Not Modified (3ms)
1625
+
1626
+
1627
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 17:36:34 -0400
1628
+ Served asset /application.js - 304 Not Modified (8ms)
1629
+
1630
+
1631
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 17:36:35 -0400
1632
+
1633
+
1634
+ Served asset /jquery_ujs.js - 304 Not Modified (7ms)
1635
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 17:36:35 -0400
1636
+ Served asset /jquery.js - 304 Not Modified (6ms)
1637
+
1638
+
1639
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 17:36:53 -0400
1640
+ Processing by Dossier::ReportsController#multi as HTML
1641
+ Parameters: {"report"=>"combination"}
1642
+ EmployeeReport (0.4ms) SELECT * FROM employees WHERE 1=1
1643
+ ORDER BY name ASC
1644
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml within dossier/layouts/application (22.3ms)
1645
+ Rendered dossier/reports/employee_with_custom_view.html.haml within dossier/layouts/application (1.2ms)
1646
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (57.6ms)
1647
+ Completed 200 OK in 111ms (Views: 108.8ms | ActiveRecord: 0.4ms)
1648
+
1649
+
1650
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 17:36:54 -0400
1651
+
1652
+
1653
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 17:36:54 -0400
1654
+
1655
+
1656
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 17:36:54 -0400
1657
+ Served asset /application.js - 304 Not Modified (10ms)
1658
+ Served asset /jquery_ujs.js - 304 Not Modified (6ms)
1659
+
1660
+
1661
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 17:36:54 -0400
1662
+ Served asset /application.css - 304 Not Modified (0ms)
1663
+ Served asset /jquery.js - 304 Not Modified (0ms)
1664
+
1665
+
1666
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 17:36:56 -0400
1667
+ Processing by Dossier::ReportsController#multi as HTML
1668
+ Parameters: {"report"=>"combination"}
1669
+ EmployeeReport (0.3ms) SELECT * FROM employees WHERE 1=1
1670
+ ORDER BY name ASC
1671
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml within dossier/layouts/application (3.3ms)
1672
+ Rendered dossier/reports/employee_with_custom_view.html.haml within dossier/layouts/application (0.1ms)
1673
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (20.4ms)
1674
+ Completed 200 OK in 28ms (Views: 26.7ms | ActiveRecord: 0.3ms)
1675
+
1676
+
1677
+ Started GET "/reports/employee_with_custom_view" for 127.0.0.1 at 2013-05-28 17:41:01 -0400
1678
+ Processing by Dossier::ReportsController#show as HTML
1679
+ Parameters: {"report"=>"employee_with_custom_view"}
1680
+ Rendered dossier/reports/employee_with_custom_view.html.haml within layouts/application (1.5ms)
1681
+ Completed 200 OK in 10ms (Views: 8.4ms | ActiveRecord: 0.0ms)
1682
+
1683
+
1684
+
1685
+
1686
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 17:41:01 -0400
1687
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 17:41:01 -0400
1688
+
1689
+
1690
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 17:41:01 -0400
1691
+ Served asset /application.js - 304 Not Modified (0ms)
1692
+
1693
+
1694
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 17:41:01 -0400
1695
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1696
+ Served asset /application.css - 304 Not Modified (8ms)
1697
+ Served asset /jquery.js - 304 Not Modified (6ms)
1698
+
1699
+
1700
+ Started GET "/reports/employee" for 127.0.0.1 at 2013-05-28 17:41:04 -0400
1701
+ Processing by Dossier::ReportsController#show as HTML
1702
+ Parameters: {"report"=>"employee"}
1703
+ EmployeeReport (0.3ms) SELECT * FROM employees WHERE 1=1
1704
+ ORDER BY name ASC
1705
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml within layouts/application (5.6ms)
1706
+ Completed 200 OK in 14ms (Views: 9.3ms | ActiveRecord: 0.3ms)
1707
+
1708
+
1709
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 17:41:04 -0400
1710
+
1711
+
1712
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 17:41:04 -0400
1713
+
1714
+
1715
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 17:41:04 -0400
1716
+ Served asset /jquery.js - 304 Not Modified (0ms)
1717
+ Served asset /application.css - 304 Not Modified (3ms)
1718
+ Served asset /application.js - 304 Not Modified (0ms)
1719
+
1720
+
1721
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 17:41:05 -0400
1722
+ Served asset /jquery_ujs.js - 304 Not Modified (5ms)
1723
+
1724
+
1725
+ Started GET "/reports/employee" for 127.0.0.1 at 2013-05-28 17:41:38 -0400
1726
+ Processing by Dossier::ReportsController#show as HTML
1727
+ Parameters: {"report"=>"employee"}
1728
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml within layouts/application (11.9ms)
1729
+ Completed 500 Internal Server Error in 32ms
1730
+
1731
+ ActionView::Template::Error (Missing partial EmployeeReport/options with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :haml]}. Searched in:
1732
+ * "/Users/adamhunter/Studio/adamhunter/dossier/spec/dummy/app/views"
1733
+ * "/Users/adamhunter/Studio/adamhunter/dossier/app/views"
1734
+ ):
1735
+ 2:
1736
+ 3: = link_to 'Download CSV', formatted_dossier_report_path('csv', report), class: 'download-csv'
1737
+ 4:
1738
+ 5: = render_options(report)
1739
+ 6:
1740
+ 7: %table
1741
+ 8: %thead
1742
+ actionpack (3.2.13) lib/action_view/path_set.rb:58:in `find'
1743
+ actionpack (3.2.13) lib/action_view/lookup_context.rb:109:in `find'
1744
+ actionpack (3.2.13) lib/action_view/renderer/partial_renderer.rb:339:in `find_template'
1745
+ actionpack (3.2.13) lib/action_view/renderer/partial_renderer.rb:333:in `find_partial'
1746
+ actionpack (3.2.13) lib/action_view/renderer/partial_renderer.rb:222:in `render'
1747
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:41:in `render_partial'
1748
+ actionpack (3.2.13) lib/action_view/helpers/rendering_helper.rb:27:in `render'
1749
+ haml (4.0.3) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml'
1750
+ haml (4.0.3) lib/haml/helpers.rb:89:in `non_haml'
1751
+ haml (4.0.3) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml'
1752
+ /Users/adamhunter/Studio/adamhunter/dossier/app/helpers/dossier/application_helper.rb:9:in `render_options'
1753
+ /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml:5:in `___sers_adamhunter__tudio_adamhunter_dossier_app_views_dossier_reports_show_html_haml___3326089053695332177_70241206309220'
1754
+ actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
1755
+ activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
1756
+ actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
1757
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
1758
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
1759
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
1760
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1761
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
1762
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
1763
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
1764
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
1765
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
1766
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
1767
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
1768
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
1769
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
1770
+ actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
1771
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
1772
+ actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
1773
+ actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
1774
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
1775
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
1776
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
1777
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
1778
+ /Users/adamhunter/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
1779
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
1780
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
1781
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
1782
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
1783
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
1784
+ /Users/adamhunter/Studio/adamhunter/dossier/lib/dossier/renderer.rb:24:in `render_template'
1785
+ /Users/adamhunter/Studio/adamhunter/dossier/lib/dossier/renderer.rb:13:in `rescue in render'
1786
+ /Users/adamhunter/Studio/adamhunter/dossier/lib/dossier/renderer.rb:11:in `render'
1787
+ /Users/adamhunter/Studio/adamhunter/dossier/lib/dossier/report.rb:65:in `render'
1788
+ /Users/adamhunter/Studio/adamhunter/dossier/lib/dossier/responder.rb:7:in `to_html'
1789
+ actionpack (3.2.13) lib/action_controller/metal/responder.rb:153:in `respond'
1790
+ actionpack (3.2.13) lib/action_controller/metal/responder.rb:146:in `call'
1791
+ actionpack (3.2.13) lib/action_controller/metal/mime_responds.rb:239:in `respond_with'
1792
+ /Users/adamhunter/Studio/adamhunter/dossier/app/controllers/dossier/reports_controller.rb:9:in `show'
1793
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1794
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
1795
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
1796
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1797
+ activesupport (3.2.13) lib/active_support/callbacks.rb:414:in `_run__918150024287864246__process_action__4515465015970775371__callbacks'
1798
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
1799
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1800
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
1801
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
1802
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
1803
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1804
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
1805
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1806
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
1807
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1808
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
1809
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1810
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
1811
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
1812
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
1813
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1814
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
1815
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
1816
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1817
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
1818
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
1819
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
1820
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
1821
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
1822
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1823
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
1824
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
1825
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
1826
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1827
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
1828
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
1829
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
1830
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
1831
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
1832
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
1833
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1834
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__1925755465331778345__call__3145548377279416885__callbacks'
1835
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
1836
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1837
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
1838
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1839
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1840
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1841
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1842
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1843
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
1844
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
1845
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
1846
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
1847
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1848
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
1849
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
1850
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1851
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
1852
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
1853
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
1854
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
1855
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
1856
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/request_handler.rb:96:in `process_request'
1857
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_request_handler.rb:516:in `accept_and_process_next_request'
1858
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_request_handler.rb:274:in `main_loop'
1859
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:206:in `start_request_handler'
1860
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:171:in `block in handle_spawn_application'
1861
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/utils.rb:470:in `safe_fork'
1862
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:166:in `handle_spawn_application'
1863
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:357:in `server_main_loop'
1864
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:206:in `start_synchronously'
1865
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:180:in `start'
1866
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:129:in `start'
1867
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:253:in `block (2 levels) in spawn_rack_application'
1868
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:132:in `lookup_or_add'
1869
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:246:in `block in spawn_rack_application'
1870
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:82:in `block in synchronize'
1871
+ <internal:prelude>:10:in `synchronize'
1872
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:79:in `synchronize'
1873
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:244:in `spawn_rack_application'
1874
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:137:in `spawn_application'
1875
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:275:in `handle_spawn_application'
1876
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:357:in `server_main_loop'
1877
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:206:in `start_synchronously'
1878
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/helper-scripts/passenger-spawn-server:99:in `<main>'
1879
+
1880
+
1881
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
1882
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
1883
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.8ms)
1884
+
1885
+
1886
+ Started GET "/reports/employee" for 127.0.0.1 at 2013-05-28 17:41:50 -0400
1887
+ Processing by Dossier::ReportsController#show as HTML
1888
+ Parameters: {"report"=>"employee"}
1889
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml within layouts/application (2.0ms)
1890
+ Completed 500 Internal Server Error in 7ms
1891
+
1892
+ ActionView::Template::Error (Missing partial employee/options with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :haml]}. Searched in:
1893
+ * "/Users/adamhunter/Studio/adamhunter/dossier/spec/dummy/app/views"
1894
+ * "/Users/adamhunter/Studio/adamhunter/dossier/app/views"
1895
+ ):
1896
+ 2:
1897
+ 3: = link_to 'Download CSV', formatted_dossier_report_path('csv', report), class: 'download-csv'
1898
+ 4:
1899
+ 5: = render_options(report)
1900
+ 6:
1901
+ 7: %table
1902
+ 8: %thead
1903
+ actionpack (3.2.13) lib/action_view/path_set.rb:58:in `find'
1904
+ actionpack (3.2.13) lib/action_view/lookup_context.rb:109:in `find'
1905
+ actionpack (3.2.13) lib/action_view/renderer/partial_renderer.rb:339:in `find_template'
1906
+ actionpack (3.2.13) lib/action_view/renderer/partial_renderer.rb:333:in `find_partial'
1907
+ actionpack (3.2.13) lib/action_view/renderer/partial_renderer.rb:222:in `render'
1908
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:41:in `render_partial'
1909
+ actionpack (3.2.13) lib/action_view/helpers/rendering_helper.rb:27:in `render'
1910
+ haml (4.0.3) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml'
1911
+ haml (4.0.3) lib/haml/helpers.rb:89:in `non_haml'
1912
+ haml (4.0.3) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml'
1913
+ /Users/adamhunter/Studio/adamhunter/dossier/app/helpers/dossier/application_helper.rb:9:in `render_options'
1914
+ /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml:5:in `___sers_adamhunter__tudio_adamhunter_dossier_app_views_dossier_reports_show_html_haml___3326089053695332177_70241206309220'
1915
+ actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
1916
+ activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
1917
+ actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
1918
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
1919
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
1920
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
1921
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1922
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
1923
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
1924
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
1925
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
1926
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
1927
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
1928
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
1929
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
1930
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
1931
+ actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
1932
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
1933
+ actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
1934
+ actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
1935
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
1936
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
1937
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
1938
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
1939
+ /Users/adamhunter/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
1940
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
1941
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
1942
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
1943
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
1944
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
1945
+ /Users/adamhunter/Studio/adamhunter/dossier/lib/dossier/renderer.rb:24:in `render_template'
1946
+ /Users/adamhunter/Studio/adamhunter/dossier/lib/dossier/renderer.rb:13:in `rescue in render'
1947
+ /Users/adamhunter/Studio/adamhunter/dossier/lib/dossier/renderer.rb:11:in `render'
1948
+ /Users/adamhunter/Studio/adamhunter/dossier/lib/dossier/report.rb:65:in `render'
1949
+ /Users/adamhunter/Studio/adamhunter/dossier/lib/dossier/responder.rb:7:in `to_html'
1950
+ actionpack (3.2.13) lib/action_controller/metal/responder.rb:153:in `respond'
1951
+ actionpack (3.2.13) lib/action_controller/metal/responder.rb:146:in `call'
1952
+ actionpack (3.2.13) lib/action_controller/metal/mime_responds.rb:239:in `respond_with'
1953
+ /Users/adamhunter/Studio/adamhunter/dossier/app/controllers/dossier/reports_controller.rb:9:in `show'
1954
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1955
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
1956
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
1957
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1958
+ activesupport (3.2.13) lib/active_support/callbacks.rb:414:in `_run__918150024287864246__process_action__4515465015970775371__callbacks'
1959
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
1960
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1961
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
1962
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
1963
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
1964
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1965
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
1966
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1967
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
1968
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1969
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
1970
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1971
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
1972
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
1973
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
1974
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1975
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
1976
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
1977
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1978
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
1979
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
1980
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
1981
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
1982
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
1983
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1984
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
1985
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
1986
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
1987
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1988
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
1989
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
1990
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
1991
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
1992
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
1993
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
1994
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1995
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__1925755465331778345__call__3145548377279416885__callbacks'
1996
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
1997
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1998
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
1999
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2000
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
2001
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2002
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2003
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2004
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
2005
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
2006
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
2007
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
2008
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2009
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
2010
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
2011
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2012
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
2013
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
2014
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
2015
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
2016
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
2017
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/request_handler.rb:96:in `process_request'
2018
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_request_handler.rb:516:in `accept_and_process_next_request'
2019
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_request_handler.rb:274:in `main_loop'
2020
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:206:in `start_request_handler'
2021
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:171:in `block in handle_spawn_application'
2022
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/utils.rb:470:in `safe_fork'
2023
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:166:in `handle_spawn_application'
2024
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:357:in `server_main_loop'
2025
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:206:in `start_synchronously'
2026
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:180:in `start'
2027
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:129:in `start'
2028
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:253:in `block (2 levels) in spawn_rack_application'
2029
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:132:in `lookup_or_add'
2030
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:246:in `block in spawn_rack_application'
2031
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:82:in `block in synchronize'
2032
+ <internal:prelude>:10:in `synchronize'
2033
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:79:in `synchronize'
2034
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:244:in `spawn_rack_application'
2035
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:137:in `spawn_application'
2036
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:275:in `handle_spawn_application'
2037
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:357:in `server_main_loop'
2038
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:206:in `start_synchronously'
2039
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/helper-scripts/passenger-spawn-server:99:in `<main>'
2040
+
2041
+
2042
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
2043
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
2044
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.0ms)
2045
+
2046
+
2047
+ Started GET "/reports/employee" for 127.0.0.1 at 2013-05-28 17:42:42 -0400
2048
+ Processing by Dossier::ReportsController#show as HTML
2049
+ Parameters: {"report"=>"employee"}
2050
+ EmployeeReport (0.3ms) SELECT * FROM employees WHERE 1=1
2051
+ ORDER BY name ASC
2052
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml within layouts/application (15.2ms)
2053
+ Completed 200 OK in 35ms (Views: 32.3ms | ActiveRecord: 0.3ms)
2054
+
2055
+
2056
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 17:42:42 -0400
2057
+
2058
+
2059
+
2060
+
2061
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 17:42:42 -0400
2062
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 17:42:42 -0400
2063
+
2064
+
2065
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 17:42:42 -0400
2066
+ Served asset /application.css - 304 Not Modified (5ms)
2067
+ Served asset /jquery.js - 304 Not Modified (0ms)
2068
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2069
+ Served asset /application.js - 304 Not Modified (0ms)
2070
+
2071
+
2072
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 17:47:44 -0400
2073
+ Processing by Dossier::ReportsController#multi as HTML
2074
+ Parameters: {"report"=>"combination"}
2075
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (6.0ms)
2076
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (17.6ms)
2077
+ Completed 500 Internal Server Error in 22ms
2078
+
2079
+ ActionView::Template::Error (undefined method `render_options' for #<#<Class:0x007fc49c4b8ff8>:0x007fc49c6fb158>):
2080
+ 2:
2081
+ 3: = link_to 'Download CSV', formatted_dossier_report_path('csv', report), class: 'download-csv'
2082
+ 4:
2083
+ 5: = render_options(report)
2084
+ 6:
2085
+ 7: %table
2086
+ 8: %thead
2087
+ /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml:5:in `___sers_adamhunter__tudio_adamhunter_dossier_app_views_dossier_reports_show_html_haml___3326089053695332177_70241207451900'
2088
+ actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
2089
+ activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
2090
+ actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
2091
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
2092
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
2093
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
2094
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2095
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
2096
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
2097
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
2098
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
2099
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
2100
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
2101
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
2102
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
2103
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
2104
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
2105
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
2106
+ /Users/adamhunter/Studio/adamhunter/dossier/lib/dossier/renderer.rb:24:in `render_template'
2107
+ /Users/adamhunter/Studio/adamhunter/dossier/lib/dossier/renderer.rb:13:in `rescue in render'
2108
+ /Users/adamhunter/Studio/adamhunter/dossier/lib/dossier/renderer.rb:11:in `render'
2109
+ /Users/adamhunter/Studio/adamhunter/dossier/lib/dossier/report.rb:65:in `render'
2110
+ /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml:3:in `block in ___sers_adamhunter__tudio_adamhunter_dossier_app_views_dossier_reports_multi_html_haml__2412558634156540912_70241207401040'
2111
+ /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml:2:in `each'
2112
+ /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml:2:in `___sers_adamhunter__tudio_adamhunter_dossier_app_views_dossier_reports_multi_html_haml__2412558634156540912_70241207401040'
2113
+ actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
2114
+ activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
2115
+ actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
2116
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
2117
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
2118
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
2119
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2120
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
2121
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
2122
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
2123
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
2124
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
2125
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
2126
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
2127
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
2128
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
2129
+ actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
2130
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
2131
+ actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
2132
+ actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
2133
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
2134
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
2135
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
2136
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
2137
+ /Users/adamhunter/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
2138
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
2139
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
2140
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
2141
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
2142
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
2143
+ /Users/adamhunter/Studio/adamhunter/dossier/app/controllers/dossier/reports_controller.rb:13:in `multi'
2144
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
2145
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
2146
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
2147
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
2148
+ activesupport (3.2.13) lib/active_support/callbacks.rb:414:in `_run__918150024287864246__process_action__311356567480637522__callbacks'
2149
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
2150
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
2151
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
2152
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
2153
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
2154
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
2155
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
2156
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2157
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
2158
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
2159
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
2160
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2161
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
2162
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
2163
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
2164
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2165
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
2166
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
2167
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
2168
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
2169
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
2170
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
2171
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
2172
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
2173
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2174
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
2175
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
2176
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
2177
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2178
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
2179
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
2180
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
2181
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
2182
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
2183
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
2184
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
2185
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__1925755465331778345__call__3145548377279416885__callbacks'
2186
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
2187
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
2188
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
2189
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2190
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
2191
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2192
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2193
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2194
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
2195
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
2196
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
2197
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
2198
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2199
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
2200
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
2201
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2202
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
2203
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
2204
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
2205
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
2206
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
2207
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/request_handler.rb:96:in `process_request'
2208
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_request_handler.rb:516:in `accept_and_process_next_request'
2209
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_request_handler.rb:274:in `main_loop'
2210
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:206:in `start_request_handler'
2211
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:171:in `block in handle_spawn_application'
2212
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/utils.rb:470:in `safe_fork'
2213
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:166:in `handle_spawn_application'
2214
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:357:in `server_main_loop'
2215
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:206:in `start_synchronously'
2216
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:180:in `start'
2217
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:129:in `start'
2218
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:253:in `block (2 levels) in spawn_rack_application'
2219
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:132:in `lookup_or_add'
2220
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:246:in `block in spawn_rack_application'
2221
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:82:in `block in synchronize'
2222
+ <internal:prelude>:10:in `synchronize'
2223
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:79:in `synchronize'
2224
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:244:in `spawn_rack_application'
2225
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:137:in `spawn_application'
2226
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:275:in `handle_spawn_application'
2227
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:357:in `server_main_loop'
2228
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:206:in `start_synchronously'
2229
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/helper-scripts/passenger-spawn-server:99:in `<main>'
2230
+
2231
+
2232
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
2233
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
2234
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (27.6ms)
2235
+ Connecting to database specified by database.yml
2236
+
2237
+
2238
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 17:48:02 -0400
2239
+ Processing by Dossier::ReportsController#multi as HTML
2240
+ Parameters: {"report"=>"combination"}
2241
+ EmployeeReport (0.4ms) SELECT * FROM employees WHERE 1=1
2242
+ ORDER BY name ASC
2243
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (20.7ms)
2244
+ Rendered dossier/reports/employee_with_custom_view.html.haml (0.8ms)
2245
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (41.0ms)
2246
+ Completed 200 OK in 87ms (Views: 84.7ms | ActiveRecord: 0.4ms)
2247
+
2248
+
2249
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 17:48:02 -0400
2250
+ Served asset /application.css - 304 Not Modified (5ms)
2251
+
2252
+
2253
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 17:48:02 -0400
2254
+ Served asset /application.js - 304 Not Modified (11ms)
2255
+
2256
+
2257
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 17:48:03 -0400
2258
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
2259
+
2260
+
2261
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 17:48:03 -0400
2262
+ Served asset /jquery.js - 304 Not Modified (5ms)
2263
+
2264
+
2265
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 17:48:37 -0400
2266
+ Processing by Dossier::ReportsController#multi as HTML
2267
+ Parameters: {"report"=>"combination"}
2268
+ EmployeeReport (0.3ms) SELECT * FROM employees WHERE 1=1
2269
+ ORDER BY name ASC
2270
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (21.1ms)
2271
+ Rendered dossier/reports/employee_with_custom_view.html.haml (18.8ms)
2272
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (66.2ms)
2273
+ Completed 200 OK in 90ms (Views: 87.8ms | ActiveRecord: 0.3ms)
2274
+
2275
+
2276
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 17:48:37 -0400
2277
+
2278
+
2279
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 17:48:37 -0400
2280
+ Served asset /application.css - 304 Not Modified (3ms)
2281
+ Served asset /jquery.js - 304 Not Modified (3ms)
2282
+
2283
+
2284
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 17:48:37 -0400
2285
+
2286
+
2287
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 17:48:37 -0400
2288
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
2289
+ Served asset /application.js - 304 Not Modified (0ms)
2290
+
2291
+
2292
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 17:49:40 -0400
2293
+ Processing by Dossier::ReportsController#multi as HTML
2294
+ Parameters: {"report"=>"combination"}
2295
+ EmployeeReport (0.4ms) SELECT * FROM employees WHERE 1=1
2296
+ ORDER BY name ASC
2297
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (4.6ms)
2298
+ Rendered dossier/reports/employee_with_custom_view.html.haml (1.8ms)
2299
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (16.9ms)
2300
+ Completed 200 OK in 23ms (Views: 21.1ms | ActiveRecord: 0.4ms)
2301
+
2302
+
2303
+
2304
+
2305
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 17:49:40 -0400
2306
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 17:49:40 -0400
2307
+ Served asset /application.css - 304 Not Modified (1ms)
2308
+
2309
+
2310
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 17:49:40 -0400
2311
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2312
+ Served asset /jquery.js - 304 Not Modified (0ms)
2313
+
2314
+
2315
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 17:49:40 -0400
2316
+ Served asset /application.js - 304 Not Modified (7ms)
2317
+ Connecting to database specified by database.yml
2318
+
2319
+
2320
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 17:49:47 -0400
2321
+ Processing by Dossier::ReportsController#multi as HTML
2322
+ Parameters: {"report"=>"combination"}
2323
+ EmployeeReport (0.3ms) SELECT * FROM employees WHERE 1=1
2324
+ ORDER BY name ASC
2325
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (19.0ms)
2326
+ Rendered dossier/reports/employee_with_custom_view/_options.html.haml (1.0ms)
2327
+ Rendered dossier/reports/employee_with_custom_view.html.haml (2.7ms)
2328
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (42.4ms)
2329
+ Completed 200 OK in 83ms (Views: 80.5ms | ActiveRecord: 0.3ms)
2330
+
2331
+
2332
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 17:49:48 -0400
2333
+ Served asset /application.css - 304 Not Modified (2ms)
2334
+
2335
+
2336
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 17:49:48 -0400
2337
+ Served asset /jquery.js - 304 Not Modified (3ms)
2338
+
2339
+
2340
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 17:49:48 -0400
2341
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
2342
+
2343
+
2344
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 17:49:48 -0400
2345
+ Served asset /application.js - 304 Not Modified (7ms)
2346
+
2347
+
2348
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 18:19:02 -0400
2349
+ Processing by Dossier::ReportsController#multi as HTML
2350
+ Parameters: {"report"=>"combination"}
2351
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (11.1ms)
2352
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (50.3ms)
2353
+ Completed 500 Internal Server Error in 85ms
2354
+
2355
+ ActionView::Template::Error (undefined method `multi' for #<EmployeeReport:0x007fc49e9a6c48>):
2356
+ 2:
2357
+ 3: = link_to 'Download CSV', formatted_dossier_report_path('csv', report), class: 'download-csv'
2358
+ 4:
2359
+ 5: = render_options(report)
2360
+ 6:
2361
+ 7: %table
2362
+ 8: %thead
2363
+ /Users/adamhunter/Studio/adamhunter/dossier/app/helpers/dossier/application_helper.rb:9:in `render_options'
2364
+ /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml:5:in `___sers_adamhunter__tudio_adamhunter_dossier_app_views_dossier_reports_show_html_haml___3326089053695332177_70241226699020'
2365
+ actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
2366
+ activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
2367
+ actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
2368
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
2369
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
2370
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
2371
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2372
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
2373
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
2374
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
2375
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
2376
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
2377
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
2378
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
2379
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
2380
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
2381
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
2382
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
2383
+ /Users/adamhunter/Studio/adamhunter/dossier/lib/dossier/renderer.rb:24:in `render_template'
2384
+ /Users/adamhunter/Studio/adamhunter/dossier/lib/dossier/renderer.rb:13:in `rescue in render'
2385
+ /Users/adamhunter/Studio/adamhunter/dossier/lib/dossier/renderer.rb:11:in `render'
2386
+ /Users/adamhunter/Studio/adamhunter/dossier/lib/dossier/report.rb:65:in `render'
2387
+ /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml:3:in `block in ___sers_adamhunter__tudio_adamhunter_dossier_app_views_dossier_reports_multi_html_haml__2412558634156540912_70241225558620'
2388
+ /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml:2:in `each'
2389
+ /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml:2:in `___sers_adamhunter__tudio_adamhunter_dossier_app_views_dossier_reports_multi_html_haml__2412558634156540912_70241225558620'
2390
+ actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
2391
+ activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
2392
+ actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
2393
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
2394
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
2395
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
2396
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2397
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
2398
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
2399
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
2400
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
2401
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
2402
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
2403
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
2404
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
2405
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
2406
+ actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
2407
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
2408
+ actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
2409
+ actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
2410
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
2411
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
2412
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
2413
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
2414
+ /Users/adamhunter/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
2415
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
2416
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
2417
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
2418
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
2419
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
2420
+ /Users/adamhunter/Studio/adamhunter/dossier/app/controllers/dossier/reports_controller.rb:13:in `multi'
2421
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
2422
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
2423
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
2424
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
2425
+ activesupport (3.2.13) lib/active_support/callbacks.rb:414:in `_run__918150024287864246__process_action__311356567480637522__callbacks'
2426
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
2427
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
2428
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
2429
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
2430
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
2431
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
2432
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
2433
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2434
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
2435
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
2436
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
2437
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2438
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
2439
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
2440
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
2441
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2442
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
2443
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
2444
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
2445
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
2446
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
2447
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
2448
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
2449
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
2450
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2451
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
2452
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
2453
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
2454
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2455
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
2456
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
2457
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
2458
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
2459
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
2460
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
2461
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
2462
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__1925755465331778345__call__3145548377279416885__callbacks'
2463
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
2464
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
2465
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
2466
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2467
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
2468
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2469
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2470
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2471
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
2472
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
2473
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
2474
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
2475
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2476
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
2477
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
2478
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2479
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
2480
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
2481
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
2482
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
2483
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
2484
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/request_handler.rb:96:in `process_request'
2485
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_request_handler.rb:516:in `accept_and_process_next_request'
2486
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_request_handler.rb:274:in `main_loop'
2487
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:206:in `start_request_handler'
2488
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:171:in `block in handle_spawn_application'
2489
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/utils.rb:470:in `safe_fork'
2490
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:166:in `handle_spawn_application'
2491
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:357:in `server_main_loop'
2492
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:206:in `start_synchronously'
2493
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:180:in `start'
2494
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:129:in `start'
2495
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:253:in `block (2 levels) in spawn_rack_application'
2496
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:132:in `lookup_or_add'
2497
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:246:in `block in spawn_rack_application'
2498
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:82:in `block in synchronize'
2499
+ <internal:prelude>:10:in `synchronize'
2500
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:79:in `synchronize'
2501
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:244:in `spawn_rack_application'
2502
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:137:in `spawn_application'
2503
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:275:in `handle_spawn_application'
2504
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:357:in `server_main_loop'
2505
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:206:in `start_synchronously'
2506
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/helper-scripts/passenger-spawn-server:99:in `<main>'
2507
+
2508
+
2509
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (6.1ms)
2510
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.4ms)
2511
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (22.1ms)
2512
+ Connecting to database specified by database.yml
2513
+
2514
+
2515
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 18:19:16 -0400
2516
+ Processing by Dossier::ReportsController#multi as HTML
2517
+ Parameters: {"report"=>"combination"}
2518
+ EmployeeReport (0.3ms) SELECT * FROM employees WHERE 1=1
2519
+ ORDER BY name ASC
2520
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (18.2ms)
2521
+ Rendered dossier/reports/employee_with_custom_view.html.haml (1.4ms)
2522
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (43.0ms)
2523
+ Completed 200 OK in 93ms (Views: 91.4ms | ActiveRecord: 0.3ms)
2524
+
2525
+
2526
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 18:19:16 -0400
2527
+ Served asset /application.css - 304 Not Modified (3ms)
2528
+
2529
+
2530
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 18:19:16 -0400
2531
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
2532
+
2533
+
2534
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 18:19:16 -0400
2535
+ Served asset /jquery.js - 304 Not Modified (3ms)
2536
+
2537
+
2538
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 18:19:16 -0400
2539
+ Served asset /application.js - 304 Not Modified (6ms)
2540
+
2541
+
2542
+ Started GET "/reports/employee" for 127.0.0.1 at 2013-05-28 18:20:44 -0400
2543
+ Processing by Dossier::ReportsController#show as HTML
2544
+ Parameters: {"report"=>"employee"}
2545
+ EmployeeReport (0.4ms) SELECT * FROM employees WHERE 1=1
2546
+ ORDER BY name ASC
2547
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml within layouts/application (47.4ms)
2548
+ Completed 200 OK in 85ms (Views: 68.0ms | ActiveRecord: 0.4ms)
2549
+
2550
+
2551
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 18:20:44 -0400
2552
+
2553
+
2554
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 18:20:44 -0400
2555
+ Served asset /application.css - 304 Not Modified (0ms)
2556
+ Served asset /jquery.js - 304 Not Modified (3ms)
2557
+
2558
+
2559
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 18:20:45 -0400
2560
+
2561
+
2562
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 18:20:45 -0400
2563
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
2564
+ Served asset /application.js - 304 Not Modified (8ms)
2565
+
2566
+
2567
+ Started GET "/reports/employee_with_custom_view" for 127.0.0.1 at 2013-05-28 18:20:48 -0400
2568
+ Processing by Dossier::ReportsController#show as HTML
2569
+ Parameters: {"report"=>"employee_with_custom_view"}
2570
+ Rendered dossier/reports/employee_with_custom_view/_options.html.haml (1.2ms)
2571
+ Rendered dossier/reports/employee_with_custom_view.html.haml within layouts/application (8.2ms)
2572
+ Completed 200 OK in 16ms (Views: 13.2ms | ActiveRecord: 0.0ms)
2573
+
2574
+
2575
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 18:20:49 -0400
2576
+
2577
+
2578
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 18:20:49 -0400
2579
+ Served asset /application.css - 304 Not Modified (0ms)
2580
+
2581
+
2582
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 18:20:49 -0400
2583
+ Served asset /jquery.js - 304 Not Modified (3ms)
2584
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2585
+
2586
+
2587
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 18:20:49 -0400
2588
+ Served asset /application.js - 304 Not Modified (8ms)
2589
+
2590
+
2591
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 18:20:56 -0400
2592
+ Processing by Dossier::ReportsController#multi as HTML
2593
+ Parameters: {"report"=>"combination"}
2594
+ EmployeeReport (0.3ms) SELECT * FROM employees WHERE 1=1
2595
+ ORDER BY name ASC
2596
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (14.5ms)
2597
+ Rendered dossier/reports/employee_with_custom_view.html.haml (1.2ms)
2598
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (37.1ms)
2599
+ Completed 200 OK in 77ms (Views: 75.5ms | ActiveRecord: 0.3ms)
2600
+
2601
+
2602
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 18:20:56 -0400
2603
+
2604
+
2605
+
2606
+
2607
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 18:20:56 -0400
2608
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 18:20:56 -0400
2609
+ Served asset /application.css - 304 Not Modified (3ms)
2610
+ Served asset /application.js - 304 Not Modified (0ms)
2611
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2612
+
2613
+
2614
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 18:20:56 -0400
2615
+ Served asset /jquery.js - 304 Not Modified (3ms)
2616
+
2617
+
2618
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 18:29:02 -0400
2619
+ Processing by Dossier::ReportsController#multi as HTML
2620
+ Parameters: {"report"=>"combination"}
2621
+ EmployeeReport (0.3ms) SELECT * FROM employees WHERE 1=1
2622
+ ORDER BY name ASC
2623
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (20.0ms)
2624
+ Rendered dossier/reports/employee_with_custom_view.html.haml (1.1ms)
2625
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (48.4ms)
2626
+ Completed 200 OK in 97ms (Views: 95.3ms | ActiveRecord: 0.3ms)
2627
+
2628
+
2629
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 18:29:02 -0400
2630
+
2631
+
2632
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 18:29:02 -0400
2633
+
2634
+
2635
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 18:29:02 -0400
2636
+
2637
+
2638
+ Served asset /application.css - 304 Not Modified (3ms)
2639
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2640
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 18:29:02 -0400
2641
+ Served asset /jquery.js - 304 Not Modified (0ms)
2642
+ Served asset /application.js - 304 Not Modified (0ms)
2643
+ Connecting to database specified by database.yml
2644
+
2645
+
2646
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 18:29:11 -0400
2647
+ Processing by Dossier::ReportsController#multi as HTML
2648
+ Parameters: {"report"=>"combination"}
2649
+ EmployeeReport (0.3ms) SELECT * FROM employees WHERE 1=1
2650
+ ORDER BY name ASC
2651
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (15.5ms)
2652
+ Rendered dossier/reports/employee_with_custom_view.html.haml (1.3ms)
2653
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (38.1ms)
2654
+ Completed 200 OK in 78ms (Views: 76.4ms | ActiveRecord: 0.3ms)
2655
+
2656
+
2657
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 18:29:12 -0400
2658
+ Served asset /application.css - 304 Not Modified (2ms)
2659
+
2660
+
2661
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 18:29:12 -0400
2662
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
2663
+
2664
+
2665
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 18:29:12 -0400
2666
+ Served asset /jquery.js - 304 Not Modified (4ms)
2667
+
2668
+
2669
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 18:29:12 -0400
2670
+ Served asset /application.js - 304 Not Modified (22ms)
2671
+
2672
+
2673
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 18:29:28 -0400
2674
+ Processing by Dossier::ReportsController#multi as HTML
2675
+ Parameters: {"report"=>"combination"}
2676
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (7.6ms)
2677
+ Completed 500 Internal Server Error in 21ms
2678
+
2679
+ ActionView::Template::Error (undefined local variable or method `formatter' for #<CombinationReport:0x007fc49be12c80 @options={}>):
2680
+ 1: %h1= multi.formatted_title
2681
+ 2: - multi.reports.each do |report|
2682
+ 3: = report.render layout: false
2683
+ /Users/adamhunter/Studio/adamhunter/dossier/lib/dossier/multi_report.rb:31:in `formatted_title'
2684
+ /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml:1:in `___sers_adamhunter__tudio_adamhunter_dossier_app_views_dossier_reports_multi_html_haml__2412558634156540912_70241213156300'
2685
+ actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
2686
+ activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
2687
+ actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
2688
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
2689
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
2690
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
2691
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2692
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
2693
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
2694
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
2695
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
2696
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
2697
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
2698
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
2699
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
2700
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
2701
+ actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
2702
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
2703
+ actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
2704
+ actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
2705
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
2706
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
2707
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
2708
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
2709
+ /Users/adamhunter/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
2710
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
2711
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
2712
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
2713
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
2714
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
2715
+ /Users/adamhunter/Studio/adamhunter/dossier/app/controllers/dossier/reports_controller.rb:13:in `multi'
2716
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
2717
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
2718
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
2719
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
2720
+ activesupport (3.2.13) lib/active_support/callbacks.rb:414:in `_run__918150024287864246__process_action__311356567480637522__callbacks'
2721
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
2722
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
2723
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
2724
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
2725
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
2726
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
2727
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
2728
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2729
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
2730
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
2731
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
2732
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2733
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
2734
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
2735
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
2736
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2737
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
2738
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
2739
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
2740
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
2741
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
2742
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
2743
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
2744
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
2745
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2746
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
2747
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
2748
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
2749
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2750
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
2751
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
2752
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
2753
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
2754
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
2755
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
2756
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
2757
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__1925755465331778345__call__3145548377279416885__callbacks'
2758
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
2759
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
2760
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
2761
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2762
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
2763
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2764
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2765
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2766
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
2767
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
2768
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
2769
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
2770
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2771
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
2772
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
2773
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2774
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
2775
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
2776
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
2777
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
2778
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
2779
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/request_handler.rb:96:in `process_request'
2780
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_request_handler.rb:516:in `accept_and_process_next_request'
2781
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_request_handler.rb:274:in `main_loop'
2782
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:206:in `start_request_handler'
2783
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:171:in `block in handle_spawn_application'
2784
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/utils.rb:470:in `safe_fork'
2785
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:166:in `handle_spawn_application'
2786
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:357:in `server_main_loop'
2787
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:206:in `start_synchronously'
2788
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:180:in `start'
2789
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:129:in `start'
2790
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:253:in `block (2 levels) in spawn_rack_application'
2791
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:132:in `lookup_or_add'
2792
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:246:in `block in spawn_rack_application'
2793
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:82:in `block in synchronize'
2794
+ <internal:prelude>:10:in `synchronize'
2795
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:79:in `synchronize'
2796
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:244:in `spawn_rack_application'
2797
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:137:in `spawn_application'
2798
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:275:in `handle_spawn_application'
2799
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:357:in `server_main_loop'
2800
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:206:in `start_synchronously'
2801
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/helper-scripts/passenger-spawn-server:99:in `<main>'
2802
+
2803
+
2804
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
2805
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
2806
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (25.4ms)
2807
+
2808
+
2809
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 18:29:51 -0400
2810
+ Processing by Dossier::ReportsController#multi as HTML
2811
+ Parameters: {"report"=>"combination"}
2812
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (1.3ms)
2813
+ Completed 500 Internal Server Error in 5ms
2814
+
2815
+ ActionView::Template::Error (undefined local variable or method `formatter' for #<CombinationReport:0x007fc49bb22548 @options={}>):
2816
+ 1: %h1= multi.formatted_title
2817
+ 2: - multi.reports.each do |report|
2818
+ 3: = report.render layout: false
2819
+ /Users/adamhunter/Studio/adamhunter/dossier/lib/dossier/multi_report.rb:31:in `formatted_title'
2820
+ /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml:1:in `___sers_adamhunter__tudio_adamhunter_dossier_app_views_dossier_reports_multi_html_haml__2412558634156540912_70241213156300'
2821
+ actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
2822
+ activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
2823
+ actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
2824
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
2825
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
2826
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
2827
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2828
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
2829
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
2830
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
2831
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
2832
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
2833
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
2834
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
2835
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
2836
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
2837
+ actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
2838
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
2839
+ actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
2840
+ actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
2841
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
2842
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
2843
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
2844
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
2845
+ /Users/adamhunter/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
2846
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
2847
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
2848
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
2849
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
2850
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
2851
+ /Users/adamhunter/Studio/adamhunter/dossier/app/controllers/dossier/reports_controller.rb:13:in `multi'
2852
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
2853
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
2854
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
2855
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
2856
+ activesupport (3.2.13) lib/active_support/callbacks.rb:414:in `_run__918150024287864246__process_action__311356567480637522__callbacks'
2857
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
2858
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
2859
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
2860
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
2861
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
2862
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
2863
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
2864
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2865
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
2866
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
2867
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
2868
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2869
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
2870
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
2871
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
2872
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2873
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
2874
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
2875
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
2876
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
2877
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
2878
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
2879
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
2880
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
2881
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2882
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
2883
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
2884
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
2885
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2886
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
2887
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
2888
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
2889
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
2890
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
2891
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
2892
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
2893
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__1925755465331778345__call__3145548377279416885__callbacks'
2894
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
2895
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
2896
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
2897
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2898
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
2899
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2900
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2901
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2902
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
2903
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
2904
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
2905
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
2906
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2907
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
2908
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
2909
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2910
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
2911
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
2912
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
2913
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
2914
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
2915
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/request_handler.rb:96:in `process_request'
2916
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_request_handler.rb:516:in `accept_and_process_next_request'
2917
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_request_handler.rb:274:in `main_loop'
2918
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:206:in `start_request_handler'
2919
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:171:in `block in handle_spawn_application'
2920
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/utils.rb:470:in `safe_fork'
2921
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:166:in `handle_spawn_application'
2922
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:357:in `server_main_loop'
2923
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:206:in `start_synchronously'
2924
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:180:in `start'
2925
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:129:in `start'
2926
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:253:in `block (2 levels) in spawn_rack_application'
2927
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:132:in `lookup_or_add'
2928
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:246:in `block in spawn_rack_application'
2929
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:82:in `block in synchronize'
2930
+ <internal:prelude>:10:in `synchronize'
2931
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:79:in `synchronize'
2932
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:244:in `spawn_rack_application'
2933
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:137:in `spawn_application'
2934
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:275:in `handle_spawn_application'
2935
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:357:in `server_main_loop'
2936
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:206:in `start_synchronously'
2937
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/helper-scripts/passenger-spawn-server:99:in `<main>'
2938
+
2939
+
2940
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
2941
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
2942
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.8ms)
2943
+
2944
+
2945
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 18:29:52 -0400
2946
+ Processing by Dossier::ReportsController#multi as HTML
2947
+ Parameters: {"report"=>"combination"}
2948
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (1.4ms)
2949
+ Completed 500 Internal Server Error in 6ms
2950
+
2951
+ ActionView::Template::Error (undefined local variable or method `formatter' for #<CombinationReport:0x007fc49d748da8 @options={}>):
2952
+ 1: %h1= multi.formatted_title
2953
+ 2: - multi.reports.each do |report|
2954
+ 3: = report.render layout: false
2955
+ /Users/adamhunter/Studio/adamhunter/dossier/lib/dossier/multi_report.rb:31:in `formatted_title'
2956
+ /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml:1:in `___sers_adamhunter__tudio_adamhunter_dossier_app_views_dossier_reports_multi_html_haml__2412558634156540912_70241213156300'
2957
+ actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
2958
+ activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
2959
+ actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
2960
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
2961
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
2962
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
2963
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2964
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
2965
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
2966
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
2967
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
2968
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
2969
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
2970
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
2971
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
2972
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
2973
+ actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
2974
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
2975
+ actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
2976
+ actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
2977
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
2978
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
2979
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
2980
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
2981
+ /Users/adamhunter/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
2982
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
2983
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
2984
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
2985
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
2986
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
2987
+ /Users/adamhunter/Studio/adamhunter/dossier/app/controllers/dossier/reports_controller.rb:13:in `multi'
2988
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
2989
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
2990
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
2991
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
2992
+ activesupport (3.2.13) lib/active_support/callbacks.rb:414:in `_run__918150024287864246__process_action__311356567480637522__callbacks'
2993
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
2994
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
2995
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
2996
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
2997
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
2998
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
2999
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
3000
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3001
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
3002
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
3003
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
3004
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
3005
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
3006
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
3007
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
3008
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
3009
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
3010
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
3011
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
3012
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
3013
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
3014
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
3015
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
3016
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
3017
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
3018
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
3019
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
3020
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
3021
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
3022
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
3023
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
3024
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
3025
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
3026
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
3027
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
3028
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
3029
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__1925755465331778345__call__3145548377279416885__callbacks'
3030
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
3031
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
3032
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
3033
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3034
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
3035
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
3036
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
3037
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
3038
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
3039
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
3040
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
3041
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
3042
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
3043
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
3044
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
3045
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
3046
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
3047
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
3048
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
3049
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
3050
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
3051
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/request_handler.rb:96:in `process_request'
3052
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_request_handler.rb:516:in `accept_and_process_next_request'
3053
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_request_handler.rb:274:in `main_loop'
3054
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:206:in `start_request_handler'
3055
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:171:in `block in handle_spawn_application'
3056
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/utils.rb:470:in `safe_fork'
3057
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:166:in `handle_spawn_application'
3058
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:357:in `server_main_loop'
3059
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:206:in `start_synchronously'
3060
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:180:in `start'
3061
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:129:in `start'
3062
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:253:in `block (2 levels) in spawn_rack_application'
3063
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:132:in `lookup_or_add'
3064
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:246:in `block in spawn_rack_application'
3065
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:82:in `block in synchronize'
3066
+ <internal:prelude>:10:in `synchronize'
3067
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:79:in `synchronize'
3068
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:244:in `spawn_rack_application'
3069
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:137:in `spawn_application'
3070
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:275:in `handle_spawn_application'
3071
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:357:in `server_main_loop'
3072
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:206:in `start_synchronously'
3073
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/helper-scripts/passenger-spawn-server:99:in `<main>'
3074
+
3075
+
3076
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
3077
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
3078
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.7ms)
3079
+ Connecting to database specified by database.yml
3080
+
3081
+
3082
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 18:29:59 -0400
3083
+ Processing by Dossier::ReportsController#multi as HTML
3084
+ Parameters: {"report"=>"combination"}
3085
+ EmployeeReport (0.4ms) SELECT * FROM employees WHERE 1=1
3086
+ ORDER BY name ASC
3087
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (18.8ms)
3088
+ Rendered dossier/reports/employee_with_custom_view.html.haml (1.1ms)
3089
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (44.5ms)
3090
+ Completed 200 OK in 92ms (Views: 89.8ms | ActiveRecord: 0.4ms)
3091
+
3092
+
3093
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 18:29:59 -0400
3094
+ Served asset /application.css - 304 Not Modified (3ms)
3095
+
3096
+
3097
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 18:29:59 -0400
3098
+ Served asset /jquery.js - 304 Not Modified (6ms)
3099
+
3100
+
3101
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 18:29:59 -0400
3102
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
3103
+
3104
+
3105
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 18:29:59 -0400
3106
+ Served asset /application.js - 304 Not Modified (7ms)
3107
+
3108
+
3109
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 18:30:29 -0400
3110
+ Processing by Dossier::ReportsController#multi as HTML
3111
+ Parameters: {"report"=>"combination"}
3112
+ EmployeeReport (0.3ms) SELECT * FROM employees WHERE 1=1
3113
+ ORDER BY name ASC
3114
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (17.0ms)
3115
+ Rendered dossier/reports/employee_with_custom_view.html.haml (17.4ms)
3116
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (56.9ms)
3117
+ Completed 200 OK in 83ms (Views: 80.8ms | ActiveRecord: 0.3ms)
3118
+
3119
+
3120
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 18:30:29 -0400
3121
+
3122
+
3123
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 18:30:29 -0400
3124
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3125
+ Served asset /application.css - 304 Not Modified (4ms)
3126
+
3127
+
3128
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 18:30:29 -0400
3129
+ Served asset /jquery.js - 304 Not Modified (3ms)
3130
+
3131
+
3132
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 18:30:29 -0400
3133
+ Served asset /application.js - 304 Not Modified (7ms)
3134
+
3135
+
3136
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 18:30:43 -0400
3137
+ Processing by Dossier::ReportsController#multi as HTML
3138
+ Parameters: {"report"=>"combination"}
3139
+ EmployeeReport (0.3ms) SELECT * FROM employees WHERE 1=1
3140
+ ORDER BY name ASC
3141
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (16.2ms)
3142
+ Rendered dossier/reports/employee_with_custom_view.html.haml (16.5ms)
3143
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (55.3ms)
3144
+ Completed 200 OK in 81ms (Views: 79.4ms | ActiveRecord: 0.3ms)
3145
+
3146
+
3147
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 18:30:43 -0400
3148
+
3149
+
3150
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 18:30:43 -0400
3151
+
3152
+
3153
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 18:30:43 -0400
3154
+ Served asset /application.js - 304 Not Modified (0ms)
3155
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3156
+ Served asset /jquery.js - 304 Not Modified (5ms)
3157
+
3158
+
3159
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 18:30:43 -0400
3160
+ Served asset /application.css - 304 Not Modified (3ms)
3161
+
3162
+
3163
+ Started GET "/reports/employee_with_custom_view" for 127.0.0.1 at 2013-05-28 18:30:48 -0400
3164
+ Processing by Dossier::ReportsController#show as HTML
3165
+ Parameters: {"report"=>"employee_with_custom_view"}
3166
+ Rendered dossier/reports/employee_with_custom_view/_options.html.haml (1.4ms)
3167
+ Rendered dossier/reports/employee_with_custom_view.html.haml within layouts/application (8.8ms)
3168
+ Completed 200 OK in 34ms (Views: 32.0ms | ActiveRecord: 0.0ms)
3169
+
3170
+
3171
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 18:30:48 -0400
3172
+
3173
+
3174
+
3175
+
3176
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 18:30:48 -0400
3177
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 18:30:48 -0400
3178
+
3179
+
3180
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 18:30:48 -0400
3181
+ Served asset /jquery.js - 304 Not Modified (0ms)
3182
+ Served asset /application.js - 304 Not Modified (0ms)
3183
+ Served asset /application.css - 304 Not Modified (0ms)
3184
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
3185
+
3186
+
3187
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 18:43:45 -0400
3188
+ Processing by Dossier::ReportsController#multi as HTML
3189
+ Parameters: {"report"=>"combination"}
3190
+ EmployeeReport (0.3ms) SELECT * FROM employees WHERE 1=1
3191
+ ORDER BY name ASC
3192
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (18.6ms)
3193
+ EmployeeWithCustomViewReport (0.3ms) SELECT * FROM employees WHERE suspended = true
3194
+ Rendered dossier/reports/employee_with_custom_view.html.haml (5.5ms)
3195
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (67.6ms)
3196
+ Completed 200 OK in 75ms (Views: 72.9ms | ActiveRecord: 0.6ms)
3197
+
3198
+
3199
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 18:43:45 -0400
3200
+ Served asset /application.css - 304 Not Modified (0ms)
3201
+
3202
+
3203
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 18:43:45 -0400
3204
+ Served asset /application.js - 304 Not Modified (8ms)
3205
+
3206
+
3207
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 18:43:45 -0400
3208
+ Served asset /jquery.js - 304 Not Modified (5ms)
3209
+
3210
+
3211
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 18:43:45 -0400
3212
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3213
+ Connecting to database specified by database.yml
3214
+
3215
+
3216
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 18:43:53 -0400
3217
+ Processing by Dossier::ReportsController#multi as HTML
3218
+ Parameters: {"report"=>"combination"}
3219
+ EmployeeReport (0.3ms) SELECT * FROM employees WHERE 1=1
3220
+ ORDER BY name ASC
3221
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (14.5ms)
3222
+ EmployeeWithCustomViewReport (0.3ms) SELECT * FROM employees WHERE suspended = true
3223
+ Rendered dossier/reports/employee_with_custom_view.html.haml (4.6ms)
3224
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (41.9ms)
3225
+ Completed 200 OK in 84ms (Views: 82.2ms | ActiveRecord: 0.6ms)
3226
+
3227
+
3228
+
3229
+
3230
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 18:43:53 -0400
3231
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 18:43:53 -0400
3232
+ Served asset /jquery.js - 304 Not Modified (0ms)
3233
+
3234
+
3235
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 18:43:53 -0400
3236
+ Served asset /application.css - 304 Not Modified (3ms)
3237
+
3238
+
3239
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 18:43:53 -0400
3240
+ Served asset /application.js - 304 Not Modified (0ms)
3241
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
3242
+
3243
+
3244
+ Started GET "/reports/employee_with_custom_view" for 127.0.0.1 at 2013-05-28 18:44:49 -0400
3245
+ Processing by Dossier::ReportsController#show as HTML
3246
+ Parameters: {"report"=>"employee_with_custom_view"}
3247
+ Rendered dossier/reports/employee_with_custom_view/_options.html.haml (1.7ms)
3248
+ EmployeeWithCustomViewReport (0.3ms) SELECT * FROM employees WHERE suspended = true
3249
+ Rendered dossier/reports/employee_with_custom_view.html.haml within layouts/application (8.8ms)
3250
+ Completed 200 OK in 15ms (Views: 12.7ms | ActiveRecord: 0.3ms)
3251
+
3252
+
3253
+
3254
+
3255
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 18:44:50 -0400
3256
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 18:44:50 -0400
3257
+ Served asset /application.js - 304 Not Modified (0ms)
3258
+
3259
+
3260
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 18:44:50 -0400
3261
+ Served asset /application.css - 304 Not Modified (0ms)
3262
+ Served asset /jquery.js - 304 Not Modified (26ms)
3263
+
3264
+
3265
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 18:44:50 -0400
3266
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
3267
+ Connecting to database specified by database.yml
3268
+
3269
+
3270
+ Started GET "/reports/employee_with_custom_view" for 127.0.0.1 at 2013-05-28 18:50:56 -0400
3271
+ Processing by Dossier::ReportsController#show as HTML
3272
+ Parameters: {"report"=>"employee_with_custom_view"}
3273
+ Rendered dossier/reports/employee_with_custom_view/_options.html.haml (1.3ms)
3274
+ EmployeeWithCustomViewReport (0.3ms) SELECT * FROM employees WHERE suspended = true
3275
+ Rendered dossier/reports/employee_with_custom_view.html.haml within layouts/application (19.6ms)
3276
+ Completed 200 OK in 60ms (Views: 58.4ms | ActiveRecord: 0.3ms)
3277
+
3278
+
3279
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 18:50:57 -0400
3280
+ Served asset /application.css - 304 Not Modified (3ms)
3281
+
3282
+
3283
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 18:50:57 -0400
3284
+ Served asset /jquery.js - 304 Not Modified (3ms)
3285
+
3286
+
3287
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 18:50:57 -0400
3288
+ Served asset /application.js - 304 Not Modified (8ms)
3289
+
3290
+
3291
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 18:50:57 -0400
3292
+ Served asset /jquery_ujs.js - 304 Not Modified (5ms)
3293
+
3294
+
3295
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 18:50:58 -0400
3296
+ Processing by Dossier::ReportsController#multi as HTML
3297
+ Parameters: {"report"=>"combination"}
3298
+ Rendered dossier/reports/combination/_options.html.haml (0.8ms)
3299
+ EmployeeReport (0.4ms) SELECT * FROM employees WHERE 1=1
3300
+ ORDER BY name ASC
3301
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (17.0ms)
3302
+ EmployeeWithCustomViewReport (0.3ms) SELECT * FROM employees WHERE suspended = true
3303
+ Rendered dossier/reports/employee_with_custom_view.html.haml (6.5ms)
3304
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (53.6ms)
3305
+ Completed 200 OK in 104ms (Views: 101.3ms | ActiveRecord: 0.7ms)
3306
+
3307
+
3308
+
3309
+
3310
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 18:50:58 -0400
3311
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 18:50:58 -0400
3312
+ Served asset /application.css - 304 Not Modified (3ms)
3313
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
3314
+
3315
+
3316
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 18:50:58 -0400
3317
+ Served asset /application.js - 304 Not Modified (8ms)
3318
+
3319
+
3320
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 18:50:59 -0400
3321
+ Served asset /jquery.js - 304 Not Modified (4ms)
3322
+
3323
+
3324
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 18:52:10 -0400
3325
+ Processing by Dossier::ReportsController#multi as HTML
3326
+ Parameters: {"report"=>"combination"}
3327
+ Rendered dossier/reports/combination/_options.html.haml (10.9ms)
3328
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (18.4ms)
3329
+ Completed 500 Internal Server Error in 47ms
3330
+
3331
+ ActionView::Template::Error (undefined local variable or method `multi' for #<#<Class:0x007fc49be31310>:0x007fc49f848648>):
3332
+ 1: Some options plz!!
3333
+ 2: = form_for multi do |f|
3334
+ 3: = f.label :tiger_stripes
3335
+ 4: = f.text_field :tiger_stripes
3336
+ app/views/dossier/reports/combination/_options.html.haml:2:in `_app_views_dossier_reports_combination__options_html_haml___1494152933246795653_70241224766660'
3337
+
3338
+
3339
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
3340
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
3341
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (13.3ms)
3342
+ Connecting to database specified by database.yml
3343
+
3344
+
3345
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 18:52:38 -0400
3346
+ Processing by Dossier::ReportsController#multi as HTML
3347
+ Parameters: {"report"=>"combination"}
3348
+ Rendered dossier/reports/combination/_options.html.haml (7.1ms)
3349
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (14.3ms)
3350
+ Completed 500 Internal Server Error in 43ms
3351
+
3352
+ ActionView::Template::Error (undefined method `to_key' for #<CombinationReport:0x007fc49efce878 @options={}>):
3353
+ 1: Some options plz!!
3354
+ 2: = form_for report do |f|
3355
+ 3: = f.label :tiger_stripes
3356
+ 4: = f.text_field :tiger_stripes
3357
+ app/views/dossier/reports/combination/_options.html.haml:2:in `_app_views_dossier_reports_combination__options_html_haml___1494152933246795653_70241224771260'
3358
+
3359
+
3360
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
3361
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
3362
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.6ms)
3363
+ Connecting to database specified by database.yml
3364
+
3365
+
3366
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 18:53:02 -0400
3367
+ Processing by Dossier::ReportsController#multi as HTML
3368
+ Parameters: {"report"=>"combination"}
3369
+ Rendered dossier/reports/combination/_options.html.haml (10.8ms)
3370
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (18.3ms)
3371
+ Completed 500 Internal Server Error in 44ms
3372
+
3373
+ ActionView::Template::Error (undefined method `combination_report_path' for #<#<Class:0x007fc49ec8aba8>:0x007fc49ec8fa40>):
3374
+ 1: Some options plz!!
3375
+ 2: = form_for report do |f|
3376
+ 3: = f.label :tiger_stripes
3377
+ 4: = f.text_field :tiger_stripes
3378
+ app/views/dossier/reports/combination/_options.html.haml:2:in `_app_views_dossier_reports_combination__options_html_haml___1494152933246795653_70241228253760'
3379
+
3380
+
3381
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
3382
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
3383
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.4ms)
3384
+ Connecting to database specified by database.yml
3385
+
3386
+
3387
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 18:55:08 -0400
3388
+ Processing by Dossier::ReportsController#multi as HTML
3389
+ Parameters: {"report"=>"combination"}
3390
+ Rendered dossier/reports/combination/_options.html.haml (12.2ms)
3391
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (19.2ms)
3392
+ Completed 500 Internal Server Error in 46ms
3393
+
3394
+ ActionView::Template::Error (undefined method `combination_report_path' for #<#<Class:0x007fc49bff35b8>:0x007fc49d633c38>):
3395
+ 1: Some options plz!!
3396
+ 2: = form_for report do |f|
3397
+ 3: = f.label :tiger_stripes
3398
+ 4: = f.text_field :tiger_stripes
3399
+ app/views/dossier/reports/combination/_options.html.haml:2:in `_app_views_dossier_reports_combination__options_html_haml___1494152933246795653_70241202631360'
3400
+
3401
+
3402
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
3403
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
3404
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.6ms)
3405
+ Connecting to database specified by database.yml
3406
+
3407
+
3408
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 19:02:00 -0400
3409
+ Processing by Dossier::ReportsController#multi as HTML
3410
+ Parameters: {"report"=>"combination"}
3411
+ Rendered dossier/reports/combination/_options.html.haml (17.5ms)
3412
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (29.2ms)
3413
+ Completed 500 Internal Server Error in 62ms
3414
+
3415
+ ActionView::Template::Error (undefined local variable or method `report_name' for #<CombinationReport:0x007fc49c2d5448 @options={}>):
3416
+ 1: Some options plz!!
3417
+ 2: = form_for report do |f|
3418
+ 3: = f.label :tiger_stripes
3419
+ 4: = f.text_field :tiger_stripes
3420
+ app/views/dossier/reports/combination/_options.html.haml:2:in `_app_views_dossier_reports_combination__options_html_haml___1494152933246795653_70241207758440'
3421
+
3422
+
3423
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
3424
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms)
3425
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (15.3ms)
3426
+ Connecting to database specified by database.yml
3427
+
3428
+
3429
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 19:02:15 -0400
3430
+ Processing by Dossier::ReportsController#multi as HTML
3431
+ Parameters: {"report"=>"combination"}
3432
+ Rendered dossier/reports/combination/_options.html.haml (17.6ms)
3433
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (26.5ms)
3434
+ Completed 500 Internal Server Error in 63ms
3435
+
3436
+ ActionView::Template::Error (undefined method `combination_report_path' for #<#<Class:0x007fc49ea9b7e8>:0x007fc49e84d888>):
3437
+ 1: Some options plz!!
3438
+ 2: = form_for report do |f|
3439
+ 3: = f.label :tiger_stripes
3440
+ 4: = f.text_field :tiger_stripes
3441
+ app/views/dossier/reports/combination/_options.html.haml:2:in `_app_views_dossier_reports_combination__options_html_haml___1494152933246795653_70241227863980'
3442
+
3443
+
3444
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
3445
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
3446
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.3ms)
3447
+ Connecting to database specified by database.yml
3448
+
3449
+
3450
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 19:03:27 -0400
3451
+ Processing by Dossier::ReportsController#multi as HTML
3452
+ Parameters: {"report"=>"combination"}
3453
+ Rendered dossier/reports/combination/_options.html.haml (16.2ms)
3454
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (29.4ms)
3455
+ Completed 500 Internal Server Error in 68ms
3456
+
3457
+ ActionView::Template::Error (undefined method `combination_report_path' for #<#<Class:0x007fc49d359300>:0x007fc49d35e198>):
3458
+ 1: Some options plz!!
3459
+ 2: = form_for report do |f|
3460
+ 3: = f.label :tiger_stripes
3461
+ 4: = f.text_field :tiger_stripes
3462
+ app/views/dossier/reports/combination/_options.html.haml:2:in `_app_views_dossier_reports_combination__options_html_haml___1494152933246795653_70241213569460'
3463
+
3464
+
3465
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
3466
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
3467
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (13.3ms)
3468
+ Connecting to database specified by database.yml
3469
+
3470
+
3471
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 19:10:21 -0400
3472
+ Processing by Dossier::ReportsController#multi as HTML
3473
+ Parameters: {"report"=>"combination"}
3474
+ Rendered dossier/reports/combination/_options.html.haml (5.0ms)
3475
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (6.4ms)
3476
+ Completed 500 Internal Server Error in 12ms
3477
+
3478
+ ActionView::Template::Error (undefined method `combination_report_path' for #<#<Class:0x007fc49d359300>:0x007fc49d35ec60>):
3479
+ 1: Some options plz!!
3480
+ 2: = form_for report do |f|
3481
+ 3: = f.label :tiger_stripes
3482
+ 4: = f.text_field :tiger_stripes
3483
+ app/views/dossier/reports/combination/_options.html.haml:2:in `_app_views_dossier_reports_combination__options_html_haml___1494152933246795653_70241213569460'
3484
+
3485
+
3486
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
3487
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
3488
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.8ms)
3489
+ Connecting to database specified by database.yml
3490
+
3491
+
3492
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 19:10:29 -0400
3493
+ Processing by Dossier::ReportsController#multi as HTML
3494
+ Parameters: {"report"=>"combination"}
3495
+ Rendered dossier/reports/combination/_options.html.haml (12.1ms)
3496
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (20.9ms)
3497
+ Completed 500 Internal Server Error in 51ms
3498
+
3499
+ ActionView::Template::Error (undefined method `combination_report_path' for #<#<Class:0x007fc49bb35878>:0x007fc49bb3a6e8>):
3500
+ 1: Some options plz!!
3501
+ 2: = form_for report do |f|
3502
+ 3: = f.label :tiger_stripes
3503
+ 4: = f.text_field :tiger_stripes
3504
+ app/views/dossier/reports/combination/_options.html.haml:2:in `_app_views_dossier_reports_combination__options_html_haml___1494152933246795653_70241202809060'
3505
+
3506
+
3507
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
3508
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
3509
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.6ms)
3510
+ Connecting to database specified by database.yml
3511
+ Connecting to database specified by database.yml
3512
+
3513
+
3514
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 19:11:24 -0400
3515
+ Processing by Dossier::ReportsController#multi as HTML
3516
+ Parameters: {"report"=>"combination"}
3517
+ Rendered dossier/reports/combination/_options.html.haml (17.6ms)
3518
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (26.2ms)
3519
+ Completed 500 Internal Server Error in 56ms
3520
+
3521
+ ActionView::Template::Error (undefined method `combination_report_path' for #<#<Class:0x007fc49d33c278>:0x007fc49bdd2900>):
3522
+ 1: Some options plz!!
3523
+ 2: = form_for report do |f|
3524
+ 3: = f.label :tiger_stripes
3525
+ 4: = f.text_field :tiger_stripes
3526
+ app/views/dossier/reports/combination/_options.html.haml:2:in `_app_views_dossier_reports_combination__options_html_haml___1494152933246795653_70241213783760'
3527
+
3528
+
3529
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
3530
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
3531
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.6ms)
3532
+
3533
+
3534
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 19:11:47 -0400
3535
+ Processing by Dossier::ReportsController#multi as HTML
3536
+ Parameters: {"report"=>"combination"}
3537
+ Rendered dossier/reports/combination/_options.html.haml (9.7ms)
3538
+ EmployeeReport (0.3ms) SELECT * FROM employees WHERE 1=1
3539
+ ORDER BY name ASC
3540
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (11.5ms)
3541
+ EmployeeWithCustomViewReport (0.5ms) SELECT * FROM employees WHERE suspended = true
3542
+ Rendered dossier/reports/employee_with_custom_view.html.haml (4.7ms)
3543
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (41.4ms)
3544
+ Completed 200 OK in 84ms (Views: 82.1ms | ActiveRecord: 0.8ms)
3545
+
3546
+
3547
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 19:11:48 -0400
3548
+ Served asset /application.css - 304 Not Modified (3ms)
3549
+
3550
+
3551
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 19:11:48 -0400
3552
+ Served asset /application.js - 304 Not Modified (8ms)
3553
+
3554
+
3555
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 19:11:48 -0400
3556
+ Served asset /jquery_ujs.js - 304 Not Modified (4ms)
3557
+
3558
+
3559
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 19:11:48 -0400
3560
+ Served asset /jquery.js - 304 Not Modified (5ms)
3561
+ Connecting to database specified by database.yml
3562
+
3563
+
3564
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 19:13:19 -0400
3565
+ Processing by Dossier::ReportsController#multi as HTML
3566
+ Parameters: {"report"=>"combination"}
3567
+ Rendered dossier/reports/combination/_options.html.haml (7.3ms)
3568
+ EmployeeReport (0.3ms) SELECT * FROM employees WHERE 1=1
3569
+ ORDER BY name ASC
3570
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (9.7ms)
3571
+ EmployeeWithCustomViewReport (0.3ms) SELECT * FROM employees WHERE suspended = true
3572
+ Rendered dossier/reports/employee_with_custom_view.html.haml (4.8ms)
3573
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (47.6ms)
3574
+ Completed 200 OK in 90ms (Views: 87.6ms | ActiveRecord: 0.6ms)
3575
+
3576
+
3577
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 19:13:23 -0400
3578
+ Processing by Dossier::ReportsController#multi as HTML
3579
+ Parameters: {"report"=>"combination"}
3580
+ Rendered dossier/reports/combination/_options.html.haml (1.4ms)
3581
+ EmployeeReport (0.3ms) SELECT * FROM employees WHERE 1=1
3582
+ ORDER BY name ASC
3583
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (3.3ms)
3584
+ EmployeeWithCustomViewReport (0.3ms) SELECT * FROM employees WHERE suspended = true
3585
+ Rendered dossier/reports/employee_with_custom_view.html.haml (1.3ms)
3586
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (19.0ms)
3587
+ Completed 200 OK in 24ms (Views: 22.6ms | ActiveRecord: 0.7ms)
3588
+
3589
+
3590
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 19:13:23 -0400
3591
+ Served asset /application.css - 304 Not Modified (3ms)
3592
+
3593
+
3594
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 19:13:23 -0400
3595
+ Served asset /jquery.js - 304 Not Modified (4ms)
3596
+
3597
+
3598
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 19:13:23 -0400
3599
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
3600
+
3601
+
3602
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 19:13:23 -0400
3603
+ Served asset /application.js - 304 Not Modified (7ms)
3604
+ Connecting to database specified by database.yml
3605
+ Connecting to database specified by database.yml
3606
+ Connecting to database specified by database.yml
3607
+ Connecting to database specified by database.yml
3608
+
3609
+
3610
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 19:17:00 -0400
3611
+ Processing by Dossier::ReportsController#multi as HTML
3612
+ Parameters: {"report"=>"combination"}
3613
+ Rendered dossier/reports/combination/_options.html.haml (7.2ms)
3614
+ EmployeeReport (0.3ms) SELECT * FROM employees WHERE 1=1
3615
+ ORDER BY name ASC
3616
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (11.1ms)
3617
+ EmployeeWithCustomViewReport (0.3ms) SELECT * FROM employees WHERE suspended = true
3618
+ Rendered dossier/reports/employee_with_custom_view.html.haml (4.5ms)
3619
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (45.8ms)
3620
+ Completed 200 OK in 84ms (Views: 82.4ms | ActiveRecord: 0.6ms)
3621
+
3622
+
3623
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 19:17:00 -0400
3624
+ Served asset /application.css - 304 Not Modified (3ms)
3625
+
3626
+
3627
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 19:17:00 -0400
3628
+ Served asset /application.js - 304 Not Modified (9ms)
3629
+
3630
+
3631
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 19:17:00 -0400
3632
+ Served asset /jquery.js - 304 Not Modified (3ms)
3633
+
3634
+
3635
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 19:17:01 -0400
3636
+ Served asset /jquery_ujs.js - 304 Not Modified (5ms)
3637
+
3638
+
3639
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 19:17:05 -0400
3640
+ Processing by Dossier::ReportsController#multi as HTML
3641
+ Parameters: {"report"=>"combination"}
3642
+ Rendered dossier/reports/combination/_options.html.haml (7.8ms)
3643
+ EmployeeReport (0.3ms) SELECT * FROM employees WHERE 1=1
3644
+ ORDER BY name ASC
3645
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (10.9ms)
3646
+ EmployeeWithCustomViewReport (0.3ms) SELECT * FROM employees WHERE suspended = true
3647
+ Rendered dossier/reports/employee_with_custom_view.html.haml (5.0ms)
3648
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (49.5ms)
3649
+ Completed 200 OK in 87ms (Views: 85.5ms | ActiveRecord: 0.6ms)
3650
+ Connecting to database specified by database.yml
3651
+
3652
+
3653
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 19:18:47 -0400
3654
+ Processing by Dossier::ReportsController#multi as HTML
3655
+ Parameters: {"report"=>"combination"}
3656
+ Rendered dossier/reports/combination/_options.html.haml (9.7ms)
3657
+ EmployeeReport (0.3ms) SELECT * FROM employees WHERE 1=1
3658
+ ORDER BY name ASC
3659
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (10.5ms)
3660
+ EmployeeWithCustomViewReport (0.3ms) SELECT * FROM employees WHERE suspended = true
3661
+ Rendered dossier/reports/employee_with_custom_view.html.haml (4.7ms)
3662
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (49.8ms)
3663
+ Completed 200 OK in 88ms (Views: 86.2ms | ActiveRecord: 0.6ms)
3664
+
3665
+
3666
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 19:18:47 -0400
3667
+ Served asset /application.css - 304 Not Modified (3ms)
3668
+
3669
+
3670
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 19:18:47 -0400
3671
+ Served asset /application.js - 304 Not Modified (9ms)
3672
+
3673
+
3674
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 19:18:47 -0400
3675
+ Served asset /jquery_ujs.js - 304 Not Modified (10ms)
3676
+
3677
+
3678
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 19:18:48 -0400
3679
+ Served asset /jquery.js - 304 Not Modified (5ms)
3680
+
3681
+
3682
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 19:18:49 -0400
3683
+ Processing by Dossier::ReportsController#multi as HTML
3684
+ Parameters: {"report"=>"combination"}
3685
+ Rendered dossier/reports/combination/_options.html.haml (8.6ms)
3686
+ EmployeeReport (0.3ms) SELECT * FROM employees WHERE 1=1
3687
+ ORDER BY name ASC
3688
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (11.0ms)
3689
+ EmployeeWithCustomViewReport (0.3ms) SELECT * FROM employees WHERE suspended = true
3690
+ Rendered dossier/reports/employee_with_custom_view.html.haml (4.6ms)
3691
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (50.6ms)
3692
+ Completed 200 OK in 91ms (Views: 88.2ms | ActiveRecord: 0.6ms)
3693
+ Connecting to database specified by database.yml
3694
+
3695
+
3696
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 19:21:17 -0400
3697
+ Processing by Dossier::ReportsController#multi as HTML
3698
+ Parameters: {"report"=>"combination"}
3699
+ Rendered dossier/reports/combination/_options.html.haml (8.5ms)
3700
+ EmployeeReport (0.3ms) SELECT * FROM employees WHERE 1=1
3701
+ ORDER BY name ASC
3702
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (10.5ms)
3703
+ EmployeeWithCustomViewReport (0.3ms) SELECT * FROM employees WHERE suspended = true
3704
+ Rendered dossier/reports/employee_with_custom_view.html.haml (4.5ms)
3705
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (47.6ms)
3706
+ Completed 200 OK in 90ms (Views: 87.5ms | ActiveRecord: 0.6ms)
3707
+ Connecting to database specified by database.yml
3708
+
3709
+
3710
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 19:22:19 -0400
3711
+ Processing by Dossier::ReportsController#multi as HTML
3712
+ Parameters: {"report"=>"combination"}
3713
+ Rendered dossier/reports/combination/_options.html.haml (6.8ms)
3714
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (16.5ms)
3715
+ Completed 500 Internal Server Error in 45ms
3716
+
3717
+ ActionView::Template::Error (undefined method `to_key' for #<CombinationReport:0x007fc49d614dd8 @options={}>):
3718
+ 1: Some options plz!!
3719
+ 2: = form_for report do |f|
3720
+ 3: = f.label :tiger_stripes
3721
+ 4: = f.text_field :tiger_stripes
3722
+ app/views/dossier/reports/combination/_options.html.haml:2:in `_app_views_dossier_reports_combination__options_html_haml___1494152933246795653_70241215178000'
3723
+
3724
+
3725
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
3726
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
3727
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.9ms)
3728
+ Connecting to database specified by database.yml
3729
+
3730
+
3731
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 19:23:42 -0400
3732
+ Processing by Dossier::ReportsController#multi as HTML
3733
+ Parameters: {"report"=>"combination"}
3734
+ Rendered dossier/reports/combination/_options.html.haml (11.2ms)
3735
+ EmployeeReport (0.3ms) SELECT * FROM employees WHERE 1=1
3736
+ ORDER BY name ASC
3737
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (14.4ms)
3738
+ EmployeeWithCustomViewReport (0.3ms) SELECT * FROM employees WHERE suspended = true
3739
+ Rendered dossier/reports/employee_with_custom_view.html.haml (7.1ms)
3740
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (63.6ms)
3741
+ Completed 200 OK in 112ms (Views: 109.5ms | ActiveRecord: 0.7ms)
3742
+
3743
+
3744
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 19:23:42 -0400
3745
+ Served asset /application.css - 304 Not Modified (3ms)
3746
+
3747
+
3748
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 19:23:42 -0400
3749
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
3750
+
3751
+
3752
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 19:23:42 -0400
3753
+ Served asset /jquery.js - 304 Not Modified (3ms)
3754
+
3755
+
3756
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 19:23:43 -0400
3757
+ Served asset /application.js - 304 Not Modified (8ms)
3758
+
3759
+
3760
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 19:23:52 -0400
3761
+ Processing by Dossier::ReportsController#multi as HTML
3762
+ Parameters: {"report"=>"combination"}
3763
+ Rendered dossier/reports/combination/_options.html.haml (8.3ms)
3764
+ EmployeeReport (0.3ms) SELECT * FROM employees WHERE 1=1
3765
+ ORDER BY name ASC
3766
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (12.0ms)
3767
+ EmployeeWithCustomViewReport (0.3ms) SELECT * FROM employees WHERE suspended = true
3768
+ Rendered dossier/reports/employee_with_custom_view.html.haml (4.8ms)
3769
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (52.7ms)
3770
+ Completed 200 OK in 93ms (Views: 90.9ms | ActiveRecord: 0.6ms)
3771
+ Connecting to database specified by database.yml
3772
+
3773
+
3774
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 19:24:06 -0400
3775
+ Processing by Dossier::ReportsController#multi as HTML
3776
+ Parameters: {"report"=>"combination"}
3777
+ Rendered dossier/reports/combination/_options.html.haml (13.1ms)
3778
+ EmployeeReport (0.3ms) SELECT * FROM employees WHERE 1=1
3779
+ ORDER BY name ASC
3780
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (12.3ms)
3781
+ EmployeeWithCustomViewReport (0.3ms) SELECT * FROM employees WHERE suspended = true
3782
+ Rendered dossier/reports/employee_with_custom_view.html.haml (4.9ms)
3783
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (60.5ms)
3784
+ Completed 200 OK in 107ms (Views: 105.1ms | ActiveRecord: 0.6ms)
3785
+
3786
+
3787
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 19:24:06 -0400
3788
+ Served asset /application.css - 304 Not Modified (3ms)
3789
+
3790
+
3791
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 19:24:06 -0400
3792
+ Served asset /jquery.js - 304 Not Modified (27ms)
3793
+
3794
+
3795
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 19:24:07 -0400
3796
+
3797
+
3798
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 19:24:07 -0400
3799
+ Served asset /application.js - 304 Not Modified (7ms)
3800
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
3801
+
3802
+
3803
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 19:24:07 -0400
3804
+ Processing by Dossier::ReportsController#multi as HTML
3805
+ Parameters: {"report"=>"combination"}
3806
+ Rendered dossier/reports/combination/_options.html.haml (8.8ms)
3807
+ EmployeeReport (0.3ms) SELECT * FROM employees WHERE 1=1
3808
+ ORDER BY name ASC
3809
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (11.5ms)
3810
+ EmployeeWithCustomViewReport (0.3ms) SELECT * FROM employees WHERE suspended = true
3811
+ Rendered dossier/reports/employee_with_custom_view.html.haml (5.2ms)
3812
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (49.2ms)
3813
+ Completed 200 OK in 89ms (Views: 87.0ms | ActiveRecord: 0.6ms)
3814
+ Connecting to database specified by database.yml
3815
+
3816
+
3817
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 19:26:36 -0400
3818
+ Processing by Dossier::ReportsController#multi as HTML
3819
+ Parameters: {"report"=>"combination"}
3820
+ Rendered dossier/reports/combination/_options.html.haml (8.9ms)
3821
+ EmployeeReport (0.3ms) SELECT * FROM employees WHERE 1=1
3822
+ ORDER BY name ASC
3823
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (10.7ms)
3824
+ EmployeeWithCustomViewReport (0.3ms) SELECT * FROM employees WHERE suspended = true
3825
+ Rendered dossier/reports/employee_with_custom_view.html.haml (4.5ms)
3826
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (50.3ms)
3827
+ Completed 200 OK in 95ms (Views: 93.3ms | ActiveRecord: 0.6ms)
3828
+ Connecting to database specified by database.yml
3829
+
3830
+
3831
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 19:29:36 -0400
3832
+ Processing by Dossier::ReportsController#multi as HTML
3833
+ Parameters: {"report"=>"combination"}
3834
+ Rendered dossier/reports/combination/_options.html.haml (12.1ms)
3835
+ EmployeeReport (0.3ms) SELECT * FROM employees WHERE 1=1
3836
+ ORDER BY name ASC
3837
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (10.4ms)
3838
+ EmployeeWithCustomViewReport (0.3ms) SELECT * FROM employees WHERE suspended = true
3839
+ Rendered dossier/reports/employee_with_custom_view.html.haml (19.8ms)
3840
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (69.8ms)
3841
+ Completed 200 OK in 96ms (Views: 93.9ms | ActiveRecord: 0.6ms)
3842
+
3843
+
3844
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 19:29:36 -0400
3845
+ Served asset /application.css - 304 Not Modified (3ms)
3846
+
3847
+
3848
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 19:29:36 -0400
3849
+ Served asset /jquery.js - 304 Not Modified (3ms)
3850
+
3851
+
3852
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 19:29:36 -0400
3853
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
3854
+
3855
+
3856
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 19:29:37 -0400
3857
+ Served asset /application.js - 304 Not Modified (7ms)
3858
+
3859
+
3860
+ Started GET "/multi/reports/combination" for 127.0.0.1 at 2013-05-28 19:29:38 -0400
3861
+ Processing by Dossier::ReportsController#multi as HTML
3862
+ Parameters: {"report"=>"combination"}
3863
+ Rendered dossier/reports/combination/_options.html.haml (8.3ms)
3864
+ EmployeeReport (0.3ms) SELECT * FROM employees WHERE 1=1
3865
+ ORDER BY name ASC
3866
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (25.7ms)
3867
+ EmployeeWithCustomViewReport (0.4ms) SELECT * FROM employees WHERE suspended = true
3868
+ Rendered dossier/reports/employee_with_custom_view.html.haml (5.0ms)
3869
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (67.6ms)
3870
+ Completed 200 OK in 92ms (Views: 89.3ms | ActiveRecord: 0.7ms)
3871
+
3872
+
3873
+ Started GET "/reports/employee_with_custom_view" for 127.0.0.1 at 2013-05-28 19:29:42 -0400
3874
+ Processing by Dossier::ReportsController#show as HTML
3875
+ Parameters: {"report"=>"employee_with_custom_view"}
3876
+ Rendered dossier/reports/employee_with_custom_view/_options.html.haml (1.2ms)
3877
+ EmployeeWithCustomViewReport (0.3ms) SELECT * FROM employees WHERE suspended = true
3878
+ Rendered dossier/reports/employee_with_custom_view.html.haml within layouts/application (4.1ms)
3879
+ Completed 200 OK in 11ms (Views: 8.3ms | ActiveRecord: 0.3ms)
3880
+
3881
+
3882
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 19:29:42 -0400
3883
+
3884
+
3885
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 19:29:42 -0400
3886
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3887
+
3888
+
3889
+ Served asset /application.css - 304 Not Modified (3ms)
3890
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 19:29:42 -0400
3891
+ Served asset /application.js - 304 Not Modified (8ms)
3892
+
3893
+
3894
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 19:29:43 -0400
3895
+ Served asset /jquery.js - 304 Not Modified (3ms)
3896
+
3897
+
3898
+ Started GET "/reports/employee_with_custom_view" for 127.0.0.1 at 2013-05-28 19:31:31 -0400
3899
+ Processing by Dossier::ReportsController#show as HTML
3900
+ Parameters: {"report"=>"employee_with_custom_view"}
3901
+ Rendered dossier/reports/employee_with_custom_view/_options.html.haml (13.5ms)
3902
+ Rendered dossier/reports/employee_with_custom_view.html.haml within layouts/application (21.8ms)
3903
+ Completed 500 Internal Server Error in 35ms
3904
+
3905
+ ActionView::Template::Error (undefined method `dragon_colors' for EmployeeWithCustomViewReport:Class):
3906
+ 2: options be here matey!
3907
+ 3: = form_for report do |f|
3908
+ 4: = f.label :dragon_color
3909
+ 5: = f.select :dragon_color, report.class.dragon_colors
3910
+ app/views/dossier/reports/employee_with_custom_view/_options.html.haml:5:in `block in _app_views_dossier_reports_employee_with_custom_view__options_html_haml___844909473153831832_70241202412640'
3911
+ app/views/dossier/reports/employee_with_custom_view/_options.html.haml:3:in `_app_views_dossier_reports_employee_with_custom_view__options_html_haml___844909473153831832_70241202412640'
3912
+ app/views/dossier/reports/employee_with_custom_view.html.haml:2:in `_app_views_dossier_reports_employee_with_custom_view_html_haml___2452468235433580641_70241213836360'
3913
+
3914
+
3915
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (16.4ms)
3916
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
3917
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (25.0ms)
3918
+ Connecting to database specified by database.yml
3919
+
3920
+
3921
+ Started GET "/reports/employee_with_custom_view" for 127.0.0.1 at 2013-05-28 19:31:39 -0400
3922
+ Processing by Dossier::ReportsController#show as HTML
3923
+ Parameters: {"report"=>"employee_with_custom_view"}
3924
+ Rendered dossier/reports/employee_with_custom_view/_options.html.haml (9.2ms)
3925
+ EmployeeWithCustomViewReport (0.2ms) SELECT * FROM employees WHERE suspended = true
3926
+ Rendered dossier/reports/employee_with_custom_view.html.haml within layouts/application (23.5ms)
3927
+ Completed 200 OK in 62ms (Views: 59.9ms | ActiveRecord: 0.2ms)
3928
+
3929
+
3930
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 19:31:39 -0400
3931
+ Served asset /application.css - 304 Not Modified (3ms)
3932
+
3933
+
3934
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 19:31:39 -0400
3935
+ Served asset /application.js - 304 Not Modified (11ms)
3936
+
3937
+
3938
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 19:31:39 -0400
3939
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
3940
+
3941
+
3942
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 19:31:40 -0400
3943
+ Served asset /jquery.js - 304 Not Modified (4ms)
3944
+
3945
+
3946
+ Started GET "/reports/employee_with_custom_view" for 127.0.0.1 at 2013-05-28 19:31:40 -0400
3947
+ Processing by Dossier::ReportsController#show as HTML
3948
+ Parameters: {"report"=>"employee_with_custom_view"}
3949
+ Rendered dossier/reports/employee_with_custom_view/_options.html.haml (9.0ms)
3950
+ EmployeeWithCustomViewReport (0.3ms) SELECT * FROM employees WHERE suspended = true
3951
+ Rendered dossier/reports/employee_with_custom_view.html.haml within layouts/application (26.3ms)
3952
+ Completed 200 OK in 68ms (Views: 65.9ms | ActiveRecord: 0.3ms)
3953
+
3954
+
3955
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 19:31:41 -0400
3956
+
3957
+
3958
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 19:31:41 -0400
3959
+ Served asset /application.css - 304 Not Modified (3ms)
3960
+ Served asset /jquery.js - 304 Not Modified (3ms)
3961
+
3962
+
3963
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 19:31:41 -0400
3964
+ Served asset /application.js - 304 Not Modified (7ms)
3965
+
3966
+
3967
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 19:31:41 -0400
3968
+ Served asset /jquery_ujs.js - 304 Not Modified (4ms)
3969
+
3970
+
3971
+ Started GET "/reports/employee_with_custom_view" for 127.0.0.1 at 2013-05-28 19:31:41 -0400
3972
+ Processing by Dossier::ReportsController#show as HTML
3973
+ Parameters: {"report"=>"employee_with_custom_view"}
3974
+ Rendered dossier/reports/employee_with_custom_view/_options.html.haml (9.6ms)
3975
+ EmployeeWithCustomViewReport (0.2ms) SELECT * FROM employees WHERE suspended = true
3976
+ Rendered dossier/reports/employee_with_custom_view.html.haml within layouts/application (26.5ms)
3977
+ Completed 200 OK in 69ms (Views: 67.1ms | ActiveRecord: 0.2ms)
3978
+
3979
+
3980
+
3981
+
3982
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 19:31:41 -0400
3983
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 19:31:41 -0400
3984
+
3985
+
3986
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3987
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 19:31:41 -0400
3988
+ Served asset /application.js - 304 Not Modified (1ms)
3989
+ Served asset /application.css - 304 Not Modified (5ms)
3990
+
3991
+
3992
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 19:31:42 -0400
3993
+ Served asset /jquery.js - 304 Not Modified (5ms)
3994
+
3995
+
3996
+ Started GET "/reports/employee_with_custom_view" for 127.0.0.1 at 2013-05-28 19:31:44 -0400
3997
+ Processing by Dossier::ReportsController#show as HTML
3998
+ Parameters: {"report"=>"employee_with_custom_view"}
3999
+ Rendered dossier/reports/employee_with_custom_view/_options.html.haml (8.9ms)
4000
+ EmployeeWithCustomViewReport (0.2ms) SELECT * FROM employees WHERE suspended = true
4001
+ Rendered dossier/reports/employee_with_custom_view.html.haml within layouts/application (24.1ms)
4002
+ Completed 200 OK in 63ms (Views: 60.8ms | ActiveRecord: 0.2ms)
4003
+
4004
+
4005
+
4006
+
4007
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 19:31:44 -0400
4008
+
4009
+
4010
+
4011
+
4012
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 19:31:44 -0400
4013
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 19:31:44 -0400
4014
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 19:31:44 -0400
4015
+ Served asset /application.js - 304 Not Modified (0ms)
4016
+ Served asset /jquery.js - 304 Not Modified (0ms)
4017
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
4018
+ Served asset /application.css - 304 Not Modified (4ms)
4019
+
4020
+
4021
+ Started GET "/reports/employee_with_custom_view" for 127.0.0.1 at 2013-05-28 19:31:55 -0400
4022
+ Processing by Dossier::ReportsController#show as HTML
4023
+ Parameters: {"report"=>"employee_with_custom_view"}
4024
+ Rendered dossier/reports/employee_with_custom_view/_options.html.haml (3.7ms)
4025
+ EmployeeWithCustomViewReport (0.3ms) SELECT * FROM employees WHERE suspended = true
4026
+ Rendered dossier/reports/employee_with_custom_view.html.haml within layouts/application (6.2ms)
4027
+ Completed 200 OK in 12ms (Views: 10.1ms | ActiveRecord: 0.3ms)
4028
+
4029
+
4030
+
4031
+
4032
+
4033
+
4034
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 19:31:55 -0400
4035
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 19:31:55 -0400
4036
+
4037
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 19:31:55 -0400
4038
+
4039
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 19:31:55 -0400
4040
+ Served asset /application.css - 304 Not Modified (0ms)
4041
+ Served asset /application.js - 304 Not Modified (0ms)
4042
+ Served asset /jquery_ujs.js - 304 Not Modified (4ms)
4043
+ Served asset /jquery.js - 304 Not Modified (3ms)
4044
+
4045
+
4046
+ Started GET "/multi/reports/combination?options[footer]=1" for 127.0.0.1 at 2013-05-28 19:34:33 -0400
4047
+ Processing by Dossier::ReportsController#multi as HTML
4048
+ Parameters: {"options"=>{"footer"=>"1"}, "report"=>"combination"}
4049
+ Rendered dossier/reports/combination/_options.html.haml (5.2ms)
4050
+ EmployeeReport (0.4ms) SELECT * FROM employees WHERE 1=1
4051
+ ORDER BY name ASC
4052
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (5.7ms)
4053
+ EmployeeWithCustomViewReport (0.3ms) SELECT * FROM employees WHERE suspended = true
4054
+ Rendered dossier/reports/employee_with_custom_view.html.haml (2.3ms)
4055
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (50.3ms)
4056
+ Completed 200 OK in 58ms (Views: 54.9ms | ActiveRecord: 0.7ms)
4057
+
4058
+
4059
+
4060
+
4061
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-28 19:34:33 -0400
4062
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-28 19:34:33 -0400
4063
+
4064
+
4065
+
4066
+
4067
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-28 19:34:33 -0400
4068
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-28 19:34:33 -0400
4069
+ Served asset /application.css - 304 Not Modified (0ms)
4070
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
4071
+ Served asset /jquery.js - 304 Not Modified (0ms)
4072
+ Served asset /application.js - 304 Not Modified (8ms)
4073
+ Connecting to database specified by database.yml
4074
+
4075
+
4076
+ Started GET "/reports/employee_with_custom_view" for 127.0.0.1 at 2013-05-29 06:21:11 -0400
4077
+ Processing by Dossier::ReportsController#show as HTML
4078
+ Parameters: {"report"=>"employee_with_custom_view"}
4079
+ Rendered dossier/reports/employee_with_custom_view/_options.html.haml (11.3ms)
4080
+ EmployeeWithCustomViewReport (1.0ms) SELECT * FROM employees WHERE suspended = true
4081
+ Rendered dossier/reports/employee_with_custom_view.html.haml within layouts/application (20.6ms)
4082
+ Completed 200 OK in 38ms (Views: 31.5ms | ActiveRecord: 1.0ms)
4083
+
4084
+
4085
+ Started GET "/multi/reports/combination?options[footer]=1" for 127.0.0.1 at 2013-05-29 06:21:13 -0400
4086
+ Processing by Dossier::ReportsController#multi as HTML
4087
+ Parameters: {"options"=>{"footer"=>"1"}, "report"=>"combination"}
4088
+ Rendered dossier/reports/combination/_options.html.haml (3.9ms)
4089
+ EmployeeReport (0.4ms) SELECT * FROM employees WHERE 1=1
4090
+ ORDER BY name ASC
4091
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml (7.9ms)
4092
+ EmployeeWithCustomViewReport (0.3ms) SELECT * FROM employees WHERE suspended = true
4093
+ Rendered dossier/reports/employee_with_custom_view.html.haml (2.2ms)
4094
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/multi.html.haml within layouts/application (90.8ms)
4095
+ Completed 200 OK in 97ms (Views: 95.0ms | ActiveRecord: 0.7ms)
4096
+ Connecting to database specified by database.yml
4097
+ Connecting to database specified by database.yml
4098
+
4099
+
4100
+ Started GET "/reports/cute_animals" for 127.0.0.1 at 2013-05-30 14:42:54 -0400
4101
+ Processing by Dossier::ReportsController#show as HTML
4102
+ Parameters: {"report"=>"cute_animals"}
4103
+ Rendered /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml within layouts/application (13.2ms)
4104
+ Completed 500 Internal Server Error in 51ms
4105
+
4106
+ ActionView::Template::Error (undefined method `each' for nil:NilClass):
4107
+ 10: - report.results.headers.each do |header|
4108
+ 11: %th= report.format_header(header)
4109
+ 12: %tbody
4110
+ 13: - report.results.body.each do |row|
4111
+ 14: %tr
4112
+ 15: - row.each do |value|
4113
+ 16: %td= value
4114
+ /Users/adamhunter/Studio/adamhunter/dossier/app/views/dossier/reports/show.html.haml:13:in `___sers_adamhunter__tudio_adamhunter_dossier_app_views_dossier_reports_show_html_haml___3326089053695332177_70241228037920'
4115
+ actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
4116
+ activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
4117
+ actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
4118
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
4119
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
4120
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
4121
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
4122
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
4123
+ actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
4124
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
4125
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
4126
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
4127
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
4128
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
4129
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
4130
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
4131
+ actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
4132
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
4133
+ actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
4134
+ actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
4135
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
4136
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
4137
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
4138
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
4139
+ /Users/adamhunter/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
4140
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
4141
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
4142
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
4143
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
4144
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
4145
+ /Users/adamhunter/Studio/adamhunter/dossier/lib/dossier/renderer.rb:24:in `render_template'
4146
+ /Users/adamhunter/Studio/adamhunter/dossier/lib/dossier/renderer.rb:13:in `rescue in render'
4147
+ /Users/adamhunter/Studio/adamhunter/dossier/lib/dossier/renderer.rb:11:in `render'
4148
+ /Users/adamhunter/Studio/adamhunter/dossier/lib/dossier/report.rb:82:in `render'
4149
+ /Users/adamhunter/Studio/adamhunter/dossier/lib/dossier/responder.rb:7:in `to_html'
4150
+ actionpack (3.2.13) lib/action_controller/metal/responder.rb:153:in `respond'
4151
+ actionpack (3.2.13) lib/action_controller/metal/responder.rb:146:in `call'
4152
+ actionpack (3.2.13) lib/action_controller/metal/mime_responds.rb:239:in `respond_with'
4153
+ /Users/adamhunter/Studio/adamhunter/dossier/app/controllers/dossier/reports_controller.rb:9:in `show'
4154
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
4155
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
4156
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
4157
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
4158
+ activesupport (3.2.13) lib/active_support/callbacks.rb:414:in `_run__918150024287864246__process_action__4515465015970775371__callbacks'
4159
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
4160
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
4161
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
4162
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
4163
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
4164
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
4165
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
4166
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
4167
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
4168
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
4169
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
4170
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
4171
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
4172
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
4173
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
4174
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
4175
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
4176
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
4177
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
4178
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
4179
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
4180
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
4181
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
4182
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
4183
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
4184
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
4185
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
4186
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
4187
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
4188
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
4189
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
4190
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
4191
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
4192
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
4193
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
4194
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
4195
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__1925755465331778345__call__3145548377279416885__callbacks'
4196
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
4197
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
4198
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
4199
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
4200
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
4201
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
4202
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
4203
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
4204
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
4205
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
4206
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
4207
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
4208
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
4209
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
4210
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
4211
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
4212
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
4213
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
4214
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
4215
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
4216
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
4217
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/request_handler.rb:96:in `process_request'
4218
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_request_handler.rb:516:in `accept_and_process_next_request'
4219
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_request_handler.rb:274:in `main_loop'
4220
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:206:in `start_request_handler'
4221
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:171:in `block in handle_spawn_application'
4222
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/utils.rb:470:in `safe_fork'
4223
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:166:in `handle_spawn_application'
4224
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:357:in `server_main_loop'
4225
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:206:in `start_synchronously'
4226
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:180:in `start'
4227
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/rack/application_spawner.rb:129:in `start'
4228
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:253:in `block (2 levels) in spawn_rack_application'
4229
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:132:in `lookup_or_add'
4230
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:246:in `block in spawn_rack_application'
4231
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:82:in `block in synchronize'
4232
+ <internal:prelude>:10:in `synchronize'
4233
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server_collection.rb:79:in `synchronize'
4234
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:244:in `spawn_rack_application'
4235
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:137:in `spawn_application'
4236
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/spawn_manager.rb:275:in `handle_spawn_application'
4237
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:357:in `server_main_loop'
4238
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/lib/phusion_passenger/abstract_server.rb:206:in `start_synchronously'
4239
+ /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392/gems/passenger-3.0.19/helper-scripts/passenger-spawn-server:99:in `<main>'
4240
+
4241
+
4242
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
4243
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
4244
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.0ms)
4245
+
4246
+
4247
+ Started GET "/reports/cute_animals" for 127.0.0.1 at 2013-05-30 14:43:24 -0400
4248
+ Processing by Dossier::ReportsController#show as HTML
4249
+ Parameters: {"report"=>"cute_animals"}
4250
+ Rendered dossier/reports/cute_animals.html.haml within layouts/application (1.2ms)
4251
+ Completed 200 OK in 29ms (Views: 28.5ms | ActiveRecord: 0.0ms)
4252
+
4253
+
4254
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-30 14:43:24 -0400
4255
+ Served asset /jquery.js - 304 Not Modified (3ms)
4256
+
4257
+
4258
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-30 14:43:24 -0400
4259
+ Served asset /application.js - 304 Not Modified (42ms)
4260
+
4261
+
4262
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-30 14:43:24 -0400
4263
+
4264
+
4265
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-30 14:43:24 -0400
4266
+ Served asset /jquery_ujs.js - 304 Not Modified (5ms)
4267
+ Served asset /application.css - 304 Not Modified (5ms)
4268
+
4269
+
4270
+ Started GET "/reports/cute_animals" for 127.0.0.1 at 2013-05-30 14:48:00 -0400
4271
+ Processing by Dossier::ReportsController#show as HTML
4272
+ Parameters: {"report"=>"cute_animals"}
4273
+ Rendered dossier/reports/cute_animals.html.haml within layouts/application (16.3ms)
4274
+ Completed 500 Internal Server Error in 47ms
4275
+
4276
+ ActionView::Template::Error (undefined method `families' for cute_animals:CuteAnimalsReport):
4277
+ 2:
4278
+ 3: .row-fluid
4279
+ 4: .span12
4280
+ 5: - report.families.each do |family|
4281
+ 6: %h2= family.display_name
4282
+ 7: - family.domestics.each do |domestic|
4283
+ 8: %h3= domestic.display_name
4284
+ app/views/dossier/reports/cute_animals.html.haml:5:in `_app_views_dossier_reports_cute_animals_html_haml__2443196287876557115_70241213618560'
4285
+
4286
+
4287
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
4288
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
4289
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.8ms)
4290
+ Connecting to database specified by database.yml
4291
+ Connecting to database specified by database.yml
4292
+
4293
+
4294
+ Started GET "/reports/cute_animals" for 127.0.0.1 at 2013-05-30 14:52:40 -0400
4295
+ Processing by Dossier::ReportsController#show as HTML
4296
+ Parameters: {"report"=>"cute_animals"}
4297
+ Rendered dossier/reports/cute_animals.html.haml within layouts/application (28.4ms)
4298
+ Completed 500 Internal Server Error in 65ms
4299
+
4300
+ ActionView::Template::Error (undefined method `headers' for #<CuteAnimalsReport::Segmenter:0x007fc49eec4e00>):
4301
+ 10: %table
4302
+ 11: %thead
4303
+ 12: %tr
4304
+ 13: %th{colspan: report.segmenter.headers.count}
4305
+ 14: = group.display_name
4306
+ 15: %tr
4307
+ 16: - report.segmenter.headers.each do |header|
4308
+ app/views/dossier/reports/cute_animals.html.haml:13:in `block (3 levels) in _app_views_dossier_reports_cute_animals_html_haml__2443196287876557115_70241213712920'
4309
+ app/views/dossier/reports/cute_animals.html.haml:9:in `each'
4310
+ app/views/dossier/reports/cute_animals.html.haml:9:in `block (2 levels) in _app_views_dossier_reports_cute_animals_html_haml__2443196287876557115_70241213712920'
4311
+ app/views/dossier/reports/cute_animals.html.haml:7:in `each'
4312
+ app/views/dossier/reports/cute_animals.html.haml:7:in `block in _app_views_dossier_reports_cute_animals_html_haml__2443196287876557115_70241213712920'
4313
+ app/views/dossier/reports/cute_animals.html.haml:5:in `each'
4314
+ app/views/dossier/reports/cute_animals.html.haml:5:in `_app_views_dossier_reports_cute_animals_html_haml__2443196287876557115_70241213712920'
4315
+
4316
+
4317
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
4318
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
4319
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.5ms)
4320
+ Connecting to database specified by database.yml
4321
+
4322
+
4323
+ Started GET "/reports/cute_animals" for 127.0.0.1 at 2013-05-30 14:53:24 -0400
4324
+ Processing by Dossier::ReportsController#show as HTML
4325
+ Parameters: {"report"=>"cute_animals"}
4326
+ Rendered dossier/reports/cute_animals.html.haml within layouts/application (27.9ms)
4327
+ Completed 500 Internal Server Error in 63ms
4328
+
4329
+ ActionView::Template::Error (undefined local variable or method `skipped_headers' for #<CuteAnimalsReport::Segmenter:0x007fc49ee19140>):
4330
+ 10: %table
4331
+ 11: %thead
4332
+ 12: %tr
4333
+ 13: %th{colspan: report.segmenter.headers.count}
4334
+ 14: = group.display_name
4335
+ 15: %tr
4336
+ 16: - report.segmenter.headers.each do |header|
4337
+ app/views/dossier/reports/cute_animals.html.haml:13:in `block (3 levels) in _app_views_dossier_reports_cute_animals_html_haml__2443196287876557115_70241201257660'
4338
+ app/views/dossier/reports/cute_animals.html.haml:9:in `each'
4339
+ app/views/dossier/reports/cute_animals.html.haml:9:in `block (2 levels) in _app_views_dossier_reports_cute_animals_html_haml__2443196287876557115_70241201257660'
4340
+ app/views/dossier/reports/cute_animals.html.haml:7:in `each'
4341
+ app/views/dossier/reports/cute_animals.html.haml:7:in `block in _app_views_dossier_reports_cute_animals_html_haml__2443196287876557115_70241201257660'
4342
+ app/views/dossier/reports/cute_animals.html.haml:5:in `each'
4343
+ app/views/dossier/reports/cute_animals.html.haml:5:in `_app_views_dossier_reports_cute_animals_html_haml__2443196287876557115_70241201257660'
4344
+
4345
+
4346
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
4347
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
4348
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.1ms)
4349
+ Connecting to database specified by database.yml
4350
+
4351
+
4352
+ Started GET "/reports/cute_animals" for 127.0.0.1 at 2013-05-30 14:53:39 -0400
4353
+ Processing by Dossier::ReportsController#show as HTML
4354
+ Parameters: {"report"=>"cute_animals"}
4355
+ Rendered dossier/reports/cute_animals.html.haml within layouts/application (23.8ms)
4356
+ Completed 500 Internal Server Error in 52ms
4357
+
4358
+ ActionView::Template::Error (key not found: "canine.true.22"):
4359
+ 16: - report.segmenter.headers.each do |header|
4360
+ 17: %th= report.format_header(header)
4361
+ 18: %tbody
4362
+ 19: - group.rows.each do |row|
4363
+ 20: %tr
4364
+ 21: - row.each do |value|
4365
+ 22: %td= value
4366
+ app/views/dossier/reports/cute_animals.html.haml:19:in `block (3 levels) in _app_views_dossier_reports_cute_animals_html_haml__2443196287876557115_70241213331460'
4367
+ app/views/dossier/reports/cute_animals.html.haml:9:in `each'
4368
+ app/views/dossier/reports/cute_animals.html.haml:9:in `block (2 levels) in _app_views_dossier_reports_cute_animals_html_haml__2443196287876557115_70241213331460'
4369
+ app/views/dossier/reports/cute_animals.html.haml:7:in `each'
4370
+ app/views/dossier/reports/cute_animals.html.haml:7:in `block in _app_views_dossier_reports_cute_animals_html_haml__2443196287876557115_70241213331460'
4371
+ app/views/dossier/reports/cute_animals.html.haml:5:in `each'
4372
+ app/views/dossier/reports/cute_animals.html.haml:5:in `_app_views_dossier_reports_cute_animals_html_haml__2443196287876557115_70241213331460'
4373
+
4374
+
4375
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
4376
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
4377
+ Rendered /Users/adamhunter/.rvm/gems/ruby-1.9.3-p392@dossier2/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.0ms)
4378
+ Connecting to database specified by database.yml