meta_reports 0.0.3 → 0.0.4

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 (45) hide show
  1. checksums.yaml +4 -4
  2. data/Guardfile +1 -0
  3. data/README.md +65 -12
  4. data/lib/generators/meta_reports/install_engine_generator.rb +4 -0
  5. data/{app/controllers/meta_reports → lib/generators/meta_reports/templates/controllers}/reports_controller.rb +0 -0
  6. data/lib/generators/meta_reports/templates/models/report.rb +19 -2
  7. data/lib/generators/meta_reports/templates/models/report_non_activerecord.rb +19 -2
  8. data/lib/meta_reports/version.rb +1 -1
  9. data/lib/tasks/meta_reports_tasks.rake +59 -4
  10. data/spec/dummy/app/assets/stylesheets/lib/metareports_color_variables.scss +9 -0
  11. data/spec/dummy/app/assets/stylesheets/lib/metareports_colors.scss +10 -0
  12. data/spec/dummy/app/controllers/meta_reports/reports_controller.rb +91 -0
  13. data/spec/dummy/app/models/meta_reports/report.rb +19 -3
  14. data/spec/dummy/db/development.sqlite3 +0 -0
  15. data/spec/dummy/db/migrate/{20130801071213_create_meta_reports_reports.rb → 20130801071213_for_testing_only.rb} +1 -1
  16. data/spec/dummy/db/schema.rb +5 -5
  17. data/spec/dummy/db/test.sqlite3 +0 -0
  18. data/spec/dummy/log/development.log +1285 -0
  19. data/spec/dummy/log/test.log +781 -0
  20. data/spec/dummy/tmp/cache/assets/CD1/A80/sprockets%2F25be813f3840b407d514e03973fbac40 +0 -0
  21. data/spec/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  22. data/spec/dummy/tmp/cache/assets/CDC/FB0/sprockets%2F16b037c6f739184fc67a82dc140a3b83 +0 -0
  23. data/spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  24. data/spec/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  25. data/spec/dummy/tmp/cache/assets/DDC/340/sprockets%2F8ad88a197ff3462ea8dd3ad7b1e2b7e9 +0 -0
  26. data/spec/dummy/tmp/cache/assets/DF1/CD0/sprockets%2F3b66bd14b91d4fb176ce0a30ab5fd9bf +0 -0
  27. data/spec/dummy/tmp/cache/assets/test/sass/cd99a83fa417594c8715ee09005855a11886141c/metareports_color_variables.scssc +0 -0
  28. data/spec/dummy/tmp/cache/assets/test/sass/cd99a83fa417594c8715ee09005855a11886141c/metareports_colors.scssc +0 -0
  29. data/spec/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  30. data/spec/dummy/tmp/cache/assets/test/sprockets/16b037c6f739184fc67a82dc140a3b83 +0 -0
  31. data/spec/dummy/tmp/cache/assets/test/sprockets/25be813f3840b407d514e03973fbac40 +0 -0
  32. data/spec/dummy/tmp/cache/assets/test/sprockets/2e7ca7e84b7c22471bbca0e4504a2597 +0 -0
  33. data/spec/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  34. data/spec/dummy/tmp/cache/assets/test/sprockets/34d1d79bff5dc36e7f78550df20eec85 +0 -0
  35. data/spec/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  36. data/spec/dummy/tmp/cache/assets/test/sprockets/3b66bd14b91d4fb176ce0a30ab5fd9bf +0 -0
  37. data/spec/dummy/tmp/cache/assets/test/sprockets/7d10cf1420e7efe789dd0a850b92fe72 +0 -0
  38. data/spec/dummy/tmp/cache/assets/test/sprockets/89b49044c6f7d85bbb660b73a9a4e181 +0 -0
  39. data/spec/dummy/tmp/cache/assets/test/sprockets/8ad88a197ff3462ea8dd3ad7b1e2b7e9 +0 -0
  40. data/spec/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  41. data/spec/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  42. data/spec/generators/install_engine_spec.rb +13 -3
  43. data/spec/tasks/meta_reports_rake_spec.rb +58 -0
  44. metadata +55 -7
  45. data/spec/dummy/README.rdoc +0 -261
@@ -1960,3 +1960,784 @@ Completed 200 OK in 114ms (Views: 112.4ms | ActiveRecord: 0.4ms)
1960
1960
   (0.1ms) rollback transaction
1961
1961
   (0.1ms) begin transaction
1962
1962
   (0.1ms) rollback transaction
1963
+ Connecting to database specified by database.yml
1964
+  (0.1ms) select sqlite_version(*)
1965
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1966
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1967
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1968
+ Migrating to CreateMetaReportsReports (20130801071213)
1969
+  (0.0ms) begin transaction
1970
+  (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)
1971
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130801071213')
1972
+  (17.9ms) commit transaction
1973
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1974
+ Connecting to database specified by database.yml
1975
+ SQL (16.0ms) DELETE FROM "meta_reports_reports"
1976
+  (0.1ms) begin transaction
1977
+ SQL (53.5ms) INSERT INTO "meta_reports_reports" ("created_at", "description", "direct", "formats_mask", "group", "name", "target", "title", "updated_at", "views") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 10 Oct 2013 02:22:23 UTC +00:00], ["description", "Moo, eh?"], ["direct", nil], ["formats_mask", 7], ["group", "moo"], ["name", "moo"], ["target", nil], ["title", "Le Moo"], ["updated_at", Thu, 10 Oct 2013 02:22:23 UTC +00:00], ["views", nil]]
1978
+  (1.3ms) commit transaction
1979
+  (0.0ms) begin transaction
1980
+ Started GET "/" for 127.0.0.1 at 2013-10-09 19:22:23 -0700
1981
+ Processing by HomeController#index as HTML
1982
+ Rendered home/index.html.erb within layouts/application (1.5ms)
1983
+ Completed 200 OK in 42ms (Views: 41.4ms | ActiveRecord: 0.0ms)
1984
+  (0.1ms) rollback transaction
1985
+  (0.0ms) begin transaction
1986
+ Started GET "/meta_reports/1.pdf" for 127.0.0.1 at 2013-10-09 19:22:24 -0700
1987
+ Processing by MetaReports::ReportsController#show as PDF
1988
+ Parameters: {"id"=>"1"}
1989
+ MetaReports::Report Load (0.2ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
1990
+ title: "Le Moo"
1991
+ Rendered meta_reports/reports/templates/_default_header.pdf.prawn (151.7ms)
1992
+ Rendered meta_reports/reports/templates/_default_table.pdf.prawn (16.8ms)
1993
+ Rendered meta_reports/reports/templates/_default_footer.pdf.prawn (1.3ms)
1994
+ Rendered meta_reports/reports/templates/default.pdf.prawn (191.5ms)
1995
+  (0.2ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
1996
+ Completed 200 OK in 196ms (Views: 193.9ms | ActiveRecord: 0.4ms)
1997
+  (0.6ms) rollback transaction
1998
+  (0.0ms) begin transaction
1999
+ Started GET "/meta_reports" for 127.0.0.1 at 2013-10-09 19:22:24 -0700
2000
+ Processing by MetaReports::ReportsController#index as HTML
2001
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" ORDER BY meta_reports_reports.title
2002
+ Rendered meta_reports/reports/index.html.erb within layouts/application (29.8ms)
2003
+ Completed 200 OK in 33ms (Views: 32.7ms | ActiveRecord: 0.1ms)
2004
+  (0.1ms) rollback transaction
2005
+  (0.0ms) begin transaction
2006
+ Started GET "/meta_reports/1" for 127.0.0.1 at 2013-10-09 19:22:24 -0700
2007
+ Processing by MetaReports::ReportsController#show as HTML
2008
+ Parameters: {"id"=>"1"}
2009
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
2010
+ Rendered meta_reports/reports/templates/_default_table.html.erb (1.2ms)
2011
+ Rendered meta_reports/reports/templates/_default.html.erb (4.2ms)
2012
+ Rendered meta_reports/reports/templates/default.html.erb within layouts/application (5.2ms)
2013
+  (0.3ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
2014
+ Completed 200 OK in 9ms (Views: 7.1ms | ActiveRecord: 0.4ms)
2015
+  (0.5ms) rollback transaction
2016
+  (0.0ms) begin transaction
2017
+ Started GET "/meta_reports/1.xlsx" for 127.0.0.1 at 2013-10-09 19:22:24 -0700
2018
+ Processing by MetaReports::ReportsController#show as XLSX
2019
+ Parameters: {"id"=>"1"}
2020
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
2021
+ Rendered meta_reports/reports/templates/_default_header.xlsx.axlsx (6.6ms)
2022
+ Rendered meta_reports/reports/templates/default.xlsx.axlsx (57.7ms)
2023
+  (0.3ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
2024
+ Completed 200 OK in 62ms (Views: 60.4ms | ActiveRecord: 0.4ms)
2025
+  (0.6ms) rollback transaction
2026
+  (0.0ms) begin transaction
2027
+  (0.0ms) rollback transaction
2028
+  (0.0ms) begin transaction
2029
+  (0.0ms) rollback transaction
2030
+  (0.0ms) begin transaction
2031
+  (0.0ms) rollback transaction
2032
+  (0.0ms) begin transaction
2033
+  (0.0ms) rollback transaction
2034
+  (0.0ms) begin transaction
2035
+  (0.0ms) rollback transaction
2036
+  (0.0ms) begin transaction
2037
+  (0.0ms) rollback transaction
2038
+  (0.0ms) begin transaction
2039
+  (0.0ms) rollback transaction
2040
+  (0.0ms) begin transaction
2041
+  (0.1ms) rollback transaction
2042
+  (0.0ms) begin transaction
2043
+  (0.1ms) rollback transaction
2044
+  (0.0ms) begin transaction
2045
+  (0.1ms) rollback transaction
2046
+  (0.1ms) begin transaction
2047
+  (0.0ms) rollback transaction
2048
+  (0.0ms) begin transaction
2049
+  (0.1ms) rollback transaction
2050
+  (0.0ms) begin transaction
2051
+  (0.0ms) rollback transaction
2052
+  (0.0ms) begin transaction
2053
+  (0.0ms) rollback transaction
2054
+  (0.0ms) begin transaction
2055
+  (0.0ms) rollback transaction
2056
+  (0.0ms) begin transaction
2057
+  (0.0ms) rollback transaction
2058
+  (0.0ms) begin transaction
2059
+  (0.0ms) rollback transaction
2060
+  (0.0ms) begin transaction
2061
+  (0.0ms) rollback transaction
2062
+  (0.0ms) begin transaction
2063
+  (0.0ms) rollback transaction
2064
+  (0.0ms) begin transaction
2065
+  (0.0ms) rollback transaction
2066
+  (0.0ms) begin transaction
2067
+  (0.0ms) rollback transaction
2068
+  (0.0ms) begin transaction
2069
+  (0.0ms) rollback transaction
2070
+  (0.0ms) begin transaction
2071
+  (0.0ms) rollback transaction
2072
+ Connecting to database specified by database.yml
2073
+  (0.1ms) select sqlite_version(*)
2074
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2075
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2076
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
2077
+ Migrating to ForTestingOnly (20130801071213)
2078
+  (0.0ms) begin transaction
2079
+  (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)
2080
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130801071213')
2081
+  (13.2ms) commit transaction
2082
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2083
+ Connecting to database specified by database.yml
2084
+ SQL (23.0ms) DELETE FROM "meta_reports_reports"
2085
+  (0.1ms) begin transaction
2086
+ SQL (3.2ms) INSERT INTO "meta_reports_reports" ("created_at", "description", "direct", "formats_mask", "group", "name", "target", "title", "updated_at", "views") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 16 Oct 2013 01:29:50 UTC +00:00], ["description", "Moo, eh?"], ["direct", nil], ["formats_mask", 7], ["group", "moo"], ["name", "moo"], ["target", nil], ["title", "Le Moo"], ["updated_at", Wed, 16 Oct 2013 01:29:50 UTC +00:00], ["views", nil]]
2087
+  (6.7ms) commit transaction
2088
+  (0.0ms) begin transaction
2089
+ Started GET "/" for 127.0.0.1 at 2013-10-15 18:29:50 -0700
2090
+ Processing by HomeController#index as HTML
2091
+ Rendered home/index.html.erb within layouts/application (1.0ms)
2092
+ Completed 200 OK in 42ms (Views: 41.9ms | ActiveRecord: 0.0ms)
2093
+  (0.1ms) rollback transaction
2094
+  (0.0ms) begin transaction
2095
+ Started GET "/meta_reports" for 127.0.0.1 at 2013-10-15 18:29:50 -0700
2096
+ Processing by MetaReports::ReportsController#index as HTML
2097
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" ORDER BY meta_reports_reports.title
2098
+ Rendered meta_reports/reports/index.html.erb within layouts/application (4.5ms)
2099
+ Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.1ms)
2100
+  (0.1ms) rollback transaction
2101
+  (0.0ms) begin transaction
2102
+ Started GET "/meta_reports/1.pdf" for 127.0.0.1 at 2013-10-15 18:29:50 -0700
2103
+ Processing by MetaReports::ReportsController#show as PDF
2104
+ Parameters: {"id"=>"1"}
2105
+ MetaReports::Report Load (0.2ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
2106
+ title: "Le Moo"
2107
+ Rendered meta_reports/reports/templates/_default_header.pdf.prawn (66.6ms)
2108
+ Rendered meta_reports/reports/templates/_default_table.pdf.prawn (58.0ms)
2109
+ Rendered meta_reports/reports/templates/_default_footer.pdf.prawn (1.5ms)
2110
+ Rendered meta_reports/reports/templates/default.pdf.prawn (132.9ms)
2111
+  (0.3ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
2112
+ Completed 200 OK in 138ms (Views: 135.3ms | ActiveRecord: 0.4ms)
2113
+  (0.7ms) rollback transaction
2114
+  (0.0ms) begin transaction
2115
+ Started GET "/meta_reports/1" for 127.0.0.1 at 2013-10-15 18:29:51 -0700
2116
+ Processing by MetaReports::ReportsController#show as HTML
2117
+ Parameters: {"id"=>"1"}
2118
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
2119
+ Rendered meta_reports/reports/templates/_default_table.html.erb (1.1ms)
2120
+ Rendered meta_reports/reports/templates/_default.html.erb (3.7ms)
2121
+ Rendered meta_reports/reports/templates/default.html.erb within layouts/application (4.6ms)
2122
+  (0.2ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
2123
+ Completed 200 OK in 8ms (Views: 6.3ms | ActiveRecord: 0.3ms)
2124
+  (0.5ms) rollback transaction
2125
+  (0.1ms) begin transaction
2126
+ Started GET "/meta_reports/1.xlsx" for 127.0.0.1 at 2013-10-15 18:29:51 -0700
2127
+ Processing by MetaReports::ReportsController#show as XLSX
2128
+ Parameters: {"id"=>"1"}
2129
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
2130
+ Rendered meta_reports/reports/templates/_default_header.xlsx.axlsx (6.0ms)
2131
+ Rendered meta_reports/reports/templates/default.xlsx.axlsx (62.6ms)
2132
+  (0.3ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
2133
+ Completed 200 OK in 67ms (Views: 65.1ms | ActiveRecord: 0.4ms)
2134
+  (1.2ms) rollback transaction
2135
+  (0.0ms) begin transaction
2136
+  (0.0ms) rollback transaction
2137
+  (0.0ms) begin transaction
2138
+  (0.1ms) rollback transaction
2139
+  (0.0ms) begin transaction
2140
+  (0.0ms) rollback transaction
2141
+  (0.0ms) begin transaction
2142
+  (0.1ms) rollback transaction
2143
+  (0.1ms) begin transaction
2144
+  (0.1ms) rollback transaction
2145
+  (0.0ms) begin transaction
2146
+  (0.0ms) rollback transaction
2147
+  (0.0ms) begin transaction
2148
+  (0.0ms) rollback transaction
2149
+  (0.0ms) begin transaction
2150
+  (0.0ms) rollback transaction
2151
+  (0.0ms) begin transaction
2152
+  (0.0ms) rollback transaction
2153
+  (0.0ms) begin transaction
2154
+  (0.0ms) rollback transaction
2155
+  (0.0ms) begin transaction
2156
+  (0.0ms) rollback transaction
2157
+  (0.0ms) begin transaction
2158
+  (0.0ms) rollback transaction
2159
+  (0.0ms) begin transaction
2160
+  (0.0ms) rollback transaction
2161
+  (0.0ms) begin transaction
2162
+  (0.0ms) rollback transaction
2163
+  (0.0ms) begin transaction
2164
+  (0.0ms) rollback transaction
2165
+  (0.1ms) begin transaction
2166
+  (0.0ms) rollback transaction
2167
+  (0.0ms) begin transaction
2168
+  (0.1ms) rollback transaction
2169
+  (0.0ms) begin transaction
2170
+  (0.1ms) rollback transaction
2171
+  (0.1ms) begin transaction
2172
+  (0.0ms) rollback transaction
2173
+  (0.1ms) begin transaction
2174
+  (0.0ms) rollback transaction
2175
+  (0.1ms) begin transaction
2176
+  (0.0ms) rollback transaction
2177
+  (0.1ms) begin transaction
2178
+  (0.0ms) rollback transaction
2179
+  (0.1ms) begin transaction
2180
+  (0.0ms) rollback transaction
2181
+  (0.0ms) begin transaction
2182
+  (0.0ms) rollback transaction
2183
+  (0.0ms) begin transaction
2184
+  (0.0ms) rollback transaction
2185
+ Connecting to database specified by database.yml
2186
+  (0.0ms) select sqlite_version(*)
2187
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2188
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2189
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
2190
+ Migrating to ForTestingOnly (20130801071213)
2191
+  (0.0ms) begin transaction
2192
+  (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)
2193
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130801071213')
2194
+  (4.8ms) commit transaction
2195
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2196
+ Connecting to database specified by database.yml
2197
+  (0.2ms) begin transaction
2198
+  (0.0ms) rollback transaction
2199
+  (0.0ms) begin transaction
2200
+  (0.0ms) rollback transaction
2201
+  (0.0ms) begin transaction
2202
+  (0.0ms) rollback transaction
2203
+  (0.0ms) begin transaction
2204
+  (0.0ms) rollback transaction
2205
+  (0.0ms) begin transaction
2206
+  (0.0ms) rollback transaction
2207
+  (0.0ms) begin transaction
2208
+  (0.0ms) rollback transaction
2209
+  (0.0ms) begin transaction
2210
+  (0.0ms) rollback transaction
2211
+  (0.0ms) begin transaction
2212
+  (0.0ms) rollback transaction
2213
+  (0.0ms) begin transaction
2214
+  (0.1ms) rollback transaction
2215
+  (0.2ms) begin transaction
2216
+  (0.1ms) rollback transaction
2217
+  (0.1ms) begin transaction
2218
+  (0.1ms) rollback transaction
2219
+  (0.1ms) begin transaction
2220
+  (0.0ms) rollback transaction
2221
+  (0.0ms) begin transaction
2222
+  (0.0ms) rollback transaction
2223
+  (0.0ms) begin transaction
2224
+  (0.0ms) rollback transaction
2225
+  (0.1ms) begin transaction
2226
+  (0.0ms) rollback transaction
2227
+  (0.0ms) begin transaction
2228
+  (0.0ms) rollback transaction
2229
+  (0.0ms) begin transaction
2230
+  (0.0ms) rollback transaction
2231
+  (0.0ms) begin transaction
2232
+  (0.0ms) rollback transaction
2233
+  (0.1ms) begin transaction
2234
+  (0.0ms) rollback transaction
2235
+  (0.0ms) begin transaction
2236
+  (0.0ms) rollback transaction
2237
+  (0.0ms) begin transaction
2238
+  (0.0ms) rollback transaction
2239
+  (0.1ms) begin transaction
2240
+  (0.0ms) rollback transaction
2241
+  (0.1ms) begin transaction
2242
+  (0.0ms) rollback transaction
2243
+ SQL (2.3ms) DELETE FROM "meta_reports_reports"
2244
+  (0.0ms) begin transaction
2245
+ SQL (12.8ms) INSERT INTO "meta_reports_reports" ("created_at", "description", "direct", "formats_mask", "group", "name", "target", "title", "updated_at", "views") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 16 Oct 2013 01:33:26 UTC +00:00], ["description", "Moo, eh?"], ["direct", nil], ["formats_mask", 7], ["group", "moo"], ["name", "moo"], ["target", nil], ["title", "Le Moo"], ["updated_at", Wed, 16 Oct 2013 01:33:26 UTC +00:00], ["views", nil]]
2246
+  (1.6ms) commit transaction
2247
+  (0.0ms) begin transaction
2248
+ Started GET "/meta_reports/1.pdf" for 127.0.0.1 at 2013-10-15 18:33:26 -0700
2249
+ Processing by MetaReports::ReportsController#show as PDF
2250
+ Parameters: {"id"=>"1"}
2251
+ MetaReports::Report Load (0.2ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
2252
+ title: "Le Moo"
2253
+ Rendered meta_reports/reports/templates/_default_header.pdf.prawn (59.4ms)
2254
+ Rendered meta_reports/reports/templates/_default_table.pdf.prawn (17.0ms)
2255
+ Rendered meta_reports/reports/templates/_default_footer.pdf.prawn (1.3ms)
2256
+ Rendered meta_reports/reports/templates/default.pdf.prawn (126.3ms)
2257
+  (0.3ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
2258
+ Completed 200 OK in 136ms (Views: 133.0ms | ActiveRecord: 0.5ms)
2259
+  (0.6ms) rollback transaction
2260
+  (0.0ms) begin transaction
2261
+ Started GET "/meta_reports" for 127.0.0.1 at 2013-10-15 18:33:26 -0700
2262
+ Processing by MetaReports::ReportsController#index as HTML
2263
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" ORDER BY meta_reports_reports.title
2264
+ Rendered meta_reports/reports/index.html.erb within layouts/application (5.5ms)
2265
+ Completed 200 OK in 10ms (Views: 9.1ms | ActiveRecord: 0.1ms)
2266
+  (0.1ms) rollback transaction
2267
+  (0.0ms) begin transaction
2268
+ Started GET "/meta_reports/1.xlsx" for 127.0.0.1 at 2013-10-15 18:33:26 -0700
2269
+ Processing by MetaReports::ReportsController#show as XLSX
2270
+ Parameters: {"id"=>"1"}
2271
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
2272
+ Rendered meta_reports/reports/templates/_default_header.xlsx.axlsx (50.9ms)
2273
+ Rendered meta_reports/reports/templates/default.xlsx.axlsx (60.9ms)
2274
+  (0.3ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
2275
+ Completed 200 OK in 65ms (Views: 63.3ms | ActiveRecord: 0.3ms)
2276
+  (0.6ms) rollback transaction
2277
+  (0.0ms) begin transaction
2278
+ Started GET "/meta_reports/1" for 127.0.0.1 at 2013-10-15 18:33:26 -0700
2279
+ Processing by MetaReports::ReportsController#show as HTML
2280
+ Parameters: {"id"=>"1"}
2281
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
2282
+ Rendered meta_reports/reports/templates/_default_table.html.erb (1.2ms)
2283
+ Rendered meta_reports/reports/templates/_default.html.erb (3.8ms)
2284
+ Rendered meta_reports/reports/templates/default.html.erb within layouts/application (4.7ms)
2285
+  (0.2ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
2286
+ Completed 200 OK in 8ms (Views: 6.3ms | ActiveRecord: 0.3ms)
2287
+  (0.6ms) rollback transaction
2288
+  (0.0ms) begin transaction
2289
+ Started GET "/" for 127.0.0.1 at 2013-10-15 18:33:26 -0700
2290
+ Processing by HomeController#index as HTML
2291
+ Rendered home/index.html.erb within layouts/application (0.3ms)
2292
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
2293
+  (0.0ms) rollback transaction
2294
+  (0.0ms) begin transaction
2295
+  (0.1ms) rollback transaction
2296
+  (0.0ms) begin transaction
2297
+  (0.0ms) rollback transaction
2298
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2299
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2300
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2301
+ Migrating to ForTestingOnly (20130801071213)
2302
+  (0.1ms) begin transaction
2303
+  (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) 
2304
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20130801071213"]]
2305
+  (8.6ms) commit transaction
2306
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2307
+  (0.3ms) begin transaction
2308
+  (0.1ms) rollback transaction
2309
+  (0.1ms) begin transaction
2310
+  (0.1ms) rollback transaction
2311
+  (0.1ms) begin transaction
2312
+  (0.2ms) rollback transaction
2313
+  (0.1ms) begin transaction
2314
+  (0.1ms) rollback transaction
2315
+  (0.1ms) begin transaction
2316
+  (0.2ms) rollback transaction
2317
+  (0.1ms) begin transaction
2318
+  (0.2ms) rollback transaction
2319
+  (0.1ms) begin transaction
2320
+  (0.1ms) rollback transaction
2321
+  (0.1ms) begin transaction
2322
+  (0.1ms) rollback transaction
2323
+  (0.1ms) begin transaction
2324
+  (0.1ms) rollback transaction
2325
+  (0.1ms) begin transaction
2326
+  (0.1ms) rollback transaction
2327
+  (0.1ms) begin transaction
2328
+  (0.1ms) rollback transaction
2329
+  (0.1ms) begin transaction
2330
+  (0.1ms) rollback transaction
2331
+  (0.1ms) begin transaction
2332
+  (0.1ms) rollback transaction
2333
+  (0.1ms) begin transaction
2334
+  (0.1ms) rollback transaction
2335
+  (0.1ms) begin transaction
2336
+  (0.1ms) rollback transaction
2337
+  (0.1ms) begin transaction
2338
+  (0.1ms) rollback transaction
2339
+  (0.1ms) begin transaction
2340
+  (0.1ms) rollback transaction
2341
+  (0.1ms) begin transaction
2342
+  (0.1ms) rollback transaction
2343
+  (0.1ms) begin transaction
2344
+  (0.1ms) rollback transaction
2345
+  (0.1ms) begin transaction
2346
+  (0.1ms) rollback transaction
2347
+  (0.1ms) begin transaction
2348
+  (0.1ms) rollback transaction
2349
+  (0.1ms) begin transaction
2350
+  (0.1ms) rollback transaction
2351
+  (0.1ms) begin transaction
2352
+  (0.1ms) rollback transaction
2353
+  (0.1ms) begin transaction
2354
+  (0.1ms) rollback transaction
2355
+  (0.1ms) begin transaction
2356
+  (0.1ms) rollback transaction
2357
+ SQL (1.8ms) DELETE FROM "meta_reports_reports"
2358
+  (0.1ms) begin transaction
2359
+ SQL (27.9ms) INSERT INTO "meta_reports_reports" ("created_at", "description", "formats_mask", "group", "name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 16 Oct 2013 02:33:03 UTC +00:00], ["description", "Moo, eh?"], ["formats_mask", 7], ["group", "moo"], ["name", "moo"], ["title", "Le Moo"], ["updated_at", Wed, 16 Oct 2013 02:33:03 UTC +00:00]]
2360
+  (1.4ms) commit transaction
2361
+  (0.1ms) begin transaction
2362
+ Started GET "/meta_reports/1.xlsx" for 127.0.0.1 at 2013-10-15 19:33:03 -0700
2363
+ Processing by MetaReports::ReportsController#show as XLSX
2364
+ Parameters: {"id"=>"1"}
2365
+ MetaReports::Report Load (0.2ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
2366
+ Rendered meta_reports/reports/templates/_default_header.xlsx.axlsx (46.7ms)
2367
+ Rendered meta_reports/reports/templates/default.xlsx.axlsx (59.2ms)
2368
+  (0.3ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
2369
+ Completed 200 OK in 74ms (Views: 70.5ms | ActiveRecord: 0.5ms)
2370
+  (0.7ms) rollback transaction
2371
+  (0.1ms) begin transaction
2372
+ Started GET "/meta_reports/1.pdf" for 127.0.0.1 at 2013-10-15 19:33:03 -0700
2373
+ Processing by MetaReports::ReportsController#show as PDF
2374
+ Parameters: {"id"=>"1"}
2375
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
2376
+ title: "Le Moo"
2377
+ Rendered meta_reports/reports/templates/_default_header.pdf.prawn (85.9ms)
2378
+ Rendered meta_reports/reports/templates/_default_table.pdf.prawn (16.8ms)
2379
+ Rendered meta_reports/reports/templates/_default_footer.pdf.prawn (1.4ms)
2380
+ Rendered meta_reports/reports/templates/default.pdf.prawn (109.3ms)
2381
+  (0.3ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
2382
+ Completed 200 OK in 114ms (Views: 112.2ms | ActiveRecord: 0.4ms)
2383
+  (0.7ms) rollback transaction
2384
+  (0.1ms) begin transaction
2385
+ Started GET "/meta_reports" for 127.0.0.1 at 2013-10-15 19:33:03 -0700
2386
+ Processing by MetaReports::ReportsController#index as HTML
2387
+ MetaReports::Report Load (0.2ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" ORDER BY meta_reports_reports.title
2388
+ Rendered meta_reports/reports/index.html.erb within layouts/application (34.7ms)
2389
+ Completed 200 OK in 359ms (Views: 358.4ms | ActiveRecord: 0.2ms)
2390
+  (0.1ms) rollback transaction
2391
+  (0.1ms) begin transaction
2392
+ Started GET "/meta_reports/1" for 127.0.0.1 at 2013-10-15 19:33:04 -0700
2393
+ Processing by MetaReports::ReportsController#show as HTML
2394
+ Parameters: {"id"=>"1"}
2395
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
2396
+ Rendered meta_reports/reports/templates/_default_table.html.erb (1.1ms)
2397
+ Rendered meta_reports/reports/templates/_default.html.erb (6.5ms)
2398
+ Rendered meta_reports/reports/templates/default.html.erb within layouts/application (7.5ms)
2399
+  (0.2ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
2400
+ Completed 200 OK in 11ms (Views: 9.1ms | ActiveRecord: 0.3ms)
2401
+  (0.7ms) rollback transaction
2402
+  (0.1ms) begin transaction
2403
+ Started GET "/" for 127.0.0.1 at 2013-10-15 19:33:04 -0700
2404
+ Processing by HomeController#index as HTML
2405
+ Rendered home/index.html.erb within layouts/application (0.3ms)
2406
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
2407
+  (0.1ms) rollback transaction
2408
+  (21.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2409
+  (16.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2410
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2411
+ Migrating to ForTestingOnly (20130801071213)
2412
+  (0.1ms) begin transaction
2413
+  (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) 
2414
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20130801071213"]]
2415
+  (7.8ms) commit transaction
2416
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2417
+  (0.3ms) begin transaction
2418
+  (0.1ms) rollback transaction
2419
+  (0.1ms) begin transaction
2420
+  (0.1ms) rollback transaction
2421
+  (0.1ms) begin transaction
2422
+  (0.1ms) rollback transaction
2423
+  (0.1ms) begin transaction
2424
+  (0.1ms) rollback transaction
2425
+  (0.1ms) begin transaction
2426
+  (0.1ms) rollback transaction
2427
+  (0.1ms) begin transaction
2428
+  (0.1ms) rollback transaction
2429
+  (0.1ms) begin transaction
2430
+  (0.1ms) rollback transaction
2431
+  (0.1ms) begin transaction
2432
+  (0.1ms) rollback transaction
2433
+  (0.1ms) begin transaction
2434
+  (0.1ms) rollback transaction
2435
+  (0.1ms) begin transaction
2436
+  (0.1ms) rollback transaction
2437
+  (0.1ms) begin transaction
2438
+  (0.1ms) rollback transaction
2439
+  (0.1ms) begin transaction
2440
+  (0.1ms) rollback transaction
2441
+  (0.1ms) begin transaction
2442
+  (0.1ms) rollback transaction
2443
+  (0.1ms) begin transaction
2444
+  (0.1ms) rollback transaction
2445
+  (0.1ms) begin transaction
2446
+  (0.1ms) rollback transaction
2447
+  (0.1ms) begin transaction
2448
+  (0.1ms) rollback transaction
2449
+  (0.1ms) begin transaction
2450
+  (0.1ms) rollback transaction
2451
+  (0.1ms) begin transaction
2452
+  (0.1ms) rollback transaction
2453
+  (0.1ms) begin transaction
2454
+  (0.1ms) rollback transaction
2455
+  (0.1ms) begin transaction
2456
+  (0.1ms) rollback transaction
2457
+ SQL (52.8ms) DELETE FROM "meta_reports_reports"
2458
+  (0.1ms) begin transaction
2459
+ SQL (5.1ms) INSERT INTO "meta_reports_reports" ("created_at", "description", "formats_mask", "group", "name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 16 Oct 2013 06:58:26 UTC +00:00], ["description", "Moo, eh?"], ["formats_mask", 7], ["group", "moo"], ["name", "moo"], ["title", "Le Moo"], ["updated_at", Wed, 16 Oct 2013 06:58:26 UTC +00:00]]
2460
+  (1.4ms) commit transaction
2461
+  (0.1ms) begin transaction
2462
+ Started GET "/meta_reports/1.xlsx" for 127.0.0.1 at 2013-10-15 23:58:26 -0700
2463
+ Processing by MetaReports::ReportsController#show as XLSX
2464
+ Parameters: {"id"=>"1"}
2465
+ MetaReports::Report Load (0.2ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
2466
+ Rendered meta_reports/reports/templates/_default_header.xlsx.axlsx (28.3ms)
2467
+ Rendered meta_reports/reports/templates/default.xlsx.axlsx (41.9ms)
2468
+  (0.3ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
2469
+ Completed 200 OK in 90ms (Views: 86.5ms | ActiveRecord: 0.5ms)
2470
+  (0.6ms) rollback transaction
2471
+  (0.1ms) begin transaction
2472
+ Started GET "/meta_reports/1" for 127.0.0.1 at 2013-10-15 23:58:26 -0700
2473
+ Processing by MetaReports::ReportsController#show as HTML
2474
+ Parameters: {"id"=>"1"}
2475
+ MetaReports::Report Load (0.2ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
2476
+ Rendered meta_reports/reports/templates/_default_table.html.erb (1.4ms)
2477
+ Rendered meta_reports/reports/templates/_default.html.erb (6.8ms)
2478
+ Rendered meta_reports/reports/templates/default.html.erb within layouts/application (10.4ms)
2479
+  (0.3ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
2480
+ Completed 200 OK in 97ms (Views: 94.6ms | ActiveRecord: 0.4ms)
2481
+  (0.5ms) rollback transaction
2482
+  (0.1ms) begin transaction
2483
+ Started GET "/meta_reports/1.pdf" for 127.0.0.1 at 2013-10-15 23:58:26 -0700
2484
+ Processing by MetaReports::ReportsController#show as PDF
2485
+ Parameters: {"id"=>"1"}
2486
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
2487
+ title: "Le Moo"
2488
+ Rendered meta_reports/reports/templates/_default_header.pdf.prawn (131.0ms)
2489
+ Rendered meta_reports/reports/templates/_default_table.pdf.prawn (61.8ms)
2490
+ Rendered meta_reports/reports/templates/_default_footer.pdf.prawn (1.7ms)
2491
+ Rendered meta_reports/reports/templates/default.pdf.prawn (211.2ms)
2492
+  (0.3ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
2493
+ Completed 200 OK in 216ms (Views: 214.4ms | ActiveRecord: 0.4ms)
2494
+  (0.5ms) rollback transaction
2495
+  (0.1ms) begin transaction
2496
+ Started GET "/meta_reports" for 127.0.0.1 at 2013-10-15 23:58:27 -0700
2497
+ Processing by MetaReports::ReportsController#index as HTML
2498
+ MetaReports::Report Load (0.2ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" ORDER BY meta_reports_reports.title
2499
+ Rendered meta_reports/reports/index.html.erb within layouts/application (5.3ms)
2500
+ Completed 200 OK in 8ms (Views: 7.0ms | ActiveRecord: 0.2ms)
2501
+  (0.1ms) rollback transaction
2502
+  (0.1ms) begin transaction
2503
+ Started GET "/" for 127.0.0.1 at 2013-10-15 23:58:27 -0700
2504
+ Processing by HomeController#index as HTML
2505
+ Rendered home/index.html.erb within layouts/application (0.3ms)
2506
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
2507
+  (0.1ms) rollback transaction
2508
+  (0.1ms) begin transaction
2509
+  (0.2ms) rollback transaction
2510
+  (0.1ms) begin transaction
2511
+  (0.2ms) rollback transaction
2512
+  (0.1ms) begin transaction
2513
+  (0.1ms) rollback transaction
2514
+  (0.1ms) begin transaction
2515
+  (0.2ms) rollback transaction
2516
+  (0.1ms) begin transaction
2517
+  (0.1ms) rollback transaction
2518
+ Connecting to database specified by database.yml
2519
+  (0.1ms) select sqlite_version(*)
2520
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2521
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2522
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
2523
+ Migrating to ForTestingOnly (20130801071213)
2524
+  (0.0ms) begin transaction
2525
+  (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)
2526
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130801071213')
2527
+  (13.3ms) commit transaction
2528
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2529
+ Connecting to database specified by database.yml
2530
+  (0.3ms) begin transaction
2531
+  (0.1ms) rollback transaction
2532
+  (0.0ms) begin transaction
2533
+  (0.1ms) rollback transaction
2534
+  (0.1ms) begin transaction
2535
+  (0.0ms) rollback transaction
2536
+  (0.0ms) begin transaction
2537
+  (0.1ms) rollback transaction
2538
+  (0.1ms) begin transaction
2539
+  (0.0ms) rollback transaction
2540
+  (0.0ms) begin transaction
2541
+  (0.1ms) rollback transaction
2542
+  (0.1ms) begin transaction
2543
+  (0.1ms) rollback transaction
2544
+  (0.1ms) begin transaction
2545
+  (0.0ms) rollback transaction
2546
+  (0.1ms) begin transaction
2547
+  (0.0ms) rollback transaction
2548
+  (0.1ms) begin transaction
2549
+  (0.0ms) rollback transaction
2550
+  (0.1ms) begin transaction
2551
+  (0.0ms) rollback transaction
2552
+  (0.0ms) begin transaction
2553
+  (0.0ms) rollback transaction
2554
+  (0.1ms) begin transaction
2555
+  (0.0ms) rollback transaction
2556
+  (0.0ms) begin transaction
2557
+  (0.0ms) rollback transaction
2558
+  (0.0ms) begin transaction
2559
+  (0.0ms) rollback transaction
2560
+  (0.1ms) begin transaction
2561
+  (0.0ms) rollback transaction
2562
+  (0.0ms) begin transaction
2563
+  (0.0ms) rollback transaction
2564
+  (0.0ms) begin transaction
2565
+  (0.0ms) rollback transaction
2566
+  (0.1ms) begin transaction
2567
+  (0.0ms) rollback transaction
2568
+  (0.1ms) begin transaction
2569
+  (0.0ms) rollback transaction
2570
+  (0.0ms) begin transaction
2571
+  (0.0ms) rollback transaction
2572
+  (0.0ms) begin transaction
2573
+  (0.0ms) rollback transaction
2574
+  (0.0ms) begin transaction
2575
+  (0.0ms) rollback transaction
2576
+  (0.0ms) begin transaction
2577
+  (0.0ms) rollback transaction
2578
+  (0.0ms) begin transaction
2579
+  (0.0ms) rollback transaction
2580
+ SQL (1.3ms) DELETE FROM "meta_reports_reports"
2581
+  (0.1ms) begin transaction
2582
+ SQL (5.7ms) INSERT INTO "meta_reports_reports" ("created_at", "description", "direct", "formats_mask", "group", "name", "target", "title", "updated_at", "views") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 16 Oct 2013 07:00:52 UTC +00:00], ["description", "Moo, eh?"], ["direct", nil], ["formats_mask", 7], ["group", "moo"], ["name", "moo"], ["target", nil], ["title", "Le Moo"], ["updated_at", Wed, 16 Oct 2013 07:00:52 UTC +00:00], ["views", nil]]
2583
+  (1.0ms) commit transaction
2584
+  (0.0ms) begin transaction
2585
+ Started GET "/meta_reports" for 127.0.0.1 at 2013-10-16 00:00:52 -0700
2586
+ Processing by MetaReports::ReportsController#index as HTML
2587
+ MetaReports::Report Load (0.2ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" ORDER BY meta_reports_reports.title
2588
+ Rendered meta_reports/reports/index.html.erb within layouts/application (8.7ms)
2589
+ Completed 200 OK in 51ms (Views: 50.2ms | ActiveRecord: 0.2ms)
2590
+  (0.1ms) rollback transaction
2591
+  (0.0ms) begin transaction
2592
+ Started GET "/" for 127.0.0.1 at 2013-10-16 00:00:53 -0700
2593
+ Processing by HomeController#index as HTML
2594
+ Rendered home/index.html.erb within layouts/application (0.3ms)
2595
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
2596
+  (0.0ms) rollback transaction
2597
+  (0.0ms) begin transaction
2598
+ Started GET "/meta_reports/1" for 127.0.0.1 at 2013-10-16 00:00:53 -0700
2599
+ Processing by MetaReports::ReportsController#show as HTML
2600
+ Parameters: {"id"=>"1"}
2601
+ MetaReports::Report Load (0.2ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
2602
+ Rendered meta_reports/reports/templates/_default_table.html.erb (1.3ms)
2603
+ Rendered meta_reports/reports/templates/_default.html.erb (4.3ms)
2604
+ Rendered meta_reports/reports/templates/default.html.erb within layouts/application (8.1ms)
2605
+  (0.2ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
2606
+ Completed 200 OK in 12ms (Views: 9.9ms | ActiveRecord: 0.4ms)
2607
+  (0.8ms) rollback transaction
2608
+  (0.0ms) begin transaction
2609
+ Started GET "/meta_reports/1.pdf" for 127.0.0.1 at 2013-10-16 00:00:53 -0700
2610
+ Processing by MetaReports::ReportsController#show as PDF
2611
+ Parameters: {"id"=>"1"}
2612
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
2613
+ title: "Le Moo"
2614
+ Rendered meta_reports/reports/templates/_default_header.pdf.prawn (75.1ms)
2615
+ Rendered meta_reports/reports/templates/_default_table.pdf.prawn (22.6ms)
2616
+ Rendered meta_reports/reports/templates/_default_footer.pdf.prawn (1.7ms)
2617
+ Rendered meta_reports/reports/templates/default.pdf.prawn (105.1ms)
2618
+  (0.3ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
2619
+ Completed 200 OK in 109ms (Views: 107.6ms | ActiveRecord: 0.4ms)
2620
+  (0.7ms) rollback transaction
2621
+  (0.1ms) begin transaction
2622
+ Started GET "/meta_reports/1.xlsx" for 127.0.0.1 at 2013-10-16 00:00:53 -0700
2623
+ Processing by MetaReports::ReportsController#show as XLSX
2624
+ Parameters: {"id"=>"1"}
2625
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
2626
+ Rendered meta_reports/reports/templates/_default_header.xlsx.axlsx (47.1ms)
2627
+ Rendered meta_reports/reports/templates/default.xlsx.axlsx (58.0ms)
2628
+  (0.3ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
2629
+ Completed 200 OK in 63ms (Views: 60.7ms | ActiveRecord: 0.4ms)
2630
+  (5.9ms) rollback transaction
2631
+ Connecting to database specified by database.yml
2632
+  (0.1ms) select sqlite_version(*)
2633
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2634
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2635
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
2636
+ Migrating to ForTestingOnly (20130801071213)
2637
+  (0.0ms) begin transaction
2638
+  (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)
2639
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130801071213')
2640
+  (15.2ms) commit transaction
2641
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2642
+ Connecting to database specified by database.yml
2643
+  (0.2ms) begin transaction
2644
+  (0.0ms) rollback transaction
2645
+  (0.0ms) begin transaction
2646
+  (0.0ms) rollback transaction
2647
+  (0.0ms) begin transaction
2648
+  (0.0ms) rollback transaction
2649
+  (0.0ms) begin transaction
2650
+  (0.0ms) rollback transaction
2651
+  (0.0ms) begin transaction
2652
+  (0.0ms) rollback transaction
2653
+  (0.0ms) begin transaction
2654
+  (0.0ms) rollback transaction
2655
+  (0.0ms) begin transaction
2656
+  (0.0ms) rollback transaction
2657
+  (0.0ms) begin transaction
2658
+  (0.0ms) rollback transaction
2659
+  (0.0ms) begin transaction
2660
+  (0.0ms) rollback transaction
2661
+  (0.0ms) begin transaction
2662
+  (0.0ms) rollback transaction
2663
+  (0.0ms) begin transaction
2664
+  (0.0ms) rollback transaction
2665
+  (0.0ms) begin transaction
2666
+  (0.1ms) rollback transaction
2667
+  (0.0ms) begin transaction
2668
+  (0.1ms) rollback transaction
2669
+  (0.1ms) begin transaction
2670
+  (0.0ms) rollback transaction
2671
+  (0.1ms) begin transaction
2672
+  (0.1ms) rollback transaction
2673
+  (0.1ms) begin transaction
2674
+  (0.0ms) rollback transaction
2675
+  (0.1ms) begin transaction
2676
+  (0.0ms) rollback transaction
2677
+  (0.0ms) begin transaction
2678
+  (0.0ms) rollback transaction
2679
+  (0.0ms) begin transaction
2680
+  (0.0ms) rollback transaction
2681
+  (0.0ms) begin transaction
2682
+  (0.0ms) rollback transaction
2683
+  (0.0ms) begin transaction
2684
+  (0.1ms) rollback transaction
2685
+  (0.1ms) begin transaction
2686
+  (0.0ms) rollback transaction
2687
+  (0.0ms) begin transaction
2688
+  (0.0ms) rollback transaction
2689
+ SQL (5.5ms) DELETE FROM "meta_reports_reports"
2690
+  (0.1ms) begin transaction
2691
+ SQL (33.7ms) INSERT INTO "meta_reports_reports" ("created_at", "description", "direct", "formats_mask", "group", "name", "target", "title", "updated_at", "views") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 16 Oct 2013 07:02:21 UTC +00:00], ["description", "Moo, eh?"], ["direct", nil], ["formats_mask", 7], ["group", "moo"], ["name", "moo"], ["target", nil], ["title", "Le Moo"], ["updated_at", Wed, 16 Oct 2013 07:02:21 UTC +00:00], ["views", nil]]
2692
+  (1.3ms) commit transaction
2693
+  (0.0ms) begin transaction
2694
+ Started GET "/meta_reports/1.xlsx" for 127.0.0.1 at 2013-10-16 00:02:21 -0700
2695
+ Processing by MetaReports::ReportsController#show as XLSX
2696
+ Parameters: {"id"=>"1"}
2697
+ MetaReports::Report Load (0.2ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
2698
+ Rendered meta_reports/reports/templates/_default_header.xlsx.axlsx (42.9ms)
2699
+ Rendered meta_reports/reports/templates/default.xlsx.axlsx (54.1ms)
2700
+  (0.3ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
2701
+ Completed 200 OK in 66ms (Views: 62.4ms | ActiveRecord: 0.4ms)
2702
+  (0.6ms) rollback transaction
2703
+  (0.0ms) begin transaction
2704
+ Started GET "/meta_reports" for 127.0.0.1 at 2013-10-16 00:02:21 -0700
2705
+ Processing by MetaReports::ReportsController#index as HTML
2706
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" ORDER BY meta_reports_reports.title
2707
+ Rendered meta_reports/reports/index.html.erb within layouts/application (5.5ms)
2708
+ Completed 200 OK in 10ms (Views: 9.1ms | ActiveRecord: 0.1ms)
2709
+  (0.1ms) rollback transaction
2710
+  (0.0ms) begin transaction
2711
+ Started GET "/meta_reports/1.pdf" for 127.0.0.1 at 2013-10-16 00:02:21 -0700
2712
+ Processing by MetaReports::ReportsController#show as PDF
2713
+ Parameters: {"id"=>"1"}
2714
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
2715
+ title: "Le Moo"
2716
+ Rendered meta_reports/reports/templates/_default_header.pdf.prawn (123.7ms)
2717
+ Rendered meta_reports/reports/templates/_default_table.pdf.prawn (18.2ms)
2718
+ Rendered meta_reports/reports/templates/_default_footer.pdf.prawn (1.5ms)
2719
+ Rendered meta_reports/reports/templates/default.pdf.prawn (155.9ms)
2720
+  (0.3ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
2721
+ Completed 200 OK in 160ms (Views: 158.3ms | ActiveRecord: 0.4ms)
2722
+  (0.5ms) rollback transaction
2723
+  (0.1ms) begin transaction
2724
+ Started GET "/meta_reports/1" for 127.0.0.1 at 2013-10-16 00:02:22 -0700
2725
+ Processing by MetaReports::ReportsController#show as HTML
2726
+ Parameters: {"id"=>"1"}
2727
+ MetaReports::Report Load (0.1ms) SELECT "meta_reports_reports".* FROM "meta_reports_reports" WHERE "meta_reports_reports"."id" = ? LIMIT 1 [["id", "1"]]
2728
+ Rendered meta_reports/reports/templates/_default_table.html.erb (1.2ms)
2729
+ Rendered meta_reports/reports/templates/_default.html.erb (4.0ms)
2730
+ Rendered meta_reports/reports/templates/default.html.erb within layouts/application (5.0ms)
2731
+  (0.3ms) UPDATE meta_reports_reports SET views = views + 1 WHERE id = 1
2732
+ Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.4ms)
2733
+  (1.7ms) rollback transaction
2734
+  (0.0ms) begin transaction
2735
+ Started GET "/" for 127.0.0.1 at 2013-10-16 00:02:22 -0700
2736
+ Processing by HomeController#index as HTML
2737
+ Rendered home/index.html.erb within layouts/application (0.3ms)
2738
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
2739
+  (0.0ms) rollback transaction
2740
+  (0.0ms) begin transaction
2741
+  (0.1ms) rollback transaction
2742
+  (0.1ms) begin transaction
2743
+  (0.0ms) rollback transaction