axlsx_rails 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 (70) hide show
  1. data/CHANGELOG.md +9 -0
  2. data/Gemfile +17 -0
  3. data/Gemfile.lock +196 -0
  4. data/Guardfile +15 -0
  5. data/MIT-LICENSE +20 -0
  6. data/README.md +68 -0
  7. data/Rakefile +29 -0
  8. data/lib/axlsx_rails.rb +4 -0
  9. data/lib/axlsx_rails/action_controller.rb +16 -0
  10. data/lib/axlsx_rails/template_handler.rb +24 -0
  11. data/lib/axlsx_rails/version.rb +3 -0
  12. data/lib/tasks/axlsx_rails_tasks.rake +4 -0
  13. data/spec/axlsx_builder_spec.rb +34 -0
  14. data/spec/axlsx_renderer_spec.rb +13 -0
  15. data/spec/axlsx_request_spec.rb +40 -0
  16. data/spec/dummy/README.rdoc +261 -0
  17. data/spec/dummy/Rakefile +7 -0
  18. data/spec/dummy/app/assets/javascripts/application.js +15 -0
  19. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  20. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  21. data/spec/dummy/app/controllers/home_controller.rb +20 -0
  22. data/spec/dummy/app/controllers/users_controller.rb +12 -0
  23. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  24. data/spec/dummy/app/models/user.rb +5 -0
  25. data/spec/dummy/app/views/home/index.html.erb +2 -0
  26. data/spec/dummy/app/views/home/index.xlsx.axlsx +8 -0
  27. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  28. data/spec/dummy/app/views/users/index.html.erb +29 -0
  29. data/spec/dummy/app/views/users/index.xlsx.axlsx +1 -0
  30. data/spec/dummy/config.ru +4 -0
  31. data/spec/dummy/config/application.rb +65 -0
  32. data/spec/dummy/config/boot.rb +10 -0
  33. data/spec/dummy/config/database.yml +11 -0
  34. data/spec/dummy/config/environment.rb +5 -0
  35. data/spec/dummy/config/environments/development.rb +37 -0
  36. data/spec/dummy/config/environments/production.rb +67 -0
  37. data/spec/dummy/config/environments/test.rb +37 -0
  38. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  39. data/spec/dummy/config/initializers/inflections.rb +15 -0
  40. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  41. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  42. data/spec/dummy/config/initializers/session_store.rb +8 -0
  43. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  44. data/spec/dummy/config/locales/en.yml +5 -0
  45. data/spec/dummy/config/routes.rb +6 -0
  46. data/spec/dummy/db/development.sqlite3 +0 -0
  47. data/spec/dummy/db/migrate/20120717192452_create_users.rb +12 -0
  48. data/spec/dummy/db/schema.rb +25 -0
  49. data/spec/dummy/db/test.sqlite3 +0 -0
  50. data/spec/dummy/log/development.log +125 -0
  51. data/spec/dummy/log/test.log +1396 -0
  52. data/spec/dummy/public/404.html +26 -0
  53. data/spec/dummy/public/422.html +26 -0
  54. data/spec/dummy/public/500.html +25 -0
  55. data/spec/dummy/public/favicon.ico +0 -0
  56. data/spec/dummy/script/rails +6 -0
  57. data/spec/dummy/tmp/cache/assets/C8C/B80/sprockets%2F371bf96e99717688ed7313a0c53f4212 +0 -0
  58. data/spec/dummy/tmp/cache/assets/CAC/7D0/sprockets%2F7810ea6f766208553a05d1056cd74f1e +0 -0
  59. data/spec/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  60. data/spec/dummy/tmp/cache/assets/CF0/1D0/sprockets%2F6fc757c2c8329244ca95d6909865bbc2 +0 -0
  61. data/spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  62. data/spec/dummy/tmp/cache/assets/D34/930/sprockets%2Fd2c70e485fe1100075be3bc87cf1e282 +0 -0
  63. data/spec/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  64. data/spec/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  65. data/spec/dummy/tmp/cache/assets/D96/AA0/sprockets%2F022a822848bf2eef8e7cb3c08ab932ba +0 -0
  66. data/spec/dummy/tmp/cache/assets/DC1/E00/sprockets%2F20fddc9f3fca3616a6c5ea413a464a4e +0 -0
  67. data/spec/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  68. data/spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  69. data/spec/spec_helper.rb +21 -0
  70. metadata +339 -0
@@ -0,0 +1,1396 @@
1
+ Connecting to database specified by database.yml
2
+ Connecting to database specified by database.yml
3
+ Connecting to database specified by database.yml
4
+ Connecting to database specified by database.yml
5
+ Connecting to database specified by database.yml
6
+ Connecting to database specified by database.yml
7
+ Connecting to database specified by database.yml
8
+ Connecting to database specified by database.yml
9
+ Connecting to database specified by database.yml
10
+ Connecting to database specified by database.yml
11
+ Connecting to database specified by database.yml
12
+ Connecting to database specified by database.yml
13
+ Connecting to database specified by database.yml
14
+ Connecting to database specified by database.yml
15
+ Connecting to database specified by database.yml
16
+ Connecting to database specified by database.yml
17
+ Connecting to database specified by database.yml
18
+ Connecting to database specified by database.yml
19
+ Connecting to database specified by database.yml
20
+ Connecting to database specified by database.yml
21
+ Connecting to database specified by database.yml
22
+ Connecting to database specified by database.yml
23
+ Connecting to database specified by database.yml
24
+ Connecting to database specified by database.yml
25
+ Connecting to database specified by database.yml
26
+ Connecting to database specified by database.yml
27
+ Connecting to database specified by database.yml
28
+ Connecting to database specified by database.yml
29
+ Connecting to database specified by database.yml
30
+ Connecting to database specified by database.yml
31
+ Connecting to database specified by database.yml
32
+ Connecting to database specified by database.yml
33
+ Connecting to database specified by database.yml
34
+ Connecting to database specified by database.yml
35
+ Connecting to database specified by database.yml
36
+ Connecting to database specified by database.yml
37
+ Connecting to database specified by database.yml
38
+ Connecting to database specified by database.yml
39
+ Connecting to database specified by database.yml
40
+ Connecting to database specified by database.yml
41
+ Connecting to database specified by database.yml
42
+
43
+
44
+ Started GET "/" for 127.0.0.1 at 2012-07-16 13:33:59 -0700
45
+ Connecting to database specified by database.yml
46
+
47
+
48
+ Started GET "/" for 127.0.0.1 at 2012-07-16 13:35:19 -0700
49
+ Connecting to database specified by database.yml
50
+
51
+
52
+ Started GET "/" for 127.0.0.1 at 2012-07-16 13:35:44 -0700
53
+ Connecting to database specified by database.yml
54
+
55
+
56
+ Started GET "/" for 127.0.0.1 at 2012-07-16 13:36:05 -0700
57
+ Connecting to database specified by database.yml
58
+
59
+
60
+ Started GET "/" for 127.0.0.1 at 2012-07-16 13:37:36 -0700
61
+ Processing by HomeController#index as HTML
62
+ Rendered home/index.html.erb within layouts/application (10.6ms)
63
+ Completed 500 Internal Server Error in 52ms
64
+ Connecting to database specified by database.yml
65
+ Connecting to database specified by database.yml
66
+ Connecting to database specified by database.yml
67
+
68
+
69
+ Started GET "/" for 127.0.0.1 at 2012-07-16 13:40:47 -0700
70
+ Processing by HomeController#index as HTML
71
+ Rendered home/index.html.erb within layouts/application (2.5ms)
72
+ Completed 200 OK in 42ms (Views: 41.2ms | ActiveRecord: 0.0ms)
73
+ Connecting to database specified by database.yml
74
+
75
+
76
+ Started GET "/" for 127.0.0.1 at 2012-07-16 13:40:50 -0700
77
+ Processing by HomeController#index as HTML
78
+ Rendered home/index.html.erb within layouts/application (2.5ms)
79
+ Completed 200 OK in 42ms (Views: 41.3ms | ActiveRecord: 0.0ms)
80
+ Connecting to database specified by database.yml
81
+
82
+
83
+ Started GET "/" for 127.0.0.1 at 2012-07-16 13:44:13 -0700
84
+ Connecting to database specified by database.yml
85
+
86
+
87
+ Started GET "/" for 127.0.0.1 at 2012-07-16 13:44:50 -0700
88
+ Processing by HomeController#index as HTML
89
+ Rendered home/index.html.erb within layouts/application (2.5ms)
90
+ Completed 200 OK in 43ms (Views: 42.3ms | ActiveRecord: 0.0ms)
91
+ Connecting to database specified by database.yml
92
+
93
+
94
+ Started GET "/" for 127.0.0.1 at 2012-07-16 13:44:54 -0700
95
+ Processing by HomeController#index as HTML
96
+ Rendered home/index.html.erb within layouts/application (2.5ms)
97
+ Completed 200 OK in 42ms (Views: 41.1ms | ActiveRecord: 0.0ms)
98
+ Connecting to database specified by database.yml
99
+
100
+
101
+ Started GET "/" for 127.0.0.1 at 2012-07-16 13:45:35 -0700
102
+ Processing by HomeController#index as HTML
103
+ Rendered home/index.html.erb within layouts/application (2.4ms)
104
+ Completed 200 OK in 41ms (Views: 40.3ms | ActiveRecord: 0.0ms)
105
+ Connecting to database specified by database.yml
106
+
107
+
108
+ Started GET "/" for 127.0.0.1 at 2012-07-16 13:46:00 -0700
109
+ Processing by HomeController#index as HTML
110
+ Rendered home/index.html.erb within layouts/application (2.2ms)
111
+ Completed 200 OK in 41ms (Views: 40.3ms | ActiveRecord: 0.0ms)
112
+ Connecting to database specified by database.yml
113
+
114
+
115
+ Started GET "/" for 127.0.0.1 at 2012-07-16 14:05:10 -0700
116
+ Processing by HomeController#index as HTML
117
+ Rendered home/index.html.erb within layouts/application (2.4ms)
118
+ Completed 200 OK in 43ms (Views: 42.1ms | ActiveRecord: 0.0ms)
119
+
120
+
121
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 14:05:10 -0700
122
+ Processing by HomeController#index as XLSX
123
+ Completed 500 Internal Server Error in 5ms
124
+ Connecting to database specified by database.yml
125
+
126
+
127
+ Started GET "/" for 127.0.0.1 at 2012-07-16 14:05:56 -0700
128
+ Processing by HomeController#index as HTML
129
+ Rendered home/index.html.erb within layouts/application (2.4ms)
130
+ Completed 200 OK in 42ms (Views: 41.8ms | ActiveRecord: 0.0ms)
131
+
132
+
133
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 14:05:56 -0700
134
+ Processing by HomeController#index as XLSX
135
+ ERROR: compiling _app_views_home_index_xlsx_axlsx___1803001738245949279_70221874556080 RAISED /Users/noel/workspace/axlsx_rails/spec/dummy/app/views/home/index.xlsx.axlsx:2: syntax error, unexpected ';'
136
+ Function body: def _app_views_home_index_xlsx_axlsx___1803001738245949279_70221874556080(local_assigns, output_buffer)
137
+ _old_virtual_path, @virtual_path = @virtual_path, "home/index";_old_output_buffer = @output_buffer;;axlsx_package = Axlsx::Package.new(:author => nil);
138
+ This is your new PDF content.;
139
+ axlsx_package.to_stream.string;
140
+ ensure
141
+ @virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer
142
+ end
143
+
144
+ Backtrace: /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_view/template.rb:297:in `module_eval'
145
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_view/template.rb:297:in `compile'
146
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_view/template.rb:244:in `block in compile!'
147
+ <internal:prelude>:10:in `synchronize'
148
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_view/template.rb:232:in `compile!'
149
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_view/template.rb:144:in `block in render'
150
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.6/lib/active_support/notifications.rb:125:in `instrument'
151
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_view/template.rb:143:in `render'
152
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
153
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
154
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
155
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
156
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
157
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
158
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
159
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
160
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:45:in `render_template'
161
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_view/renderer/template_renderer.rb:18:in `render'
162
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:36:in `render_template'
163
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_view/renderer/renderer.rb:17:in `render'
164
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:110:in `_render_template'
165
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_controller/metal/streaming.rb:225:in `_render_template'
166
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:103:in `render_to_body'
167
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
168
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
169
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:88:in `render'
170
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_controller/metal/rendering.rb:16:in `render'
171
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
172
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.6/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
173
+ /Users/noel/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
174
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.6/lib/active_support/core_ext/benchmark.rb:5:in `ms'
175
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
176
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
177
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/activerecord-3.2.6/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
178
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:39:in `render'
179
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
180
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
181
+ /Users/noel/workspace/axlsx_rails/spec/dummy/app/controllers/home_controller.rb:15:in `index'
182
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_controller/metal/implicit_render.rb:4:in `send_action'
183
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/abstract_controller/base.rb:167:in `process_action'
184
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_controller/metal/rendering.rb:10:in `process_action'
185
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
186
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:414:in `_run__1830515345364962434__process_action__2227035587467059843__callbacks'
187
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `__run_callback'
188
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
189
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:81:in `run_callbacks'
190
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/abstract_controller/callbacks.rb:17:in `process_action'
191
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_controller/metal/rescue.rb:29:in `process_action'
192
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
193
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `block in instrument'
194
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.6/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
195
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.6/lib/active_support/notifications.rb:123:in `instrument'
196
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
197
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_controller/metal/params_wrapper.rb:206:in `process_action'
198
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/activerecord-3.2.6/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
199
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/abstract_controller/base.rb:121:in `process'
200
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/abstract_controller/rendering.rb:45:in `process'
201
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_controller/metal.rb:203:in `dispatch'
202
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
203
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_controller/metal.rb:246:in `block in action'
204
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:73:in `call'
205
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
206
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:36:in `call'
207
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call'
208
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/journey-1.0.4/lib/journey/router.rb:56:in `each'
209
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/journey-1.0.4/lib/journey/router.rb:56:in `call'
210
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_dispatch/routing/route_set.rb:600:in `call'
211
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
212
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call'
213
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/rack-1.4.1/lib/rack/conditionalget.rb:25:in `call'
214
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_dispatch/middleware/head.rb:14:in `call'
215
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
216
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_dispatch/middleware/flash.rb:242:in `call'
217
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context'
218
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call'
219
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_dispatch/middleware/cookies.rb:338:in `call'
220
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/activerecord-3.2.6/lib/active_record/query_cache.rb:64:in `call'
221
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/activerecord-3.2.6/lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
222
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
223
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `_run__3514321021534813938__call__356776758862322514__callbacks'
224
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:405:in `__run_callback'
225
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
226
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.6/lib/active_support/callbacks.rb:81:in `run_callbacks'
227
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
228
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
229
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
230
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
231
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/railties-3.2.6/lib/rails/rack/logger.rb:26:in `call_app'
232
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/railties-3.2.6/lib/rails/rack/logger.rb:16:in `call'
233
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_dispatch/middleware/request_id.rb:22:in `call'
234
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call'
235
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call'
236
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.6/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
237
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call'
238
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.6/lib/action_dispatch/middleware/static.rb:62:in `call'
239
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/railties-3.2.6/lib/rails/engine.rb:479:in `call'
240
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/railties-3.2.6/lib/rails/application.rb:220:in `call'
241
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/rack-1.4.1/lib/rack/builder.rb:134:in `call'
242
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/rack-1.4.1/lib/rack/urlmap.rb:64:in `block in call'
243
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/rack-1.4.1/lib/rack/urlmap.rb:49:in `each'
244
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/rack-1.4.1/lib/rack/urlmap.rb:49:in `call'
245
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/rack-test-0.6.1/lib/rack/mock_session.rb:30:in `request'
246
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/rack-test-0.6.1/lib/rack/test.rb:219:in `process_request'
247
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/rack-test-0.6.1/lib/rack/test.rb:57:in `get'
248
+ /Users/noel/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/forwardable.rb:201:in `get'
249
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/capybara-1.1.2/lib/capybara/rack_test/browser.rb:62:in `process'
250
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/capybara-1.1.2/lib/capybara/rack_test/browser.rb:33:in `follow'
251
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/capybara-1.1.2/lib/capybara/rack_test/node.rb:56:in `click'
252
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/capybara-1.1.2/lib/capybara/node/element.rb:99:in `block in click'
253
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/capybara-1.1.2/lib/capybara/node/base.rb:46:in `wait_until'
254
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/capybara-1.1.2/lib/capybara/node/element.rb:99:in `click'
255
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/capybara-1.1.2/lib/capybara/node/actions.rb:27:in `click_link'
256
+ (eval):2:in `click_link'
257
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/capybara-1.1.2/lib/capybara/dsl.rb:161:in `click_link'
258
+ /Users/noel/workspace/axlsx_rails/spec/axlsx_request_spec.rb:7:in `block (2 levels) in <top (required)>'
259
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/rspec-core-2.11.0/lib/rspec/core/example.rb:113:in `instance_eval'
260
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/rspec-core-2.11.0/lib/rspec/core/example.rb:113:in `block in run'
261
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/rspec-core-2.11.0/lib/rspec/core/example.rb:253:in `with_around_each_hooks'
262
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/rspec-core-2.11.0/lib/rspec/core/example.rb:110:in `run'
263
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/rspec-core-2.11.0/lib/rspec/core/example_group.rb:378:in `block in run_examples'
264
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/rspec-core-2.11.0/lib/rspec/core/example_group.rb:374:in `map'
265
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/rspec-core-2.11.0/lib/rspec/core/example_group.rb:374:in `run_examples'
266
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/rspec-core-2.11.0/lib/rspec/core/example_group.rb:360:in `run'
267
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/rspec-core-2.11.0/lib/rspec/core/command_line.rb:28:in `block (2 levels) in run'
268
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/rspec-core-2.11.0/lib/rspec/core/command_line.rb:28:in `map'
269
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/rspec-core-2.11.0/lib/rspec/core/command_line.rb:28:in `block in run'
270
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/rspec-core-2.11.0/lib/rspec/core/reporter.rb:34:in `report'
271
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/rspec-core-2.11.0/lib/rspec/core/command_line.rb:25:in `run'
272
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/rspec-core-2.11.0/lib/rspec/core/runner.rb:69:in `run'
273
+ /Users/noel/.rvm/gems/ruby-1.9.3-p194/gems/rspec-core-2.11.0/lib/rspec/core/runner.rb:8:in `block in autorun'
274
+ Rendered home/index.xlsx.axlsx (3.9ms)
275
+ Completed 500 Internal Server Error in 6ms
276
+ Connecting to database specified by database.yml
277
+
278
+
279
+ Started GET "/" for 127.0.0.1 at 2012-07-16 14:06:55 -0700
280
+ Processing by HomeController#index as HTML
281
+ Rendered home/index.html.erb within layouts/application (2.4ms)
282
+ Completed 200 OK in 41ms (Views: 40.7ms | ActiveRecord: 0.0ms)
283
+
284
+
285
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 14:06:55 -0700
286
+ Processing by HomeController#index as XLSX
287
+ Rendered home/index.xlsx.axlsx (4.6ms)
288
+ Completed 200 OK in 6ms (Views: 6.0ms | ActiveRecord: 0.0ms)
289
+ Connecting to database specified by database.yml
290
+
291
+
292
+ Started GET "/" for 127.0.0.1 at 2012-07-16 14:07:51 -0700
293
+ Processing by HomeController#index as HTML
294
+ Rendered home/index.html.erb within layouts/application (2.4ms)
295
+ Completed 200 OK in 42ms (Views: 41.8ms | ActiveRecord: 0.0ms)
296
+
297
+
298
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 14:07:51 -0700
299
+ Processing by HomeController#index as XLSX
300
+ Rendered home/index.xlsx.axlsx (4.5ms)
301
+ Completed 200 OK in 6ms (Views: 6.0ms | ActiveRecord: 0.0ms)
302
+ Connecting to database specified by database.yml
303
+
304
+
305
+ Started GET "/" for 127.0.0.1 at 2012-07-16 14:08:04 -0700
306
+ Processing by HomeController#index as HTML
307
+ Rendered home/index.html.erb within layouts/application (2.3ms)
308
+ Completed 200 OK in 41ms (Views: 41.1ms | ActiveRecord: 0.0ms)
309
+
310
+
311
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 14:08:04 -0700
312
+ Processing by HomeController#index as XLSX
313
+ Rendered home/index.xlsx.axlsx (4.3ms)
314
+ Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
315
+ Connecting to database specified by database.yml
316
+
317
+
318
+ Started GET "/" for 127.0.0.1 at 2012-07-16 14:14:17 -0700
319
+ Processing by HomeController#index as HTML
320
+ Rendered home/index.html.erb within layouts/application (2.4ms)
321
+ Completed 200 OK in 43ms (Views: 42.1ms | ActiveRecord: 0.0ms)
322
+
323
+
324
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 14:14:17 -0700
325
+ Processing by HomeController#index as XLSX
326
+ Rendered home/index.xlsx.axlsx (4.2ms)
327
+ Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
328
+ Connecting to database specified by database.yml
329
+
330
+
331
+ Started GET "/" for 127.0.0.1 at 2012-07-16 14:21:30 -0700
332
+ Processing by HomeController#index as HTML
333
+ Rendered home/index.html.erb within layouts/application (2.3ms)
334
+ Completed 200 OK in 40ms (Views: 39.7ms | ActiveRecord: 0.0ms)
335
+
336
+
337
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 14:21:30 -0700
338
+ Processing by HomeController#index as XLSX
339
+ Rendered home/index.xlsx.axlsx (4.5ms)
340
+ Completed 200 OK in 6ms (Views: 6.0ms | ActiveRecord: 0.0ms)
341
+ Connecting to database specified by database.yml
342
+
343
+
344
+ Started GET "/" for 127.0.0.1 at 2012-07-16 14:21:38 -0700
345
+ Processing by HomeController#index as HTML
346
+ Rendered home/index.html.erb within layouts/application (2.6ms)
347
+ Completed 200 OK in 43ms (Views: 42.6ms | ActiveRecord: 0.0ms)
348
+
349
+
350
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 14:21:38 -0700
351
+ Processing by HomeController#index as XLSX
352
+ Rendered home/index.xlsx.axlsx (4.2ms)
353
+ Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
354
+ Connecting to database specified by database.yml
355
+
356
+
357
+ Started GET "/" for 127.0.0.1 at 2012-07-16 14:25:47 -0700
358
+ Processing by HomeController#index as HTML
359
+ Rendered home/index.html.erb within layouts/application (3.3ms)
360
+ Completed 200 OK in 42ms (Views: 41.8ms | ActiveRecord: 0.0ms)
361
+
362
+
363
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 14:25:47 -0700
364
+ Processing by HomeController#index as XLSX
365
+ Rendered home/index.xlsx.axlsx (28.7ms)
366
+ Completed 200 OK in 30ms (Views: 30.1ms | ActiveRecord: 0.0ms)
367
+ Connecting to database specified by database.yml
368
+ Connecting to database specified by database.yml
369
+ Connecting to database specified by database.yml
370
+ Connecting to database specified by database.yml
371
+
372
+
373
+ Started GET "/" for 127.0.0.1 at 2012-07-16 14:31:34 -0700
374
+ Processing by HomeController#index as HTML
375
+ Rendered home/index.html.erb within layouts/application (2.4ms)
376
+ Completed 200 OK in 41ms (Views: 41.1ms | ActiveRecord: 0.0ms)
377
+
378
+
379
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 14:31:34 -0700
380
+ Processing by HomeController#index as XLSX
381
+ Rendered home/index.xlsx.axlsx (4.3ms)
382
+ Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
383
+ Connecting to database specified by database.yml
384
+ Connecting to database specified by database.yml
385
+
386
+
387
+ Started GET "/" for 127.0.0.1 at 2012-07-16 14:33:39 -0700
388
+ Processing by HomeController#index as HTML
389
+ Rendered home/index.html.erb within layouts/application (2.4ms)
390
+ Completed 200 OK in 41ms (Views: 40.2ms | ActiveRecord: 0.0ms)
391
+
392
+
393
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 14:33:39 -0700
394
+ Processing by HomeController#index as XLSX
395
+ Rendered home/index.xlsx.axlsx (4.7ms)
396
+ Completed 200 OK in 6ms (Views: 6.0ms | ActiveRecord: 0.0ms)
397
+ Connecting to database specified by database.yml
398
+
399
+
400
+ Started GET "/" for 127.0.0.1 at 2012-07-16 14:33:58 -0700
401
+ Processing by HomeController#index as HTML
402
+ Rendered home/index.html.erb within layouts/application (2.2ms)
403
+ Completed 200 OK in 42ms (Views: 41.6ms | ActiveRecord: 0.0ms)
404
+
405
+
406
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 14:33:58 -0700
407
+ Processing by HomeController#index as XLSX
408
+ Rendered home/index.xlsx.axlsx (4.3ms)
409
+ Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
410
+ Connecting to database specified by database.yml
411
+
412
+
413
+ Started GET "/" for 127.0.0.1 at 2012-07-16 14:34:10 -0700
414
+ Processing by HomeController#index as HTML
415
+ Rendered home/index.html.erb within layouts/application (2.8ms)
416
+ Completed 200 OK in 43ms (Views: 42.2ms | ActiveRecord: 0.0ms)
417
+
418
+
419
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 14:34:10 -0700
420
+ Processing by HomeController#index as XLSX
421
+ Rendered home/index.xlsx.axlsx (4.7ms)
422
+ Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.0ms)
423
+ Connecting to database specified by database.yml
424
+
425
+
426
+ Started GET "/" for 127.0.0.1 at 2012-07-16 14:34:26 -0700
427
+ Processing by HomeController#index as HTML
428
+ Rendered home/index.html.erb within layouts/application (2.5ms)
429
+ Completed 200 OK in 41ms (Views: 41.0ms | ActiveRecord: 0.0ms)
430
+
431
+
432
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 14:34:26 -0700
433
+ Processing by HomeController#index as XLSX
434
+ Rendered home/index.xlsx.axlsx (6.1ms)
435
+ Completed 200 OK in 8ms (Views: 7.7ms | ActiveRecord: 0.0ms)
436
+ Connecting to database specified by database.yml
437
+
438
+
439
+ Started GET "/" for 127.0.0.1 at 2012-07-16 14:36:33 -0700
440
+ Processing by HomeController#index as HTML
441
+ Rendered home/index.html.erb within layouts/application (2.4ms)
442
+ Completed 200 OK in 42ms (Views: 41.6ms | ActiveRecord: 0.0ms)
443
+
444
+
445
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 14:36:33 -0700
446
+ Processing by HomeController#index as XLSX
447
+ Rendered home/index.xlsx.axlsx (28.8ms)
448
+ Completed 200 OK in 30ms (Views: 30.2ms | ActiveRecord: 0.0ms)
449
+ Connecting to database specified by database.yml
450
+
451
+
452
+ Started GET "/" for 127.0.0.1 at 2012-07-16 14:36:54 -0700
453
+ Processing by HomeController#index as HTML
454
+ Rendered home/index.html.erb within layouts/application (2.3ms)
455
+ Completed 200 OK in 41ms (Views: 41.0ms | ActiveRecord: 0.0ms)
456
+
457
+
458
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 14:36:54 -0700
459
+ Processing by HomeController#index as XLSX
460
+ Rendered home/index.xlsx.axlsx (4.7ms)
461
+ Completed 200 OK in 6ms (Views: 6.2ms | ActiveRecord: 0.0ms)
462
+ Connecting to database specified by database.yml
463
+
464
+
465
+ Started GET "/" for 127.0.0.1 at 2012-07-16 14:38:53 -0700
466
+ Processing by HomeController#index as HTML
467
+ Rendered home/index.html.erb within layouts/application (2.4ms)
468
+ Completed 200 OK in 41ms (Views: 40.3ms | ActiveRecord: 0.0ms)
469
+
470
+
471
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 14:38:53 -0700
472
+ Processing by HomeController#index as XLSX
473
+ Rendered home/index.xlsx.axlsx (4.4ms)
474
+ Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
475
+ Connecting to database specified by database.yml
476
+
477
+
478
+ Started GET "/" for 127.0.0.1 at 2012-07-16 14:40:41 -0700
479
+ Processing by HomeController#index as HTML
480
+ Rendered home/index.html.erb within layouts/application (2.3ms)
481
+ Completed 200 OK in 40ms (Views: 40.0ms | ActiveRecord: 0.0ms)
482
+
483
+
484
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 14:40:41 -0700
485
+ Processing by HomeController#index as XLSX
486
+ Rendered home/index.xlsx.axlsx (4.4ms)
487
+ Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
488
+ Connecting to database specified by database.yml
489
+
490
+
491
+ Started GET "/" for 127.0.0.1 at 2012-07-16 14:41:19 -0700
492
+ Processing by HomeController#index as HTML
493
+ Rendered home/index.html.erb within layouts/application (2.6ms)
494
+ Completed 200 OK in 43ms (Views: 43.1ms | ActiveRecord: 0.0ms)
495
+
496
+
497
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 14:41:19 -0700
498
+ Processing by HomeController#index as XLSX
499
+ Rendered home/index.xlsx.axlsx (4.4ms)
500
+ Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
501
+ Connecting to database specified by database.yml
502
+
503
+
504
+ Started GET "/" for 127.0.0.1 at 2012-07-16 14:41:23 -0700
505
+ Processing by HomeController#index as HTML
506
+ Rendered home/index.html.erb within layouts/application (2.4ms)
507
+ Completed 200 OK in 41ms (Views: 40.8ms | ActiveRecord: 0.0ms)
508
+
509
+
510
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 14:41:23 -0700
511
+ Processing by HomeController#index as XLSX
512
+ Rendered home/index.xlsx.axlsx (4.3ms)
513
+ Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
514
+ Connecting to database specified by database.yml
515
+
516
+
517
+ Started GET "/" for 127.0.0.1 at 2012-07-16 14:42:15 -0700
518
+ Processing by HomeController#index as HTML
519
+ Rendered home/index.html.erb within layouts/application (2.4ms)
520
+ Completed 200 OK in 41ms (Views: 40.1ms | ActiveRecord: 0.0ms)
521
+
522
+
523
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 14:42:15 -0700
524
+ Processing by HomeController#index as XLSX
525
+ Completed 200 OK in 35ms (Views: 35.1ms | ActiveRecord: 0.0ms)
526
+ Connecting to database specified by database.yml
527
+
528
+
529
+ Started GET "/" for 127.0.0.1 at 2012-07-16 14:42:19 -0700
530
+ Processing by HomeController#index as HTML
531
+ Rendered home/index.html.erb within layouts/application (2.3ms)
532
+ Completed 200 OK in 41ms (Views: 40.9ms | ActiveRecord: 0.0ms)
533
+
534
+
535
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 14:42:19 -0700
536
+ Processing by HomeController#index as XLSX
537
+ Completed 200 OK in 30ms (Views: 29.4ms | ActiveRecord: 0.0ms)
538
+ Connecting to database specified by database.yml
539
+
540
+
541
+ Started GET "/" for 127.0.0.1 at 2012-07-16 15:01:00 -0700
542
+ Processing by HomeController#index as HTML
543
+ Rendered home/index.html.erb within layouts/application (2.4ms)
544
+ Completed 200 OK in 42ms (Views: 42.0ms | ActiveRecord: 0.0ms)
545
+
546
+
547
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 15:01:00 -0700
548
+ Processing by HomeController#index as XLSX
549
+ Completed 200 OK in 31ms (Views: 30.3ms | ActiveRecord: 0.0ms)
550
+ Connecting to database specified by database.yml
551
+
552
+
553
+ Started GET "/" for 127.0.0.1 at 2012-07-16 15:04:05 -0700
554
+ Processing by HomeController#index as HTML
555
+ Rendered home/index.html.erb within layouts/application (2.5ms)
556
+ Completed 200 OK in 41ms (Views: 40.7ms | ActiveRecord: 0.0ms)
557
+
558
+
559
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 15:04:05 -0700
560
+ Processing by HomeController#index as XLSX
561
+ Completed 200 OK in 31ms (Views: 30.7ms | ActiveRecord: 0.0ms)
562
+ Connecting to database specified by database.yml
563
+
564
+
565
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 15:04:26 -0700
566
+ Processing by HomeController#index as XLSX
567
+ Rendered home/index.xlsx.axlsx (4.2ms)
568
+ Completed 200 OK in 41ms (Views: 41.0ms | ActiveRecord: 0.0ms)
569
+
570
+
571
+ Started GET "/" for 127.0.0.1 at 2012-07-16 15:04:26 -0700
572
+ Processing by HomeController#index as HTML
573
+ Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
574
+ Connecting to database specified by database.yml
575
+
576
+
577
+ Started GET "/" for 127.0.0.1 at 2012-07-16 15:04:51 -0700
578
+ Processing by HomeController#index as HTML
579
+ Rendered home/index.html.erb within layouts/application (2.4ms)
580
+ Completed 200 OK in 41ms (Views: 40.2ms | ActiveRecord: 0.0ms)
581
+
582
+
583
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 15:04:51 -0700
584
+ Processing by HomeController#index as XLSX
585
+ Completed 200 OK in 32ms (Views: 31.5ms | ActiveRecord: 0.0ms)
586
+ Connecting to database specified by database.yml
587
+
588
+
589
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 15:05:03 -0700
590
+ Processing by HomeController#index as XLSX
591
+ Rendered home/index.xlsx.axlsx (4.5ms)
592
+ Completed 200 OK in 41ms (Views: 40.8ms | ActiveRecord: 0.0ms)
593
+
594
+
595
+ Started GET "/" for 127.0.0.1 at 2012-07-16 15:05:03 -0700
596
+ Processing by HomeController#index as HTML
597
+ Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
598
+ Connecting to database specified by database.yml
599
+
600
+
601
+ Started GET "/" for 127.0.0.1 at 2012-07-16 15:05:07 -0700
602
+ Processing by HomeController#index as HTML
603
+ Rendered home/index.html.erb within layouts/application (2.4ms)
604
+ Completed 200 OK in 41ms (Views: 40.9ms | ActiveRecord: 0.0ms)
605
+
606
+
607
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 15:05:07 -0700
608
+ Processing by HomeController#index as XLSX
609
+ Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
610
+ Connecting to database specified by database.yml
611
+ Connecting to database specified by database.yml
612
+ Connecting to database specified by database.yml
613
+
614
+
615
+ Started GET "/" for 127.0.0.1 at 2012-07-16 15:54:05 -0700
616
+ Processing by HomeController#index as HTML
617
+ Rendered home/index.html.erb within layouts/application (2.3ms)
618
+ Completed 200 OK in 42ms (Views: 41.9ms | ActiveRecord: 0.0ms)
619
+
620
+
621
+ Started GET "/another.xlsx" for 127.0.0.1 at 2012-07-16 15:54:06 -0700
622
+ Processing by HomeController#another as XLSX
623
+ Completed 200 OK in 30ms (Views: 29.9ms | ActiveRecord: 0.0ms)
624
+
625
+
626
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 15:54:06 -0700
627
+ Processing by HomeController#index as XLSX
628
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
629
+ Connecting to database specified by database.yml
630
+
631
+
632
+ Started GET "/another.xlsx" for 127.0.0.1 at 2012-07-16 15:55:12 -0700
633
+ Processing by HomeController#another as XLSX
634
+ Rendered home/index.xlsx.axlsx (4.4ms)
635
+ Completed 200 OK in 43ms (Views: 42.7ms | ActiveRecord: 0.0ms)
636
+
637
+
638
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 15:55:12 -0700
639
+ Processing by HomeController#index as XLSX
640
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
641
+
642
+
643
+ Started GET "/" for 127.0.0.1 at 2012-07-16 15:55:12 -0700
644
+ Processing by HomeController#index as HTML
645
+ Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
646
+ Connecting to database specified by database.yml
647
+
648
+
649
+ Started GET "/" for 127.0.0.1 at 2012-07-16 15:55:46 -0700
650
+ Processing by HomeController#index as HTML
651
+ Rendered home/index.html.erb within layouts/application (2.3ms)
652
+ Completed 200 OK in 43ms (Views: 42.6ms | ActiveRecord: 0.0ms)
653
+
654
+
655
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 15:55:46 -0700
656
+ Processing by HomeController#index as XLSX
657
+ Completed 200 OK in 30ms (Views: 29.6ms | ActiveRecord: 0.0ms)
658
+
659
+
660
+ Started GET "/another.xlsx" for 127.0.0.1 at 2012-07-16 15:55:46 -0700
661
+ Processing by HomeController#another as XLSX
662
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
663
+ Connecting to database specified by database.yml
664
+
665
+
666
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 15:59:31 -0700
667
+ Processing by HomeController#index as XLSX
668
+ Rendered home/index.xlsx.axlsx (4.3ms)
669
+ Completed 200 OK in 41ms (Views: 40.4ms | ActiveRecord: 0.0ms)
670
+
671
+
672
+ Started GET "/another.xlsx" for 127.0.0.1 at 2012-07-16 15:59:32 -0700
673
+ Processing by HomeController#another as XLSX
674
+ Completed 200 OK in 31ms (Views: 30.2ms | ActiveRecord: 0.0ms)
675
+
676
+
677
+ Started GET "/" for 127.0.0.1 at 2012-07-16 15:59:32 -0700
678
+ Processing by HomeController#index as HTML
679
+ Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
680
+ Connecting to database specified by database.yml
681
+
682
+
683
+ Started GET "/another.xlsx" for 127.0.0.1 at 2012-07-16 15:59:36 -0700
684
+ Processing by HomeController#another as XLSX
685
+ Rendered home/index.xlsx.axlsx (4.3ms)
686
+ Completed 200 OK in 41ms (Views: 40.7ms | ActiveRecord: 0.0ms)
687
+
688
+
689
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 15:59:36 -0700
690
+ Processing by HomeController#index as XLSX
691
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
692
+
693
+
694
+ Started GET "/" for 127.0.0.1 at 2012-07-16 15:59:36 -0700
695
+ Processing by HomeController#index as HTML
696
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
697
+ Connecting to database specified by database.yml
698
+
699
+
700
+ Started GET "/" for 127.0.0.1 at 2012-07-16 16:01:07 -0700
701
+ Processing by HomeController#index as HTML
702
+ Rendered home/index.html.erb within layouts/application (2.3ms)
703
+ Completed 200 OK in 41ms (Views: 40.2ms | ActiveRecord: 0.0ms)
704
+
705
+
706
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 16:01:07 -0700
707
+ Processing by HomeController#index as XLSX
708
+ Completed 200 OK in 32ms (Views: 31.4ms | ActiveRecord: 0.0ms)
709
+
710
+
711
+ Started GET "/another.xlsx" for 127.0.0.1 at 2012-07-16 16:01:07 -0700
712
+ Processing by HomeController#another as XLSX
713
+ Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.0ms)
714
+ Connecting to database specified by database.yml
715
+
716
+
717
+ Started GET "/" for 127.0.0.1 at 2012-07-16 16:01:10 -0700
718
+ Processing by HomeController#index as HTML
719
+ Rendered home/index.html.erb within layouts/application (2.8ms)
720
+ Completed 200 OK in 44ms (Views: 44.0ms | ActiveRecord: 0.0ms)
721
+
722
+
723
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 16:01:11 -0700
724
+ Processing by HomeController#index as XLSX
725
+ Completed 200 OK in 32ms (Views: 31.6ms | ActiveRecord: 0.0ms)
726
+
727
+
728
+ Started GET "/another.xlsx" for 127.0.0.1 at 2012-07-16 16:01:11 -0700
729
+ Processing by HomeController#another as XLSX
730
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
731
+ Connecting to database specified by database.yml
732
+
733
+
734
+ Started GET "/another.xlsx" for 127.0.0.1 at 2012-07-16 16:01:14 -0700
735
+ Processing by HomeController#another as XLSX
736
+ Rendered home/index.xlsx.axlsx (4.3ms)
737
+ Completed 200 OK in 41ms (Views: 41.0ms | ActiveRecord: 0.0ms)
738
+
739
+
740
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 16:01:14 -0700
741
+ Processing by HomeController#index as XLSX
742
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.0ms)
743
+
744
+
745
+ Started GET "/" for 127.0.0.1 at 2012-07-16 16:01:14 -0700
746
+ Processing by HomeController#index as HTML
747
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
748
+ Connecting to database specified by database.yml
749
+
750
+
751
+ Started GET "/" for 127.0.0.1 at 2012-07-16 16:01:21 -0700
752
+ Processing by HomeController#index as HTML
753
+ Rendered home/index.html.erb within layouts/application (2.6ms)
754
+ Completed 200 OK in 42ms (Views: 41.3ms | ActiveRecord: 0.0ms)
755
+
756
+
757
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 16:01:21 -0700
758
+ Processing by HomeController#index as XLSX
759
+ Completed 200 OK in 30ms (Views: 30.1ms | ActiveRecord: 0.0ms)
760
+
761
+
762
+ Started GET "/another.xlsx" for 127.0.0.1 at 2012-07-16 16:01:21 -0700
763
+ Processing by HomeController#another as XLSX
764
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
765
+ Connecting to database specified by database.yml
766
+
767
+
768
+ Started GET "/" for 127.0.0.1 at 2012-07-16 16:02:59 -0700
769
+ Processing by HomeController#index as HTML
770
+ Rendered home/index.html.erb within layouts/application (2.4ms)
771
+ Completed 200 OK in 41ms (Views: 40.7ms | ActiveRecord: 0.0ms)
772
+
773
+
774
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 16:02:59 -0700
775
+ Processing by HomeController#index as XLSX
776
+ Completed 200 OK in 30ms (Views: 30.0ms | ActiveRecord: 0.0ms)
777
+
778
+
779
+ Started GET "/another.xlsx" for 127.0.0.1 at 2012-07-16 16:02:59 -0700
780
+ Processing by HomeController#another as XLSX
781
+ Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
782
+ Connecting to database specified by database.yml
783
+
784
+
785
+ Started GET "/" for 127.0.0.1 at 2012-07-16 16:03:19 -0700
786
+ Processing by HomeController#index as HTML
787
+ Rendered home/index.html.erb within layouts/application (2.3ms)
788
+ Completed 200 OK in 41ms (Views: 41.0ms | ActiveRecord: 0.0ms)
789
+
790
+
791
+ Started GET "/another.xlsx" for 127.0.0.1 at 2012-07-16 16:03:19 -0700
792
+ Processing by HomeController#another as XLSX
793
+ Completed 200 OK in 31ms (Views: 30.4ms | ActiveRecord: 0.0ms)
794
+
795
+
796
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 16:03:19 -0700
797
+ Processing by HomeController#index as XLSX
798
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
799
+ Connecting to database specified by database.yml
800
+
801
+
802
+ Started GET "/another.xlsx" for 127.0.0.1 at 2012-07-16 16:04:17 -0700
803
+ Processing by HomeController#another as XLSX
804
+ Rendered home/index.xlsx.axlsx (4.1ms)
805
+ Completed 200 OK in 13ms (Views: 12.3ms | ActiveRecord: 0.0ms)
806
+
807
+
808
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 16:04:17 -0700
809
+ Processing by HomeController#index as XLSX
810
+ Completed 200 OK in 31ms (Views: 30.2ms | ActiveRecord: 0.0ms)
811
+
812
+
813
+ Started GET "/" for 127.0.0.1 at 2012-07-16 16:04:17 -0700
814
+ Processing by HomeController#index as HTML
815
+ Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
816
+ Connecting to database specified by database.yml
817
+
818
+
819
+ Started GET "/" for 127.0.0.1 at 2012-07-16 16:04:23 -0700
820
+ Processing by HomeController#index as HTML
821
+ Rendered home/index.html.erb within layouts/application (2.6ms)
822
+ Completed 200 OK in 43ms (Views: 42.2ms | ActiveRecord: 0.0ms)
823
+
824
+
825
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 16:04:23 -0700
826
+ Processing by HomeController#index as XLSX
827
+ Completed 200 OK in 30ms (Views: 29.7ms | ActiveRecord: 0.0ms)
828
+
829
+
830
+ Started GET "/another.xlsx" for 127.0.0.1 at 2012-07-16 16:04:23 -0700
831
+ Processing by HomeController#another as XLSX
832
+ Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
833
+ Connecting to database specified by database.yml
834
+
835
+
836
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 16:04:41 -0700
837
+ Processing by HomeController#index as XLSX
838
+ Rendered home/index.xlsx.axlsx (4.4ms)
839
+ Completed 200 OK in 44ms (Views: 43.8ms | ActiveRecord: 0.0ms)
840
+
841
+
842
+ Started GET "/" for 127.0.0.1 at 2012-07-16 16:04:41 -0700
843
+ Processing by HomeController#index as HTML
844
+ Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
845
+
846
+
847
+ Started GET "/another.xlsx" for 127.0.0.1 at 2012-07-16 16:04:41 -0700
848
+ Processing by HomeController#another as XLSX
849
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
850
+ Connecting to database specified by database.yml
851
+
852
+
853
+ Started GET "/" for 127.0.0.1 at 2012-07-16 16:05:58 -0700
854
+ Processing by HomeController#index as HTML
855
+ Rendered home/index.html.erb within layouts/application (2.4ms)
856
+ Completed 200 OK in 42ms (Views: 41.8ms | ActiveRecord: 0.0ms)
857
+
858
+
859
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 16:05:58 -0700
860
+ Processing by HomeController#index as XLSX
861
+ Completed 200 OK in 30ms (Views: 30.1ms | ActiveRecord: 0.0ms)
862
+
863
+
864
+ Started GET "/another.xlsx" for 127.0.0.1 at 2012-07-16 16:05:58 -0700
865
+ Processing by HomeController#another as XLSX
866
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
867
+ Connecting to database specified by database.yml
868
+
869
+
870
+ Started GET "/another.xlsx" for 127.0.0.1 at 2012-07-16 16:06:06 -0700
871
+ Processing by HomeController#another as XLSX
872
+ Rendered home/index.xlsx.axlsx (4.4ms)
873
+ Completed 200 OK in 43ms (Views: 42.6ms | ActiveRecord: 0.0ms)
874
+
875
+
876
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 16:06:06 -0700
877
+ Processing by HomeController#index as XLSX
878
+ Completed 200 OK in 29ms (Views: 28.7ms | ActiveRecord: 0.0ms)
879
+
880
+
881
+ Started GET "/" for 127.0.0.1 at 2012-07-16 16:06:06 -0700
882
+ Processing by HomeController#index as HTML
883
+ Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
884
+ Connecting to database specified by database.yml
885
+
886
+
887
+ Started GET "/" for 127.0.0.1 at 2012-07-16 16:07:30 -0700
888
+ Processing by HomeController#index as HTML
889
+ Rendered home/index.html.erb within layouts/application (3.4ms)
890
+ Completed 200 OK in 50ms (Views: 49.4ms | ActiveRecord: 0.0ms)
891
+
892
+
893
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 16:07:30 -0700
894
+ Processing by HomeController#index as XLSX
895
+ Completed 200 OK in 33ms (Views: 33.0ms | ActiveRecord: 0.0ms)
896
+
897
+
898
+ Started GET "/another.xlsx" for 127.0.0.1 at 2012-07-16 16:07:30 -0700
899
+ Processing by HomeController#another as XLSX
900
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
901
+ Connecting to database specified by database.yml
902
+
903
+
904
+ Started GET "/" for 127.0.0.1 at 2012-07-16 16:11:24 -0700
905
+ Processing by HomeController#index as HTML
906
+ Rendered home/index.html.erb within layouts/application (2.4ms)
907
+ Completed 200 OK in 42ms (Views: 42.0ms | ActiveRecord: 0.0ms)
908
+
909
+
910
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 16:11:24 -0700
911
+ Processing by HomeController#index as XLSX
912
+ Completed 200 OK in 31ms (Views: 30.3ms | ActiveRecord: 0.0ms)
913
+
914
+
915
+ Started GET "/another.xlsx" for 127.0.0.1 at 2012-07-16 16:11:24 -0700
916
+ Processing by HomeController#another as XLSX
917
+ Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
918
+ Connecting to database specified by database.yml
919
+
920
+
921
+ Started GET "/another.xlsx" for 127.0.0.1 at 2012-07-16 16:12:06 -0700
922
+ Processing by HomeController#another as XLSX
923
+ Rendered home/index.xlsx.axlsx (4.4ms)
924
+ Completed 200 OK in 42ms (Views: 42.1ms | ActiveRecord: 0.0ms)
925
+
926
+
927
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 16:12:06 -0700
928
+ Processing by HomeController#index as XLSX
929
+ Completed 200 OK in 29ms (Views: 28.4ms | ActiveRecord: 0.0ms)
930
+
931
+
932
+ Started GET "/" for 127.0.0.1 at 2012-07-16 16:12:06 -0700
933
+ Processing by HomeController#index as HTML
934
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
935
+ Connecting to database specified by database.yml
936
+
937
+
938
+ Started GET "/" for 127.0.0.1 at 2012-07-16 16:12:10 -0700
939
+ Processing by HomeController#index as HTML
940
+ Rendered home/index.html.erb within layouts/application (2.3ms)
941
+ Completed 200 OK in 40ms (Views: 40.0ms | ActiveRecord: 0.0ms)
942
+
943
+
944
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-16 16:12:10 -0700
945
+ Processing by HomeController#index as XLSX
946
+ Completed 200 OK in 30ms (Views: 29.8ms | ActiveRecord: 0.0ms)
947
+
948
+
949
+ Started GET "/another.xlsx" for 127.0.0.1 at 2012-07-16 16:12:10 -0700
950
+ Processing by HomeController#another as XLSX
951
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
952
+ Connecting to database specified by database.yml
953
+
954
+
955
+ Started GET "/another.xlsx" for 127.0.0.1 at 2012-07-17 11:28:28 -0700
956
+ Processing by HomeController#another as XLSX
957
+ Rendered home/index.xlsx.axlsx (8.8ms)
958
+ Completed 500 Internal Server Error in 57ms
959
+
960
+
961
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-17 11:28:28 -0700
962
+ Processing by HomeController#index as XLSX
963
+ Completed 500 Internal Server Error in 5ms
964
+
965
+
966
+ Started GET "/" for 127.0.0.1 at 2012-07-17 11:28:28 -0700
967
+ Processing by HomeController#index as HTML
968
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
969
+ Connecting to database specified by database.yml
970
+ Connecting to database specified by database.yml
971
+
972
+
973
+ Started GET "/" for 127.0.0.1 at 2012-07-17 11:28:58 -0700
974
+ Processing by HomeController#index as HTML
975
+ Rendered home/index.html.erb within layouts/application (2.6ms)
976
+ Completed 200 OK in 42ms (Views: 41.3ms | ActiveRecord: 0.0ms)
977
+
978
+
979
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-17 11:28:58 -0700
980
+ Processing by HomeController#index as XLSX
981
+ Completed 200 OK in 31ms (Views: 30.3ms | ActiveRecord: 0.0ms)
982
+
983
+
984
+ Started GET "/another.xlsx" for 127.0.0.1 at 2012-07-17 11:28:58 -0700
985
+ Processing by HomeController#another as XLSX
986
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
987
+ Connecting to database specified by database.yml
988
+
989
+
990
+ Started GET "/" for 127.0.0.1 at 2012-07-17 12:24:56 -0700
991
+ Processing by HomeController#index as HTML
992
+ Rendered home/index.html.erb within layouts/application (2.3ms)
993
+ Completed 200 OK in 41ms (Views: 41.0ms | ActiveRecord: 0.0ms)
994
+
995
+
996
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-17 12:24:56 -0700
997
+ Processing by HomeController#index as XLSX
998
+ Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
999
+
1000
+
1001
+ Started GET "/another.xlsx" for 127.0.0.1 at 2012-07-17 12:24:56 -0700
1002
+ Processing by HomeController#another as XLSX
1003
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
1004
+ Connecting to database specified by database.yml
1005
+
1006
+
1007
+ Started GET "/" for 127.0.0.1 at 2012-07-17 12:26:51 -0700
1008
+ Processing by HomeController#index as HTML
1009
+ Rendered home/index.html.erb within layouts/application (2.3ms)
1010
+ Completed 200 OK in 41ms (Views: 40.2ms | ActiveRecord: 0.0ms)
1011
+
1012
+
1013
+ Started GET "/another.xlsx" for 127.0.0.1 at 2012-07-17 12:26:52 -0700
1014
+ Processing by HomeController#another as XLSX
1015
+ Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
1016
+
1017
+
1018
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-17 12:26:52 -0700
1019
+ Processing by HomeController#index as XLSX
1020
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
1021
+ Connecting to database specified by database.yml
1022
+ Connecting to database specified by database.yml
1023
+  (1.5ms) select sqlite_version(*)
1024
+  (3.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "last_name" varchar(255), "address" varchar(255), "email" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1025
+  (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1026
+  (0.0ms) PRAGMA index_list("schema_migrations")
1027
+  (2.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1028
+  (0.1ms) SELECT version FROM "schema_migrations"
1029
+  (2.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120717192452')
1030
+ Connecting to database specified by database.yml
1031
+ Connecting to database specified by database.yml
1032
+ Connecting to database specified by database.yml
1033
+ Connecting to database specified by database.yml
1034
+ Connecting to database specified by database.yml
1035
+ Connecting to database specified by database.yml
1036
+
1037
+
1038
+ Started GET "/another.xlsx" for 127.0.0.1 at 2012-07-17 13:02:32 -0700
1039
+ Processing by HomeController#another as XLSX
1040
+ Rendered home/index.xlsx.axlsx (4.6ms)
1041
+ Completed 200 OK in 43ms (Views: 43.1ms | ActiveRecord: 0.0ms)
1042
+
1043
+
1044
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-17 13:02:32 -0700
1045
+ Processing by HomeController#index as XLSX
1046
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
1047
+
1048
+
1049
+ Started GET "/" for 127.0.0.1 at 2012-07-17 13:02:33 -0700
1050
+ Processing by HomeController#index as HTML
1051
+ Completed 200 OK in 5ms (Views: 5.3ms | ActiveRecord: 0.0ms)
1052
+  (0.1ms) begin transaction
1053
+ SQL (107.2ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Somewhere, Over NY 11111"], ["created_at", Tue, 17 Jul 2012 20:02:33 UTC +00:00], ["email", "elmer@fudd.com"], ["last_name", "Fudd"], ["name", "Elmer"], ["updated_at", Tue, 17 Jul 2012 20:02:33 UTC +00:00]]
1054
+  (9.5ms) commit transaction
1055
+  (0.1ms) begin transaction
1056
+ SQL (0.4ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Left Turn, Albuquerque NM 22222"], ["created_at", Tue, 17 Jul 2012 20:02:33 UTC +00:00], ["email", "bugs@bunny.com"], ["last_name", "Bunny"], ["name", "Bugs"], ["updated_at", Tue, 17 Jul 2012 20:02:33 UTC +00:00]]
1057
+  (23.2ms) commit transaction
1058
+
1059
+
1060
+ Started GET "/acts_as_xlsx.xlsx" for 127.0.0.1 at 2012-07-17 13:02:33 -0700
1061
+ Connecting to database specified by database.yml
1062
+  (0.1ms) begin transaction
1063
+ SQL (4.8ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Somewhere, Over NY 11111"], ["created_at", Tue, 17 Jul 2012 20:02:57 UTC +00:00], ["email", "elmer@fudd.com"], ["last_name", "Fudd"], ["name", "Elmer"], ["updated_at", Tue, 17 Jul 2012 20:02:57 UTC +00:00]]
1064
+  (6.0ms) commit transaction
1065
+  (0.1ms) begin transaction
1066
+ SQL (0.5ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Left Turn, Albuquerque NM 22222"], ["created_at", Tue, 17 Jul 2012 20:02:57 UTC +00:00], ["email", "bugs@bunny.com"], ["last_name", "Bunny"], ["name", "Bugs"], ["updated_at", Tue, 17 Jul 2012 20:02:57 UTC +00:00]]
1067
+  (26.9ms) commit transaction
1068
+
1069
+
1070
+ Started GET "/index.xlsx" for 127.0.0.1 at 2012-07-17 13:02:57 -0700
1071
+
1072
+
1073
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-17 13:02:57 -0700
1074
+ Processing by HomeController#index as XLSX
1075
+ Completed 200 OK in 47ms (Views: 47.0ms | ActiveRecord: 0.0ms)
1076
+
1077
+
1078
+ Started GET "/another.xlsx" for 127.0.0.1 at 2012-07-17 13:02:57 -0700
1079
+ Processing by HomeController#another as XLSX
1080
+ Completed 200 OK in 33ms (Views: 32.8ms | ActiveRecord: 0.0ms)
1081
+
1082
+
1083
+ Started GET "/" for 127.0.0.1 at 2012-07-17 13:02:57 -0700
1084
+ Processing by HomeController#index as HTML
1085
+ Completed 200 OK in 11ms (Views: 11.1ms | ActiveRecord: 0.0ms)
1086
+ Connecting to database specified by database.yml
1087
+
1088
+
1089
+ Started GET "/" for 127.0.0.1 at 2012-07-17 13:03:19 -0700
1090
+ Processing by HomeController#index as HTML
1091
+ Rendered home/index.html.erb within layouts/application (3.1ms)
1092
+ Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.0ms)
1093
+  (0.1ms) begin transaction
1094
+ SQL (5.0ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Somewhere, Over NY 11111"], ["created_at", Tue, 17 Jul 2012 20:03:19 UTC +00:00], ["email", "elmer@fudd.com"], ["last_name", "Fudd"], ["name", "Elmer"], ["updated_at", Tue, 17 Jul 2012 20:03:19 UTC +00:00]]
1095
+  (2.2ms) commit transaction
1096
+  (0.1ms) begin transaction
1097
+ SQL (0.4ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Left Turn, Albuquerque NM 22222"], ["created_at", Tue, 17 Jul 2012 20:03:19 UTC +00:00], ["email", "bugs@bunny.com"], ["last_name", "Bunny"], ["name", "Bugs"], ["updated_at", Tue, 17 Jul 2012 20:03:19 UTC +00:00]]
1098
+  (2.3ms) commit transaction
1099
+
1100
+
1101
+ Started GET "/index.xlsx" for 127.0.0.1 at 2012-07-17 13:03:19 -0700
1102
+
1103
+
1104
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-17 13:03:19 -0700
1105
+ Processing by HomeController#index as XLSX
1106
+ Completed 200 OK in 32ms (Views: 31.9ms | ActiveRecord: 0.0ms)
1107
+
1108
+
1109
+ Started GET "/another.xlsx" for 127.0.0.1 at 2012-07-17 13:03:19 -0700
1110
+ Processing by HomeController#another as XLSX
1111
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
1112
+ Connecting to database specified by database.yml
1113
+
1114
+
1115
+ Started GET "/" for 127.0.0.1 at 2012-07-17 13:03:24 -0700
1116
+ Processing by HomeController#index as HTML
1117
+ Rendered home/index.html.erb within layouts/application (30.1ms)
1118
+ Completed 200 OK in 41ms (Views: 40.6ms | ActiveRecord: 0.0ms)
1119
+
1120
+
1121
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-17 13:03:24 -0700
1122
+ Processing by HomeController#index as XLSX
1123
+ Completed 200 OK in 33ms (Views: 32.4ms | ActiveRecord: 0.0ms)
1124
+
1125
+
1126
+ Started GET "/another.xlsx" for 127.0.0.1 at 2012-07-17 13:03:24 -0700
1127
+ Processing by HomeController#another as XLSX
1128
+ Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.0ms)
1129
+  (0.1ms) begin transaction
1130
+ SQL (30.9ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Somewhere, Over NY 11111"], ["created_at", Tue, 17 Jul 2012 20:03:24 UTC +00:00], ["email", "elmer@fudd.com"], ["last_name", "Fudd"], ["name", "Elmer"], ["updated_at", Tue, 17 Jul 2012 20:03:24 UTC +00:00]]
1131
+  (2.4ms) commit transaction
1132
+  (0.1ms) begin transaction
1133
+ SQL (0.4ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Left Turn, Albuquerque NM 22222"], ["created_at", Tue, 17 Jul 2012 20:03:24 UTC +00:00], ["email", "bugs@bunny.com"], ["last_name", "Bunny"], ["name", "Bugs"], ["updated_at", Tue, 17 Jul 2012 20:03:24 UTC +00:00]]
1134
+  (2.2ms) commit transaction
1135
+
1136
+
1137
+ Started GET "/index.xlsx" for 127.0.0.1 at 2012-07-17 13:03:24 -0700
1138
+ Connecting to database specified by database.yml
1139
+  (0.1ms) begin transaction
1140
+ SQL (4.3ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Somewhere, Over NY 11111"], ["created_at", Tue, 17 Jul 2012 20:03:29 UTC +00:00], ["email", "elmer@fudd.com"], ["last_name", "Fudd"], ["name", "Elmer"], ["updated_at", Tue, 17 Jul 2012 20:03:29 UTC +00:00]]
1141
+  (2.6ms) commit transaction
1142
+  (0.1ms) begin transaction
1143
+ SQL (0.4ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Left Turn, Albuquerque NM 22222"], ["created_at", Tue, 17 Jul 2012 20:03:29 UTC +00:00], ["email", "bugs@bunny.com"], ["last_name", "Bunny"], ["name", "Bugs"], ["updated_at", Tue, 17 Jul 2012 20:03:29 UTC +00:00]]
1144
+  (2.3ms) commit transaction
1145
+
1146
+
1147
+ Started GET "/index.xlsx" for 127.0.0.1 at 2012-07-17 13:03:29 -0700
1148
+
1149
+
1150
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-17 13:03:29 -0700
1151
+ Processing by HomeController#index as XLSX
1152
+ Completed 200 OK in 44ms (Views: 43.9ms | ActiveRecord: 0.0ms)
1153
+
1154
+
1155
+ Started GET "/another.xlsx" for 127.0.0.1 at 2012-07-17 13:03:29 -0700
1156
+ Processing by HomeController#another as XLSX
1157
+ Completed 200 OK in 31ms (Views: 30.2ms | ActiveRecord: 0.0ms)
1158
+
1159
+
1160
+ Started GET "/" for 127.0.0.1 at 2012-07-17 13:03:29 -0700
1161
+ Processing by HomeController#index as HTML
1162
+ Completed 200 OK in 8ms (Views: 8.2ms | ActiveRecord: 0.0ms)
1163
+ Connecting to database specified by database.yml
1164
+
1165
+
1166
+ Started GET "/" for 127.0.0.1 at 2012-07-17 13:03:43 -0700
1167
+ Processing by HomeController#index as HTML
1168
+ Rendered home/index.html.erb within layouts/application (30.5ms)
1169
+ Completed 200 OK in 41ms (Views: 40.2ms | ActiveRecord: 0.0ms)
1170
+  (0.1ms) begin transaction
1171
+ SQL (29.8ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Somewhere, Over NY 11111"], ["created_at", Tue, 17 Jul 2012 20:03:43 UTC +00:00], ["email", "elmer@fudd.com"], ["last_name", "Fudd"], ["name", "Elmer"], ["updated_at", Tue, 17 Jul 2012 20:03:43 UTC +00:00]]
1172
+  (2.1ms) commit transaction
1173
+  (0.0ms) begin transaction
1174
+ SQL (0.3ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Left Turn, Albuquerque NM 22222"], ["created_at", Tue, 17 Jul 2012 20:03:43 UTC +00:00], ["email", "bugs@bunny.com"], ["last_name", "Bunny"], ["name", "Bugs"], ["updated_at", Tue, 17 Jul 2012 20:03:43 UTC +00:00]]
1175
+  (1.9ms) commit transaction
1176
+
1177
+
1178
+ Started GET "/index.xlsx" for 127.0.0.1 at 2012-07-17 13:03:43 -0700
1179
+
1180
+
1181
+ Started GET "/another.xlsx" for 127.0.0.1 at 2012-07-17 13:03:43 -0700
1182
+ Processing by HomeController#another as XLSX
1183
+ Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
1184
+
1185
+
1186
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-17 13:03:43 -0700
1187
+ Processing by HomeController#index as XLSX
1188
+ Completed 200 OK in 30ms (Views: 30.0ms | ActiveRecord: 0.0ms)
1189
+ Connecting to database specified by database.yml
1190
+  (0.1ms) begin transaction
1191
+ SQL (4.3ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Somewhere, Over NY 11111"], ["created_at", Tue, 17 Jul 2012 20:04:03 UTC +00:00], ["email", "elmer@fudd.com"], ["last_name", "Fudd"], ["name", "Elmer"], ["updated_at", Tue, 17 Jul 2012 20:04:03 UTC +00:00]]
1192
+  (2.7ms) commit transaction
1193
+  (0.1ms) begin transaction
1194
+ SQL (0.4ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Left Turn, Albuquerque NM 22222"], ["created_at", Tue, 17 Jul 2012 20:04:03 UTC +00:00], ["email", "bugs@bunny.com"], ["last_name", "Bunny"], ["name", "Bugs"], ["updated_at", Tue, 17 Jul 2012 20:04:03 UTC +00:00]]
1195
+  (1.7ms) commit transaction
1196
+
1197
+
1198
+ Started GET "/users.xlsx" for 127.0.0.1 at 2012-07-17 13:04:03 -0700
1199
+ Processing by UsersController#index as XLSX
1200
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1201
+ Completed 500 Internal Server Error in 43ms
1202
+
1203
+
1204
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-17 13:04:03 -0700
1205
+ Processing by HomeController#index as XLSX
1206
+ Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.0ms)
1207
+
1208
+
1209
+ Started GET "/" for 127.0.0.1 at 2012-07-17 13:04:04 -0700
1210
+ Processing by HomeController#index as HTML
1211
+ Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
1212
+
1213
+
1214
+ Started GET "/another.xlsx" for 127.0.0.1 at 2012-07-17 13:04:04 -0700
1215
+ Processing by HomeController#another as XLSX
1216
+ Completed 200 OK in 33ms (Views: 32.4ms | ActiveRecord: 0.0ms)
1217
+ Connecting to database specified by database.yml
1218
+
1219
+
1220
+ Started GET "/" for 127.0.0.1 at 2012-07-17 13:05:21 -0700
1221
+ Processing by HomeController#index as HTML
1222
+ Rendered home/index.html.erb within layouts/application (2.4ms)
1223
+ Completed 200 OK in 13ms (Views: 12.9ms | ActiveRecord: 0.0ms)
1224
+
1225
+
1226
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-17 13:05:21 -0700
1227
+ Processing by HomeController#index as XLSX
1228
+ Completed 200 OK in 30ms (Views: 29.5ms | ActiveRecord: 0.0ms)
1229
+
1230
+
1231
+ Started GET "/another.xlsx" for 127.0.0.1 at 2012-07-17 13:05:21 -0700
1232
+ Processing by HomeController#another as XLSX
1233
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
1234
+  (0.1ms) begin transaction
1235
+ SQL (4.2ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Somewhere, Over NY 11111"], ["created_at", Tue, 17 Jul 2012 20:05:21 UTC +00:00], ["email", "elmer@fudd.com"], ["last_name", "Fudd"], ["name", "Elmer"], ["updated_at", Tue, 17 Jul 2012 20:05:21 UTC +00:00]]
1236
+  (1.9ms) commit transaction
1237
+  (0.1ms) begin transaction
1238
+ SQL (0.3ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Left Turn, Albuquerque NM 22222"], ["created_at", Tue, 17 Jul 2012 20:05:21 UTC +00:00], ["email", "bugs@bunny.com"], ["last_name", "Bunny"], ["name", "Bugs"], ["updated_at", Tue, 17 Jul 2012 20:05:21 UTC +00:00]]
1239
+  (1.6ms) commit transaction
1240
+
1241
+
1242
+ Started GET "/users.xlsx" for 127.0.0.1 at 2012-07-17 13:05:21 -0700
1243
+ Processing by UsersController#index as XLSX
1244
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1245
+ CACHE (0.0ms) SELECT "users".* FROM "users"
1246
+ Completed 200 OK in 39ms (Views: 37.3ms | ActiveRecord: 0.2ms)
1247
+ Connecting to database specified by database.yml
1248
+  (0.1ms) begin transaction
1249
+ SQL (4.8ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Somewhere, Over NY 11111"], ["created_at", Tue, 17 Jul 2012 20:05:46 UTC +00:00], ["email", "elmer@fudd.com"], ["last_name", "Fudd"], ["name", "Elmer"], ["updated_at", Tue, 17 Jul 2012 20:05:46 UTC +00:00]]
1250
+  (2.4ms) commit transaction
1251
+  (0.0ms) begin transaction
1252
+ SQL (0.3ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Left Turn, Albuquerque NM 22222"], ["created_at", Tue, 17 Jul 2012 20:05:46 UTC +00:00], ["email", "bugs@bunny.com"], ["last_name", "Bunny"], ["name", "Bugs"], ["updated_at", Tue, 17 Jul 2012 20:05:46 UTC +00:00]]
1253
+  (2.6ms) commit transaction
1254
+
1255
+
1256
+ Started GET "/users.xlsx" for 127.0.0.1 at 2012-07-17 13:05:46 -0700
1257
+ Processing by UsersController#index as XLSX
1258
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1259
+ CACHE (0.0ms) SELECT "users".* FROM "users"
1260
+ Rendered users/index.xlsx.axlsx (8.3ms)
1261
+ Completed 200 OK in 48ms (Views: 46.5ms | ActiveRecord: 0.2ms)
1262
+
1263
+
1264
+ Started GET "/another.xlsx" for 127.0.0.1 at 2012-07-17 13:05:47 -0700
1265
+ Processing by HomeController#another as XLSX
1266
+ Completed 200 OK in 34ms (Views: 34.1ms | ActiveRecord: 0.0ms)
1267
+
1268
+
1269
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-17 13:05:47 -0700
1270
+ Processing by HomeController#index as XLSX
1271
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
1272
+
1273
+
1274
+ Started GET "/" for 127.0.0.1 at 2012-07-17 13:05:47 -0700
1275
+ Processing by HomeController#index as HTML
1276
+ Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
1277
+ Connecting to database specified by database.yml
1278
+
1279
+
1280
+ Started GET "/another.xlsx" for 127.0.0.1 at 2012-07-17 13:05:57 -0700
1281
+ Processing by HomeController#another as XLSX
1282
+ Rendered home/index.xlsx.axlsx (28.7ms)
1283
+ Completed 200 OK in 37ms (Views: 36.2ms | ActiveRecord: 0.0ms)
1284
+
1285
+
1286
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-17 13:05:58 -0700
1287
+ Processing by HomeController#index as XLSX
1288
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
1289
+
1290
+
1291
+ Started GET "/" for 127.0.0.1 at 2012-07-17 13:05:58 -0700
1292
+ Processing by HomeController#index as HTML
1293
+ Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
1294
+  (0.1ms) begin transaction
1295
+ SQL (4.5ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Somewhere, Over NY 11111"], ["created_at", Tue, 17 Jul 2012 20:05:58 UTC +00:00], ["email", "elmer@fudd.com"], ["last_name", "Fudd"], ["name", "Elmer"], ["updated_at", Tue, 17 Jul 2012 20:05:58 UTC +00:00]]
1296
+  (2.6ms) commit transaction
1297
+  (0.0ms) begin transaction
1298
+ SQL (0.3ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Left Turn, Albuquerque NM 22222"], ["created_at", Tue, 17 Jul 2012 20:05:58 UTC +00:00], ["email", "bugs@bunny.com"], ["last_name", "Bunny"], ["name", "Bugs"], ["updated_at", Tue, 17 Jul 2012 20:05:58 UTC +00:00]]
1299
+  (2.0ms) commit transaction
1300
+
1301
+
1302
+ Started GET "/users.xlsx" for 127.0.0.1 at 2012-07-17 13:05:58 -0700
1303
+ Processing by UsersController#index as XLSX
1304
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1305
+ CACHE (0.0ms) SELECT "users".* FROM "users"
1306
+ Completed 200 OK in 40ms (Views: 37.8ms | ActiveRecord: 0.2ms)
1307
+ Connecting to database specified by database.yml
1308
+
1309
+
1310
+ Started GET "/" for 127.0.0.1 at 2012-07-17 13:06:01 -0700
1311
+ Processing by HomeController#index as HTML
1312
+ Rendered home/index.html.erb within layouts/application (2.7ms)
1313
+ Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.0ms)
1314
+
1315
+
1316
+ Started GET "/another.xlsx" for 127.0.0.1 at 2012-07-17 13:06:01 -0700
1317
+ Processing by HomeController#another as XLSX
1318
+ Completed 200 OK in 32ms (Views: 31.9ms | ActiveRecord: 0.0ms)
1319
+
1320
+
1321
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-17 13:06:01 -0700
1322
+ Processing by HomeController#index as XLSX
1323
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
1324
+  (0.1ms) begin transaction
1325
+ SQL (4.6ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Somewhere, Over NY 11111"], ["created_at", Tue, 17 Jul 2012 20:06:01 UTC +00:00], ["email", "elmer@fudd.com"], ["last_name", "Fudd"], ["name", "Elmer"], ["updated_at", Tue, 17 Jul 2012 20:06:01 UTC +00:00]]
1326
+  (1.9ms) commit transaction
1327
+  (0.0ms) begin transaction
1328
+ SQL (0.4ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Left Turn, Albuquerque NM 22222"], ["created_at", Tue, 17 Jul 2012 20:06:01 UTC +00:00], ["email", "bugs@bunny.com"], ["last_name", "Bunny"], ["name", "Bugs"], ["updated_at", Tue, 17 Jul 2012 20:06:01 UTC +00:00]]
1329
+  (1.6ms) commit transaction
1330
+
1331
+
1332
+ Started GET "/users.xlsx" for 127.0.0.1 at 2012-07-17 13:06:01 -0700
1333
+ Processing by UsersController#index as XLSX
1334
+ User Load (0.3ms) SELECT "users".* FROM "users" 
1335
+ CACHE (0.0ms) SELECT "users".* FROM "users"
1336
+ Completed 200 OK in 43ms (Views: 40.2ms | ActiveRecord: 0.3ms)
1337
+ Connecting to database specified by database.yml
1338
+
1339
+
1340
+ Started GET "/" for 127.0.0.1 at 2012-07-17 13:06:45 -0700
1341
+ Processing by HomeController#index as HTML
1342
+ Rendered home/index.html.erb within layouts/application (2.2ms)
1343
+ Completed 200 OK in 11ms (Views: 11.0ms | ActiveRecord: 0.0ms)
1344
+
1345
+
1346
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-17 13:06:45 -0700
1347
+ Processing by HomeController#index as XLSX
1348
+ Completed 200 OK in 30ms (Views: 29.8ms | ActiveRecord: 0.0ms)
1349
+
1350
+
1351
+ Started GET "/another.xlsx" for 127.0.0.1 at 2012-07-17 13:06:45 -0700
1352
+ Processing by HomeController#another as XLSX
1353
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
1354
+  (0.1ms) begin transaction
1355
+ SQL (4.1ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Somewhere, Over NY 11111"], ["created_at", Tue, 17 Jul 2012 20:06:45 UTC +00:00], ["email", "elmer@fudd.com"], ["last_name", "Fudd"], ["name", "Elmer"], ["updated_at", Tue, 17 Jul 2012 20:06:45 UTC +00:00]]
1356
+  (2.4ms) commit transaction
1357
+  (0.0ms) begin transaction
1358
+ SQL (0.4ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Left Turn, Albuquerque NM 22222"], ["created_at", Tue, 17 Jul 2012 20:06:45 UTC +00:00], ["email", "bugs@bunny.com"], ["last_name", "Bunny"], ["name", "Bugs"], ["updated_at", Tue, 17 Jul 2012 20:06:45 UTC +00:00]]
1359
+  (1.6ms) commit transaction
1360
+
1361
+
1362
+ Started GET "/users.xlsx" for 127.0.0.1 at 2012-07-17 13:06:45 -0700
1363
+ Processing by UsersController#index as XLSX
1364
+ User Load (0.3ms) SELECT "users".* FROM "users" 
1365
+ CACHE (0.0ms) SELECT "users".* FROM "users"
1366
+ Completed 200 OK in 40ms (Views: 37.8ms | ActiveRecord: 0.3ms)
1367
+ Connecting to database specified by database.yml
1368
+  (0.1ms) begin transaction
1369
+ SQL (4.6ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Somewhere, Over NY 11111"], ["created_at", Tue, 17 Jul 2012 20:13:55 UTC +00:00], ["email", "elmer@fudd.com"], ["last_name", "Fudd"], ["name", "Elmer"], ["updated_at", Tue, 17 Jul 2012 20:13:55 UTC +00:00]]
1370
+  (2.2ms) commit transaction
1371
+  (0.0ms) begin transaction
1372
+ SQL (0.3ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Left Turn, Albuquerque NM 22222"], ["created_at", Tue, 17 Jul 2012 20:13:55 UTC +00:00], ["email", "bugs@bunny.com"], ["last_name", "Bunny"], ["name", "Bugs"], ["updated_at", Tue, 17 Jul 2012 20:13:55 UTC +00:00]]
1373
+  (2.1ms) commit transaction
1374
+
1375
+
1376
+ Started GET "/users.xlsx" for 127.0.0.1 at 2012-07-17 13:13:55 -0700
1377
+ Processing by UsersController#index as XLSX
1378
+ User Load (0.3ms) SELECT "users".* FROM "users" 
1379
+ CACHE (0.0ms) SELECT "users".* FROM "users"
1380
+ Rendered users/index.xlsx.axlsx (10.7ms)
1381
+ Completed 200 OK in 51ms (Views: 48.8ms | ActiveRecord: 0.3ms)
1382
+
1383
+
1384
+ Started GET "/" for 127.0.0.1 at 2012-07-17 13:13:55 -0700
1385
+ Processing by HomeController#index as HTML
1386
+ Completed 200 OK in 9ms (Views: 8.2ms | ActiveRecord: 0.0ms)
1387
+
1388
+
1389
+ Started GET "/home.xlsx" for 127.0.0.1 at 2012-07-17 13:13:55 -0700
1390
+ Processing by HomeController#index as XLSX
1391
+ Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
1392
+
1393
+
1394
+ Started GET "/another.xlsx" for 127.0.0.1 at 2012-07-17 13:13:55 -0700
1395
+ Processing by HomeController#another as XLSX
1396
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)