meta_reports 0.0.5 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (160) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +26 -68
  3. data/app/models/meta_reports/color.rb +16 -0
  4. data/{lib/generators/meta_reports/templates/views/templates → app/views/meta_reports}/_default.html.erb +1 -1
  5. data/{lib/generators/meta_reports/templates/views/templates → app/views/meta_reports}/_default_footer.pdf.prawn +0 -0
  6. data/{lib/generators/meta_reports/templates/views/templates → app/views/meta_reports}/_default_header.pdf.prawn +0 -0
  7. data/{lib/generators/meta_reports/templates/views/templates → app/views/meta_reports}/_default_header.xlsx.axlsx +0 -0
  8. data/{spec/dummy/app/views/meta_reports/reports/templates → app/views/meta_reports}/_default_table.html.erb +3 -3
  9. data/{lib/generators/meta_reports/templates/views/templates → app/views/meta_reports}/_default_table.pdf.prawn +0 -0
  10. data/app/views/meta_reports/default.html.erb +1 -0
  11. data/app/views/meta_reports/default.pdf.prawn +37 -0
  12. data/{lib/generators/meta_reports/templates/views/templates → app/views/meta_reports}/default.xlsx.axlsx +1 -1
  13. data/lib/generators/meta_reports/install_templates_generator.rb +1 -6
  14. data/lib/meta_reports.rb +7 -1
  15. data/{app/models → lib}/meta_reports/data.rb +9 -0
  16. data/{app/helpers/meta_reports/reports_helper.rb → lib/meta_reports/helper.rb} +7 -6
  17. data/lib/meta_reports/railtie.rb +7 -0
  18. data/{app/models → lib}/meta_reports/table.rb +4 -0
  19. data/lib/meta_reports/version.rb +1 -1
  20. data/lib/tasks/meta_reports_tasks.rake +2 -2
  21. data/spec/ci.sh +1 -1
  22. data/spec/dummy/Rakefile +0 -0
  23. data/spec/dummy/app/assets/javascripts/application.js +0 -0
  24. data/spec/dummy/app/assets/stylesheets/application.css +0 -0
  25. data/spec/dummy/app/controllers/application_controller.rb +0 -0
  26. data/spec/dummy/app/controllers/home_controller.rb +0 -0
  27. data/spec/dummy/app/controllers/reports_controller.rb +87 -0
  28. data/spec/dummy/app/helpers/application_helper.rb +0 -0
  29. data/spec/dummy/app/models/meta_reports/color.rb +16 -0
  30. data/{app/models/meta_reports/base.rb → spec/dummy/app/models/report.rb} +15 -26
  31. data/spec/dummy/app/views/home/index.html.erb +0 -0
  32. data/spec/dummy/app/views/layouts/application.html.erb +0 -0
  33. data/spec/dummy/app/views/meta_reports/{reports/templates/_default.html.erb → _default.html.erb} +2 -2
  34. data/spec/dummy/app/views/meta_reports/{reports/templates/_default_footer.pdf.prawn → _default_footer.pdf.prawn} +0 -0
  35. data/spec/dummy/app/views/meta_reports/{reports/templates/_default_header.pdf.prawn → _default_header.pdf.prawn} +0 -0
  36. data/spec/dummy/app/views/meta_reports/{reports/templates/_default_header.xlsx.axlsx → _default_header.xlsx.axlsx} +0 -0
  37. data/{lib/generators/meta_reports/templates/views/templates → spec/dummy/app/views/meta_reports}/_default_table.html.erb +3 -3
  38. data/spec/dummy/app/views/meta_reports/{reports/templates/_default_table.pdf.prawn → _default_table.pdf.prawn} +0 -0
  39. data/spec/dummy/app/views/meta_reports/default.html.erb +1 -0
  40. data/spec/dummy/app/views/meta_reports/default.pdf.prawn +37 -0
  41. data/spec/dummy/app/views/meta_reports/{reports/templates/default.xlsx.axlsx → default.xlsx.axlsx} +1 -1
  42. data/{lib/generators/meta_reports/templates/views → spec/dummy/app/views/reports}/_form.html.erb +1 -1
  43. data/{lib/generators/meta_reports/templates/views → spec/dummy/app/views/reports}/edit.html.erb +1 -1
  44. data/spec/dummy/app/views/{meta_reports/reports → reports}/forms/_form_moo.html.erb +0 -0
  45. data/{lib/generators/meta_reports/templates/views → spec/dummy/app/views/reports}/forms/form.html.erb +0 -0
  46. data/{lib/generators/meta_reports/templates/views → spec/dummy/app/views/reports}/index.html.erb +0 -0
  47. data/{lib/generators/meta_reports/templates/views → spec/dummy/app/views/reports}/new.html.erb +0 -0
  48. data/spec/dummy/config.ru +0 -0
  49. data/spec/dummy/config/application.rb +0 -0
  50. data/spec/dummy/config/boot.rb +0 -0
  51. data/spec/dummy/config/database.yml +0 -0
  52. data/spec/dummy/config/environment.rb +0 -0
  53. data/spec/dummy/config/environments/development.rb +0 -0
  54. data/spec/dummy/config/environments/production.rb +0 -0
  55. data/spec/dummy/config/environments/test.rb +0 -0
  56. data/spec/dummy/config/initializers/backtrace_silencers.rb +0 -0
  57. data/spec/dummy/config/initializers/inflections.rb +0 -0
  58. data/spec/dummy/config/initializers/mime_types.rb +0 -0
  59. data/spec/dummy/config/initializers/secret_token.rb +0 -0
  60. data/spec/dummy/config/initializers/session_store.rb +0 -0
  61. data/spec/dummy/config/initializers/wrap_parameters.rb +0 -0
  62. data/spec/dummy/config/locales/en.yml +0 -0
  63. data/spec/dummy/config/routes.rb +2 -1
  64. data/spec/dummy/config/routes_empty.rb +0 -0
  65. data/spec/dummy/config/routes_original.rb +0 -0
  66. data/spec/dummy/db/development.sqlite3 +0 -0
  67. data/spec/dummy/db/migrate/20130801071213_for_testing_only.rb +1 -2
  68. data/spec/dummy/db/test.sqlite3 +0 -0
  69. data/spec/dummy/log/development.log +5 -24939
  70. data/spec/dummy/log/test.log +3029 -0
  71. data/spec/dummy/public/404.html +0 -0
  72. data/spec/dummy/public/422.html +0 -0
  73. data/spec/dummy/public/500.html +0 -0
  74. data/spec/dummy/public/favicon.ico +0 -0
  75. data/spec/dummy/tmp/cache/assets/C9B/140/sprockets%2F805babf865ce32228222420a522c7b36 +0 -0
  76. data/spec/dummy/tmp/cache/assets/CBD/2B0/sprockets%2F9e22e937dd267c81a146665f15471b8e +0 -0
  77. data/spec/dummy/tmp/cache/assets/CD0/810/sprockets%2Fe858c95fa595e319dac0065d49982967 +0 -0
  78. data/spec/dummy/tmp/cache/assets/CD0/AC0/sprockets%2F1d341d7a2fc1328567d4b23e0809b2e2 +0 -0
  79. data/spec/dummy/tmp/cache/assets/CD1/A80/sprockets%2F25be813f3840b407d514e03973fbac40 +0 -0
  80. data/spec/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  81. data/spec/dummy/tmp/cache/assets/CDC/FB0/sprockets%2F16b037c6f739184fc67a82dc140a3b83 +0 -0
  82. data/spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  83. data/spec/dummy/tmp/cache/assets/D3D/EB0/sprockets%2F2d47bd3108d9abbb12c0497e36d9674d +0 -0
  84. data/spec/dummy/tmp/cache/assets/D40/8F0/sprockets%2F290aea2004dfecfc76f42e48970f1484 +0 -0
  85. data/spec/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  86. data/spec/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  87. data/spec/dummy/tmp/cache/assets/D61/310/sprockets%2Fc168b1c9be3e38ac1c8403a3074b5b8c +0 -0
  88. data/spec/dummy/tmp/cache/assets/D74/AE0/sprockets%2F9ad0425db5cfa16a9426f7b1a7958d7d +0 -0
  89. data/spec/dummy/tmp/cache/assets/D98/270/sprockets%2F0b7ba158ff62bbbb378d6bea80680c63 +0 -0
  90. data/spec/dummy/tmp/cache/assets/DDC/340/sprockets%2F8ad88a197ff3462ea8dd3ad7b1e2b7e9 +0 -0
  91. data/spec/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  92. data/spec/dummy/tmp/cache/assets/DF1/CD0/sprockets%2F3b66bd14b91d4fb176ce0a30ab5fd9bf +0 -0
  93. data/spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  94. data/spec/dummy/tmp/cache/assets/E5A/EF0/sprockets%2Fb0d5af721ea37c98fd4bccd8e1e5c6ab +0 -0
  95. data/spec/dummy/tmp/cache/assets/test/sass/cd99a83fa417594c8715ee09005855a11886141c/metareports_color_variables.scssc +0 -0
  96. data/spec/dummy/tmp/cache/assets/test/sass/cd99a83fa417594c8715ee09005855a11886141c/metareports_colors.scssc +0 -0
  97. data/spec/dummy/tmp/cache/assets/test/sprockets/0b7ba158ff62bbbb378d6bea80680c63 +0 -0
  98. data/spec/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  99. data/spec/dummy/tmp/cache/assets/test/sprockets/16b037c6f739184fc67a82dc140a3b83 +0 -0
  100. data/spec/dummy/tmp/cache/assets/test/sprockets/1d341d7a2fc1328567d4b23e0809b2e2 +0 -0
  101. data/spec/dummy/tmp/cache/assets/test/sprockets/25be813f3840b407d514e03973fbac40 +0 -0
  102. data/spec/dummy/tmp/cache/assets/test/sprockets/290aea2004dfecfc76f42e48970f1484 +0 -0
  103. data/spec/dummy/tmp/cache/assets/test/sprockets/2d47bd3108d9abbb12c0497e36d9674d +0 -0
  104. data/spec/dummy/tmp/cache/assets/test/sprockets/2e7ca7e84b7c22471bbca0e4504a2597 +0 -0
  105. data/spec/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  106. data/spec/dummy/tmp/cache/assets/test/sprockets/34d1d79bff5dc36e7f78550df20eec85 +0 -0
  107. data/spec/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  108. data/spec/dummy/tmp/cache/assets/test/sprockets/366f779b10b9268d7594b4833cac1629 +0 -0
  109. data/spec/dummy/tmp/cache/assets/test/sprockets/3b66bd14b91d4fb176ce0a30ab5fd9bf +0 -0
  110. data/spec/dummy/tmp/cache/assets/test/sprockets/3f5939c6c02f0f902d77ac93858eaa55 +0 -0
  111. data/spec/dummy/tmp/cache/assets/test/sprockets/76da4521ccd2724b5e04ce969514f6f7 +0 -0
  112. data/spec/dummy/tmp/cache/assets/test/sprockets/7d10cf1420e7efe789dd0a850b92fe72 +0 -0
  113. data/spec/dummy/tmp/cache/assets/test/sprockets/7f26f47a9eab416ae0e730d60088b9ef +0 -0
  114. data/spec/dummy/tmp/cache/assets/test/sprockets/805babf865ce32228222420a522c7b36 +0 -0
  115. data/spec/dummy/tmp/cache/assets/test/sprockets/89b49044c6f7d85bbb660b73a9a4e181 +0 -0
  116. data/spec/dummy/tmp/cache/assets/test/sprockets/8ad88a197ff3462ea8dd3ad7b1e2b7e9 +0 -0
  117. data/spec/dummy/tmp/cache/assets/test/sprockets/9e22e937dd267c81a146665f15471b8e +0 -0
  118. data/spec/dummy/tmp/cache/assets/test/sprockets/b0d5af721ea37c98fd4bccd8e1e5c6ab +0 -0
  119. data/spec/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  120. data/spec/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  121. data/spec/dummy/tmp/cache/assets/test/sprockets/e858c95fa595e319dac0065d49982967 +0 -0
  122. data/spec/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  123. data/spec/dummy/tmp/capybara/capybara-201310282335386823859116.html +0 -0
  124. data/spec/dummy/tmp/capybara/capybara-201310282336101820292402.html +0 -0
  125. data/spec/dummy/tmp/capybara/capybara-201310282338439674392250.html +0 -0
  126. data/spec/dummy/tmp/capybara/capybara-201310282350595445887206.html +0 -0
  127. data/spec/dummy/tmp/capybara/capybara-201310282351429822980920.html +0 -0
  128. data/spec/dummy/tmp/capybara/capybara-201310282354523302677005.html +0 -0
  129. data/spec/features/dummy_spec.rb +8 -8
  130. data/spec/generators/install_templates_spec.rb +14 -14
  131. data/spec/models/data_spec.rb +0 -0
  132. data/spec/models/table_spec.rb +0 -0
  133. data/spec/spec_helper.rb +0 -0
  134. data/spec/support/utilities.rb +0 -0
  135. data/spec/tasks/meta_reports_rake_spec.rb +0 -1
  136. metadata +82 -76
  137. data/app/assets/images/meta_reports/print.png +0 -0
  138. data/app/assets/images/meta_reports/spreadsheet.png +0 -0
  139. data/app/assets/javascripts/meta_reports/reports.js +0 -2
  140. data/app/controllers/meta_reports/application_controller.rb +0 -4
  141. data/config/routes.rb +0 -11
  142. data/db/migrate/20130801071213_create_meta_reports_reports.rb +0 -17
  143. data/lib/generators/meta_reports/install_engine_generator.rb +0 -44
  144. data/lib/generators/meta_reports/templates/controllers/reports_controller.rb +0 -91
  145. data/lib/generators/meta_reports/templates/models/report.rb +0 -35
  146. data/lib/generators/meta_reports/templates/models/report_non_activerecord.rb +0 -35
  147. data/lib/generators/meta_reports/templates/views/forms/_form_example.html.erb +0 -1
  148. data/lib/generators/meta_reports/templates/views/templates/default.html.erb +0 -1
  149. data/lib/generators/meta_reports/templates/views/templates/default.pdf.prawn +0 -28
  150. data/lib/meta_reports/engine.rb +0 -15
  151. data/spec/dummy/app/controllers/meta_reports/reports_controller.rb +0 -91
  152. data/spec/dummy/app/models/meta_reports/report.rb +0 -34
  153. data/spec/dummy/app/views/meta_reports/reports/_form.html.erb +0 -61
  154. data/spec/dummy/app/views/meta_reports/reports/edit.html.erb +0 -6
  155. data/spec/dummy/app/views/meta_reports/reports/forms/form.html.erb +0 -17
  156. data/spec/dummy/app/views/meta_reports/reports/index.html.erb +0 -36
  157. data/spec/dummy/app/views/meta_reports/reports/new.html.erb +0 -5
  158. data/spec/dummy/app/views/meta_reports/reports/templates/default.html.erb +0 -1
  159. data/spec/dummy/app/views/meta_reports/reports/templates/default.pdf.prawn +0 -26
  160. data/spec/generators/install_engine_spec.rb +0 -61
@@ -2741,3 +2741,3032 @@ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
2741
2741
   (0.1ms) rollback transaction
2742
2742
   (0.1ms) begin transaction
2743
2743
   (0.0ms) rollback transaction
2744
+ Connecting to database specified by database.yml
2745
+  (0.5ms) select sqlite_version(*)
2746
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2747
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2748
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
2749
+ Migrating to ForTestingOnly (20130801071213)
2750
+  (0.0ms) begin transaction
2751
+  (0.3ms) CREATE TABLE "meta_reports_reports" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "title" varchar(255), "group" varchar(255), "direct" boolean, "views" integer, "target" varchar(255), "formats_mask" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2752
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130801071213')
2753
+  (1.7ms) commit transaction
2754
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2755
+ Connecting to database specified by database.yml
2756
+  (0.2ms) begin transaction
2757
+  (0.0ms) rollback transaction
2758
+  (0.0ms) begin transaction
2759
+  (0.0ms) rollback transaction
2760
+  (0.0ms) begin transaction
2761
+  (0.0ms) rollback transaction
2762
+  (0.0ms) begin transaction
2763
+  (0.0ms) rollback transaction
2764
+  (0.0ms) begin transaction
2765
+  (0.0ms) rollback transaction
2766
+ SQL (1.4ms) DELETE FROM "meta_reports_reports"
2767
+  (0.1ms) begin transaction
2768
+ SQL (56.8ms) INSERT INTO "meta_reports_reports" ("created_at", "description", "direct", "formats_mask", "group", "name", "target", "title", "updated_at", "views") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 19 Nov 2013 02:13:07 UTC +00:00], ["description", "Moo, eh?"], ["direct", nil], ["formats_mask", 7], ["group", "moo"], ["name", "moo"], ["target", nil], ["title", "Le Moo"], ["updated_at", Tue, 19 Nov 2013 02:13:07 UTC +00:00], ["views", nil]]
2769
+  (1.2ms) commit transaction
2770
+  (0.0ms) begin transaction
2771
+ Started GET "/meta_reports/1" for 127.0.0.1 at 2013-11-18 18:13:07 -0800
2772
+ Processing by MetaReports::ReportsController#show as HTML
2773
+ Parameters: {"id"=>"1"}
2774
+ MetaReports::Report Load (0.2ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
2775
+ Rendered meta_reports/reports/templates/_default_table.html.erb (1.2ms)
2776
+ Rendered meta_reports/reports/templates/_default.html.erb (4.1ms)
2777
+ Rendered meta_reports/reports/templates/default.html.erb within layouts/application (8.4ms)
2778
+  (0.2ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
2779
+ Completed 200 OK in 20.1ms (Views: 17.3ms | ActiveRecord: 0.4ms)
2780
+  (0.5ms) rollback transaction
2781
+  (0.1ms) begin transaction
2782
+ Started GET "/meta_reports" for 127.0.0.1 at 2013-11-18 18:13:07 -0800
2783
+ Processing by MetaReports::ReportsController#index as HTML
2784
+ MetaReports::Report Load (0.2ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" ORDER BY meta_reports_reports.title
2785
+ Rendered meta_reports/reports/index.html.erb within layouts/application (5.2ms)
2786
+ Completed 200 OK in 7.9ms (Views: 7.3ms | ActiveRecord: 0.2ms)
2787
+  (0.1ms) rollback transaction
2788
+  (0.0ms) begin transaction
2789
+ Started GET "/" for 127.0.0.1 at 2013-11-18 18:13:07 -0800
2790
+ Processing by HomeController#index as HTML
2791
+ Rendered home/index.html.erb within layouts/application (0.3ms)
2792
+ Completed 200 OK in 2.8ms (Views: 2.5ms | ActiveRecord: 0.0ms)
2793
+  (0.0ms) rollback transaction
2794
+  (0.0ms) begin transaction
2795
+ Started GET "/meta_reports/new" for 127.0.0.1 at 2013-11-18 18:13:07 -0800
2796
+ Processing by MetaReports::ReportsController#new as HTML
2797
+ Rendered meta_reports/reports/_form.html.erb (68.8ms)
2798
+ Rendered meta_reports/reports/new.html.erb within layouts/application (69.9ms)
2799
+ Completed 500 Internal Server Error in 71.2ms
2800
+  (0.1ms) rollback transaction
2801
+  (0.0ms) begin transaction
2802
+ Started GET "/meta_reports/1/edit" for 127.0.0.1 at 2013-11-18 18:13:07 -0800
2803
+ Processing by MetaReports::ReportsController#edit as HTML
2804
+ Parameters: {"id"=>"1"}
2805
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
2806
+ Rendered meta_reports/reports/_form.html.erb (13.0ms)
2807
+ Rendered meta_reports/reports/edit.html.erb within layouts/application (13.7ms)
2808
+ Completed 500 Internal Server Error in 15.6ms
2809
+  (0.1ms) rollback transaction
2810
+  (0.0ms) begin transaction
2811
+ Started GET "/meta_reports/1.pdf" for 127.0.0.1 at 2013-11-18 18:13:07 -0800
2812
+ Processing by MetaReports::ReportsController#show as PDF
2813
+ Parameters: {"id"=>"1"}
2814
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
2815
+ Rendered meta_reports/reports/templates/_default_header.pdf.prawn (153.0ms)
2816
+ Rendered meta_reports/reports/templates/_default_table.pdf.prawn (17.8ms)
2817
+ Rendered meta_reports/reports/templates/_default_footer.pdf.prawn (1.4ms)
2818
+ Rendered meta_reports/reports/templates/default.pdf.prawn (210.9ms)
2819
+  (0.3ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
2820
+ Completed 200 OK in 215.4ms (Views: 213.7ms | ActiveRecord: 0.4ms)
2821
+  (0.5ms) rollback transaction
2822
+  (0.1ms) begin transaction
2823
+ Started GET "/meta_reports/1.xlsx" for 127.0.0.1 at 2013-11-18 18:13:07 -0800
2824
+ Processing by MetaReports::ReportsController#show as XLSX
2825
+ Parameters: {"id"=>"1"}
2826
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
2827
+ Rendered meta_reports/reports/templates/_default_header.xlsx.axlsx (81.1ms)
2828
+ Rendered meta_reports/reports/templates/default.xlsx.axlsx (90.1ms)
2829
+  (0.3ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
2830
+ Completed 200 OK in 94.4ms (Views: 92.7ms | ActiveRecord: 0.4ms)
2831
+  (0.5ms) rollback transaction
2832
+  (0.0ms) begin transaction
2833
+  (0.0ms) rollback transaction
2834
+  (0.0ms) begin transaction
2835
+  (0.0ms) rollback transaction
2836
+  (0.0ms) begin transaction
2837
+  (0.0ms) rollback transaction
2838
+  (0.0ms) begin transaction
2839
+  (0.0ms) rollback transaction
2840
+  (0.0ms) begin transaction
2841
+  (0.0ms) rollback transaction
2842
+  (0.0ms) begin transaction
2843
+  (0.0ms) rollback transaction
2844
+  (0.0ms) begin transaction
2845
+  (0.0ms) rollback transaction
2846
+  (0.0ms) begin transaction
2847
+  (0.0ms) rollback transaction
2848
+  (37.7ms) begin transaction
2849
+  (0.0ms) rollback transaction
2850
+  (0.0ms) begin transaction
2851
+  (0.0ms) rollback transaction
2852
+  (0.0ms) begin transaction
2853
+  (0.0ms) rollback transaction
2854
+  (0.0ms) begin transaction
2855
+  (0.0ms) rollback transaction
2856
+  (0.0ms) begin transaction
2857
+  (0.0ms) rollback transaction
2858
+  (0.0ms) begin transaction
2859
+  (0.0ms) rollback transaction
2860
+  (0.0ms) begin transaction
2861
+  (0.0ms) rollback transaction
2862
+  (0.0ms) begin transaction
2863
+  (0.0ms) rollback transaction
2864
+  (0.0ms) begin transaction
2865
+  (0.0ms) rollback transaction
2866
+  (0.0ms) begin transaction
2867
+  (0.0ms) rollback transaction
2868
+  (0.1ms) begin transaction
2869
+  (0.0ms) rollback transaction
2870
+  (0.0ms) begin transaction
2871
+  (0.0ms) rollback transaction
2872
+  (0.0ms) begin transaction
2873
+  (0.0ms) rollback transaction
2874
+ Connecting to database specified by database.yml
2875
+  (0.0ms) select sqlite_version(*)
2876
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2877
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2878
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
2879
+ Migrating to ForTestingOnly (20130801071213)
2880
+  (0.0ms) begin transaction
2881
+  (0.3ms) CREATE TABLE "meta_reports_reports" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "title" varchar(255), "group" varchar(255), "direct" boolean, "views" integer, "target" varchar(255), "formats_mask" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2882
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130801071213')
2883
+  (8.8ms) commit transaction
2884
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2885
+ Connecting to database specified by database.yml
2886
+ SQL (1.3ms) DELETE FROM "meta_reports_reports"
2887
+  (0.1ms) begin transaction
2888
+ SQL (3.2ms) INSERT INTO "meta_reports_reports" ("created_at", "description", "direct", "formats_mask", "group", "name", "target", "title", "updated_at", "views") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 19 Nov 2013 02:18:44 UTC +00:00], ["description", "Moo, eh?"], ["direct", nil], ["formats_mask", 7], ["group", "moo"], ["name", "moo"], ["target", nil], ["title", "Le Moo"], ["updated_at", Tue, 19 Nov 2013 02:18:44 UTC +00:00], ["views", nil]]
2889
+  (1.2ms) commit transaction
2890
+  (0.0ms) begin transaction
2891
+ Started GET "/" for 127.0.0.1 at 2013-11-18 18:18:44 -0800
2892
+ Processing by HomeController#index as HTML
2893
+ Rendered home/index.html.erb within layouts/application (1.0ms)
2894
+ Completed 200 OK in 8.6ms (Views: 8.3ms | ActiveRecord: 0.0ms)
2895
+  (0.1ms) rollback transaction
2896
+  (0.0ms) begin transaction
2897
+ Started GET "/meta_reports/new" for 127.0.0.1 at 2013-11-18 18:18:44 -0800
2898
+ Processing by MetaReports::ReportsController#new as HTML
2899
+ Rendered meta_reports/reports/_form.html.erb (53.4ms)
2900
+ Rendered meta_reports/reports/new.html.erb within layouts/application (56.0ms)
2901
+ Completed 500 Internal Server Error in 58.1ms
2902
+  (0.1ms) rollback transaction
2903
+  (0.0ms) begin transaction
2904
+ Started GET "/meta_reports" for 127.0.0.1 at 2013-11-18 18:18:44 -0800
2905
+ Processing by MetaReports::ReportsController#index as HTML
2906
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" ORDER BY meta_reports_reports.title
2907
+ Rendered meta_reports/reports/index.html.erb within layouts/application (4.0ms)
2908
+ Completed 200 OK in 6.5ms (Views: 6.0ms | ActiveRecord: 0.1ms)
2909
+  (0.1ms) rollback transaction
2910
+  (0.0ms) begin transaction
2911
+ Started GET "/meta_reports/1.pdf" for 127.0.0.1 at 2013-11-18 18:18:44 -0800
2912
+ Processing by MetaReports::ReportsController#show as PDF
2913
+ Parameters: {"id"=>"1"}
2914
+ MetaReports::Report Load (0.2ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
2915
+ Rendered meta_reports/reports/templates/_default_header.pdf.prawn (61.5ms)
2916
+ Rendered meta_reports/reports/templates/_default_table.pdf.prawn (17.3ms)
2917
+ Rendered meta_reports/reports/templates/_default_footer.pdf.prawn (43.6ms)
2918
+ Rendered meta_reports/reports/templates/default.pdf.prawn (127.6ms)
2919
+  (0.2ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
2920
+ Completed 200 OK in 132.4ms (Views: 130.1ms | ActiveRecord: 0.4ms)
2921
+  (0.5ms) rollback transaction
2922
+  (0.1ms) begin transaction
2923
+ Started GET "/meta_reports/1" for 127.0.0.1 at 2013-11-18 18:18:45 -0800
2924
+ Processing by MetaReports::ReportsController#show as HTML
2925
+ Parameters: {"id"=>"1"}
2926
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
2927
+ Rendered meta_reports/reports/templates/_default_table.html.erb (1.1ms)
2928
+ Rendered meta_reports/reports/templates/_default.html.erb (3.6ms)
2929
+ Rendered meta_reports/reports/templates/default.html.erb within layouts/application (4.6ms)
2930
+  (0.2ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
2931
+ Completed 200 OK in 7.6ms (Views: 6.1ms | ActiveRecord: 0.3ms)
2932
+  (0.4ms) rollback transaction
2933
+  (0.0ms) begin transaction
2934
+ Started GET "/meta_reports/1.xlsx" for 127.0.0.1 at 2013-11-18 18:18:45 -0800
2935
+ Processing by MetaReports::ReportsController#show as XLSX
2936
+ Parameters: {"id"=>"1"}
2937
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
2938
+ Rendered meta_reports/reports/templates/_default_header.xlsx.axlsx (6.6ms)
2939
+ Rendered meta_reports/reports/templates/default.xlsx.axlsx (59.7ms)
2940
+  (0.3ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
2941
+ Completed 200 OK in 64.0ms (Views: 62.3ms | ActiveRecord: 0.4ms)
2942
+  (0.4ms) rollback transaction
2943
+  (0.0ms) begin transaction
2944
+ Started GET "/meta_reports/1/edit" for 127.0.0.1 at 2013-11-18 18:18:45 -0800
2945
+ Processing by MetaReports::ReportsController#edit as HTML
2946
+ Parameters: {"id"=>"1"}
2947
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
2948
+ Rendered meta_reports/reports/_form.html.erb (51.0ms)
2949
+ Rendered meta_reports/reports/edit.html.erb within layouts/application (51.7ms)
2950
+ Completed 500 Internal Server Error in 53.8ms
2951
+  (0.1ms) rollback transaction
2952
+  (0.0ms) begin transaction
2953
+  (0.0ms) rollback transaction
2954
+  (0.0ms) begin transaction
2955
+  (0.0ms) rollback transaction
2956
+  (0.0ms) begin transaction
2957
+  (0.0ms) rollback transaction
2958
+  (0.0ms) begin transaction
2959
+  (0.0ms) rollback transaction
2960
+  (0.0ms) begin transaction
2961
+  (0.0ms) rollback transaction
2962
+  (0.0ms) begin transaction
2963
+  (0.0ms) rollback transaction
2964
+  (0.0ms) begin transaction
2965
+  (0.0ms) rollback transaction
2966
+  (0.0ms) begin transaction
2967
+  (0.0ms) rollback transaction
2968
+  (0.0ms) begin transaction
2969
+  (0.0ms) rollback transaction
2970
+  (0.0ms) begin transaction
2971
+  (0.0ms) rollback transaction
2972
+  (0.0ms) begin transaction
2973
+  (0.0ms) rollback transaction
2974
+  (0.0ms) begin transaction
2975
+  (0.0ms) rollback transaction
2976
+  (0.0ms) begin transaction
2977
+  (0.0ms) rollback transaction
2978
+  (0.0ms) begin transaction
2979
+  (0.0ms) rollback transaction
2980
+  (0.0ms) begin transaction
2981
+  (0.0ms) rollback transaction
2982
+  (0.0ms) begin transaction
2983
+  (0.0ms) rollback transaction
2984
+  (0.0ms) begin transaction
2985
+  (0.0ms) rollback transaction
2986
+  (0.0ms) begin transaction
2987
+  (0.0ms) rollback transaction
2988
+  (0.0ms) begin transaction
2989
+  (0.0ms) rollback transaction
2990
+  (0.0ms) begin transaction
2991
+  (0.0ms) rollback transaction
2992
+  (0.0ms) begin transaction
2993
+  (0.0ms) rollback transaction
2994
+ Connecting to database specified by database.yml
2995
+  (0.0ms) select sqlite_version(*)
2996
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2997
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2998
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
2999
+ Migrating to ForTestingOnly (20130801071213)
3000
+  (0.0ms) begin transaction
3001
+  (0.3ms) CREATE TABLE "meta_reports_reports" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "title" varchar(255), "group" varchar(255), "direct" boolean, "views" integer, "target" varchar(255), "formats_mask" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
3002
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130801071213')
3003
+  (15.4ms) commit transaction
3004
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
3005
+ Connecting to database specified by database.yml
3006
+  (0.2ms) begin transaction
3007
+  (0.0ms) rollback transaction
3008
+  (0.0ms) begin transaction
3009
+  (0.0ms) rollback transaction
3010
+  (0.0ms) begin transaction
3011
+  (0.0ms) rollback transaction
3012
+  (0.0ms) begin transaction
3013
+  (0.0ms) rollback transaction
3014
+  (0.0ms) begin transaction
3015
+  (0.0ms) rollback transaction
3016
+  (0.0ms) begin transaction
3017
+  (0.0ms) rollback transaction
3018
+  (0.0ms) begin transaction
3019
+  (0.0ms) rollback transaction
3020
+  (0.0ms) begin transaction
3021
+  (0.0ms) rollback transaction
3022
+  (0.0ms) begin transaction
3023
+  (0.0ms) rollback transaction
3024
+  (0.0ms) begin transaction
3025
+  (0.0ms) rollback transaction
3026
+  (0.0ms) begin transaction
3027
+  (0.0ms) rollback transaction
3028
+  (0.0ms) begin transaction
3029
+  (0.0ms) rollback transaction
3030
+  (0.0ms) begin transaction
3031
+  (0.0ms) rollback transaction
3032
+  (0.0ms) begin transaction
3033
+  (0.0ms) rollback transaction
3034
+  (0.0ms) begin transaction
3035
+  (0.0ms) rollback transaction
3036
+  (0.0ms) begin transaction
3037
+  (0.0ms) rollback transaction
3038
+  (0.0ms) begin transaction
3039
+  (0.0ms) rollback transaction
3040
+  (0.0ms) begin transaction
3041
+  (0.0ms) rollback transaction
3042
+ SQL (1.3ms) DELETE FROM "meta_reports_reports"
3043
+  (0.1ms) begin transaction
3044
+ SQL (3.1ms) INSERT INTO "meta_reports_reports" ("created_at", "description", "direct", "formats_mask", "group", "name", "target", "title", "updated_at", "views") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 19 Nov 2013 02:19:55 UTC +00:00], ["description", "Moo, eh?"], ["direct", nil], ["formats_mask", 7], ["group", "moo"], ["name", "moo"], ["target", nil], ["title", "Le Moo"], ["updated_at", Tue, 19 Nov 2013 02:19:55 UTC +00:00], ["views", nil]]
3045
+  (1.3ms) commit transaction
3046
+  (0.0ms) begin transaction
3047
+ Started GET "/meta_reports/1" for 127.0.0.1 at 2013-11-18 18:19:55 -0800
3048
+ Processing by MetaReports::ReportsController#show as HTML
3049
+ Parameters: {"id"=>"1"}
3050
+ MetaReports::Report Load (0.2ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
3051
+ Rendered meta_reports/reports/templates/_default_table.html.erb (1.3ms)
3052
+ Rendered meta_reports/reports/templates/_default.html.erb (4.0ms)
3053
+ Rendered meta_reports/reports/templates/default.html.erb within layouts/application (7.2ms)
3054
+  (0.3ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
3055
+ Completed 200 OK in 17.5ms (Views: 14.8ms | ActiveRecord: 0.4ms)
3056
+  (0.6ms) rollback transaction
3057
+  (0.0ms) begin transaction
3058
+ Started GET "/meta_reports" for 127.0.0.1 at 2013-11-18 18:19:55 -0800
3059
+ Processing by MetaReports::ReportsController#index as HTML
3060
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" ORDER BY meta_reports_reports.title
3061
+ Rendered meta_reports/reports/index.html.erb within layouts/application (4.3ms)
3062
+ Completed 200 OK in 6.9ms (Views: 6.4ms | ActiveRecord: 0.1ms)
3063
+  (0.1ms) rollback transaction
3064
+  (0.0ms) begin transaction
3065
+ Started GET "/meta_reports/1.xlsx" for 127.0.0.1 at 2013-11-18 18:19:55 -0800
3066
+ Processing by MetaReports::ReportsController#show as XLSX
3067
+ Parameters: {"id"=>"1"}
3068
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
3069
+ Rendered meta_reports/reports/templates/_default_header.xlsx.axlsx (41.9ms)
3070
+ Rendered meta_reports/reports/templates/default.xlsx.axlsx (51.8ms)
3071
+  (0.2ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
3072
+ Completed 200 OK in 56.0ms (Views: 54.2ms | ActiveRecord: 0.3ms)
3073
+  (0.7ms) rollback transaction
3074
+  (0.0ms) begin transaction
3075
+ Started GET "/meta_reports/1/edit" for 127.0.0.1 at 2013-11-18 18:19:55 -0800
3076
+ Processing by MetaReports::ReportsController#edit as HTML
3077
+ Parameters: {"id"=>"1"}
3078
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
3079
+ Rendered meta_reports/reports/_form.html.erb (48.9ms)
3080
+ Rendered meta_reports/reports/edit.html.erb within layouts/application (50.6ms)
3081
+ Completed 200 OK in 53.9ms (Views: 52.8ms | ActiveRecord: 0.1ms)
3082
+  (0.1ms) rollback transaction
3083
+  (0.0ms) begin transaction
3084
+ Started GET "/meta_reports/new" for 127.0.0.1 at 2013-11-18 18:19:55 -0800
3085
+ Processing by MetaReports::ReportsController#new as HTML
3086
+ Rendered meta_reports/reports/_form.html.erb (4.2ms)
3087
+ Rendered meta_reports/reports/new.html.erb within layouts/application (4.8ms)
3088
+ Completed 200 OK in 7.1ms (Views: 6.6ms | ActiveRecord: 0.0ms)
3089
+  (0.1ms) rollback transaction
3090
+  (0.0ms) begin transaction
3091
+ Started GET "/meta_reports/1.pdf" for 127.0.0.1 at 2013-11-18 18:19:55 -0800
3092
+ Processing by MetaReports::ReportsController#show as PDF
3093
+ Parameters: {"id"=>"1"}
3094
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
3095
+ Rendered meta_reports/reports/templates/_default_header.pdf.prawn (101.4ms)
3096
+ Rendered meta_reports/reports/templates/_default_table.pdf.prawn (17.2ms)
3097
+ Rendered meta_reports/reports/templates/_default_footer.pdf.prawn (1.3ms)
3098
+ Rendered meta_reports/reports/templates/default.pdf.prawn (124.6ms)
3099
+  (0.2ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
3100
+ Completed 200 OK in 128.2ms (Views: 126.8ms | ActiveRecord: 0.3ms)
3101
+  (0.5ms) rollback transaction
3102
+  (0.0ms) begin transaction
3103
+ Started GET "/" for 127.0.0.1 at 2013-11-18 18:19:55 -0800
3104
+ Processing by HomeController#index as HTML
3105
+ Rendered home/index.html.erb within layouts/application (0.3ms)
3106
+ Completed 200 OK in 2.6ms (Views: 2.3ms | ActiveRecord: 0.0ms)
3107
+  (0.0ms) rollback transaction
3108
+  (0.0ms) begin transaction
3109
+  (0.0ms) rollback transaction
3110
+  (0.0ms) begin transaction
3111
+  (0.0ms) rollback transaction
3112
+  (0.0ms) begin transaction
3113
+  (0.0ms) rollback transaction
3114
+ Connecting to database specified by database.yml
3115
+  (0.1ms) select sqlite_version(*)
3116
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3117
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3118
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
3119
+ Migrating to ForTestingOnly (20130801071213)
3120
+  (0.0ms) begin transaction
3121
+  (0.3ms) CREATE TABLE "meta_reports_reports" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "title" varchar(255), "group" varchar(255), "direct" boolean, "views" integer, "target" varchar(255), "formats_mask" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
3122
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130801071213')
3123
+  (21.7ms) commit transaction
3124
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
3125
+ Connecting to database specified by database.yml
3126
+  (0.3ms) begin transaction
3127
+  (0.0ms) rollback transaction
3128
+  (0.0ms) begin transaction
3129
+  (0.0ms) rollback transaction
3130
+  (0.0ms) begin transaction
3131
+  (0.0ms) rollback transaction
3132
+  (0.0ms) begin transaction
3133
+  (0.0ms) rollback transaction
3134
+  (0.0ms) begin transaction
3135
+  (0.0ms) rollback transaction
3136
+  (0.0ms) begin transaction
3137
+  (0.0ms) rollback transaction
3138
+  (0.0ms) begin transaction
3139
+  (0.0ms) rollback transaction
3140
+  (0.0ms) begin transaction
3141
+  (0.0ms) rollback transaction
3142
+  (0.0ms) begin transaction
3143
+  (0.0ms) rollback transaction
3144
+  (0.0ms) begin transaction
3145
+  (0.0ms) rollback transaction
3146
+  (0.0ms) begin transaction
3147
+  (0.0ms) rollback transaction
3148
+  (0.0ms) begin transaction
3149
+  (0.0ms) rollback transaction
3150
+  (0.0ms) begin transaction
3151
+  (0.0ms) rollback transaction
3152
+  (0.0ms) begin transaction
3153
+  (0.0ms) rollback transaction
3154
+ SQL (1.3ms) DELETE FROM "meta_reports_reports"
3155
+  (0.1ms) begin transaction
3156
+ SQL (39.0ms) INSERT INTO "meta_reports_reports" ("created_at", "description", "direct", "formats_mask", "group", "name", "target", "title", "updated_at", "views") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 19 Nov 2013 02:20:22 UTC +00:00], ["description", "Moo, eh?"], ["direct", nil], ["formats_mask", 7], ["group", "moo"], ["name", "moo"], ["target", nil], ["title", "Le Moo"], ["updated_at", Tue, 19 Nov 2013 02:20:22 UTC +00:00], ["views", nil]]
3157
+  (1.0ms) commit transaction
3158
+  (0.0ms) begin transaction
3159
+ Started GET "/meta_reports" for 127.0.0.1 at 2013-11-18 18:20:22 -0800
3160
+ Processing by MetaReports::ReportsController#index as HTML
3161
+ MetaReports::Report Load (0.2ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" ORDER BY meta_reports_reports.title
3162
+ Rendered meta_reports/reports/index.html.erb within layouts/application (6.3ms)
3163
+ Completed 200 OK in 15.7ms (Views: 15.1ms | ActiveRecord: 0.2ms)
3164
+  (0.1ms) rollback transaction
3165
+  (0.0ms) begin transaction
3166
+ Started GET "/meta_reports/1" for 127.0.0.1 at 2013-11-18 18:20:22 -0800
3167
+ Processing by MetaReports::ReportsController#show as HTML
3168
+ Parameters: {"id"=>"1"}
3169
+ MetaReports::Report Load (0.2ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
3170
+ Rendered meta_reports/reports/templates/_default_table.html.erb (46.1ms)
3171
+ Rendered meta_reports/reports/templates/_default.html.erb (49.4ms)
3172
+ Rendered meta_reports/reports/templates/default.html.erb within layouts/application (52.3ms)
3173
+  (0.3ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
3174
+ Completed 200 OK in 57.0ms (Views: 54.4ms | ActiveRecord: 0.5ms)
3175
+  (0.4ms) rollback transaction
3176
+  (0.0ms) begin transaction
3177
+ Started GET "/meta_reports/1.xlsx" for 127.0.0.1 at 2013-11-18 18:20:22 -0800
3178
+ Processing by MetaReports::ReportsController#show as XLSX
3179
+ Parameters: {"id"=>"1"}
3180
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
3181
+ Rendered meta_reports/reports/templates/_default_header.xlsx.axlsx (6.6ms)
3182
+ Rendered meta_reports/reports/templates/default.xlsx.axlsx (53.5ms)
3183
+  (0.3ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
3184
+ Completed 200 OK in 57.9ms (Views: 56.3ms | ActiveRecord: 0.4ms)
3185
+  (0.5ms) rollback transaction
3186
+  (0.0ms) begin transaction
3187
+ Started GET "/meta_reports/1.pdf" for 127.0.0.1 at 2013-11-18 18:20:22 -0800
3188
+ Processing by MetaReports::ReportsController#show as PDF
3189
+ Parameters: {"id"=>"1"}
3190
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
3191
+ Rendered meta_reports/reports/templates/_default_header.pdf.prawn (75.6ms)
3192
+ Rendered meta_reports/reports/templates/_default_table.pdf.prawn (21.9ms)
3193
+ Rendered meta_reports/reports/templates/_default_footer.pdf.prawn (1.5ms)
3194
+ Rendered meta_reports/reports/templates/default.pdf.prawn (105.0ms)
3195
+  (0.3ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
3196
+ Completed 200 OK in 109.7ms (Views: 108.2ms | ActiveRecord: 0.3ms)
3197
+  (0.4ms) rollback transaction
3198
+  (0.1ms) begin transaction
3199
+ Started GET "/meta_reports/1/edit" for 127.0.0.1 at 2013-11-18 18:20:22 -0800
3200
+ Processing by MetaReports::ReportsController#edit as HTML
3201
+ Parameters: {"id"=>"1"}
3202
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
3203
+ Rendered meta_reports/reports/_form.html.erb (10.3ms)
3204
+ Rendered meta_reports/reports/edit.html.erb within layouts/application (68.7ms)
3205
+ Completed 200 OK in 72.3ms (Views: 71.0ms | ActiveRecord: 0.1ms)
3206
+  (0.1ms) rollback transaction
3207
+  (0.0ms) begin transaction
3208
+ Started GET "/" for 127.0.0.1 at 2013-11-18 18:20:22 -0800
3209
+ Processing by HomeController#index as HTML
3210
+ Rendered home/index.html.erb within layouts/application (0.3ms)
3211
+ Completed 200 OK in 3.0ms (Views: 2.7ms | ActiveRecord: 0.0ms)
3212
+  (0.0ms) rollback transaction
3213
+  (0.0ms) begin transaction
3214
+ Started GET "/meta_reports/new" for 127.0.0.1 at 2013-11-18 18:20:22 -0800
3215
+ Processing by MetaReports::ReportsController#new as HTML
3216
+ Rendered meta_reports/reports/_form.html.erb (4.8ms)
3217
+ Rendered meta_reports/reports/new.html.erb within layouts/application (5.6ms)
3218
+ Completed 200 OK in 7.8ms (Views: 7.4ms | ActiveRecord: 0.0ms)
3219
+  (0.1ms) rollback transaction
3220
+  (0.0ms) begin transaction
3221
+  (0.0ms) rollback transaction
3222
+  (0.0ms) begin transaction
3223
+  (0.0ms) rollback transaction
3224
+  (0.0ms) begin transaction
3225
+  (0.0ms) rollback transaction
3226
+  (0.0ms) begin transaction
3227
+  (0.0ms) rollback transaction
3228
+  (0.0ms) begin transaction
3229
+  (0.0ms) rollback transaction
3230
+  (0.0ms) begin transaction
3231
+  (0.0ms) rollback transaction
3232
+  (0.0ms) begin transaction
3233
+  (0.0ms) rollback transaction
3234
+  (0.0ms) begin transaction
3235
+  (0.0ms) rollback transaction
3236
+  (0.0ms) begin transaction
3237
+  (0.0ms) rollback transaction
3238
+  (0.0ms) begin transaction
3239
+  (0.0ms) rollback transaction
3240
+  (0.0ms) begin transaction
3241
+  (0.0ms) rollback transaction
3242
+ Connecting to database specified by database.yml
3243
+  (0.1ms) select sqlite_version(*)
3244
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3245
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3246
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
3247
+ Migrating to ForTestingOnly (20130801071213)
3248
+  (0.0ms) begin transaction
3249
+  (0.4ms) CREATE TABLE "meta_reports_reports" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "title" varchar(255), "group" varchar(255), "direct" boolean, "views" integer, "target" varchar(255), "formats_mask" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
3250
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130801071213')
3251
+  (1.0ms) commit transaction
3252
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
3253
+ Connecting to database specified by database.yml
3254
+  (0.3ms) begin transaction
3255
+  (0.0ms) rollback transaction
3256
+  (0.0ms) begin transaction
3257
+  (0.0ms) rollback transaction
3258
+  (0.0ms) begin transaction
3259
+  (0.0ms) rollback transaction
3260
+  (0.0ms) begin transaction
3261
+  (0.0ms) rollback transaction
3262
+  (0.0ms) begin transaction
3263
+  (0.0ms) rollback transaction
3264
+  (0.0ms) begin transaction
3265
+  (0.0ms) rollback transaction
3266
+  (0.0ms) begin transaction
3267
+  (0.0ms) rollback transaction
3268
+  (0.0ms) begin transaction
3269
+  (0.1ms) rollback transaction
3270
+  (0.1ms) begin transaction
3271
+  (0.1ms) rollback transaction
3272
+  (0.1ms) begin transaction
3273
+  (0.1ms) rollback transaction
3274
+  (0.0ms) begin transaction
3275
+  (0.0ms) rollback transaction
3276
+ SQL (1.4ms) DELETE FROM "meta_reports_reports"
3277
+  (0.1ms) begin transaction
3278
+ SQL (48.9ms) INSERT INTO "meta_reports_reports" ("created_at", "description", "direct", "formats_mask", "group", "name", "target", "title", "updated_at", "views") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 19 Nov 2013 02:43:42 UTC +00:00], ["description", "Moo, eh?"], ["direct", nil], ["formats_mask", 7], ["group", "moo"], ["name", "moo"], ["target", nil], ["title", "Le Moo"], ["updated_at", Tue, 19 Nov 2013 02:43:42 UTC +00:00], ["views", nil]]
3279
+  (1.2ms) commit transaction
3280
+  (0.0ms) begin transaction
3281
+ Started GET "/meta_reports/new" for 127.0.0.1 at 2013-11-18 18:43:42 -0800
3282
+ Processing by MetaReports::ReportsController#new as HTML
3283
+ Rendered meta_reports/reports/_form.html.erb (40.6ms)
3284
+ Rendered meta_reports/reports/new.html.erb within layouts/application (46.4ms)
3285
+ Completed 200 OK in 58.1ms (Views: 57.6ms | ActiveRecord: 0.0ms)
3286
+  (0.1ms) rollback transaction
3287
+  (0.0ms) begin transaction
3288
+ Started GET "/meta_reports" for 127.0.0.1 at 2013-11-18 18:43:42 -0800
3289
+ Processing by MetaReports::ReportsController#index as HTML
3290
+ MetaReports::Report Load (0.2ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" ORDER BY meta_reports_reports.title
3291
+ Rendered meta_reports/reports/index.html.erb within layouts/application (42.5ms)
3292
+ Completed 200 OK in 44.9ms (Views: 44.3ms | ActiveRecord: 0.2ms)
3293
+  (0.1ms) rollback transaction
3294
+  (0.0ms) begin transaction
3295
+ Started GET "/meta_reports/1" for 127.0.0.1 at 2013-11-18 18:43:42 -0800
3296
+ Processing by MetaReports::ReportsController#show as HTML
3297
+ Parameters: {"id"=>"1"}
3298
+ MetaReports::Report Load (0.2ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
3299
+ Rendered meta_reports/reports/templates/_default_table.html.erb (1.2ms)
3300
+ Rendered meta_reports/reports/templates/_default.html.erb (4.1ms)
3301
+ Rendered meta_reports/reports/templates/default.html.erb within layouts/application (5.2ms)
3302
+  (0.2ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
3303
+ Completed 200 OK in 9.5ms (Views: 6.9ms | ActiveRecord: 0.4ms)
3304
+  (21.1ms) rollback transaction
3305
+  (0.1ms) begin transaction
3306
+ Started GET "/meta_reports/1.pdf" for 127.0.0.1 at 2013-11-18 18:43:42 -0800
3307
+ Processing by MetaReports::ReportsController#show as PDF
3308
+ Parameters: {"id"=>"1"}
3309
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
3310
+ Rendered meta_reports/reports/templates/_default_header.pdf.prawn (265.8ms)
3311
+ Rendered meta_reports/reports/templates/_default_table.pdf.prawn (17.0ms)
3312
+ Rendered meta_reports/reports/templates/_default_footer.pdf.prawn (1.4ms)
3313
+ Rendered meta_reports/reports/templates/default.pdf.prawn (296.2ms)
3314
+  (0.2ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
3315
+ Completed 200 OK in 300.5ms (Views: 299.0ms | ActiveRecord: 0.3ms)
3316
+  (0.6ms) rollback transaction
3317
+  (0.1ms) begin transaction
3318
+ Started GET "/" for 127.0.0.1 at 2013-11-18 18:43:43 -0800
3319
+ Processing by HomeController#index as HTML
3320
+ Rendered home/index.html.erb within layouts/application (0.3ms)
3321
+ Completed 200 OK in 3.4ms (Views: 3.0ms | ActiveRecord: 0.0ms)
3322
+  (0.1ms) rollback transaction
3323
+  (0.0ms) begin transaction
3324
+ Started GET "/meta_reports/1/edit" for 127.0.0.1 at 2013-11-18 18:43:43 -0800
3325
+ Processing by MetaReports::ReportsController#edit as HTML
3326
+ Parameters: {"id"=>"1"}
3327
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
3328
+ Rendered meta_reports/reports/_form.html.erb (5.2ms)
3329
+ Rendered meta_reports/reports/edit.html.erb within layouts/application (6.2ms)
3330
+ Completed 200 OK in 9.6ms (Views: 8.2ms | ActiveRecord: 0.1ms)
3331
+  (0.1ms) rollback transaction
3332
+  (0.0ms) begin transaction
3333
+ Started GET "/meta_reports/1.xlsx" for 127.0.0.1 at 2013-11-18 18:43:43 -0800
3334
+ Processing by MetaReports::ReportsController#show as XLSX
3335
+ Parameters: {"id"=>"1"}
3336
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
3337
+ Rendered meta_reports/reports/templates/_default_header.xlsx.axlsx (53.4ms)
3338
+ Rendered meta_reports/reports/templates/default.xlsx.axlsx (63.4ms)
3339
+  (0.2ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
3340
+ Completed 200 OK in 68.0ms (Views: 66.3ms | ActiveRecord: 0.3ms)
3341
+  (0.5ms) rollback transaction
3342
+  (0.0ms) begin transaction
3343
+  (0.1ms) rollback transaction
3344
+  (0.0ms) begin transaction
3345
+  (0.0ms) rollback transaction
3346
+  (0.0ms) begin transaction
3347
+  (0.0ms) rollback transaction
3348
+  (0.0ms) begin transaction
3349
+  (0.0ms) rollback transaction
3350
+  (0.0ms) begin transaction
3351
+  (0.0ms) rollback transaction
3352
+  (0.1ms) begin transaction
3353
+  (0.0ms) rollback transaction
3354
+  (0.0ms) begin transaction
3355
+  (0.0ms) rollback transaction
3356
+  (0.0ms) begin transaction
3357
+  (0.0ms) rollback transaction
3358
+  (0.0ms) begin transaction
3359
+  (0.0ms) rollback transaction
3360
+  (0.0ms) begin transaction
3361
+  (0.0ms) rollback transaction
3362
+  (0.0ms) begin transaction
3363
+  (0.0ms) rollback transaction
3364
+  (0.0ms) begin transaction
3365
+  (0.1ms) rollback transaction
3366
+  (0.0ms) begin transaction
3367
+  (0.0ms) rollback transaction
3368
+  (0.0ms) begin transaction
3369
+  (0.0ms) rollback transaction
3370
+ Connecting to database specified by database.yml
3371
+  (0.1ms) select sqlite_version(*)
3372
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3373
+  (12.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3374
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
3375
+ Migrating to ForTestingOnly (20130801071213)
3376
+  (0.0ms) begin transaction
3377
+  (0.3ms) CREATE TABLE "meta_reports_reports" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "title" varchar(255), "group" varchar(255), "direct" boolean, "views" integer, "target" varchar(255), "formats_mask" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
3378
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130801071213')
3379
+  (1.4ms) commit transaction
3380
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
3381
+ Connecting to database specified by database.yml
3382
+  (0.3ms) begin transaction
3383
+  (0.0ms) rollback transaction
3384
+  (0.0ms) begin transaction
3385
+  (0.0ms) rollback transaction
3386
+  (0.0ms) begin transaction
3387
+  (0.0ms) rollback transaction
3388
+  (0.0ms) begin transaction
3389
+  (0.0ms) rollback transaction
3390
+  (0.0ms) begin transaction
3391
+  (0.0ms) rollback transaction
3392
+  (0.0ms) begin transaction
3393
+  (0.0ms) rollback transaction
3394
+  (0.0ms) begin transaction
3395
+  (0.0ms) rollback transaction
3396
+  (0.0ms) begin transaction
3397
+  (0.0ms) rollback transaction
3398
+  (0.0ms) begin transaction
3399
+  (0.0ms) rollback transaction
3400
+  (0.0ms) begin transaction
3401
+  (0.0ms) rollback transaction
3402
+  (0.0ms) begin transaction
3403
+  (0.0ms) rollback transaction
3404
+  (0.1ms) begin transaction
3405
+  (0.0ms) rollback transaction
3406
+  (0.0ms) begin transaction
3407
+  (0.0ms) rollback transaction
3408
+  (0.0ms) begin transaction
3409
+  (0.0ms) rollback transaction
3410
+  (0.0ms) begin transaction
3411
+  (0.0ms) rollback transaction
3412
+  (0.0ms) begin transaction
3413
+  (0.0ms) rollback transaction
3414
+  (0.0ms) begin transaction
3415
+  (0.0ms) rollback transaction
3416
+  (0.0ms) begin transaction
3417
+  (0.0ms) rollback transaction
3418
+  (0.0ms) begin transaction
3419
+  (0.0ms) rollback transaction
3420
+  (0.0ms) begin transaction
3421
+  (0.1ms) rollback transaction
3422
+  (0.1ms) begin transaction
3423
+  (0.0ms) rollback transaction
3424
+  (0.0ms) begin transaction
3425
+  (0.1ms) rollback transaction
3426
+  (0.1ms) begin transaction
3427
+  (0.1ms) rollback transaction
3428
+  (0.1ms) begin transaction
3429
+  (0.0ms) rollback transaction
3430
+  (0.0ms) begin transaction
3431
+  (0.1ms) rollback transaction
3432
+ SQL (1.2ms) DELETE FROM "meta_reports_reports"
3433
+  (0.1ms) begin transaction
3434
+ SQL (3.5ms) INSERT INTO "meta_reports_reports" ("created_at", "description", "direct", "formats_mask", "group", "name", "target", "title", "updated_at", "views") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 19 Nov 2013 02:45:00 UTC +00:00], ["description", "Moo, eh?"], ["direct", nil], ["formats_mask", 7], ["group", "moo"], ["name", "moo"], ["target", nil], ["title", "Le Moo"], ["updated_at", Tue, 19 Nov 2013 02:45:00 UTC +00:00], ["views", nil]]
3435
+  (1.0ms) commit transaction
3436
+  (0.1ms) begin transaction
3437
+ Started GET "/meta_reports/1.xlsx" for 127.0.0.1 at 2013-11-18 18:45:00 -0800
3438
+ Processing by MetaReports::ReportsController#show as XLSX
3439
+ Parameters: {"id"=>"1"}
3440
+ MetaReports::Report Load (0.2ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
3441
+ Rendered meta_reports/reports/templates/_default_header.xlsx.axlsx (7.1ms)
3442
+ Rendered meta_reports/reports/templates/default.xlsx.axlsx (18.1ms)
3443
+  (0.3ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
3444
+ Completed 200 OK in 67.7ms (Views: 64.5ms | ActiveRecord: 0.5ms)
3445
+  (0.5ms) rollback transaction
3446
+  (0.0ms) begin transaction
3447
+ Started GET "/meta_reports/new" for 127.0.0.1 at 2013-11-18 18:45:00 -0800
3448
+ Processing by MetaReports::ReportsController#new as HTML
3449
+ Rendered meta_reports/reports/_form.html.erb (10.7ms)
3450
+ Rendered meta_reports/reports/new.html.erb within layouts/application (12.7ms)
3451
+ Completed 200 OK in 17.2ms (Views: 16.8ms | ActiveRecord: 0.0ms)
3452
+  (0.1ms) rollback transaction
3453
+  (0.0ms) begin transaction
3454
+ Started GET "/meta_reports/1.pdf" for 127.0.0.1 at 2013-11-18 18:45:00 -0800
3455
+ Processing by MetaReports::ReportsController#show as PDF
3456
+ Parameters: {"id"=>"1"}
3457
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
3458
+ Rendered meta_reports/reports/templates/_default_header.pdf.prawn (102.8ms)
3459
+ Rendered meta_reports/reports/templates/_default_table.pdf.prawn (18.3ms)
3460
+ Rendered meta_reports/reports/templates/_default_footer.pdf.prawn (1.7ms)
3461
+ Rendered meta_reports/reports/templates/default.pdf.prawn (129.7ms)
3462
+  (0.3ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
3463
+ Completed 200 OK in 134.0ms (Views: 132.3ms | ActiveRecord: 0.4ms)
3464
+  (0.6ms) rollback transaction
3465
+  (0.1ms) begin transaction
3466
+ Started GET "/meta_reports/1/edit" for 127.0.0.1 at 2013-11-18 18:45:00 -0800
3467
+ Processing by MetaReports::ReportsController#edit as HTML
3468
+ Parameters: {"id"=>"1"}
3469
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
3470
+ Rendered meta_reports/reports/_form.html.erb (5.2ms)
3471
+ Rendered meta_reports/reports/edit.html.erb within layouts/application (8.0ms)
3472
+ Completed 200 OK in 11.1ms (Views: 9.9ms | ActiveRecord: 0.1ms)
3473
+  (0.1ms) rollback transaction
3474
+  (0.0ms) begin transaction
3475
+ Started GET "/meta_reports" for 127.0.0.1 at 2013-11-18 18:45:00 -0800
3476
+ Processing by MetaReports::ReportsController#index as HTML
3477
+ MetaReports::Report Load (0.2ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" ORDER BY meta_reports_reports.title
3478
+ Rendered meta_reports/reports/index.html.erb within layouts/application (2.8ms)
3479
+ Completed 200 OK in 5.2ms (Views: 4.7ms | ActiveRecord: 0.2ms)
3480
+  (0.1ms) rollback transaction
3481
+  (0.0ms) begin transaction
3482
+ Started GET "/" for 127.0.0.1 at 2013-11-18 18:45:00 -0800
3483
+ Processing by HomeController#index as HTML
3484
+ Rendered home/index.html.erb within layouts/application (0.3ms)
3485
+ Completed 200 OK in 3.1ms (Views: 2.7ms | ActiveRecord: 0.0ms)
3486
+  (0.1ms) rollback transaction
3487
+  (0.0ms) begin transaction
3488
+ Started GET "/meta_reports/1" for 127.0.0.1 at 2013-11-18 18:45:00 -0800
3489
+ Processing by MetaReports::ReportsController#show as HTML
3490
+ Parameters: {"id"=>"1"}
3491
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
3492
+ Rendered meta_reports/reports/templates/_default_table.html.erb (1.2ms)
3493
+ Rendered meta_reports/reports/templates/_default.html.erb (3.7ms)
3494
+ Rendered meta_reports/reports/templates/default.html.erb within layouts/application (4.6ms)
3495
+  (0.2ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
3496
+ Completed 200 OK in 7.7ms (Views: 6.2ms | ActiveRecord: 0.3ms)
3497
+  (0.5ms) rollback transaction
3498
+  (0.0ms) begin transaction
3499
+  (0.1ms) rollback transaction
3500
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3501
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3502
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3503
+ Migrating to ForTestingOnly (20130801071213)
3504
+  (0.1ms) begin transaction
3505
+  (0.3ms) CREATE TABLE "meta_reports_reports" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "title" varchar(255), "group" varchar(255), "direct" boolean, "views" integer, "target" varchar(255), "formats_mask" integer, "created_at" datetime, "updated_at" datetime) 
3506
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20130801071213"]]
3507
+  (1.1ms) commit transaction
3508
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3509
+  (0.3ms) begin transaction
3510
+  (0.1ms) rollback transaction
3511
+  (0.1ms) begin transaction
3512
+  (0.1ms) rollback transaction
3513
+  (0.1ms) begin transaction
3514
+  (0.1ms) rollback transaction
3515
+  (0.1ms) begin transaction
3516
+  (0.1ms) rollback transaction
3517
+  (0.1ms) begin transaction
3518
+  (0.1ms) rollback transaction
3519
+  (0.1ms) begin transaction
3520
+  (0.1ms) rollback transaction
3521
+  (0.1ms) begin transaction
3522
+  (0.1ms) rollback transaction
3523
+ SQL (1.7ms) DELETE FROM "meta_reports_reports"
3524
+  (0.1ms) begin transaction
3525
+ SQL (3.4ms) INSERT INTO "meta_reports_reports" ("created_at", "description", "formats_mask", "group", "name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 19 Nov 2013 02:48:37 UTC +00:00], ["description", "Moo, eh?"], ["formats_mask", 7], ["group", "moo"], ["name", "moo"], ["title", "Le Moo"], ["updated_at", Tue, 19 Nov 2013 02:48:37 UTC +00:00]]
3526
+  (1.1ms) commit transaction
3527
+  (0.1ms) begin transaction
3528
+ Started GET "/meta_reports/1/edit" for 127.0.0.1 at 2013-11-18 18:48:37 -0800
3529
+ Processing by MetaReports::ReportsController#edit as HTML
3530
+ Parameters: {"id"=>"1"}
3531
+ MetaReports::Report Load (0.2ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
3532
+ Rendered meta_reports/reports/_form.html.erb (34.4ms)
3533
+ Rendered meta_reports/reports/edit.html.erb within layouts/application (40.7ms)
3534
+ Completed 200 OK in 518ms (Views: 515.5ms | ActiveRecord: 0.2ms)
3535
+  (0.1ms) rollback transaction
3536
+  (0.1ms) begin transaction
3537
+ Started GET "/" for 127.0.0.1 at 2013-11-18 18:48:37 -0800
3538
+ Processing by HomeController#index as HTML
3539
+ Rendered home/index.html.erb within layouts/application (0.3ms)
3540
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
3541
+  (0.1ms) rollback transaction
3542
+  (0.1ms) begin transaction
3543
+ Started GET "/meta_reports" for 127.0.0.1 at 2013-11-18 18:48:37 -0800
3544
+ Processing by MetaReports::ReportsController#index as HTML
3545
+ MetaReports::Report Load (0.2ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" ORDER BY meta_reports_reports.title
3546
+ Rendered meta_reports/reports/index.html.erb within layouts/application (2.4ms)
3547
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.2ms)
3548
+  (0.1ms) rollback transaction
3549
+  (0.1ms) begin transaction
3550
+ Started GET "/meta_reports/1" for 127.0.0.1 at 2013-11-18 18:48:37 -0800
3551
+ Processing by MetaReports::ReportsController#show as HTML
3552
+ Parameters: {"id"=>"1"}
3553
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
3554
+ Rendered meta_reports/reports/templates/_default_table.html.erb (1.2ms)
3555
+ Rendered meta_reports/reports/templates/_default.html.erb (6.6ms)
3556
+ Rendered meta_reports/reports/templates/default.html.erb within layouts/application (7.7ms)
3557
+  (0.3ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
3558
+ Completed 200 OK in 11ms (Views: 9.3ms | ActiveRecord: 0.4ms)
3559
+  (0.5ms) rollback transaction
3560
+  (0.1ms) begin transaction
3561
+ Started GET "/meta_reports/1.xlsx" for 127.0.0.1 at 2013-11-18 18:48:37 -0800
3562
+ Processing by MetaReports::ReportsController#show as XLSX
3563
+ Parameters: {"id"=>"1"}
3564
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
3565
+ Rendered meta_reports/reports/templates/_default_header.xlsx.axlsx (9.5ms)
3566
+ Rendered meta_reports/reports/templates/default.xlsx.axlsx (62.5ms)
3567
+  (0.3ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
3568
+ Completed 200 OK in 68ms (Views: 65.8ms | ActiveRecord: 0.4ms)
3569
+  (0.5ms) rollback transaction
3570
+  (0.1ms) begin transaction
3571
+ Started GET "/meta_reports/new" for 127.0.0.1 at 2013-11-18 18:48:37 -0800
3572
+ Processing by MetaReports::ReportsController#new as HTML
3573
+ Rendered meta_reports/reports/_form.html.erb (4.5ms)
3574
+ Rendered meta_reports/reports/new.html.erb within layouts/application (5.3ms)
3575
+ Completed 200 OK in 7ms (Views: 7.0ms | ActiveRecord: 0.0ms)
3576
+  (0.1ms) rollback transaction
3577
+  (0.1ms) begin transaction
3578
+ Started GET "/meta_reports/1.pdf" for 127.0.0.1 at 2013-11-18 18:48:37 -0800
3579
+ Processing by MetaReports::ReportsController#show as PDF
3580
+ Parameters: {"id"=>"1"}
3581
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
3582
+ Rendered meta_reports/reports/templates/_default_header.pdf.prawn (106.1ms)
3583
+ Rendered meta_reports/reports/templates/_default_table.pdf.prawn (18.3ms)
3584
+ Rendered meta_reports/reports/templates/_default_footer.pdf.prawn (1.4ms)
3585
+ Rendered meta_reports/reports/templates/default.pdf.prawn (129.9ms)
3586
+  (0.3ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
3587
+ Completed 200 OK in 135ms (Views: 133.0ms | ActiveRecord: 0.4ms)
3588
+  (0.5ms) rollback transaction
3589
+  (0.1ms) begin transaction
3590
+  (0.2ms) rollback transaction
3591
+  (0.1ms) begin transaction
3592
+  (0.1ms) rollback transaction
3593
+  (0.1ms) begin transaction
3594
+  (0.2ms) rollback transaction
3595
+  (0.1ms) begin transaction
3596
+  (0.1ms) rollback transaction
3597
+  (0.1ms) begin transaction
3598
+  (0.1ms) rollback transaction
3599
+  (0.1ms) begin transaction
3600
+  (0.1ms) rollback transaction
3601
+  (0.1ms) begin transaction
3602
+  (0.1ms) rollback transaction
3603
+  (0.1ms) begin transaction
3604
+  (0.1ms) rollback transaction
3605
+  (0.1ms) begin transaction
3606
+  (0.1ms) rollback transaction
3607
+  (0.1ms) begin transaction
3608
+  (0.1ms) rollback transaction
3609
+  (0.1ms) begin transaction
3610
+  (0.1ms) rollback transaction
3611
+  (0.1ms) begin transaction
3612
+  (0.1ms) rollback transaction
3613
+  (0.1ms) begin transaction
3614
+  (0.1ms) rollback transaction
3615
+  (0.1ms) begin transaction
3616
+  (0.1ms) rollback transaction
3617
+  (0.1ms) begin transaction
3618
+  (0.1ms) rollback transaction
3619
+  (0.1ms) begin transaction
3620
+  (0.1ms) rollback transaction
3621
+  (0.1ms) begin transaction
3622
+  (0.1ms) rollback transaction
3623
+  (0.1ms) begin transaction
3624
+  (0.1ms) rollback transaction
3625
+  (0.1ms) begin transaction
3626
+  (0.1ms) rollback transaction
3627
+ Connecting to database specified by database.yml
3628
+ Connecting to database specified by database.yml
3629
+  (0.1ms) select sqlite_version(*)
3630
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3631
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3632
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
3633
+ Migrating to ForTestingOnly (20130801071213)
3634
+  (0.0ms) begin transaction
3635
+  (0.3ms) CREATE TABLE "meta_reports_reports" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "title" varchar(255), "group" varchar(255), "direct" boolean, "views" integer, "target" varchar(255), "formats_mask" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
3636
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130801071213')
3637
+  (0.9ms) commit transaction
3638
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
3639
+ Connecting to database specified by database.yml
3640
+  (0.1ms) select sqlite_version(*)
3641
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3642
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3643
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
3644
+ Migrating to ForTestingOnly (20130801071213)
3645
+  (0.0ms) begin transaction
3646
+  (0.3ms) CREATE TABLE "meta_reports_reports" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "title" varchar(255), "group" varchar(255), "direct" boolean, "views" integer, "target" varchar(255), "formats_mask" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
3647
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130801071213')
3648
+  (0.8ms) commit transaction
3649
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
3650
+ Connecting to database specified by database.yml
3651
+  (0.1ms) select sqlite_version(*)
3652
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3653
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3654
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
3655
+ Migrating to ForTestingOnly (20130801071213)
3656
+  (0.0ms) begin transaction
3657
+  (0.3ms) CREATE TABLE "meta_reports_reports" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "title" varchar(255), "group" varchar(255), "direct" boolean, "views" integer, "target" varchar(255), "formats_mask" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
3658
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130801071213')
3659
+  (13.8ms) commit transaction
3660
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
3661
+ Connecting to database specified by database.yml
3662
+  (0.1ms) select sqlite_version(*)
3663
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3664
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3665
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
3666
+ Migrating to ForTestingOnly (20130801071213)
3667
+  (0.0ms) begin transaction
3668
+  (0.2ms) CREATE TABLE "meta_reports_reports" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "title" varchar(255), "group" varchar(255), "direct" boolean, "views" integer, "target" varchar(255), "formats_mask" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
3669
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130801071213')
3670
+  (16.0ms) commit transaction
3671
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
3672
+ Connecting to database specified by database.yml
3673
+  (0.1ms) select sqlite_version(*)
3674
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3675
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3676
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
3677
+ Migrating to ForTestingOnly (20130801071213)
3678
+  (0.0ms) begin transaction
3679
+  (0.3ms) CREATE TABLE "meta_reports_reports" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "title" varchar(255), "group" varchar(255), "direct" boolean, "views" integer, "target" varchar(255), "formats_mask" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
3680
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130801071213')
3681
+  (14.7ms) commit transaction
3682
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
3683
+ Connecting to database specified by database.yml
3684
+  (0.2ms) begin transaction
3685
+  (0.0ms) rollback transaction
3686
+  (0.0ms) begin transaction
3687
+  (0.0ms) rollback transaction
3688
+  (0.1ms) begin transaction
3689
+  (0.0ms) rollback transaction
3690
+  (0.0ms) begin transaction
3691
+  (0.0ms) rollback transaction
3692
+  (0.0ms) begin transaction
3693
+  (0.0ms) rollback transaction
3694
+  (0.0ms) begin transaction
3695
+  (0.7ms) rollback transaction
3696
+  (0.0ms) begin transaction
3697
+  (0.0ms) rollback transaction
3698
+  (0.0ms) begin transaction
3699
+  (0.0ms) rollback transaction
3700
+  (0.0ms) begin transaction
3701
+  (0.0ms) rollback transaction
3702
+  (0.0ms) begin transaction
3703
+  (0.0ms) rollback transaction
3704
+  (0.0ms) begin transaction
3705
+  (0.0ms) rollback transaction
3706
+  (0.0ms) begin transaction
3707
+  (0.1ms) rollback transaction
3708
+  (0.1ms) begin transaction
3709
+  (0.0ms) rollback transaction
3710
+  (0.1ms) begin transaction
3711
+  (0.0ms) rollback transaction
3712
+  (0.0ms) begin transaction
3713
+  (0.0ms) rollback transaction
3714
+  (0.0ms) begin transaction
3715
+  (0.0ms) rollback transaction
3716
+  (0.0ms) begin transaction
3717
+  (0.0ms) rollback transaction
3718
+  (0.0ms) begin transaction
3719
+  (0.0ms) rollback transaction
3720
+  (0.0ms) begin transaction
3721
+  (0.0ms) rollback transaction
3722
+  (0.0ms) begin transaction
3723
+  (0.0ms) rollback transaction
3724
+  (0.0ms) begin transaction
3725
+  (0.0ms) rollback transaction
3726
+  (0.1ms) begin transaction
3727
+  (0.0ms) rollback transaction
3728
+ Connecting to database specified by database.yml
3729
+  (0.1ms) select sqlite_version(*)
3730
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3731
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3732
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
3733
+ Migrating to ForTestingOnly (20130801071213)
3734
+  (0.0ms) begin transaction
3735
+  (0.3ms) CREATE TABLE "meta_reports_reports" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "title" varchar(255), "group" varchar(255), "direct" boolean, "views" integer, "target" varchar(255), "formats_mask" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
3736
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130801071213')
3737
+  (12.8ms) commit transaction
3738
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
3739
+ Connecting to database specified by database.yml
3740
+  (0.2ms) begin transaction
3741
+  (0.0ms) rollback transaction
3742
+  (0.1ms) begin transaction
3743
+  (0.0ms) rollback transaction
3744
+  (0.0ms) begin transaction
3745
+  (0.0ms) rollback transaction
3746
+  (0.0ms) begin transaction
3747
+  (0.0ms) rollback transaction
3748
+  (0.0ms) begin transaction
3749
+  (0.0ms) rollback transaction
3750
+  (0.0ms) begin transaction
3751
+  (0.1ms) rollback transaction
3752
+  (0.0ms) begin transaction
3753
+  (0.0ms) rollback transaction
3754
+  (0.0ms) begin transaction
3755
+  (0.1ms) rollback transaction
3756
+  (0.0ms) begin transaction
3757
+  (0.0ms) rollback transaction
3758
+  (0.0ms) begin transaction
3759
+  (0.0ms) rollback transaction
3760
+  (0.1ms) begin transaction
3761
+  (0.0ms) rollback transaction
3762
+  (0.0ms) begin transaction
3763
+  (0.0ms) rollback transaction
3764
+  (0.0ms) begin transaction
3765
+  (0.0ms) rollback transaction
3766
+  (0.0ms) begin transaction
3767
+  (0.0ms) rollback transaction
3768
+  (0.0ms) begin transaction
3769
+  (0.0ms) rollback transaction
3770
+  (0.0ms) begin transaction
3771
+  (0.0ms) rollback transaction
3772
+  (0.0ms) begin transaction
3773
+  (0.0ms) rollback transaction
3774
+  (0.0ms) begin transaction
3775
+  (0.0ms) rollback transaction
3776
+  (0.0ms) begin transaction
3777
+  (0.0ms) rollback transaction
3778
+  (0.0ms) begin transaction
3779
+  (0.0ms) rollback transaction
3780
+  (0.0ms) begin transaction
3781
+  (0.0ms) rollback transaction
3782
+  (0.0ms) begin transaction
3783
+  (0.0ms) rollback transaction
3784
+ Connecting to database specified by database.yml
3785
+  (0.1ms) select sqlite_version(*)
3786
+  (187.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3787
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3788
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
3789
+ Migrating to ForTestingOnly (20130801071213)
3790
+  (0.0ms) begin transaction
3791
+  (0.3ms) CREATE TABLE "reports" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "title" varchar(255), "group" varchar(255), "direct" boolean, "views" integer, "target" varchar(255), "formats_mask" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
3792
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130801071213')
3793
+  (1.5ms) commit transaction
3794
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
3795
+ Connecting to database specified by database.yml
3796
+  (0.1ms) select sqlite_version(*)
3797
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3798
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3799
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
3800
+ Migrating to ForTestingOnly (20130801071213)
3801
+  (0.0ms) begin transaction
3802
+  (0.3ms) CREATE TABLE "reports" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "title" varchar(255), "group" varchar(255), "direct" boolean, "views" integer, "target" varchar(255), "formats_mask" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
3803
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130801071213')
3804
+  (9.0ms) commit transaction
3805
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
3806
+ Connecting to database specified by database.yml
3807
+ Connecting to database specified by database.yml
3808
+  (0.2ms) begin transaction
3809
+  (0.0ms) rollback transaction
3810
+  (0.0ms) begin transaction
3811
+  (0.0ms) rollback transaction
3812
+  (0.0ms) begin transaction
3813
+  (0.0ms) rollback transaction
3814
+  (0.0ms) begin transaction
3815
+  (0.0ms) rollback transaction
3816
+  (0.0ms) begin transaction
3817
+  (0.0ms) rollback transaction
3818
+  (0.0ms) begin transaction
3819
+  (0.0ms) rollback transaction
3820
+  (0.0ms) begin transaction
3821
+  (0.0ms) rollback transaction
3822
+ SQL (2.2ms) DELETE FROM "reports"
3823
+  (0.0ms) begin transaction
3824
+  (0.1ms) rollback transaction
3825
+  (0.0ms) begin transaction
3826
+  (0.1ms) rollback transaction
3827
+  (0.0ms) begin transaction
3828
+  (0.0ms) rollback transaction
3829
+  (0.0ms) begin transaction
3830
+  (0.0ms) rollback transaction
3831
+  (0.0ms) begin transaction
3832
+  (0.0ms) rollback transaction
3833
+  (0.0ms) begin transaction
3834
+  (0.0ms) rollback transaction
3835
+  (0.0ms) begin transaction
3836
+  (0.0ms) rollback transaction
3837
+  (0.0ms) begin transaction
3838
+  (0.0ms) rollback transaction
3839
+  (0.0ms) begin transaction
3840
+  (0.0ms) rollback transaction
3841
+  (0.0ms) begin transaction
3842
+  (0.0ms) rollback transaction
3843
+  (0.0ms) begin transaction
3844
+  (0.0ms) rollback transaction
3845
+  (0.0ms) begin transaction
3846
+  (0.0ms) rollback transaction
3847
+  (0.0ms) begin transaction
3848
+  (0.0ms) rollback transaction
3849
+  (0.0ms) begin transaction
3850
+  (0.0ms) rollback transaction
3851
+  (0.0ms) begin transaction
3852
+  (0.0ms) rollback transaction
3853
+  (0.0ms) begin transaction
3854
+  (0.0ms) rollback transaction
3855
+ Connecting to database specified by database.yml
3856
+  (0.0ms) select sqlite_version(*)
3857
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3858
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3859
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
3860
+ Migrating to ForTestingOnly (20130801071213)
3861
+  (0.0ms) begin transaction
3862
+  (0.3ms) CREATE TABLE "reports" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "title" varchar(255), "group" varchar(255), "direct" boolean, "views" integer, "target" varchar(255), "formats_mask" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
3863
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130801071213')
3864
+  (12.5ms) commit transaction
3865
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
3866
+ Connecting to database specified by database.yml
3867
+ Connecting to database specified by database.yml
3868
+ SQL (16.8ms) DELETE FROM "reports"
3869
+  (0.1ms) begin transaction
3870
+ SQL (38.9ms) INSERT INTO "reports" ("created_at", "description", "direct", "formats_mask", "group", "name", "target", "title", "updated_at", "views") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 Oct 2014 04:12:46 UTC +00:00], ["description", "Moo, eh?"], ["direct", nil], ["formats_mask", 7], ["group", "moo"], ["name", "moo"], ["target", nil], ["title", "Le Moo"], ["updated_at", Wed, 01 Oct 2014 04:12:46 UTC +00:00], ["views", nil]]
3871
+  (1.0ms) commit transaction
3872
+  (0.0ms) begin transaction
3873
+ Started GET "/reports" for 127.0.0.1 at 2014-09-30 21:12:46 -0700
3874
+ Processing by ReportsController#index as HTML
3875
+ Report Load (0.2ms) SELECT "reports".* FROM "reports" ORDER BY reports.title
3876
+ Rendered reports/index.html.erb within layouts/application (23.2ms)
3877
+ Completed 500 Internal Server Error in 67.0ms
3878
+  (0.1ms) rollback transaction
3879
+  (0.0ms) begin transaction
3880
+ Started GET "/reports/1.xlsx" for 127.0.0.1 at 2014-09-30 21:12:46 -0700
3881
+ Processing by ReportsController#show as XLSX
3882
+ Parameters: {"id"=>"1"}
3883
+ Report Load (0.2ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
3884
+ Completed 500 Internal Server Error in 2.3ms
3885
+  (0.0ms) rollback transaction
3886
+  (0.0ms) begin transaction
3887
+ Started GET "/reports/1/edit" for 127.0.0.1 at 2014-09-30 21:12:46 -0700
3888
+ Processing by ReportsController#edit as HTML
3889
+ Parameters: {"id"=>"1"}
3890
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
3891
+ Rendered reports/_form.html.erb (24.9ms)
3892
+ Rendered reports/edit.html.erb within layouts/application (28.2ms)
3893
+ Completed 500 Internal Server Error in 30.0ms
3894
+  (0.1ms) rollback transaction
3895
+  (0.1ms) begin transaction
3896
+ Started GET "/reports/1.pdf" for 127.0.0.1 at 2014-09-30 21:12:46 -0700
3897
+ Processing by ReportsController#show as PDF
3898
+ Parameters: {"id"=>"1"}
3899
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
3900
+ Completed 500 Internal Server Error in 1.3ms
3901
+  (0.0ms) rollback transaction
3902
+  (0.1ms) begin transaction
3903
+ Started GET "/reports/1" for 127.0.0.1 at 2014-09-30 21:12:46 -0700
3904
+ Processing by ReportsController#show as HTML
3905
+ Parameters: {"id"=>"1"}
3906
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
3907
+ Completed 500 Internal Server Error in 38.6ms
3908
+  (0.1ms) rollback transaction
3909
+  (0.0ms) begin transaction
3910
+ Started GET "/reports/new" for 127.0.0.1 at 2014-09-30 21:12:46 -0700
3911
+ Processing by ReportsController#new as HTML
3912
+ Rendered reports/_form.html.erb (4.0ms)
3913
+ Rendered reports/new.html.erb within layouts/application (4.5ms)
3914
+ Completed 500 Internal Server Error in 5.9ms
3915
+  (0.1ms) rollback transaction
3916
+  (0.0ms) begin transaction
3917
+ Started GET "/" for 127.0.0.1 at 2014-09-30 21:12:46 -0700
3918
+ Processing by HomeController#index as HTML
3919
+ Rendered home/index.html.erb within layouts/application (0.3ms)
3920
+ Completed 200 OK in 3.5ms (Views: 3.2ms | ActiveRecord: 0.0ms)
3921
+  (0.1ms) rollback transaction
3922
+  (0.0ms) begin transaction
3923
+  (0.0ms) rollback transaction
3924
+  (0.0ms) begin transaction
3925
+  (0.0ms) rollback transaction
3926
+  (0.0ms) begin transaction
3927
+  (0.0ms) rollback transaction
3928
+  (0.0ms) begin transaction
3929
+  (0.1ms) rollback transaction
3930
+  (0.0ms) begin transaction
3931
+  (0.1ms) rollback transaction
3932
+  (0.0ms) begin transaction
3933
+  (0.0ms) rollback transaction
3934
+  (0.0ms) begin transaction
3935
+  (0.0ms) rollback transaction
3936
+  (0.0ms) begin transaction
3937
+  (0.0ms) rollback transaction
3938
+  (0.0ms) begin transaction
3939
+  (0.0ms) rollback transaction
3940
+  (0.0ms) begin transaction
3941
+  (0.0ms) rollback transaction
3942
+  (0.0ms) begin transaction
3943
+  (0.0ms) rollback transaction
3944
+  (0.0ms) begin transaction
3945
+  (0.0ms) rollback transaction
3946
+  (0.0ms) begin transaction
3947
+  (0.0ms) rollback transaction
3948
+  (0.0ms) begin transaction
3949
+  (0.0ms) rollback transaction
3950
+  (0.0ms) begin transaction
3951
+  (0.0ms) rollback transaction
3952
+  (0.0ms) begin transaction
3953
+  (0.0ms) rollback transaction
3954
+  (0.0ms) begin transaction
3955
+  (0.0ms) rollback transaction
3956
+  (0.0ms) begin transaction
3957
+  (0.0ms) rollback transaction
3958
+  (0.0ms) begin transaction
3959
+  (0.0ms) rollback transaction
3960
+  (0.0ms) begin transaction
3961
+  (0.0ms) rollback transaction
3962
+  (0.0ms) begin transaction
3963
+  (0.0ms) rollback transaction
3964
+  (0.0ms) begin transaction
3965
+  (0.0ms) rollback transaction
3966
+  (0.0ms) begin transaction
3967
+  (0.0ms) rollback transaction
3968
+ Connecting to database specified by database.yml
3969
+  (0.0ms) select sqlite_version(*)
3970
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3971
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3972
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
3973
+ Migrating to ForTestingOnly (20130801071213)
3974
+  (0.0ms) begin transaction
3975
+  (0.3ms) CREATE TABLE "reports" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "title" varchar(255), "group" varchar(255), "direct" boolean, "views" integer, "target" varchar(255), "formats_mask" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
3976
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130801071213')
3977
+  (15.5ms) commit transaction
3978
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
3979
+ Connecting to database specified by database.yml
3980
+ Connecting to database specified by database.yml
3981
+  (0.2ms) begin transaction
3982
+  (0.1ms) rollback transaction
3983
+  (0.0ms) begin transaction
3984
+  (0.1ms) rollback transaction
3985
+  (0.0ms) begin transaction
3986
+  (0.0ms) rollback transaction
3987
+  (0.0ms) begin transaction
3988
+  (0.0ms) rollback transaction
3989
+  (0.0ms) begin transaction
3990
+  (0.0ms) rollback transaction
3991
+  (0.0ms) begin transaction
3992
+  (0.0ms) rollback transaction
3993
+  (0.0ms) begin transaction
3994
+  (0.0ms) rollback transaction
3995
+  (0.0ms) begin transaction
3996
+  (0.0ms) rollback transaction
3997
+  (0.0ms) begin transaction
3998
+  (0.0ms) rollback transaction
3999
+  (0.0ms) begin transaction
4000
+  (0.0ms) rollback transaction
4001
+  (0.0ms) begin transaction
4002
+  (0.0ms) rollback transaction
4003
+  (0.0ms) begin transaction
4004
+  (0.0ms) rollback transaction
4005
+  (0.0ms) begin transaction
4006
+  (0.0ms) rollback transaction
4007
+  (0.0ms) begin transaction
4008
+  (0.0ms) rollback transaction
4009
+  (0.0ms) begin transaction
4010
+  (0.0ms) rollback transaction
4011
+  (0.0ms) begin transaction
4012
+  (0.0ms) rollback transaction
4013
+  (0.0ms) begin transaction
4014
+  (0.0ms) rollback transaction
4015
+  (0.0ms) begin transaction
4016
+  (0.0ms) rollback transaction
4017
+  (0.0ms) begin transaction
4018
+  (0.0ms) rollback transaction
4019
+  (0.0ms) begin transaction
4020
+  (0.0ms) rollback transaction
4021
+ SQL (2.0ms) DELETE FROM "reports"
4022
+  (0.1ms) begin transaction
4023
+ SQL (3.2ms) INSERT INTO "reports" ("created_at", "description", "direct", "formats_mask", "group", "name", "target", "title", "updated_at", "views") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 Oct 2014 04:19:19 UTC +00:00], ["description", "Moo, eh?"], ["direct", nil], ["formats_mask", 7], ["group", "moo"], ["name", "moo"], ["target", nil], ["title", "Le Moo"], ["updated_at", Wed, 01 Oct 2014 04:19:19 UTC +00:00], ["views", nil]]
4024
+  (7.8ms) commit transaction
4025
+  (0.0ms) begin transaction
4026
+ Started GET "/reports/new" for 127.0.0.1 at 2014-09-30 21:19:19 -0700
4027
+ Processing by ReportsController#new as HTML
4028
+ Rendered reports/_form.html.erb (12.1ms)
4029
+ Rendered reports/new.html.erb within layouts/application (14.9ms)
4030
+ Completed 500 Internal Server Error in 20.1ms
4031
+  (0.1ms) rollback transaction
4032
+  (0.0ms) begin transaction
4033
+ Started GET "/reports/1" for 127.0.0.1 at 2014-09-30 21:19:19 -0700
4034
+ Processing by ReportsController#show as HTML
4035
+ Parameters: {"id"=>"1"}
4036
+ Report Load (0.2ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
4037
+ Completed 500 Internal Server Error in 2.4ms
4038
+  (0.0ms) rollback transaction
4039
+  (0.0ms) begin transaction
4040
+ Started GET "/reports" for 127.0.0.1 at 2014-09-30 21:19:19 -0700
4041
+ Processing by ReportsController#index as HTML
4042
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" ORDER BY reports.title
4043
+ Rendered reports/index.html.erb within layouts/application (6.9ms)
4044
+ Completed 500 Internal Server Error in 8.0ms
4045
+  (0.1ms) rollback transaction
4046
+  (0.0ms) begin transaction
4047
+ Started GET "/reports/1.xlsx" for 127.0.0.1 at 2014-09-30 21:19:19 -0700
4048
+ Processing by ReportsController#show as XLSX
4049
+ Parameters: {"id"=>"1"}
4050
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
4051
+ Completed 500 Internal Server Error in 1.1ms
4052
+  (0.0ms) rollback transaction
4053
+  (0.0ms) begin transaction
4054
+ Started GET "/reports/1/edit" for 127.0.0.1 at 2014-09-30 21:19:19 -0700
4055
+ Processing by ReportsController#edit as HTML
4056
+ Parameters: {"id"=>"1"}
4057
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
4058
+ Rendered reports/_form.html.erb (6.0ms)
4059
+ Rendered reports/edit.html.erb within layouts/application (42.7ms)
4060
+ Completed 500 Internal Server Error in 44.4ms
4061
+  (0.1ms) rollback transaction
4062
+  (0.0ms) begin transaction
4063
+ Started GET "/reports/1.pdf" for 127.0.0.1 at 2014-09-30 21:19:19 -0700
4064
+ Processing by ReportsController#show as PDF
4065
+ Parameters: {"id"=>"1"}
4066
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
4067
+ Completed 500 Internal Server Error in 1.1ms
4068
+  (0.0ms) rollback transaction
4069
+  (0.0ms) begin transaction
4070
+ Started GET "/" for 127.0.0.1 at 2014-09-30 21:19:19 -0700
4071
+ Processing by HomeController#index as HTML
4072
+ Rendered home/index.html.erb within layouts/application (0.3ms)
4073
+ Completed 200 OK in 3.1ms (Views: 2.8ms | ActiveRecord: 0.0ms)
4074
+  (0.0ms) rollback transaction
4075
+  (0.0ms) begin transaction
4076
+  (0.0ms) rollback transaction
4077
+  (0.0ms) begin transaction
4078
+  (0.0ms) rollback transaction
4079
+  (0.0ms) begin transaction
4080
+  (0.0ms) rollback transaction
4081
+ Connecting to database specified by database.yml
4082
+  (0.0ms) select sqlite_version(*)
4083
+  (18.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
4084
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4085
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
4086
+ Migrating to ForTestingOnly (20130801071213)
4087
+  (0.0ms) begin transaction
4088
+  (0.3ms) CREATE TABLE "reports" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "title" varchar(255), "group" varchar(255), "direct" boolean, "views" integer, "target" varchar(255), "formats_mask" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
4089
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130801071213')
4090
+  (3.4ms) commit transaction
4091
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
4092
+ Connecting to database specified by database.yml
4093
+ Connecting to database specified by database.yml
4094
+ SQL (2.2ms) DELETE FROM "reports"
4095
+  (0.1ms) begin transaction
4096
+ SQL (3.3ms) INSERT INTO "reports" ("created_at", "description", "direct", "formats_mask", "group", "name", "target", "title", "updated_at", "views") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 Oct 2014 04:20:18 UTC +00:00], ["description", "Moo, eh?"], ["direct", nil], ["formats_mask", 7], ["group", "moo"], ["name", "moo"], ["target", nil], ["title", "Le Moo"], ["updated_at", Wed, 01 Oct 2014 04:20:18 UTC +00:00], ["views", nil]]
4097
+  (1.2ms) commit transaction
4098
+  (0.0ms) begin transaction
4099
+ Started GET "/reports" for 127.0.0.1 at 2014-09-30 21:20:18 -0700
4100
+ Processing by ReportsController#index as HTML
4101
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" ORDER BY reports.title
4102
+ Rendered reports/index.html.erb within layouts/application (8.8ms)
4103
+ Completed 500 Internal Server Error in 14.4ms
4104
+  (0.0ms) rollback transaction
4105
+  (0.0ms) begin transaction
4106
+ Started GET "/reports/1" for 127.0.0.1 at 2014-09-30 21:20:18 -0700
4107
+ Processing by ReportsController#show as HTML
4108
+ Parameters: {"id"=>"1"}
4109
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
4110
+ Rendered meta_reports/default.html.erb within layouts/application (2.7ms)
4111
+ Completed 500 Internal Server Error in 5.3ms
4112
+  (0.0ms) rollback transaction
4113
+  (0.0ms) begin transaction
4114
+ Started GET "/reports/1.xlsx" for 127.0.0.1 at 2014-09-30 21:20:18 -0700
4115
+ Processing by ReportsController#show as XLSX
4116
+ Parameters: {"id"=>"1"}
4117
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
4118
+ Rendered meta_reports/_default_header.xlsx.axlsx (43.2ms)
4119
+ Rendered meta_reports/default.xlsx.axlsx (52.9ms)
4120
+  (0.2ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
4121
+ SQLite3::SQLException: no such table: meta_reports_reports: UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
4122
+ Completed 500 Internal Server Error in 56.0ms
4123
+  (0.1ms) rollback transaction
4124
+  (0.0ms) begin transaction
4125
+ Started GET "/reports/1.pdf" for 127.0.0.1 at 2014-09-30 21:20:18 -0700
4126
+ Processing by ReportsController#show as PDF
4127
+ Parameters: {"id"=>"1"}
4128
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
4129
+ Rendered meta_reports/default.pdf.prawn (1.6ms)
4130
+ Completed 500 Internal Server Error in 4.2ms
4131
+  (0.0ms) rollback transaction
4132
+  (0.0ms) begin transaction
4133
+ Started GET "/reports/new" for 127.0.0.1 at 2014-09-30 21:20:18 -0700
4134
+ Processing by ReportsController#new as HTML
4135
+ Rendered reports/_form.html.erb (14.0ms)
4136
+ Rendered reports/new.html.erb within layouts/application (15.5ms)
4137
+ Completed 500 Internal Server Error in 16.7ms
4138
+  (0.1ms) rollback transaction
4139
+  (0.0ms) begin transaction
4140
+ Started GET "/reports/1/edit" for 127.0.0.1 at 2014-09-30 21:20:18 -0700
4141
+ Processing by ReportsController#edit as HTML
4142
+ Parameters: {"id"=>"1"}
4143
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
4144
+ Rendered reports/_form.html.erb (6.8ms)
4145
+ Rendered reports/edit.html.erb within layouts/application (7.4ms)
4146
+ Completed 500 Internal Server Error in 9.5ms
4147
+  (0.1ms) rollback transaction
4148
+  (0.0ms) begin transaction
4149
+ Started GET "/" for 127.0.0.1 at 2014-09-30 21:20:18 -0700
4150
+ Processing by HomeController#index as HTML
4151
+ Rendered home/index.html.erb within layouts/application (0.3ms)
4152
+ Completed 200 OK in 3.4ms (Views: 3.1ms | ActiveRecord: 0.0ms)
4153
+  (0.0ms) rollback transaction
4154
+  (0.0ms) begin transaction
4155
+  (0.0ms) rollback transaction
4156
+  (0.0ms) begin transaction
4157
+  (0.0ms) rollback transaction
4158
+  (0.0ms) begin transaction
4159
+  (0.0ms) rollback transaction
4160
+  (0.0ms) begin transaction
4161
+  (0.0ms) rollback transaction
4162
+  (0.0ms) begin transaction
4163
+  (0.0ms) rollback transaction
4164
+  (0.0ms) begin transaction
4165
+  (0.0ms) rollback transaction
4166
+  (0.0ms) begin transaction
4167
+  (0.0ms) rollback transaction
4168
+  (0.0ms) begin transaction
4169
+  (0.1ms) rollback transaction
4170
+  (0.0ms) begin transaction
4171
+  (0.1ms) rollback transaction
4172
+  (0.0ms) begin transaction
4173
+  (0.0ms) rollback transaction
4174
+  (0.0ms) begin transaction
4175
+  (0.0ms) rollback transaction
4176
+  (0.0ms) begin transaction
4177
+  (0.0ms) rollback transaction
4178
+  (0.0ms) begin transaction
4179
+  (0.0ms) rollback transaction
4180
+  (0.0ms) begin transaction
4181
+  (0.0ms) rollback transaction
4182
+  (0.0ms) begin transaction
4183
+  (0.0ms) rollback transaction
4184
+  (0.0ms) begin transaction
4185
+  (0.0ms) rollback transaction
4186
+  (0.0ms) begin transaction
4187
+  (0.0ms) rollback transaction
4188
+  (0.0ms) begin transaction
4189
+  (0.0ms) rollback transaction
4190
+  (0.0ms) begin transaction
4191
+  (0.0ms) rollback transaction
4192
+  (0.0ms) begin transaction
4193
+  (0.0ms) rollback transaction
4194
+  (0.1ms) begin transaction
4195
+  (0.0ms) rollback transaction
4196
+  (0.0ms) begin transaction
4197
+  (0.0ms) rollback transaction
4198
+  (0.1ms) begin transaction
4199
+  (0.1ms) rollback transaction
4200
+ Connecting to database specified by database.yml
4201
+  (0.0ms) select sqlite_version(*)
4202
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
4203
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4204
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
4205
+ Migrating to ForTestingOnly (20130801071213)
4206
+  (0.0ms) begin transaction
4207
+  (0.2ms) CREATE TABLE "reports" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "title" varchar(255), "group" varchar(255), "direct" boolean, "views" integer, "target" varchar(255), "formats_mask" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
4208
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130801071213')
4209
+  (16.7ms) commit transaction
4210
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
4211
+ Connecting to database specified by database.yml
4212
+ Connecting to database specified by database.yml
4213
+  (0.3ms) begin transaction
4214
+  (0.1ms) rollback transaction
4215
+  (0.0ms) begin transaction
4216
+  (0.1ms) rollback transaction
4217
+  (0.0ms) begin transaction
4218
+  (0.0ms) rollback transaction
4219
+  (0.0ms) begin transaction
4220
+  (0.0ms) rollback transaction
4221
+  (0.0ms) begin transaction
4222
+  (0.0ms) rollback transaction
4223
+  (0.0ms) begin transaction
4224
+  (0.0ms) rollback transaction
4225
+  (0.0ms) begin transaction
4226
+  (0.0ms) rollback transaction
4227
+  (0.0ms) begin transaction
4228
+  (0.0ms) rollback transaction
4229
+  (0.0ms) begin transaction
4230
+  (0.0ms) rollback transaction
4231
+  (0.0ms) begin transaction
4232
+  (0.0ms) rollback transaction
4233
+  (0.0ms) begin transaction
4234
+  (0.0ms) rollback transaction
4235
+  (0.0ms) begin transaction
4236
+  (0.0ms) rollback transaction
4237
+  (0.0ms) begin transaction
4238
+  (0.0ms) rollback transaction
4239
+  (0.0ms) begin transaction
4240
+  (0.0ms) rollback transaction
4241
+  (0.0ms) begin transaction
4242
+  (0.0ms) rollback transaction
4243
+  (0.0ms) begin transaction
4244
+  (0.0ms) rollback transaction
4245
+  (0.0ms) begin transaction
4246
+  (0.0ms) rollback transaction
4247
+  (0.0ms) begin transaction
4248
+  (0.0ms) rollback transaction
4249
+  (0.0ms) begin transaction
4250
+  (0.0ms) rollback transaction
4251
+  (0.0ms) begin transaction
4252
+  (0.0ms) rollback transaction
4253
+ SQL (2.8ms) DELETE FROM "reports"
4254
+  (0.1ms) begin transaction
4255
+ SQL (3.7ms) INSERT INTO "reports" ("created_at", "description", "direct", "formats_mask", "group", "name", "target", "title", "updated_at", "views") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 Oct 2014 04:21:09 UTC +00:00], ["description", "Moo, eh?"], ["direct", nil], ["formats_mask", 7], ["group", "moo"], ["name", "moo"], ["target", nil], ["title", "Le Moo"], ["updated_at", Wed, 01 Oct 2014 04:21:09 UTC +00:00], ["views", nil]]
4256
+  (0.9ms) commit transaction
4257
+  (0.0ms) begin transaction
4258
+ Started GET "/reports/1.xlsx" for 127.0.0.1 at 2014-09-30 21:21:09 -0700
4259
+ Processing by ReportsController#show as XLSX
4260
+ Parameters: {"id"=>"1"}
4261
+ Report Load (0.2ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
4262
+ Rendered meta_reports/_default_header.xlsx.axlsx (7.1ms)
4263
+ Rendered meta_reports/default.xlsx.axlsx (59.1ms)
4264
+  (0.2ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
4265
+ SQLite3::SQLException: no such table: meta_reports_reports: UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
4266
+ Completed 500 Internal Server Error in 68.0ms
4267
+  (0.1ms) rollback transaction
4268
+  (0.0ms) begin transaction
4269
+ Started GET "/reports" for 127.0.0.1 at 2014-09-30 21:21:09 -0700
4270
+ Processing by ReportsController#index as HTML
4271
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" ORDER BY reports.title
4272
+ Rendered reports/index.html.erb within layouts/application (9.5ms)
4273
+ Completed 500 Internal Server Error in 11.2ms
4274
+  (0.1ms) rollback transaction
4275
+  (0.0ms) begin transaction
4276
+ Started GET "/reports/new" for 127.0.0.1 at 2014-09-30 21:21:09 -0700
4277
+ Processing by ReportsController#new as HTML
4278
+ Rendered reports/_form.html.erb (8.3ms)
4279
+ Rendered reports/new.html.erb within layouts/application (9.3ms)
4280
+ Completed 200 OK in 12.1ms (Views: 11.7ms | ActiveRecord: 0.0ms)
4281
+  (0.1ms) rollback transaction
4282
+  (0.0ms) begin transaction
4283
+ Started GET "/reports/1.pdf" for 127.0.0.1 at 2014-09-30 21:21:09 -0700
4284
+ Processing by ReportsController#show as PDF
4285
+ Parameters: {"id"=>"1"}
4286
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
4287
+ Rendered meta_reports/default.pdf.prawn (1.6ms)
4288
+ Completed 500 Internal Server Error in 4.0ms
4289
+  (0.0ms) rollback transaction
4290
+  (0.0ms) begin transaction
4291
+ Started GET "/reports/1" for 127.0.0.1 at 2014-09-30 21:21:09 -0700
4292
+ Processing by ReportsController#show as HTML
4293
+ Parameters: {"id"=>"1"}
4294
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
4295
+ Rendered meta_reports/default.html.erb within layouts/application (1.1ms)
4296
+ Completed 500 Internal Server Error in 2.7ms
4297
+  (0.0ms) rollback transaction
4298
+  (0.0ms) begin transaction
4299
+ Started GET "/" for 127.0.0.1 at 2014-09-30 21:21:09 -0700
4300
+ Processing by HomeController#index as HTML
4301
+ Rendered home/index.html.erb within layouts/application (0.2ms)
4302
+ Completed 200 OK in 2.2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
4303
+  (0.0ms) rollback transaction
4304
+  (0.0ms) begin transaction
4305
+ Started GET "/reports/1/edit" for 127.0.0.1 at 2014-09-30 21:21:09 -0700
4306
+ Processing by ReportsController#edit as HTML
4307
+ Parameters: {"id"=>"1"}
4308
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
4309
+ Rendered reports/_form.html.erb (3.8ms)
4310
+ Rendered reports/edit.html.erb within layouts/application (12.0ms)
4311
+ Completed 500 Internal Server Error in 13.6ms
4312
+  (0.1ms) rollback transaction
4313
+  (0.0ms) begin transaction
4314
+  (0.0ms) rollback transaction
4315
+  (0.0ms) begin transaction
4316
+  (0.0ms) rollback transaction
4317
+  (0.0ms) begin transaction
4318
+  (0.0ms) rollback transaction
4319
+ Connecting to database specified by database.yml
4320
+  (0.1ms) select sqlite_version(*)
4321
+  (21.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
4322
+  (29.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4323
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
4324
+ Migrating to ForTestingOnly (20130801071213)
4325
+  (0.0ms) begin transaction
4326
+  (0.3ms) CREATE TABLE "reports" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "title" varchar(255), "group" varchar(255), "direct" boolean, "views" integer, "target" varchar(255), "formats_mask" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
4327
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130801071213')
4328
+  (23.1ms) commit transaction
4329
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
4330
+ Connecting to database specified by database.yml
4331
+ Connecting to database specified by database.yml
4332
+  (0.2ms) begin transaction
4333
+  (0.0ms) rollback transaction
4334
+  (0.0ms) begin transaction
4335
+  (0.0ms) rollback transaction
4336
+  (0.0ms) begin transaction
4337
+  (0.0ms) rollback transaction
4338
+  (0.0ms) begin transaction
4339
+  (0.0ms) rollback transaction
4340
+  (0.0ms) begin transaction
4341
+  (0.0ms) rollback transaction
4342
+  (0.0ms) begin transaction
4343
+  (0.0ms) rollback transaction
4344
+  (0.0ms) begin transaction
4345
+  (0.0ms) rollback transaction
4346
+  (0.0ms) begin transaction
4347
+  (0.0ms) rollback transaction
4348
+  (0.0ms) begin transaction
4349
+  (0.0ms) rollback transaction
4350
+  (0.0ms) begin transaction
4351
+  (0.0ms) rollback transaction
4352
+  (0.0ms) begin transaction
4353
+  (0.0ms) rollback transaction
4354
+  (0.0ms) begin transaction
4355
+  (0.0ms) rollback transaction
4356
+  (0.0ms) begin transaction
4357
+  (0.0ms) rollback transaction
4358
+  (0.0ms) begin transaction
4359
+  (0.0ms) rollback transaction
4360
+  (0.0ms) begin transaction
4361
+  (0.0ms) rollback transaction
4362
+  (0.0ms) begin transaction
4363
+  (0.0ms) rollback transaction
4364
+  (0.0ms) begin transaction
4365
+  (0.0ms) rollback transaction
4366
+  (0.0ms) begin transaction
4367
+  (0.0ms) rollback transaction
4368
+ SQL (11.5ms) DELETE FROM "reports"
4369
+  (0.0ms) begin transaction
4370
+ SQL (2.9ms) INSERT INTO "reports" ("created_at", "description", "direct", "formats_mask", "group", "name", "target", "title", "updated_at", "views") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 Oct 2014 04:44:12 UTC +00:00], ["description", "Moo, eh?"], ["direct", nil], ["formats_mask", 7], ["group", "moo"], ["name", "moo"], ["target", nil], ["title", "Le Moo"], ["updated_at", Wed, 01 Oct 2014 04:44:12 UTC +00:00], ["views", nil]]
4371
+  (1.5ms) commit transaction
4372
+  (0.0ms) begin transaction
4373
+ Started GET "/reports/new" for 127.0.0.1 at 2014-09-30 21:44:12 -0700
4374
+ Processing by ReportsController#new as HTML
4375
+ Rendered reports/_form.html.erb (8.8ms)
4376
+ Rendered reports/new.html.erb within layouts/application (12.0ms)
4377
+ Completed 200 OK in 19.4ms (Views: 19.0ms | ActiveRecord: 0.0ms)
4378
+  (0.1ms) rollback transaction
4379
+  (0.0ms) begin transaction
4380
+ Started GET "/reports/1.pdf" for 127.0.0.1 at 2014-09-30 21:44:13 -0700
4381
+ Processing by ReportsController#show as PDF
4382
+ Parameters: {"id"=>"1"}
4383
+ Report Load (0.2ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
4384
+ Rendered meta_reports/default.pdf.prawn (2.6ms)
4385
+ Completed 500 Internal Server Error in 6.4ms
4386
+  (0.0ms) rollback transaction
4387
+  (0.0ms) begin transaction
4388
+ Started GET "/reports" for 127.0.0.1 at 2014-09-30 21:44:13 -0700
4389
+ Processing by ReportsController#index as HTML
4390
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" ORDER BY reports.title
4391
+ Rendered reports/index.html.erb within layouts/application (7.2ms)
4392
+ Completed 500 Internal Server Error in 8.4ms
4393
+  (0.0ms) rollback transaction
4394
+  (0.0ms) begin transaction
4395
+ Started GET "/" for 127.0.0.1 at 2014-09-30 21:44:13 -0700
4396
+ Processing by HomeController#index as HTML
4397
+ Rendered home/index.html.erb within layouts/application (0.3ms)
4398
+ Completed 200 OK in 2.5ms (Views: 2.2ms | ActiveRecord: 0.0ms)
4399
+  (0.0ms) rollback transaction
4400
+  (0.0ms) begin transaction
4401
+ Started GET "/reports/1.xlsx" for 127.0.0.1 at 2014-09-30 21:44:13 -0700
4402
+ Processing by ReportsController#show as XLSX
4403
+ Parameters: {"id"=>"1"}
4404
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
4405
+ Rendered meta_reports/_default_header.xlsx.axlsx (6.6ms)
4406
+ Rendered meta_reports/default.xlsx.axlsx (52.1ms)
4407
+  (0.3ms) UPDATE reports SET views = views + 1 WHERE id = 1
4408
+ Completed 200 OK in 55.1ms (Views: 53.6ms | ActiveRecord: 0.3ms)
4409
+  (22.9ms) rollback transaction
4410
+  (0.1ms) begin transaction
4411
+ Started GET "/reports/1" for 127.0.0.1 at 2014-09-30 21:44:13 -0700
4412
+ Processing by ReportsController#show as HTML
4413
+ Parameters: {"id"=>"1"}
4414
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
4415
+ Rendered meta_reports/default.html.erb within layouts/application (1.9ms)
4416
+ Completed 500 Internal Server Error in 4.7ms
4417
+  (0.1ms) rollback transaction
4418
+  (0.1ms) begin transaction
4419
+ Started GET "/reports/1/edit" for 127.0.0.1 at 2014-09-30 21:44:13 -0700
4420
+ Processing by ReportsController#edit as HTML
4421
+ Parameters: {"id"=>"1"}
4422
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
4423
+ Rendered reports/_form.html.erb (4.1ms)
4424
+ Rendered reports/edit.html.erb within layouts/application (13.1ms)
4425
+ Completed 500 Internal Server Error in 15.0ms
4426
+  (0.1ms) rollback transaction
4427
+  (0.0ms) begin transaction
4428
+  (0.1ms) rollback transaction
4429
+  (0.0ms) begin transaction
4430
+  (0.1ms) rollback transaction
4431
+  (0.0ms) begin transaction
4432
+  (0.0ms) rollback transaction
4433
+  (0.0ms) begin transaction
4434
+  (0.0ms) rollback transaction
4435
+  (0.0ms) begin transaction
4436
+  (0.0ms) rollback transaction
4437
+ Connecting to database specified by database.yml
4438
+  (0.1ms) select sqlite_version(*)
4439
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
4440
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4441
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
4442
+ Migrating to ForTestingOnly (20130801071213)
4443
+  (0.0ms) begin transaction
4444
+  (0.3ms) CREATE TABLE "reports" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "title" varchar(255), "group" varchar(255), "direct" boolean, "views" integer, "target" varchar(255), "formats_mask" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
4445
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130801071213')
4446
+  (0.9ms) commit transaction
4447
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
4448
+ Connecting to database specified by database.yml
4449
+ Connecting to database specified by database.yml
4450
+  (0.2ms) begin transaction
4451
+  (0.0ms) rollback transaction
4452
+  (0.0ms) begin transaction
4453
+  (0.0ms) rollback transaction
4454
+  (0.0ms) begin transaction
4455
+  (0.0ms) rollback transaction
4456
+  (0.0ms) begin transaction
4457
+  (0.0ms) rollback transaction
4458
+  (0.0ms) begin transaction
4459
+  (0.0ms) rollback transaction
4460
+  (0.0ms) begin transaction
4461
+  (0.0ms) rollback transaction
4462
+  (0.0ms) begin transaction
4463
+  (0.0ms) rollback transaction
4464
+  (0.0ms) begin transaction
4465
+  (0.0ms) rollback transaction
4466
+  (0.0ms) begin transaction
4467
+  (0.0ms) rollback transaction
4468
+  (0.0ms) begin transaction
4469
+  (0.0ms) rollback transaction
4470
+  (0.0ms) begin transaction
4471
+  (0.0ms) rollback transaction
4472
+  (0.0ms) begin transaction
4473
+  (0.0ms) rollback transaction
4474
+  (0.0ms) begin transaction
4475
+  (0.0ms) rollback transaction
4476
+  (0.0ms) begin transaction
4477
+  (0.0ms) rollback transaction
4478
+  (0.0ms) begin transaction
4479
+  (0.0ms) rollback transaction
4480
+  (0.0ms) begin transaction
4481
+  (0.0ms) rollback transaction
4482
+  (0.0ms) begin transaction
4483
+  (0.0ms) rollback transaction
4484
+  (0.0ms) begin transaction
4485
+  (0.0ms) rollback transaction
4486
+  (0.1ms) begin transaction
4487
+  (0.1ms) rollback transaction
4488
+  (0.0ms) begin transaction
4489
+  (0.1ms) rollback transaction
4490
+  (0.0ms) begin transaction
4491
+  (0.0ms) rollback transaction
4492
+  (0.0ms) begin transaction
4493
+  (0.0ms) rollback transaction
4494
+  (0.0ms) begin transaction
4495
+  (0.0ms) rollback transaction
4496
+ SQL (71.6ms) DELETE FROM "reports"
4497
+  (0.0ms) begin transaction
4498
+ SQL (43.4ms) INSERT INTO "reports" ("created_at", "description", "direct", "formats_mask", "group", "name", "target", "title", "updated_at", "views") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 Oct 2014 04:51:10 UTC +00:00], ["description", "Moo, eh?"], ["direct", nil], ["formats_mask", 7], ["group", "moo"], ["name", "moo"], ["target", nil], ["title", "Le Moo"], ["updated_at", Wed, 01 Oct 2014 04:51:10 UTC +00:00], ["views", nil]]
4499
+  (1.1ms) commit transaction
4500
+  (0.0ms) begin transaction
4501
+ Started GET "/reports/1/edit" for 127.0.0.1 at 2014-09-30 21:51:10 -0700
4502
+ Processing by ReportsController#edit as HTML
4503
+ Parameters: {"id"=>"1"}
4504
+ Report Load (0.2ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
4505
+ Rendered reports/_form.html.erb (9.0ms)
4506
+ Rendered reports/edit.html.erb within layouts/application (12.7ms)
4507
+ Completed 200 OK in 59.9ms (Views: 57.1ms | ActiveRecord: 0.2ms)
4508
+  (0.1ms) rollback transaction
4509
+  (0.0ms) begin transaction
4510
+ Started GET "/reports/new" for 127.0.0.1 at 2014-09-30 21:51:10 -0700
4511
+ Processing by ReportsController#new as HTML
4512
+ Rendered reports/_form.html.erb (3.9ms)
4513
+ Rendered reports/new.html.erb within layouts/application (4.6ms)
4514
+ Completed 200 OK in 6.6ms (Views: 6.1ms | ActiveRecord: 0.0ms)
4515
+  (0.1ms) rollback transaction
4516
+  (0.0ms) begin transaction
4517
+ Started GET "/reports/1.pdf" for 127.0.0.1 at 2014-09-30 21:51:10 -0700
4518
+ Processing by ReportsController#show as PDF
4519
+ Parameters: {"id"=>"1"}
4520
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
4521
+ Rendered meta_reports/default.pdf.prawn (2.8ms)
4522
+ Completed 500 Internal Server Error in 5.7ms
4523
+  (0.1ms) rollback transaction
4524
+  (0.0ms) begin transaction
4525
+ Started GET "/reports/1" for 127.0.0.1 at 2014-09-30 21:51:10 -0700
4526
+ Processing by ReportsController#show as HTML
4527
+ Parameters: {"id"=>"1"}
4528
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
4529
+ Rendered meta_reports/default.html.erb within layouts/application (1.2ms)
4530
+ Completed 500 Internal Server Error in 2.8ms
4531
+  (0.0ms) rollback transaction
4532
+  (0.0ms) begin transaction
4533
+ Started GET "/reports/1.xlsx" for 127.0.0.1 at 2014-09-30 21:51:10 -0700
4534
+ Processing by ReportsController#show as XLSX
4535
+ Parameters: {"id"=>"1"}
4536
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
4537
+ Rendered meta_reports/_default_header.xlsx.axlsx (6.5ms)
4538
+ Rendered meta_reports/default.xlsx.axlsx (15.7ms)
4539
+  (0.2ms) UPDATE reports SET views = views + 1 WHERE id = 1
4540
+ Completed 200 OK in 18.3ms (Views: 17.1ms | ActiveRecord: 0.3ms)
4541
+  (1.2ms) rollback transaction
4542
+  (0.0ms) begin transaction
4543
+ Started GET "/reports" for 127.0.0.1 at 2014-09-30 21:51:10 -0700
4544
+ Processing by ReportsController#index as HTML
4545
+ Report Load (0.2ms) SELECT "reports".* FROM "reports" ORDER BY reports.title
4546
+ Rendered reports/index.html.erb within layouts/application (8.6ms)
4547
+ Completed 500 Internal Server Error in 10.1ms
4548
+  (0.1ms) rollback transaction
4549
+  (0.0ms) begin transaction
4550
+ Started GET "/" for 127.0.0.1 at 2014-09-30 21:51:10 -0700
4551
+ Processing by HomeController#index as HTML
4552
+ Rendered home/index.html.erb within layouts/application (0.3ms)
4553
+ Completed 200 OK in 2.9ms (Views: 2.5ms | ActiveRecord: 0.0ms)
4554
+  (0.1ms) rollback transaction
4555
+ Connecting to database specified by database.yml
4556
+  (0.1ms) select sqlite_version(*)
4557
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
4558
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4559
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
4560
+ Migrating to ForTestingOnly (20130801071213)
4561
+  (0.0ms) begin transaction
4562
+  (0.3ms) CREATE TABLE "reports" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "title" varchar(255), "group" varchar(255), "direct" boolean, "views" integer, "target" varchar(255), "formats_mask" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
4563
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130801071213')
4564
+  (0.9ms) commit transaction
4565
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
4566
+ Connecting to database specified by database.yml
4567
+ Connecting to database specified by database.yml
4568
+  (0.3ms) begin transaction
4569
+  (0.0ms) rollback transaction
4570
+  (0.1ms) begin transaction
4571
+  (0.0ms) rollback transaction
4572
+  (0.1ms) begin transaction
4573
+  (0.1ms) rollback transaction
4574
+  (0.1ms) begin transaction
4575
+  (0.1ms) rollback transaction
4576
+  (0.1ms) begin transaction
4577
+  (0.1ms) rollback transaction
4578
+  (0.1ms) begin transaction
4579
+  (0.1ms) rollback transaction
4580
+  (0.1ms) begin transaction
4581
+  (0.1ms) rollback transaction
4582
+  (0.1ms) begin transaction
4583
+  (0.1ms) rollback transaction
4584
+  (0.1ms) begin transaction
4585
+  (0.1ms) rollback transaction
4586
+  (0.1ms) begin transaction
4587
+  (0.1ms) rollback transaction
4588
+  (0.1ms) begin transaction
4589
+  (0.0ms) rollback transaction
4590
+  (0.1ms) begin transaction
4591
+  (0.0ms) rollback transaction
4592
+  (0.1ms) begin transaction
4593
+  (0.0ms) rollback transaction
4594
+  (0.1ms) begin transaction
4595
+  (0.0ms) rollback transaction
4596
+  (0.1ms) begin transaction
4597
+  (0.0ms) rollback transaction
4598
+  (0.1ms) begin transaction
4599
+  (0.0ms) rollback transaction
4600
+  (0.1ms) begin transaction
4601
+  (0.0ms) rollback transaction
4602
+  (0.1ms) begin transaction
4603
+  (0.0ms) rollback transaction
4604
+  (0.1ms) begin transaction
4605
+  (0.0ms) rollback transaction
4606
+  (0.1ms) begin transaction
4607
+  (0.0ms) rollback transaction
4608
+  (0.1ms) begin transaction
4609
+  (0.0ms) rollback transaction
4610
+  (0.1ms) begin transaction
4611
+  (0.1ms) rollback transaction
4612
+  (0.0ms) begin transaction
4613
+  (0.1ms) rollback transaction
4614
+ SQL (2.0ms) DELETE FROM "reports"
4615
+  (0.1ms) begin transaction
4616
+ SQL (3.0ms) INSERT INTO "reports" ("created_at", "description", "direct", "formats_mask", "group", "name", "target", "title", "updated_at", "views") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 Oct 2014 04:56:09 UTC +00:00], ["description", "Moo, eh?"], ["direct", nil], ["formats_mask", 7], ["group", "moo"], ["name", "moo"], ["target", nil], ["title", "Le Moo"], ["updated_at", Wed, 01 Oct 2014 04:56:09 UTC +00:00], ["views", nil]]
4617
+  (1.3ms) commit transaction
4618
+  (0.0ms) begin transaction
4619
+ Started GET "/reports/1.xlsx" for 127.0.0.1 at 2014-09-30 21:56:09 -0700
4620
+ Processing by ReportsController#show as XLSX
4621
+ Parameters: {"id"=>"1"}
4622
+ Report Load (0.2ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
4623
+ Rendered meta_reports/_default_header.xlsx.axlsx (6.5ms)
4624
+ Rendered meta_reports/default.xlsx.axlsx (17.2ms)
4625
+  (0.2ms) UPDATE reports SET views = views + 1 WHERE id = 1
4626
+ Completed 200 OK in 61.4ms (Views: 58.5ms | ActiveRecord: 0.4ms)
4627
+  (0.5ms) rollback transaction
4628
+  (0.0ms) begin transaction
4629
+ Started GET "/reports/new" for 127.0.0.1 at 2014-09-30 21:56:09 -0700
4630
+ Processing by ReportsController#new as HTML
4631
+ Rendered reports/_form.html.erb (8.5ms)
4632
+ Rendered reports/new.html.erb within layouts/application (10.4ms)
4633
+ Completed 200 OK in 13.6ms (Views: 13.2ms | ActiveRecord: 0.0ms)
4634
+  (0.1ms) rollback transaction
4635
+  (0.0ms) begin transaction
4636
+ Started GET "/reports/1.pdf" for 127.0.0.1 at 2014-09-30 21:56:09 -0700
4637
+ Processing by ReportsController#show as PDF
4638
+ Parameters: {"id"=>"1"}
4639
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
4640
+ Rendered meta_reports/default.pdf.prawn (2.6ms)
4641
+ Completed 500 Internal Server Error in 5.1ms
4642
+  (0.0ms) rollback transaction
4643
+  (0.0ms) begin transaction
4644
+ Started GET "/reports/1" for 127.0.0.1 at 2014-09-30 21:56:09 -0700
4645
+ Processing by ReportsController#show as HTML
4646
+ Parameters: {"id"=>"1"}
4647
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
4648
+ Rendered meta_reports/default.html.erb within layouts/application (1.1ms)
4649
+ Completed 500 Internal Server Error in 2.7ms
4650
+  (0.0ms) rollback transaction
4651
+  (0.0ms) begin transaction
4652
+ Started GET "/reports/1/edit" for 127.0.0.1 at 2014-09-30 21:56:09 -0700
4653
+ Processing by ReportsController#edit as HTML
4654
+ Parameters: {"id"=>"1"}
4655
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
4656
+ Rendered reports/_form.html.erb (4.2ms)
4657
+ Rendered reports/edit.html.erb within layouts/application (45.5ms)
4658
+ Completed 200 OK in 47.9ms (Views: 47.0ms | ActiveRecord: 0.1ms)
4659
+  (0.1ms) rollback transaction
4660
+  (0.0ms) begin transaction
4661
+ Started GET "/reports" for 127.0.0.1 at 2014-09-30 21:56:09 -0700
4662
+ Processing by ReportsController#index as HTML
4663
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" ORDER BY reports.title
4664
+ Rendered reports/index.html.erb within layouts/application (2.5ms)
4665
+ Completed 200 OK in 4.6ms (Views: 4.0ms | ActiveRecord: 0.1ms)
4666
+  (0.1ms) rollback transaction
4667
+  (0.0ms) begin transaction
4668
+ Started GET "/" for 127.0.0.1 at 2014-09-30 21:56:09 -0700
4669
+ Processing by HomeController#index as HTML
4670
+ Rendered home/index.html.erb within layouts/application (0.3ms)
4671
+ Completed 200 OK in 2.7ms (Views: 2.4ms | ActiveRecord: 0.0ms)
4672
+  (0.0ms) rollback transaction
4673
+ Connecting to database specified by database.yml
4674
+  (0.1ms) select sqlite_version(*)
4675
+  (21.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
4676
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4677
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
4678
+ Migrating to ForTestingOnly (20130801071213)
4679
+  (0.0ms) begin transaction
4680
+  (0.3ms) CREATE TABLE "reports" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "title" varchar(255), "group" varchar(255), "direct" boolean, "views" integer, "target" varchar(255), "formats_mask" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
4681
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130801071213')
4682
+  (3.9ms) commit transaction
4683
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
4684
+ Connecting to database specified by database.yml
4685
+ Connecting to database specified by database.yml
4686
+ SQL (2.3ms) DELETE FROM "reports"
4687
+  (0.1ms) begin transaction
4688
+ SQL (3.5ms) INSERT INTO "reports" ("created_at", "description", "direct", "formats_mask", "group", "name", "target", "title", "updated_at", "views") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 Oct 2014 05:08:32 UTC +00:00], ["description", "Moo, eh?"], ["direct", nil], ["formats_mask", 7], ["group", "moo"], ["name", "moo"], ["target", nil], ["title", "Le Moo"], ["updated_at", Wed, 01 Oct 2014 05:08:32 UTC +00:00], ["views", nil]]
4689
+  (1.1ms) commit transaction
4690
+  (0.0ms) begin transaction
4691
+ Started GET "/" for 127.0.0.1 at 2014-09-30 22:08:32 -0700
4692
+ Processing by HomeController#index as HTML
4693
+ Rendered home/index.html.erb within layouts/application (1.0ms)
4694
+ Completed 200 OK in 8.7ms (Views: 8.3ms | ActiveRecord: 0.0ms)
4695
+  (0.1ms) rollback transaction
4696
+  (0.0ms) begin transaction
4697
+ Started GET "/reports/1/edit" for 127.0.0.1 at 2014-09-30 22:08:32 -0700
4698
+ Processing by ReportsController#edit as HTML
4699
+ Parameters: {"id"=>"1"}
4700
+ Report Load (0.2ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
4701
+ Rendered reports/_form.html.erb (14.5ms)
4702
+ Rendered reports/edit.html.erb within layouts/application (17.9ms)
4703
+ Completed 200 OK in 23.8ms (Views: 21.5ms | ActiveRecord: 0.2ms)
4704
+  (0.1ms) rollback transaction
4705
+  (0.0ms) begin transaction
4706
+ Started GET "/reports/1" for 127.0.0.1 at 2014-09-30 22:08:32 -0700
4707
+ Processing by ReportsController#show as HTML
4708
+ Parameters: {"id"=>"1"}
4709
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
4710
+ Rendered meta_reports/default.html.erb within layouts/application (2.7ms)
4711
+ Completed 500 Internal Server Error in 5.0ms
4712
+  (0.1ms) rollback transaction
4713
+  (0.0ms) begin transaction
4714
+ Started GET "/reports/1.xlsx" for 127.0.0.1 at 2014-09-30 22:08:32 -0700
4715
+ Processing by ReportsController#show as XLSX
4716
+ Parameters: {"id"=>"1"}
4717
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
4718
+ Rendered meta_reports/_default_header.xlsx.axlsx (7.2ms)
4719
+ Rendered meta_reports/default.xlsx.axlsx (17.4ms)
4720
+  (0.2ms) UPDATE reports SET views = views + 1 WHERE id = 1
4721
+ Completed 200 OK in 20.5ms (Views: 19.0ms | ActiveRecord: 0.3ms)
4722
+  (0.5ms) rollback transaction
4723
+  (0.0ms) begin transaction
4724
+ Started GET "/reports/1.pdf" for 127.0.0.1 at 2014-09-30 22:08:32 -0700
4725
+ Processing by ReportsController#show as PDF
4726
+ Parameters: {"id"=>"1"}
4727
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
4728
+ Rendered meta_reports/default.pdf.prawn (1.9ms)
4729
+ Completed 500 Internal Server Error in 4.4ms
4730
+  (0.1ms) rollback transaction
4731
+  (0.0ms) begin transaction
4732
+ Started GET "/reports/new" for 127.0.0.1 at 2014-09-30 22:08:32 -0700
4733
+ Processing by ReportsController#new as HTML
4734
+ Rendered reports/_form.html.erb (3.9ms)
4735
+ Rendered reports/new.html.erb within layouts/application (4.5ms)
4736
+ Completed 200 OK in 6.4ms (Views: 6.0ms | ActiveRecord: 0.0ms)
4737
+  (0.0ms) rollback transaction
4738
+  (0.0ms) begin transaction
4739
+ Started GET "/reports" for 127.0.0.1 at 2014-09-30 22:08:32 -0700
4740
+ Processing by ReportsController#index as HTML
4741
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" ORDER BY reports.title
4742
+ Rendered reports/index.html.erb within layouts/application (2.3ms)
4743
+ Completed 200 OK in 4.2ms (Views: 3.8ms | ActiveRecord: 0.1ms)
4744
+  (0.1ms) rollback transaction
4745
+  (0.0ms) begin transaction
4746
+  (0.0ms) rollback transaction
4747
+  (0.0ms) begin transaction
4748
+  (0.1ms) rollback transaction
4749
+  (0.0ms) begin transaction
4750
+  (0.0ms) rollback transaction
4751
+  (0.0ms) begin transaction
4752
+  (0.1ms) rollback transaction
4753
+  (0.0ms) begin transaction
4754
+  (0.0ms) rollback transaction
4755
+  (0.1ms) begin transaction
4756
+  (0.0ms) rollback transaction
4757
+  (0.0ms) begin transaction
4758
+  (0.1ms) rollback transaction
4759
+  (0.0ms) begin transaction
4760
+  (0.0ms) rollback transaction
4761
+  (0.0ms) begin transaction
4762
+  (0.1ms) rollback transaction
4763
+  (0.0ms) begin transaction
4764
+  (0.0ms) rollback transaction
4765
+  (0.0ms) begin transaction
4766
+  (0.0ms) rollback transaction
4767
+  (0.0ms) begin transaction
4768
+  (0.0ms) rollback transaction
4769
+  (0.0ms) begin transaction
4770
+  (0.0ms) rollback transaction
4771
+  (0.0ms) begin transaction
4772
+  (0.0ms) rollback transaction
4773
+  (0.0ms) begin transaction
4774
+  (0.0ms) rollback transaction
4775
+  (0.0ms) begin transaction
4776
+  (0.0ms) rollback transaction
4777
+  (0.0ms) begin transaction
4778
+  (0.0ms) rollback transaction
4779
+  (0.0ms) begin transaction
4780
+  (0.0ms) rollback transaction
4781
+  (0.0ms) begin transaction
4782
+  (0.0ms) rollback transaction
4783
+  (0.0ms) begin transaction
4784
+  (0.0ms) rollback transaction
4785
+  (0.0ms) begin transaction
4786
+  (0.0ms) rollback transaction
4787
+  (0.0ms) begin transaction
4788
+  (0.0ms) rollback transaction
4789
+  (0.0ms) begin transaction
4790
+  (0.0ms) rollback transaction
4791
+ Connecting to database specified by database.yml
4792
+  (0.0ms) select sqlite_version(*)
4793
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
4794
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4795
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
4796
+ Migrating to ForTestingOnly (20130801071213)
4797
+  (0.0ms) begin transaction
4798
+  (0.2ms) CREATE TABLE "reports" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "title" varchar(255), "group" varchar(255), "direct" boolean, "views" integer, "target" varchar(255), "formats_mask" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
4799
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130801071213')
4800
+  (10.0ms) commit transaction
4801
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
4802
+ Connecting to database specified by database.yml
4803
+ Connecting to database specified by database.yml
4804
+  (0.3ms) begin transaction
4805
+  (0.0ms) rollback transaction
4806
+  (0.0ms) begin transaction
4807
+  (0.0ms) rollback transaction
4808
+  (0.0ms) begin transaction
4809
+  (0.0ms) rollback transaction
4810
+  (0.0ms) begin transaction
4811
+  (0.0ms) rollback transaction
4812
+  (0.0ms) begin transaction
4813
+  (0.0ms) rollback transaction
4814
+  (0.1ms) begin transaction
4815
+  (0.0ms) rollback transaction
4816
+  (0.0ms) begin transaction
4817
+  (0.0ms) rollback transaction
4818
+  (0.0ms) begin transaction
4819
+  (0.0ms) rollback transaction
4820
+  (0.0ms) begin transaction
4821
+  (0.0ms) rollback transaction
4822
+  (0.0ms) begin transaction
4823
+  (0.0ms) rollback transaction
4824
+  (0.0ms) begin transaction
4825
+  (0.0ms) rollback transaction
4826
+  (0.0ms) begin transaction
4827
+  (0.0ms) rollback transaction
4828
+  (0.0ms) begin transaction
4829
+  (0.0ms) rollback transaction
4830
+  (0.0ms) begin transaction
4831
+  (0.0ms) rollback transaction
4832
+  (0.0ms) begin transaction
4833
+  (0.1ms) rollback transaction
4834
+  (0.0ms) begin transaction
4835
+  (0.1ms) rollback transaction
4836
+  (0.0ms) begin transaction
4837
+  (0.0ms) rollback transaction
4838
+  (0.0ms) begin transaction
4839
+  (0.0ms) rollback transaction
4840
+  (0.0ms) begin transaction
4841
+  (0.0ms) rollback transaction
4842
+  (0.0ms) begin transaction
4843
+  (0.0ms) rollback transaction
4844
+  (0.0ms) begin transaction
4845
+  (0.0ms) rollback transaction
4846
+  (0.0ms) begin transaction
4847
+  (0.0ms) rollback transaction
4848
+  (0.0ms) begin transaction
4849
+  (0.0ms) rollback transaction
4850
+ SQL (2.1ms) DELETE FROM "reports"
4851
+  (0.1ms) begin transaction
4852
+ SQL (3.0ms) INSERT INTO "reports" ("created_at", "description", "direct", "formats_mask", "group", "name", "target", "title", "updated_at", "views") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 Oct 2014 05:13:13 UTC +00:00], ["description", "Moo, eh?"], ["direct", nil], ["formats_mask", 7], ["group", "moo"], ["name", "moo"], ["target", nil], ["title", "Le Moo"], ["updated_at", Wed, 01 Oct 2014 05:13:13 UTC +00:00], ["views", nil]]
4853
+  (1.9ms) commit transaction
4854
+  (0.0ms) begin transaction
4855
+ Started GET "/reports/1/edit" for 127.0.0.1 at 2014-09-30 22:13:13 -0700
4856
+ Processing by ReportsController#edit as HTML
4857
+ Parameters: {"id"=>"1"}
4858
+ Report Load (0.2ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
4859
+ Rendered reports/_form.html.erb (8.8ms)
4860
+ Rendered reports/edit.html.erb within layouts/application (12.2ms)
4861
+ Completed 200 OK in 21.1ms (Views: 18.9ms | ActiveRecord: 0.2ms)
4862
+  (0.1ms) rollback transaction
4863
+  (0.0ms) begin transaction
4864
+ Started GET "/reports/1.pdf" for 127.0.0.1 at 2014-09-30 22:13:14 -0700
4865
+ Processing by ReportsController#show as PDF
4866
+ Parameters: {"id"=>"1"}
4867
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
4868
+ Rendered meta_reports/_default_header.pdf.prawn (159.4ms)
4869
+ Rendered meta_reports/default.pdf.prawn (163.0ms)
4870
+ Completed 500 Internal Server Error in 165.7ms
4871
+  (0.1ms) rollback transaction
4872
+  (0.0ms) begin transaction
4873
+ Started GET "/reports" for 127.0.0.1 at 2014-09-30 22:13:14 -0700
4874
+ Processing by ReportsController#index as HTML
4875
+ Report Load (0.2ms) SELECT "reports".* FROM "reports" ORDER BY reports.title
4876
+ Rendered reports/index.html.erb within layouts/application (2.6ms)
4877
+ Completed 200 OK in 4.6ms (Views: 4.1ms | ActiveRecord: 0.2ms)
4878
+  (0.1ms) rollback transaction
4879
+  (0.0ms) begin transaction
4880
+ Started GET "/reports/1.xlsx" for 127.0.0.1 at 2014-09-30 22:13:14 -0700
4881
+ Processing by ReportsController#show as XLSX
4882
+ Parameters: {"id"=>"1"}
4883
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
4884
+ Rendered meta_reports/_default_header.xlsx.axlsx (6.7ms)
4885
+ Rendered meta_reports/default.xlsx.axlsx (55.0ms)
4886
+  (0.3ms) UPDATE reports SET views = views + 1 WHERE id = 1
4887
+ Completed 200 OK in 58.1ms (Views: 56.6ms | ActiveRecord: 0.4ms)
4888
+  (0.4ms) rollback transaction
4889
+  (0.0ms) begin transaction
4890
+ Started GET "/" for 127.0.0.1 at 2014-09-30 22:13:14 -0700
4891
+ Processing by HomeController#index as HTML
4892
+ Rendered home/index.html.erb within layouts/application (0.3ms)
4893
+ Completed 200 OK in 2.8ms (Views: 2.5ms | ActiveRecord: 0.0ms)
4894
+  (0.1ms) rollback transaction
4895
+  (0.0ms) begin transaction
4896
+ Started GET "/reports/1" for 127.0.0.1 at 2014-09-30 22:13:14 -0700
4897
+ Processing by ReportsController#show as HTML
4898
+ Parameters: {"id"=>"1"}
4899
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
4900
+ Rendered meta_reports/default.html.erb within layouts/application (1.3ms)
4901
+ Completed 500 Internal Server Error in 3.2ms
4902
+  (0.1ms) rollback transaction
4903
+  (0.0ms) begin transaction
4904
+ Started GET "/reports/new" for 127.0.0.1 at 2014-09-30 22:13:14 -0700
4905
+ Processing by ReportsController#new as HTML
4906
+ Rendered reports/_form.html.erb (4.3ms)
4907
+ Rendered reports/new.html.erb within layouts/application (4.9ms)
4908
+ Completed 200 OK in 6.9ms (Views: 6.6ms | ActiveRecord: 0.0ms)
4909
+  (0.1ms) rollback transaction
4910
+ Connecting to database specified by database.yml
4911
+  (0.0ms) select sqlite_version(*)
4912
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
4913
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4914
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
4915
+ Migrating to ForTestingOnly (20130801071213)
4916
+  (0.0ms) begin transaction
4917
+  (0.2ms) CREATE TABLE "reports" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "title" varchar(255), "group" varchar(255), "direct" boolean, "views" integer, "target" varchar(255), "formats_mask" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
4918
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130801071213')
4919
+  (1.3ms) commit transaction
4920
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
4921
+ Connecting to database specified by database.yml
4922
+ Connecting to database specified by database.yml
4923
+ SQL (2.1ms) DELETE FROM "reports"
4924
+  (0.1ms) begin transaction
4925
+ SQL (3.3ms) INSERT INTO "reports" ("created_at", "description", "direct", "formats_mask", "group", "name", "target", "title", "updated_at", "views") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 Oct 2014 05:14:15 UTC +00:00], ["description", "Moo, eh?"], ["direct", nil], ["formats_mask", 7], ["group", "moo"], ["name", "moo"], ["target", nil], ["title", "Le Moo"], ["updated_at", Wed, 01 Oct 2014 05:14:15 UTC +00:00], ["views", nil]]
4926
+  (1.1ms) commit transaction
4927
+  (0.0ms) begin transaction
4928
+ Started GET "/" for 127.0.0.1 at 2014-09-30 22:14:15 -0700
4929
+ Processing by HomeController#index as HTML
4930
+ Rendered home/index.html.erb within layouts/application (1.1ms)
4931
+ Completed 200 OK in 11.0ms (Views: 10.5ms | ActiveRecord: 0.0ms)
4932
+  (0.1ms) rollback transaction
4933
+  (0.1ms) begin transaction
4934
+ Started GET "/reports/new" for 127.0.0.1 at 2014-09-30 22:14:15 -0700
4935
+ Processing by ReportsController#new as HTML
4936
+ Rendered reports/_form.html.erb (8.6ms)
4937
+ Rendered reports/new.html.erb within layouts/application (11.3ms)
4938
+ Completed 200 OK in 14.7ms (Views: 14.3ms | ActiveRecord: 0.0ms)
4939
+  (0.1ms) rollback transaction
4940
+  (0.0ms) begin transaction
4941
+ Started GET "/reports/1" for 127.0.0.1 at 2014-09-30 22:14:15 -0700
4942
+ Processing by ReportsController#show as HTML
4943
+ Parameters: {"id"=>"1"}
4944
+ Report Load (0.2ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
4945
+ Rendered meta_reports/_default.html.erb (3.7ms)
4946
+ Rendered meta_reports/default.html.erb within layouts/application (4.7ms)
4947
+ Completed 500 Internal Server Error in 7.7ms
4948
+  (0.0ms) rollback transaction
4949
+  (0.0ms) begin transaction
4950
+ Started GET "/reports/1/edit" for 127.0.0.1 at 2014-09-30 22:14:16 -0700
4951
+ Processing by ReportsController#edit as HTML
4952
+ Parameters: {"id"=>"1"}
4953
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
4954
+ Rendered reports/_form.html.erb (3.8ms)
4955
+ Rendered reports/edit.html.erb within layouts/application (4.6ms)
4956
+ Completed 200 OK in 6.9ms (Views: 6.0ms | ActiveRecord: 0.1ms)
4957
+  (0.1ms) rollback transaction
4958
+  (0.0ms) begin transaction
4959
+ Started GET "/reports/1.pdf" for 127.0.0.1 at 2014-09-30 22:14:16 -0700
4960
+ Processing by ReportsController#show as PDF
4961
+ Parameters: {"id"=>"1"}
4962
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
4963
+ Rendered meta_reports/_default_header.pdf.prawn (54.8ms)
4964
+ Rendered meta_reports/default.pdf.prawn (57.2ms)
4965
+ Completed 500 Internal Server Error in 59.5ms
4966
+  (0.1ms) rollback transaction
4967
+  (0.1ms) begin transaction
4968
+ Started GET "/reports/1.xlsx" for 127.0.0.1 at 2014-09-30 22:14:16 -0700
4969
+ Processing by ReportsController#show as XLSX
4970
+ Parameters: {"id"=>"1"}
4971
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
4972
+ Rendered meta_reports/_default_header.xlsx.axlsx (46.8ms)
4973
+ Rendered meta_reports/default.xlsx.axlsx (56.0ms)
4974
+  (0.2ms) UPDATE reports SET views = views + 1 WHERE id = 1
4975
+ Completed 200 OK in 59.0ms (Views: 57.5ms | ActiveRecord: 0.3ms)
4976
+  (0.6ms) rollback transaction
4977
+  (0.0ms) begin transaction
4978
+ Started GET "/reports" for 127.0.0.1 at 2014-09-30 22:14:16 -0700
4979
+ Processing by ReportsController#index as HTML
4980
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" ORDER BY reports.title
4981
+ Rendered reports/index.html.erb within layouts/application (2.3ms)
4982
+ Completed 200 OK in 4.2ms (Views: 3.7ms | ActiveRecord: 0.1ms)
4983
+  (0.1ms) rollback transaction
4984
+  (0.0ms) begin transaction
4985
+  (0.1ms) rollback transaction
4986
+  (0.0ms) begin transaction
4987
+  (0.1ms) rollback transaction
4988
+  (0.0ms) begin transaction
4989
+  (0.0ms) rollback transaction
4990
+  (0.0ms) begin transaction
4991
+  (0.0ms) rollback transaction
4992
+  (0.0ms) begin transaction
4993
+  (0.0ms) rollback transaction
4994
+  (0.0ms) begin transaction
4995
+  (0.0ms) rollback transaction
4996
+  (0.0ms) begin transaction
4997
+  (0.0ms) rollback transaction
4998
+  (0.0ms) begin transaction
4999
+  (0.0ms) rollback transaction
5000
+  (0.1ms) begin transaction
5001
+  (0.0ms) rollback transaction
5002
+  (0.0ms) begin transaction
5003
+  (0.0ms) rollback transaction
5004
+  (0.0ms) begin transaction
5005
+  (0.0ms) rollback transaction
5006
+  (0.0ms) begin transaction
5007
+  (0.0ms) rollback transaction
5008
+  (0.0ms) begin transaction
5009
+  (0.0ms) rollback transaction
5010
+  (0.0ms) begin transaction
5011
+  (0.0ms) rollback transaction
5012
+  (0.0ms) begin transaction
5013
+  (0.0ms) rollback transaction
5014
+  (0.0ms) begin transaction
5015
+  (0.0ms) rollback transaction
5016
+  (0.0ms) begin transaction
5017
+  (0.0ms) rollback transaction
5018
+  (0.0ms) begin transaction
5019
+  (0.0ms) rollback transaction
5020
+  (0.0ms) begin transaction
5021
+  (0.0ms) rollback transaction
5022
+  (0.0ms) begin transaction
5023
+  (0.0ms) rollback transaction
5024
+  (0.0ms) begin transaction
5025
+  (0.0ms) rollback transaction
5026
+  (0.0ms) begin transaction
5027
+  (0.0ms) rollback transaction
5028
+  (0.0ms) begin transaction
5029
+  (0.0ms) rollback transaction
5030
+ Connecting to database specified by database.yml
5031
+  (0.1ms) select sqlite_version(*)
5032
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
5033
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5034
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
5035
+ Migrating to ForTestingOnly (20130801071213)
5036
+  (0.0ms) begin transaction
5037
+  (0.3ms) CREATE TABLE "reports" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "title" varchar(255), "group" varchar(255), "direct" boolean, "views" integer, "target" varchar(255), "formats_mask" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
5038
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130801071213')
5039
+  (14.9ms) commit transaction
5040
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
5041
+ Connecting to database specified by database.yml
5042
+ Connecting to database specified by database.yml
5043
+  (0.3ms) begin transaction
5044
+  (0.0ms) rollback transaction
5045
+  (0.0ms) begin transaction
5046
+  (0.0ms) rollback transaction
5047
+  (0.0ms) begin transaction
5048
+  (0.0ms) rollback transaction
5049
+  (0.0ms) begin transaction
5050
+  (0.0ms) rollback transaction
5051
+  (0.0ms) begin transaction
5052
+  (0.0ms) rollback transaction
5053
+  (0.0ms) begin transaction
5054
+  (0.0ms) rollback transaction
5055
+  (0.0ms) begin transaction
5056
+  (0.0ms) rollback transaction
5057
+  (0.0ms) begin transaction
5058
+  (0.0ms) rollback transaction
5059
+  (0.0ms) begin transaction
5060
+  (0.0ms) rollback transaction
5061
+  (0.0ms) begin transaction
5062
+  (0.0ms) rollback transaction
5063
+  (0.0ms) begin transaction
5064
+  (0.0ms) rollback transaction
5065
+  (0.0ms) begin transaction
5066
+  (0.0ms) rollback transaction
5067
+  (0.0ms) begin transaction
5068
+  (0.0ms) rollback transaction
5069
+  (0.0ms) begin transaction
5070
+  (0.0ms) rollback transaction
5071
+  (0.0ms) begin transaction
5072
+  (0.0ms) rollback transaction
5073
+  (0.0ms) begin transaction
5074
+  (0.0ms) rollback transaction
5075
+  (0.0ms) begin transaction
5076
+  (0.0ms) rollback transaction
5077
+  (0.0ms) begin transaction
5078
+  (0.0ms) rollback transaction
5079
+  (0.0ms) begin transaction
5080
+  (0.0ms) rollback transaction
5081
+  (0.0ms) begin transaction
5082
+  (0.0ms) rollback transaction
5083
+  (0.0ms) begin transaction
5084
+  (0.0ms) rollback transaction
5085
+  (0.0ms) begin transaction
5086
+  (0.0ms) rollback transaction
5087
+  (0.0ms) begin transaction
5088
+  (0.1ms) rollback transaction
5089
+ SQL (2.0ms) DELETE FROM "reports"
5090
+  (0.0ms) begin transaction
5091
+ SQL (2.9ms) INSERT INTO "reports" ("created_at", "description", "direct", "formats_mask", "group", "name", "target", "title", "updated_at", "views") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 Oct 2014 05:15:16 UTC +00:00], ["description", "Moo, eh?"], ["direct", nil], ["formats_mask", 7], ["group", "moo"], ["name", "moo"], ["target", nil], ["title", "Le Moo"], ["updated_at", Wed, 01 Oct 2014 05:15:16 UTC +00:00], ["views", nil]]
5092
+  (1.1ms) commit transaction
5093
+  (0.0ms) begin transaction
5094
+ Started GET "/reports/1.xlsx" for 127.0.0.1 at 2014-09-30 22:15:16 -0700
5095
+ Processing by ReportsController#show as XLSX
5096
+ Parameters: {"id"=>"1"}
5097
+ Report Load (0.2ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
5098
+ Rendered meta_reports/_default_header.xlsx.axlsx (6.3ms)
5099
+ Rendered meta_reports/default.xlsx.axlsx (16.5ms)
5100
+  (0.2ms) UPDATE reports SET views = views + 1 WHERE id = 1
5101
+ Completed 200 OK in 24.4ms (Views: 21.7ms | ActiveRecord: 0.4ms)
5102
+  (0.3ms) rollback transaction
5103
+  (0.0ms) begin transaction
5104
+ Started GET "/reports/1.pdf" for 127.0.0.1 at 2014-09-30 22:15:16 -0700
5105
+ Processing by ReportsController#show as PDF
5106
+ Parameters: {"id"=>"1"}
5107
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
5108
+ Rendered meta_reports/_default_header.pdf.prawn (54.5ms)
5109
+ Rendered meta_reports/_default_table.pdf.prawn (13.1ms)
5110
+ Rendered meta_reports/_default_footer.pdf.prawn (1.3ms)
5111
+ Rendered meta_reports/default.pdf.prawn (72.6ms)
5112
+  (0.2ms) UPDATE reports SET views = views + 1 WHERE id = 1
5113
+ Completed 200 OK in 76.0ms (Views: 74.5ms | ActiveRecord: 0.3ms)
5114
+  (0.5ms) rollback transaction
5115
+  (0.1ms) begin transaction
5116
+ Started GET "/reports/1/edit" for 127.0.0.1 at 2014-09-30 22:15:16 -0700
5117
+ Processing by ReportsController#edit as HTML
5118
+ Parameters: {"id"=>"1"}
5119
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
5120
+ Rendered reports/_form.html.erb (55.4ms)
5121
+ Rendered reports/edit.html.erb within layouts/application (57.7ms)
5122
+ Completed 200 OK in 61.8ms (Views: 60.7ms | ActiveRecord: 0.1ms)
5123
+  (0.1ms) rollback transaction
5124
+  (0.0ms) begin transaction
5125
+ Started GET "/reports/1" for 127.0.0.1 at 2014-09-30 22:15:16 -0700
5126
+ Processing by ReportsController#show as HTML
5127
+ Parameters: {"id"=>"1"}
5128
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
5129
+ Rendered meta_reports/_default_table.html.erb (2.5ms)
5130
+ Rendered meta_reports/_default.html.erb (4.7ms)
5131
+ Rendered meta_reports/default.html.erb within layouts/application (5.5ms)
5132
+ Completed 500 Internal Server Error in 7.3ms
5133
+  (0.0ms) rollback transaction
5134
+  (0.0ms) begin transaction
5135
+ Started GET "/" for 127.0.0.1 at 2014-09-30 22:15:16 -0700
5136
+ Processing by HomeController#index as HTML
5137
+ Rendered home/index.html.erb within layouts/application (0.2ms)
5138
+ Completed 200 OK in 2.3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
5139
+  (0.0ms) rollback transaction
5140
+  (0.0ms) begin transaction
5141
+ Started GET "/reports/new" for 127.0.0.1 at 2014-09-30 22:15:16 -0700
5142
+ Processing by ReportsController#new as HTML
5143
+ Rendered reports/_form.html.erb (3.9ms)
5144
+ Rendered reports/new.html.erb within layouts/application (4.6ms)
5145
+ Completed 200 OK in 6.4ms (Views: 6.1ms | ActiveRecord: 0.0ms)
5146
+  (0.1ms) rollback transaction
5147
+  (0.0ms) begin transaction
5148
+ Started GET "/reports" for 127.0.0.1 at 2014-09-30 22:15:16 -0700
5149
+ Processing by ReportsController#index as HTML
5150
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" ORDER BY reports.title
5151
+ Rendered reports/index.html.erb within layouts/application (2.6ms)
5152
+ Completed 200 OK in 4.7ms (Views: 4.2ms | ActiveRecord: 0.1ms)
5153
+  (0.1ms) rollback transaction
5154
+ Connecting to database specified by database.yml
5155
+  (0.1ms) select sqlite_version(*)
5156
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
5157
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5158
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
5159
+ Migrating to ForTestingOnly (20130801071213)
5160
+  (0.0ms) begin transaction
5161
+  (0.5ms) CREATE TABLE "reports" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "title" varchar(255), "group" varchar(255), "direct" boolean, "views" integer, "target" varchar(255), "formats_mask" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
5162
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130801071213')
5163
+  (1.5ms) commit transaction
5164
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
5165
+ Connecting to database specified by database.yml
5166
+ Connecting to database specified by database.yml
5167
+  (0.4ms) begin transaction
5168
+  (0.0ms) rollback transaction
5169
+  (0.1ms) begin transaction
5170
+  (0.0ms) rollback transaction
5171
+  (0.0ms) begin transaction
5172
+  (0.0ms) rollback transaction
5173
+  (0.1ms) begin transaction
5174
+  (0.1ms) rollback transaction
5175
+  (0.1ms) begin transaction
5176
+  (0.1ms) rollback transaction
5177
+  (0.1ms) begin transaction
5178
+  (0.0ms) rollback transaction
5179
+  (0.0ms) begin transaction
5180
+  (0.0ms) rollback transaction
5181
+  (0.0ms) begin transaction
5182
+  (0.0ms) rollback transaction
5183
+  (0.1ms) begin transaction
5184
+  (0.0ms) rollback transaction
5185
+  (0.1ms) begin transaction
5186
+  (0.0ms) rollback transaction
5187
+  (0.0ms) begin transaction
5188
+  (0.0ms) rollback transaction
5189
+  (0.1ms) begin transaction
5190
+  (0.0ms) rollback transaction
5191
+  (0.1ms) begin transaction
5192
+  (0.1ms) rollback transaction
5193
+  (0.1ms) begin transaction
5194
+  (0.0ms) rollback transaction
5195
+  (0.1ms) begin transaction
5196
+  (0.0ms) rollback transaction
5197
+  (0.1ms) begin transaction
5198
+  (0.0ms) rollback transaction
5199
+  (0.1ms) begin transaction
5200
+  (0.0ms) rollback transaction
5201
+  (0.0ms) begin transaction
5202
+  (0.0ms) rollback transaction
5203
+  (0.0ms) begin transaction
5204
+  (0.0ms) rollback transaction
5205
+  (0.0ms) begin transaction
5206
+  (0.0ms) rollback transaction
5207
+  (0.0ms) begin transaction
5208
+  (0.0ms) rollback transaction
5209
+  (0.0ms) begin transaction
5210
+  (0.0ms) rollback transaction
5211
+  (0.0ms) begin transaction
5212
+  (0.0ms) rollback transaction
5213
+ SQL (2.6ms) DELETE FROM "reports"
5214
+  (0.1ms) begin transaction
5215
+ SQL (63.8ms) INSERT INTO "reports" ("created_at", "description", "direct", "formats_mask", "group", "name", "target", "title", "updated_at", "views") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 Oct 2014 20:44:53 UTC +00:00], ["description", "Moo, eh?"], ["direct", nil], ["formats_mask", 7], ["group", "moo"], ["name", "moo"], ["target", nil], ["title", "Le Moo"], ["updated_at", Wed, 01 Oct 2014 20:44:53 UTC +00:00], ["views", nil]]
5216
+  (1.6ms) commit transaction
5217
+  (0.1ms) begin transaction
5218
+ Started GET "/reports/1.pdf" for 127.0.0.1 at 2014-10-01 13:44:53 -0700
5219
+ Processing by ReportsController#show as PDF
5220
+ Parameters: {"id"=>"1"}
5221
+ Report Load (0.2ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
5222
+ Rendered meta_reports/_default_header.pdf.prawn (68.2ms)
5223
+ Rendered meta_reports/_default_table.pdf.prawn (16.1ms)
5224
+ Rendered meta_reports/_default_footer.pdf.prawn (1.8ms)
5225
+ Rendered meta_reports/default.pdf.prawn (105.9ms)
5226
+  (0.3ms) UPDATE reports SET views = views + 1 WHERE id = 1
5227
+ Completed 200 OK in 116.3ms (Views: 112.8ms | ActiveRecord: 0.6ms)
5228
+  (0.7ms) rollback transaction
5229
+  (0.1ms) begin transaction
5230
+ Started GET "/reports" for 127.0.0.1 at 2014-10-01 13:44:53 -0700
5231
+ Processing by ReportsController#index as HTML
5232
+ Report Load (0.2ms) SELECT "reports".* FROM "reports" ORDER BY reports.title
5233
+ Rendered reports/index.html.erb within layouts/application (6.2ms)
5234
+ Completed 200 OK in 11.5ms (Views: 10.7ms | ActiveRecord: 0.2ms)
5235
+  (0.1ms) rollback transaction
5236
+  (0.0ms) begin transaction
5237
+ Started GET "/" for 127.0.0.1 at 2014-10-01 13:44:53 -0700
5238
+ Processing by HomeController#index as HTML
5239
+ Rendered home/index.html.erb within layouts/application (0.6ms)
5240
+ Completed 200 OK in 4.1ms (Views: 3.7ms | ActiveRecord: 0.0ms)
5241
+  (0.1ms) rollback transaction
5242
+  (0.0ms) begin transaction
5243
+ Started GET "/reports/1" for 127.0.0.1 at 2014-10-01 13:44:53 -0700
5244
+ Processing by ReportsController#show as HTML
5245
+ Parameters: {"id"=>"1"}
5246
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
5247
+ Rendered meta_reports/_default_table.html.erb (3.2ms)
5248
+ Rendered meta_reports/_default.html.erb (6.2ms)
5249
+ Rendered meta_reports/default.html.erb within layouts/application (7.3ms)
5250
+ Completed 500 Internal Server Error in 10.1ms
5251
+  (0.1ms) rollback transaction
5252
+  (0.0ms) begin transaction
5253
+ Started GET "/reports/new" for 127.0.0.1 at 2014-10-01 13:44:53 -0700
5254
+ Processing by ReportsController#new as HTML
5255
+ Rendered reports/_form.html.erb (9.7ms)
5256
+ Rendered reports/new.html.erb within layouts/application (11.1ms)
5257
+ Completed 200 OK in 13.6ms (Views: 13.1ms | ActiveRecord: 0.0ms)
5258
+  (0.1ms) rollback transaction
5259
+  (0.0ms) begin transaction
5260
+ Started GET "/reports/1/edit" for 127.0.0.1 at 2014-10-01 13:44:53 -0700
5261
+ Processing by ReportsController#edit as HTML
5262
+ Parameters: {"id"=>"1"}
5263
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
5264
+ Rendered reports/_form.html.erb (5.6ms)
5265
+ Rendered reports/edit.html.erb within layouts/application (6.9ms)
5266
+ Completed 200 OK in 10.7ms (Views: 9.2ms | ActiveRecord: 0.1ms)
5267
+  (0.1ms) rollback transaction
5268
+  (0.0ms) begin transaction
5269
+ Started GET "/reports/1.xlsx" for 127.0.0.1 at 2014-10-01 13:44:53 -0700
5270
+ Processing by ReportsController#show as XLSX
5271
+ Parameters: {"id"=>"1"}
5272
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
5273
+ Rendered meta_reports/_default_header.xlsx.axlsx (26.2ms)
5274
+ Rendered meta_reports/default.xlsx.axlsx (38.0ms)
5275
+  (0.3ms) UPDATE reports SET views = views + 1 WHERE id = 1
5276
+ Completed 200 OK in 41.9ms (Views: 40.0ms | ActiveRecord: 0.5ms)
5277
+  (0.6ms) rollback transaction
5278
+ Connecting to database specified by database.yml
5279
+  (0.1ms) select sqlite_version(*)
5280
+  (100.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
5281
+  (81.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5282
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
5283
+ Migrating to ForTestingOnly (20130801071213)
5284
+  (0.0ms) begin transaction
5285
+  (0.6ms) CREATE TABLE "reports" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "title" varchar(255), "group" varchar(255), "direct" boolean, "views" integer, "target" varchar(255), "formats_mask" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
5286
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130801071213')
5287
+  (38.8ms) commit transaction
5288
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
5289
+ Connecting to database specified by database.yml
5290
+ Connecting to database specified by database.yml
5291
+  (0.4ms) begin transaction
5292
+  (0.1ms) rollback transaction
5293
+  (0.1ms) begin transaction
5294
+  (0.1ms) rollback transaction
5295
+  (0.1ms) begin transaction
5296
+  (0.0ms) rollback transaction
5297
+  (0.1ms) begin transaction
5298
+  (0.1ms) rollback transaction
5299
+  (0.0ms) begin transaction
5300
+  (0.1ms) rollback transaction
5301
+  (0.1ms) begin transaction
5302
+  (0.0ms) rollback transaction
5303
+  (0.0ms) begin transaction
5304
+  (0.0ms) rollback transaction
5305
+  (0.0ms) begin transaction
5306
+  (0.0ms) rollback transaction
5307
+  (0.1ms) begin transaction
5308
+  (0.0ms) rollback transaction
5309
+  (0.0ms) begin transaction
5310
+  (0.0ms) rollback transaction
5311
+  (0.0ms) begin transaction
5312
+  (0.0ms) rollback transaction
5313
+  (0.0ms) begin transaction
5314
+  (0.0ms) rollback transaction
5315
+  (0.1ms) begin transaction
5316
+  (0.0ms) rollback transaction
5317
+  (0.0ms) begin transaction
5318
+  (0.0ms) rollback transaction
5319
+  (0.0ms) begin transaction
5320
+  (0.0ms) rollback transaction
5321
+  (0.0ms) begin transaction
5322
+  (0.0ms) rollback transaction
5323
+  (0.0ms) begin transaction
5324
+  (0.0ms) rollback transaction
5325
+  (0.0ms) begin transaction
5326
+  (0.0ms) rollback transaction
5327
+  (0.0ms) begin transaction
5328
+  (0.0ms) rollback transaction
5329
+  (0.0ms) begin transaction
5330
+  (0.0ms) rollback transaction
5331
+  (0.0ms) begin transaction
5332
+  (0.0ms) rollback transaction
5333
+  (0.0ms) begin transaction
5334
+  (0.0ms) rollback transaction
5335
+  (0.0ms) begin transaction
5336
+  (0.0ms) rollback transaction
5337
+ SQL (27.9ms) DELETE FROM "reports"
5338
+  (0.1ms) begin transaction
5339
+ SQL (47.8ms) INSERT INTO "reports" ("created_at", "description", "direct", "formats_mask", "group", "name", "target", "title", "updated_at", "views") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 Oct 2014 21:17:00 UTC +00:00], ["description", "Moo, eh?"], ["direct", nil], ["formats_mask", 7], ["group", "moo"], ["name", "moo"], ["target", nil], ["title", "Le Moo"], ["updated_at", Wed, 01 Oct 2014 21:17:00 UTC +00:00], ["views", nil]]
5340
+  (4.9ms) commit transaction
5341
+  (0.1ms) begin transaction
5342
+ Started GET "/reports/1" for 127.0.0.1 at 2014-10-01 14:17:00 -0700
5343
+ Processing by ReportsController#show as HTML
5344
+ Parameters: {"id"=>"1"}
5345
+ Report Load (0.2ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
5346
+ Rendered meta_reports/_default_table.html.erb (3.4ms)
5347
+ Rendered meta_reports/_default.html.erb (7.0ms)
5348
+ Rendered meta_reports/default.html.erb within layouts/application (11.5ms)
5349
+ Completed 500 Internal Server Error in 21.4ms
5350
+  (0.1ms) rollback transaction
5351
+  (0.0ms) begin transaction
5352
+ Started GET "/reports" for 127.0.0.1 at 2014-10-01 14:17:00 -0700
5353
+ Processing by ReportsController#index as HTML
5354
+ Report Load (0.2ms) SELECT "reports".* FROM "reports" ORDER BY reports.title
5355
+ Rendered reports/index.html.erb within layouts/application (3.8ms)
5356
+ Completed 200 OK in 7.6ms (Views: 6.8ms | ActiveRecord: 0.2ms)
5357
+  (0.1ms) rollback transaction
5358
+  (0.1ms) begin transaction
5359
+ Started GET "/reports/1.pdf" for 127.0.0.1 at 2014-10-01 14:17:01 -0700
5360
+ Processing by ReportsController#show as PDF
5361
+ Parameters: {"id"=>"1"}
5362
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
5363
+ Rendered meta_reports/_default_header.pdf.prawn (128.8ms)
5364
+ Rendered meta_reports/_default_table.pdf.prawn (15.5ms)
5365
+ Rendered meta_reports/_default_footer.pdf.prawn (1.7ms)
5366
+ Rendered meta_reports/default.pdf.prawn (181.0ms)
5367
+  (0.3ms) UPDATE reports SET views = views + 1 WHERE id = 1
5368
+ Completed 200 OK in 184.6ms (Views: 182.8ms | ActiveRecord: 0.5ms)
5369
+  (8.0ms) rollback transaction
5370
+  (0.1ms) begin transaction
5371
+ Started GET "/" for 127.0.0.1 at 2014-10-01 14:17:01 -0700
5372
+ Processing by HomeController#index as HTML
5373
+ Rendered home/index.html.erb within layouts/application (0.4ms)
5374
+ Completed 200 OK in 3.5ms (Views: 3.1ms | ActiveRecord: 0.0ms)
5375
+  (0.1ms) rollback transaction
5376
+  (0.0ms) begin transaction
5377
+ Started GET "/reports/new" for 127.0.0.1 at 2014-10-01 14:17:01 -0700
5378
+ Processing by ReportsController#new as HTML
5379
+ Rendered reports/_form.html.erb (11.5ms)
5380
+ Rendered reports/new.html.erb within layouts/application (13.2ms)
5381
+ Completed 200 OK in 15.9ms (Views: 15.3ms | ActiveRecord: 0.0ms)
5382
+  (0.1ms) rollback transaction
5383
+  (0.1ms) begin transaction
5384
+ Started GET "/reports/1.xlsx" for 127.0.0.1 at 2014-10-01 14:17:01 -0700
5385
+ Processing by ReportsController#show as XLSX
5386
+ Parameters: {"id"=>"1"}
5387
+ Report Load (0.2ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
5388
+ Rendered meta_reports/_default_header.xlsx.axlsx (9.3ms)
5389
+ Rendered meta_reports/default.xlsx.axlsx (23.8ms)
5390
+  (0.4ms) UPDATE reports SET views = views + 1 WHERE id = 1
5391
+ Completed 200 OK in 27.9ms (Views: 25.9ms | ActiveRecord: 0.5ms)
5392
+  (1.8ms) rollback transaction
5393
+  (0.1ms) begin transaction
5394
+ Started GET "/reports/1/edit" for 127.0.0.1 at 2014-10-01 14:17:01 -0700
5395
+ Processing by ReportsController#edit as HTML
5396
+ Parameters: {"id"=>"1"}
5397
+ Report Load (0.2ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
5398
+ Rendered reports/_form.html.erb (5.7ms)
5399
+ Rendered reports/edit.html.erb within layouts/application (7.1ms)
5400
+ Completed 200 OK in 11.0ms (Views: 9.4ms | ActiveRecord: 0.2ms)
5401
+  (0.1ms) rollback transaction
5402
+ Connecting to database specified by database.yml
5403
+  (0.1ms) select sqlite_version(*)
5404
+  (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
5405
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5406
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
5407
+ Migrating to ForTestingOnly (20130801071213)
5408
+  (0.0ms) begin transaction
5409
+  (0.5ms) CREATE TABLE "reports" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "title" varchar(255), "group" varchar(255), "direct" boolean, "views" integer, "target" varchar(255), "formats_mask" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
5410
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130801071213')
5411
+  (1.9ms) commit transaction
5412
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
5413
+ Connecting to database specified by database.yml
5414
+ Connecting to database specified by database.yml
5415
+ SQL (3.4ms) DELETE FROM "reports"
5416
+  (0.1ms) begin transaction
5417
+ SQL (3.8ms) INSERT INTO "reports" ("created_at", "description", "direct", "formats_mask", "group", "name", "target", "title", "updated_at", "views") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 Oct 2014 21:19:30 UTC +00:00], ["description", "Moo, eh?"], ["direct", nil], ["formats_mask", 7], ["group", "moo"], ["name", "moo"], ["target", nil], ["title", "Le Moo"], ["updated_at", Wed, 01 Oct 2014 21:19:30 UTC +00:00], ["views", nil]]
5418
+  (1.5ms) commit transaction
5419
+  (0.1ms) begin transaction
5420
+ Started GET "/reports/1.xlsx" for 127.0.0.1 at 2014-10-01 14:19:30 -0700
5421
+ Processing by ReportsController#show as XLSX
5422
+ Parameters: {"id"=>"1"}
5423
+ Report Load (0.5ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
5424
+ Rendered meta_reports/_default_header.xlsx.axlsx (8.2ms)
5425
+ Rendered meta_reports/default.xlsx.axlsx (21.9ms)
5426
+  (0.3ms) UPDATE reports SET views = views + 1 WHERE id = 1
5427
+ Completed 200 OK in 39.1ms (Views: 32.7ms | ActiveRecord: 0.8ms)
5428
+  (0.9ms) rollback transaction
5429
+  (0.1ms) begin transaction
5430
+ Started GET "/reports" for 127.0.0.1 at 2014-10-01 14:19:30 -0700
5431
+ Processing by ReportsController#index as HTML
5432
+ Report Load (0.3ms) SELECT "reports".* FROM "reports" ORDER BY reports.title
5433
+ Rendered reports/index.html.erb within layouts/application (6.2ms)
5434
+ Completed 200 OK in 11.3ms (Views: 10.4ms | ActiveRecord: 0.3ms)
5435
+  (0.1ms) rollback transaction
5436
+  (0.1ms) begin transaction
5437
+ Started GET "/reports/1" for 127.0.0.1 at 2014-10-01 14:19:30 -0700
5438
+ Processing by ReportsController#show as HTML
5439
+ Parameters: {"id"=>"1"}
5440
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
5441
+ Rendered meta_reports/_default_table.html.erb (1.4ms)
5442
+ Rendered meta_reports/_default.html.erb (5.0ms)
5443
+ Rendered meta_reports/default.html.erb within layouts/application (6.2ms)
5444
+  (0.3ms) UPDATE reports SET views = views + 1 WHERE id = 1
5445
+ Completed 200 OK in 10.2ms (Views: 8.1ms | ActiveRecord: 0.5ms)
5446
+  (1.8ms) rollback transaction
5447
+  (0.1ms) begin transaction
5448
+ Started GET "/reports/new" for 127.0.0.1 at 2014-10-01 14:19:30 -0700
5449
+ Processing by ReportsController#new as HTML
5450
+ Rendered reports/_form.html.erb (12.1ms)
5451
+ Rendered reports/new.html.erb within layouts/application (13.8ms)
5452
+ Completed 200 OK in 17.4ms (Views: 16.7ms | ActiveRecord: 0.0ms)
5453
+  (0.1ms) rollback transaction
5454
+  (0.1ms) begin transaction
5455
+ Started GET "/reports/1.pdf" for 127.0.0.1 at 2014-10-01 14:19:30 -0700
5456
+ Processing by ReportsController#show as PDF
5457
+ Parameters: {"id"=>"1"}
5458
+ Report Load (0.2ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
5459
+ Rendered meta_reports/_default_header.pdf.prawn (81.6ms)
5460
+ Rendered meta_reports/_default_table.pdf.prawn (15.0ms)
5461
+ Rendered meta_reports/_default_footer.pdf.prawn (2.1ms)
5462
+ Rendered meta_reports/default.pdf.prawn (105.7ms)
5463
+  (0.3ms) UPDATE reports SET views = views + 1 WHERE id = 1
5464
+ Completed 200 OK in 111.2ms (Views: 108.6ms | ActiveRecord: 0.5ms)
5465
+  (0.6ms) rollback transaction
5466
+  (0.1ms) begin transaction
5467
+ Started GET "/reports/1/edit" for 127.0.0.1 at 2014-10-01 14:19:31 -0700
5468
+ Processing by ReportsController#edit as HTML
5469
+ Parameters: {"id"=>"1"}
5470
+ Report Load (0.2ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
5471
+ Rendered reports/_form.html.erb (7.0ms)
5472
+ Rendered reports/edit.html.erb within layouts/application (8.8ms)
5473
+ Completed 200 OK in 13.9ms (Views: 11.5ms | ActiveRecord: 0.2ms)
5474
+  (0.1ms) rollback transaction
5475
+  (0.0ms) begin transaction
5476
+ Started GET "/" for 127.0.0.1 at 2014-10-01 14:19:31 -0700
5477
+ Processing by HomeController#index as HTML
5478
+ Rendered home/index.html.erb within layouts/application (0.5ms)
5479
+ Completed 200 OK in 4.9ms (Views: 4.4ms | ActiveRecord: 0.0ms)
5480
+  (0.1ms) rollback transaction
5481
+  (0.1ms) begin transaction
5482
+  (0.1ms) rollback transaction
5483
+  (0.1ms) begin transaction
5484
+  (0.1ms) rollback transaction
5485
+  (0.1ms) begin transaction
5486
+  (0.1ms) rollback transaction
5487
+  (0.1ms) begin transaction
5488
+  (0.0ms) rollback transaction
5489
+  (0.1ms) begin transaction
5490
+  (0.0ms) rollback transaction
5491
+  (0.1ms) begin transaction
5492
+  (0.0ms) rollback transaction
5493
+  (0.1ms) begin transaction
5494
+  (0.0ms) rollback transaction
5495
+  (0.1ms) begin transaction
5496
+  (0.0ms) rollback transaction
5497
+  (0.1ms) begin transaction
5498
+  (0.0ms) rollback transaction
5499
+  (0.1ms) begin transaction
5500
+  (0.0ms) rollback transaction
5501
+  (0.1ms) begin transaction
5502
+  (0.1ms) rollback transaction
5503
+  (0.1ms) begin transaction
5504
+  (0.1ms) rollback transaction
5505
+  (0.1ms) begin transaction
5506
+  (0.0ms) rollback transaction
5507
+  (0.0ms) begin transaction
5508
+  (0.0ms) rollback transaction
5509
+  (0.1ms) begin transaction
5510
+  (0.1ms) rollback transaction
5511
+  (0.1ms) begin transaction
5512
+  (0.1ms) rollback transaction
5513
+  (0.0ms) begin transaction
5514
+  (0.0ms) rollback transaction
5515
+  (0.0ms) begin transaction
5516
+  (0.0ms) rollback transaction
5517
+  (0.0ms) begin transaction
5518
+  (0.0ms) rollback transaction
5519
+  (0.0ms) begin transaction
5520
+  (0.0ms) rollback transaction
5521
+  (0.0ms) begin transaction
5522
+  (0.0ms) rollback transaction
5523
+  (0.0ms) begin transaction
5524
+  (0.0ms) rollback transaction
5525
+  (0.0ms) begin transaction
5526
+  (0.0ms) rollback transaction
5527
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
5528
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5529
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5530
+ Migrating to ForTestingOnly (20130801071213)
5531
+  (0.1ms) begin transaction
5532
+  (0.4ms) CREATE TABLE "reports" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "title" varchar(255), "group" varchar(255), "direct" boolean, "views" integer, "target" varchar(255), "formats_mask" integer, "created_at" datetime, "updated_at" datetime) 
5533
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20130801071213"]]
5534
+  (2.5ms) commit transaction
5535
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5536
+ SQL (3.7ms) DELETE FROM "reports"
5537
+  (0.1ms) begin transaction
5538
+ SQL (3.6ms) INSERT INTO "reports" ("created_at", "description", "formats_mask", "group", "name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 Oct 2014 21:21:52 UTC +00:00], ["description", "Moo, eh?"], ["formats_mask", 7], ["group", "moo"], ["name", "moo"], ["title", "Le Moo"], ["updated_at", Wed, 01 Oct 2014 21:21:52 UTC +00:00]]
5539
+  (2.2ms) commit transaction
5540
+  (0.1ms) begin transaction
5541
+ Started GET "/reports" for 127.0.0.1 at 2014-10-01 14:21:52 -0700
5542
+ Processing by ReportsController#index as HTML
5543
+ Report Load (0.3ms) SELECT "reports".* FROM "reports" ORDER BY reports.title
5544
+ Rendered reports/index.html.erb within layouts/application (4.9ms)
5545
+ Completed 200 OK in 111ms (Views: 110.2ms | ActiveRecord: 0.3ms)
5546
+  (0.1ms) rollback transaction
5547
+  (0.1ms) begin transaction
5548
+ Started GET "/reports/1" for 127.0.0.1 at 2014-10-01 14:21:52 -0700
5549
+ Processing by ReportsController#show as HTML
5550
+ Parameters: {"id"=>"1"}
5551
+ Report Load (0.2ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
5552
+ Rendered meta_reports/_default_table.html.erb (2.6ms)
5553
+ Rendered meta_reports/_default.html.erb (11.3ms)
5554
+ Rendered meta_reports/default.html.erb within layouts/application (15.5ms)
5555
+  (0.5ms) UPDATE reports SET views = views + 1 WHERE id = 1
5556
+ Completed 200 OK in 22ms (Views: 18.6ms | ActiveRecord: 0.8ms)
5557
+  (0.6ms) rollback transaction
5558
+  (0.2ms) begin transaction
5559
+ Started GET "/reports/1.xlsx" for 127.0.0.1 at 2014-10-01 14:21:52 -0700
5560
+ Processing by ReportsController#show as XLSX
5561
+ Parameters: {"id"=>"1"}
5562
+ Report Load (0.3ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
5563
+ Rendered meta_reports/_default_header.xlsx.axlsx (8.5ms)
5564
+ Rendered meta_reports/default.xlsx.axlsx (101.7ms)
5565
+  (0.5ms) UPDATE reports SET views = views + 1 WHERE id = 1
5566
+ Completed 200 OK in 109ms (Views: 105.8ms | ActiveRecord: 0.7ms)
5567
+  (0.8ms) rollback transaction
5568
+  (0.1ms) begin transaction
5569
+ Started GET "/reports/new" for 127.0.0.1 at 2014-10-01 14:21:52 -0700
5570
+ Processing by ReportsController#new as HTML
5571
+ Rendered reports/_form.html.erb (23.3ms)
5572
+ Rendered reports/new.html.erb within layouts/application (25.5ms)
5573
+ Completed 200 OK in 29ms (Views: 28.3ms | ActiveRecord: 0.0ms)
5574
+  (0.1ms) rollback transaction
5575
+  (0.1ms) begin transaction
5576
+ Started GET "/reports/1.pdf" for 127.0.0.1 at 2014-10-01 14:21:52 -0700
5577
+ Processing by ReportsController#show as PDF
5578
+ Parameters: {"id"=>"1"}
5579
+ Report Load (0.2ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
5580
+ Rendered meta_reports/_default_header.pdf.prawn (80.3ms)
5581
+ Rendered meta_reports/_default_table.pdf.prawn (20.6ms)
5582
+ Rendered meta_reports/_default_footer.pdf.prawn (2.9ms)
5583
+ Rendered meta_reports/default.pdf.prawn (114.2ms)
5584
+  (0.5ms) UPDATE reports SET views = views + 1 WHERE id = 1
5585
+ Completed 200 OK in 119ms (Views: 116.6ms | ActiveRecord: 0.7ms)
5586
+  (0.7ms) rollback transaction
5587
+  (0.1ms) begin transaction
5588
+ Started GET "/reports/1/edit" for 127.0.0.1 at 2014-10-01 14:21:52 -0700
5589
+ Processing by ReportsController#edit as HTML
5590
+ Parameters: {"id"=>"1"}
5591
+ Report Load (0.2ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
5592
+ Rendered reports/_form.html.erb (5.6ms)
5593
+ Rendered reports/edit.html.erb within layouts/application (6.9ms)
5594
+ Completed 200 OK in 11ms (Views: 9.5ms | ActiveRecord: 0.2ms)
5595
+  (0.1ms) rollback transaction
5596
+  (0.1ms) begin transaction
5597
+ Started GET "/" for 127.0.0.1 at 2014-10-01 14:21:52 -0700
5598
+ Processing by HomeController#index as HTML
5599
+ Rendered home/index.html.erb within layouts/application (0.5ms)
5600
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
5601
+  (0.1ms) rollback transaction
5602
+  (0.1ms) begin transaction
5603
+  (0.1ms) rollback transaction
5604
+  (0.1ms) begin transaction
5605
+  (0.1ms) rollback transaction
5606
+  (0.1ms) begin transaction
5607
+  (0.1ms) rollback transaction
5608
+  (0.1ms) begin transaction
5609
+  (0.1ms) rollback transaction
5610
+  (0.1ms) begin transaction
5611
+  (0.1ms) rollback transaction
5612
+  (0.1ms) begin transaction
5613
+  (0.1ms) rollback transaction
5614
+  (0.1ms) begin transaction
5615
+  (0.1ms) rollback transaction
5616
+  (0.1ms) begin transaction
5617
+  (0.1ms) rollback transaction
5618
+  (0.1ms) begin transaction
5619
+  (0.1ms) rollback transaction
5620
+  (0.1ms) begin transaction
5621
+  (0.1ms) rollback transaction
5622
+  (0.1ms) begin transaction
5623
+  (0.1ms) rollback transaction
5624
+  (0.1ms) begin transaction
5625
+  (0.1ms) rollback transaction
5626
+  (0.1ms) begin transaction
5627
+  (0.1ms) rollback transaction
5628
+  (0.1ms) begin transaction
5629
+  (0.1ms) rollback transaction
5630
+  (0.1ms) begin transaction
5631
+  (0.1ms) rollback transaction
5632
+  (0.1ms) begin transaction
5633
+  (0.1ms) rollback transaction
5634
+  (0.1ms) begin transaction
5635
+  (0.1ms) rollback transaction
5636
+  (0.1ms) begin transaction
5637
+  (0.1ms) rollback transaction
5638
+  (0.1ms) begin transaction
5639
+  (0.1ms) rollback transaction
5640
+  (0.1ms) begin transaction
5641
+  (0.1ms) rollback transaction
5642
+  (0.1ms) begin transaction
5643
+  (0.1ms) rollback transaction
5644
+  (0.1ms) begin transaction
5645
+  (0.1ms) rollback transaction
5646
+  (0.1ms) begin transaction
5647
+  (0.1ms) rollback transaction
5648
+ Connecting to database specified by database.yml
5649
+  (0.1ms) select sqlite_version(*)
5650
+  (10.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
5651
+  (6.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5652
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
5653
+ Migrating to ForTestingOnly (20130801071213)
5654
+  (0.0ms) begin transaction
5655
+  (0.7ms) CREATE TABLE "reports" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "title" varchar(255), "group" varchar(255), "direct" boolean, "views" integer, "target" varchar(255), "formats_mask" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
5656
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130801071213')
5657
+  (1.5ms) commit transaction
5658
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
5659
+ Connecting to database specified by database.yml
5660
+ Connecting to database specified by database.yml
5661
+ SQL (3.2ms) DELETE FROM "reports"
5662
+  (0.1ms) begin transaction
5663
+ SQL (26.4ms) INSERT INTO "reports" ("created_at", "description", "direct", "formats_mask", "group", "name", "target", "title", "updated_at", "views") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 01 Oct 2014 21:22:16 UTC +00:00], ["description", "Moo, eh?"], ["direct", nil], ["formats_mask", 7], ["group", "moo"], ["name", "moo"], ["target", nil], ["title", "Le Moo"], ["updated_at", Wed, 01 Oct 2014 21:22:16 UTC +00:00], ["views", nil]]
5664
+  (1.9ms) commit transaction
5665
+  (0.1ms) begin transaction
5666
+ Started GET "/" for 127.0.0.1 at 2014-10-01 14:22:16 -0700
5667
+ Processing by HomeController#index as HTML
5668
+ Rendered home/index.html.erb within layouts/application (1.4ms)
5669
+ Completed 200 OK in 11.0ms (Views: 10.6ms | ActiveRecord: 0.0ms)
5670
+  (0.1ms) rollback transaction
5671
+  (0.0ms) begin transaction
5672
+ Started GET "/reports" for 127.0.0.1 at 2014-10-01 14:22:16 -0700
5673
+ Processing by ReportsController#index as HTML
5674
+ Report Load (0.2ms) SELECT "reports".* FROM "reports" ORDER BY reports.title
5675
+ Rendered reports/index.html.erb within layouts/application (4.7ms)
5676
+ Completed 200 OK in 8.1ms (Views: 7.4ms | ActiveRecord: 0.2ms)
5677
+  (0.1ms) rollback transaction
5678
+  (0.0ms) begin transaction
5679
+ Started GET "/reports/1" for 127.0.0.1 at 2014-10-01 14:22:16 -0700
5680
+ Processing by ReportsController#show as HTML
5681
+ Parameters: {"id"=>"1"}
5682
+ Report Load (0.2ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
5683
+ Rendered meta_reports/_default_table.html.erb (1.5ms)
5684
+ Rendered meta_reports/_default.html.erb (5.1ms)
5685
+ Rendered meta_reports/default.html.erb within layouts/application (8.6ms)
5686
+  (0.4ms) UPDATE reports SET views = views + 1 WHERE id = 1
5687
+ Completed 200 OK in 14.0ms (Views: 10.8ms | ActiveRecord: 0.6ms)
5688
+  (0.6ms) rollback transaction
5689
+  (0.1ms) begin transaction
5690
+ Started GET "/reports/1/edit" for 127.0.0.1 at 2014-10-01 14:22:16 -0700
5691
+ Processing by ReportsController#edit as HTML
5692
+ Parameters: {"id"=>"1"}
5693
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
5694
+ Rendered reports/_form.html.erb (10.8ms)
5695
+ Rendered reports/edit.html.erb within layouts/application (12.7ms)
5696
+ Completed 200 OK in 16.3ms (Views: 14.8ms | ActiveRecord: 0.1ms)
5697
+  (0.1ms) rollback transaction
5698
+  (0.0ms) begin transaction
5699
+ Started GET "/reports/1.xlsx" for 127.0.0.1 at 2014-10-01 14:22:16 -0700
5700
+ Processing by ReportsController#show as XLSX
5701
+ Parameters: {"id"=>"1"}
5702
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
5703
+ Rendered meta_reports/_default_header.xlsx.axlsx (8.3ms)
5704
+ Rendered meta_reports/default.xlsx.axlsx (20.3ms)
5705
+  (0.4ms) UPDATE reports SET views = views + 1 WHERE id = 1
5706
+ Completed 200 OK in 24.2ms (Views: 22.3ms | ActiveRecord: 0.5ms)
5707
+  (0.7ms) rollback transaction
5708
+  (0.1ms) begin transaction
5709
+ Started GET "/reports/1.pdf" for 127.0.0.1 at 2014-10-01 14:22:16 -0700
5710
+ Processing by ReportsController#show as PDF
5711
+ Parameters: {"id"=>"1"}
5712
+ Report Load (0.1ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = ? LIMIT 1 [["id", "1"]]
5713
+ Rendered meta_reports/_default_header.pdf.prawn (94.4ms)
5714
+ Rendered meta_reports/_default_table.pdf.prawn (61.0ms)
5715
+ Rendered meta_reports/_default_footer.pdf.prawn (1.9ms)
5716
+ Rendered meta_reports/default.pdf.prawn (164.2ms)
5717
+  (0.3ms) UPDATE reports SET views = views + 1 WHERE id = 1
5718
+ Completed 200 OK in 168.3ms (Views: 166.3ms | ActiveRecord: 0.5ms)
5719
+  (0.6ms) rollback transaction
5720
+  (0.1ms) begin transaction
5721
+ Started GET "/reports/new" for 127.0.0.1 at 2014-10-01 14:22:16 -0700
5722
+ Processing by ReportsController#new as HTML
5723
+ Rendered reports/_form.html.erb (6.8ms)
5724
+ Rendered reports/new.html.erb within layouts/application (8.2ms)
5725
+ Completed 200 OK in 11.8ms (Views: 11.0ms | ActiveRecord: 0.0ms)
5726
+  (0.1ms) rollback transaction
5727
+  (0.1ms) begin transaction
5728
+  (0.1ms) rollback transaction
5729
+  (0.1ms) begin transaction
5730
+  (0.1ms) rollback transaction
5731
+  (0.0ms) begin transaction
5732
+  (0.0ms) rollback transaction
5733
+  (0.0ms) begin transaction
5734
+  (0.0ms) rollback transaction
5735
+  (0.0ms) begin transaction
5736
+  (0.0ms) rollback transaction
5737
+  (0.0ms) begin transaction
5738
+  (0.0ms) rollback transaction
5739
+  (0.0ms) begin transaction
5740
+  (0.0ms) rollback transaction
5741
+  (0.0ms) begin transaction
5742
+  (0.0ms) rollback transaction
5743
+  (0.0ms) begin transaction
5744
+  (0.0ms) rollback transaction
5745
+  (0.0ms) begin transaction
5746
+  (0.0ms) rollback transaction
5747
+  (0.0ms) begin transaction
5748
+  (0.0ms) rollback transaction
5749
+  (0.0ms) begin transaction
5750
+  (0.0ms) rollback transaction
5751
+  (0.0ms) begin transaction
5752
+  (0.0ms) rollback transaction
5753
+  (0.0ms) begin transaction
5754
+  (0.0ms) rollback transaction
5755
+  (0.0ms) begin transaction
5756
+  (0.0ms) rollback transaction
5757
+  (0.0ms) begin transaction
5758
+  (0.0ms) rollback transaction
5759
+  (0.0ms) begin transaction
5760
+  (0.0ms) rollback transaction
5761
+  (0.1ms) begin transaction
5762
+  (0.0ms) rollback transaction
5763
+  (0.0ms) begin transaction
5764
+  (0.0ms) rollback transaction
5765
+  (0.0ms) begin transaction
5766
+  (0.0ms) rollback transaction
5767
+  (0.1ms) begin transaction
5768
+  (0.0ms) rollback transaction
5769
+  (0.0ms) begin transaction
5770
+  (0.0ms) rollback transaction
5771
+  (0.0ms) begin transaction
5772
+  (0.0ms) rollback transaction