axlsx_rails 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -18,7 +18,7 @@ gem 'axlsx_rails'
18
18
 
19
19
  ##Requirements
20
20
 
21
- * Rails 3.1, tested on 3.1, 3.2, and 4.1
21
+ * Rails 3.1, tested on 3.1, 3.2, 4.1, and 4.2.0.beta1
22
22
  * **As of 0.2.0 requires Axlsx 2.0.1, which requires rubyzip 1.0.0**
23
23
  * As of Rails 4.1 you must use `render_to_string` to render a mail attachment.
24
24
 
@@ -118,15 +118,31 @@ If you use [acts_as_xlsx](https://github.com/randym/acts_as_xlsx), configure the
118
118
  User.to_xlsx package: xlsx_package, (other options)
119
119
  ```
120
120
 
121
- ###Author
121
+ **Note:** As of 4/1/2014 Acts As Xlsx is not compatible with Rails 4.1, and generates a warning on 4.0. You may use [my patched fork](https://github.com/straydogstudio/acts_as_xlsx) until it is remedied.
122
122
 
123
- To set the author attribute upon Axlsx::Package.new, insert the following in application.rb:
123
+ ###Axlsx Package Options
124
+
125
+ Axlsx provides three options for initializing a spreadsheet:
126
+
127
+ - **:author** (String) - The author of the document
128
+ - **:created_at** (Time) - Timestamp in the document properties (defaults to current time)
129
+ - **:use_shared_strings** (Boolean) - This is passed to the workbook to specify that shared strings should be used when serializing the package.
130
+
131
+ To pass these to the new package, prefix them with `xlsx_` and pass them to `render :xlsx` _or_ pass them as local variables.
132
+
133
+ For example, to set the author name, pass the `:xlsx_author` parameter to `render :xlsx` _or_ as a local variable:
124
134
 
125
135
  ```ruby
126
- config.axlsx_author = "Elmer Fudd"
136
+ render xlsx: "index", xlsx_author: "Elmer Fudd"
137
+ render "index", locals: {xlsx_author: "Elmer Fudd"}
127
138
  ```
128
139
 
129
- > NOTE: We really ought to allow the author to be set in each call
140
+ Other examples:
141
+
142
+ ```ruby
143
+ render xlsx: "index", xlsx_created_at: 3.days.ago
144
+ render "index", locals: {xlsx_use_shared_strings: true}
145
+ ```
130
146
 
131
147
  ###Partials
132
148
 
@@ -155,14 +171,22 @@ To use an xlsx template to render a mail attachment, use the following syntax:
155
171
  ```ruby
156
172
  class UserMailer < ActionMailer::Base
157
173
  def export(users)
158
- xlsx = render_to_string handlers: [:axlsx], template: "users/export", locals: {users: users}
174
+ xlsx = render_to_string handlers: [:axlsx], formats: [:xlsx], template: "users/export", locals: {users: users}
159
175
  attachments["Users.xlsx"] = {mime_type: Mime::XLSX, content: xlsx}
160
176
  ...
161
177
  end
162
178
  end
163
179
  ```
164
180
 
165
- If the template (`users/export`) can refer to only one file (the xlsx.axlsx template), you do not need to specify `handlers`.
181
+ * If the route specifies or suggests the `:xlsx` format you do not need to specify `formats` or `handlers`.
182
+ * If the template (`users/export`) can refer to only one file (the xlsx.axlsx template), you do not need to specify `handlers`, provided the `formats` includes `:xlsx`.
183
+
184
+ ###Scripts
185
+
186
+ To generate a template within a script, you need to instantiate an ActionView context. Here are two gists showing how to perform this:
187
+
188
+ * [Using rails runner](https://gist.github.com/straydogstudio/323139591f2cc5d48fbc)
189
+ * [Without rails runner](https://gist.github.com/straydogstudio/dceb775ead81470cea70)
166
190
 
167
191
  ##Troubleshooting
168
192
 
@@ -173,12 +197,37 @@ If the template (`users/export`) can refer to only one file (the xlsx.axlsx temp
173
197
  * If it says your template is missing, check that its extension is `.xlsx.axlsx`.
174
198
  * If you get the error `uninitialized constant Mime::XSLX` you have used `format.xslx` instead of `format.xlsx`, or something similar.
175
199
 
200
+ ### Rails 4.2
201
+
202
+ In Rails 4.2, if you have a controller action that sometimes calls `render xlsx:` with a view from another controller, and at other times a view from the calling controller, you may have to specify full paths for each.
203
+
204
+ For example, suppose you have the following code:
205
+
206
+ ```ruby
207
+ class HomeController < ApplicationController
208
+ def index
209
+ if params[:some_condition]
210
+ render xlsx: "users/index"
211
+ else
212
+ render xlsx: "index"
213
+ end
214
+ end
215
+ end
216
+ ```
217
+
218
+ In this case, for 4.2 you would need to change the second call to "home/index"
219
+
220
+ Rails uses an array of strings, called `prefixes`, which contains the names of subdirectories to look inside when resolving a template. E.g. an action inside a Users controller would typically have `["users","application"]` as its prefix array. `axlsx_rails` adds to the prefixes array when you pass in a string with a slash so Rails can find your template. Rails 4.2.0.beta1 appears to cache the prefixes array between requests, so in the above example the `index` render is found inside the `users` folder instead of the `home` folder. To solve this, use absolute paths for each render call.
221
+
222
+ When Rails 4.2 is released I will address this issue and come up with a solution.
223
+
176
224
  ###What to do
177
225
 
178
226
  If you are having problems, try to isolate the issue. Use the console or a script to make sure your data is good. Then create the spreadsheet line by line without Axlsx-Rails to see if you are having Axlsx problems. If you can manually create the spreadsheet, create an issue and we will work it out.
179
227
 
180
228
  ##Dependencies
181
229
 
230
+ - [Rails](https://github.com/rails/rails)
182
231
  - [Axlsx](https://github.com/randym/axlsx)
183
232
 
184
233
  ##Authors
@@ -187,14 +236,24 @@ If you are having problems, try to isolate the issue. Use the console or a scrip
187
236
 
188
237
  ##Contributors
189
238
 
239
+ Many thanks to [contributors](https://github.com/straydogstudio/axlsx_rails/graphs/contributors):
240
+
190
241
  * [randym](https://github.com/randym)
191
242
  * [sugi](https://github.com/sugi)
192
243
  * [envek](https://github.com/envek)
193
244
  * [engwan](https://github.com/engwan)
194
245
  * [maxd](https://github.com/maxd)
246
+ * [firien](https://github.com/firien)
247
+
195
248
 
196
249
  ##Change log
197
250
 
251
+ **September 4, 2014**: 0.2.1 release
252
+
253
+ - Rails 4.2.beta1 no longer includes responder. This release checks for the existence of responder before configuring a default responder.
254
+ - Rails 4.2 testing, though not yet on Travis CI
255
+ - Author, created_at, and use_shared_strings parameters for Axlsx::Package.new
256
+
198
257
  **April 9, 2014**: 0.2.0 release
199
258
 
200
259
  - Require Axlsx 2.0.1, which requires rubyzip 1.0.0
@@ -42,6 +42,7 @@ ActionController::Renderers.add :xlsx do |filename, options|
42
42
  end
43
43
  end
44
44
 
45
+ # disposition / filename
45
46
  disposition = options.delete(:disposition) || 'attachment'
46
47
  if file_name = options.delete(:filename)
47
48
  file_name += ".xlsx" unless file_name =~ /\.xlsx$/
@@ -49,16 +50,29 @@ ActionController::Renderers.add :xlsx do |filename, options|
49
50
  file_name = "#{filename.gsub(/^.*\//,'')}.xlsx"
50
51
  end
51
52
 
53
+ # alternate settings
54
+ options[:locals] ||= {}
55
+ options[:locals][:xlsx_author] ||= options.delete(:xlsx_author)
56
+ options[:locals][:xlsx_created_at] ||= options.delete(:xlsx_created_at)
57
+ if options[:locals][:xlsx_use_shared_strings].nil?
58
+ options[:locals][:xlsx_use_shared_strings] = options.delete(:xlsx_use_shared_strings)
59
+ end
60
+
52
61
  send_data render_to_string(options), :filename => file_name, :type => Mime::XLSX, :disposition => disposition
53
62
  end
54
63
 
55
64
  # For respond_to default
56
- class ActionController::Responder
57
- def to_xlsx
58
- if @default_response
59
- @default_response.call(options)
60
- else
61
- controller.render({:xlsx => controller.action_name}.merge(options))
65
+ begin
66
+ ActionController::Responder
67
+ rescue LoadError
68
+ else
69
+ class ActionController::Responder
70
+ def to_xlsx
71
+ if @default_response
72
+ @default_response.call(options)
73
+ else
74
+ controller.render({:xlsx => controller.action_name}.merge(options))
75
+ end
62
76
  end
63
77
  end
64
- end
78
+ end
@@ -7,16 +7,18 @@ module ActionView
7
7
  end
8
8
 
9
9
  def self.call(template)
10
- "xlsx_package = Axlsx::Package.new(:author => #{axlsx_author.inspect});\n" +
11
- template.source +
12
- ";\nxlsx_package.to_stream.string;"
10
+ "xlsx_author = defined?(xlsx_author).nil? ? nil : xlsx_author;\n" +
11
+ "xlsx_created_at = defined?(xlsx_created_at).nil? ? nil : xlsx_created_at;\n" +
12
+ "xlsx_use_shared_strings = defined?(xlsx_use_shared_strings).nil? ? nil : xlsx_use_shared_strings;\n" +
13
+ "xlsx_package = Axlsx::Package.new(\n" +
14
+ ":author => xlsx_author,\n" +
15
+ ":created_at => xlsx_created_at,\n" +
16
+ ":use_shared_strings => xlsx_use_shared_strings\n" +
17
+ ");\n" +
18
+ template.source +
19
+ ";\nxlsx_package.to_stream.string;"
13
20
  end
14
21
 
15
- private
16
-
17
- def self.axlsx_author
18
- Rails.application.config.respond_to?(:axlsx_author) ? Rails.application.config.axlsx_author : nil
19
- end
20
22
  end
21
23
  end
22
24
  end
@@ -1,3 +1,3 @@
1
1
  module AxlsxRails
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
@@ -1,7 +1,14 @@
1
1
  require 'spec_helper'
2
2
  describe 'Axlsx request', :type => :request do
3
3
 
4
+ after(:each) do
5
+ if File.exists? '/tmp/axlsx_temp.xlsx'
6
+ File.unlink '/tmp/axlsx_temp.xlsx'
7
+ end
8
+ end
9
+
4
10
  it "has a working dummy app" do
11
+ @user1 = User.create name: 'Elmer', last_name: 'Fudd', address: '1234 Somewhere, Over NY 11111', email: 'elmer@fudd.com'
5
12
  visit '/'
6
13
  page.should have_content "Hey, you"
7
14
  end
@@ -93,7 +100,7 @@ describe 'Axlsx request', :type => :request do
93
100
  @user = User.create name: 'Bugs', last_name: 'Bunny', address: '1234 Left Turn, Albuquerque NM 22222', email: 'bugs@bunny.com'
94
101
  visit "/users/#{@user.id}/render_elsewhere.xlsx"
95
102
  page.response_headers['Content-Type'].should == Mime::XLSX.to_s
96
- [[1,false],[2,false],[3,true],[4,true],[5,false]].each do |s|
103
+ [[1,false],[2,false],[3,true],[4,true],[5,false]].reverse.each do |s|
97
104
  visit "/home/render_elsewhere.xlsx?type=#{s[0]}"
98
105
  page.response_headers['Content-Type'].should == Mime::XLSX.to_s +
99
106
  (s[1] ? "; charset=utf-8" : '')
Binary file
@@ -826,3 +826,111 @@ Connecting to database specified by database.yml
826
826
  Processing by HomeController#useheader as XLSX
827
827
  Rendered home/useheader.xlsx.axlsx (7.4ms)
828
828
  Completed 200 OK in 3316.7ms (Views: 14.6ms | ActiveRecord: 0.0ms)
829
+ Connecting to database specified by database.yml
830
+
831
+
832
+ Started GET "/" for 127.0.0.1 at 2014-09-03 14:24:25 -0700
833
+ Processing by HomeController#index as HTML
834
+ Rendered home/index.html.erb within layouts/application (1.6ms)
835
+ Completed 200 OK in 8.3ms (Views: 7.9ms | ActiveRecord: 0.0ms)
836
+
837
+
838
+ Started GET "/users/show/1" for 127.0.0.1 at 2014-09-03 14:24:33 -0700
839
+
840
+ ActionController::RoutingError (No route matches [GET] "/users/show/1"):
841
+ actionpack (3.2.17) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
842
+ actionpack (3.2.17) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
843
+ railties (3.2.17) lib/rails/rack/logger.rb:32:in `call_app'
844
+ railties (3.2.17) lib/rails/rack/logger.rb:16:in `block in call'
845
+ activesupport (3.2.17) lib/active_support/tagged_logging.rb:22:in `tagged'
846
+ railties (3.2.17) lib/rails/rack/logger.rb:16:in `call'
847
+ actionpack (3.2.17) lib/action_dispatch/middleware/request_id.rb:22:in `call'
848
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
849
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
850
+ activesupport (3.2.17) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
851
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
852
+ actionpack (3.2.17) lib/action_dispatch/middleware/static.rb:63:in `call'
853
+ railties (3.2.17) lib/rails/engine.rb:484:in `call'
854
+ railties (3.2.17) lib/rails/application.rb:231:in `call'
855
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
856
+ railties (3.2.17) lib/rails/rack/log_tailer.rb:17:in `call'
857
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
858
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
859
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
860
+ thin (1.6.1) lib/thin/connection.rb:55:in `process'
861
+ thin (1.6.1) lib/thin/connection.rb:41:in `receive_data'
862
+ eventmachine (1.0.3) lib/eventmachine.rb:187:in `run_machine'
863
+ eventmachine (1.0.3) lib/eventmachine.rb:187:in `run'
864
+ thin (1.6.1) lib/thin/backends/base.rb:73:in `start'
865
+ thin (1.6.1) lib/thin/server.rb:162:in `start'
866
+ rack (1.4.5) lib/rack/handler/thin.rb:13:in `run'
867
+ rack (1.4.5) lib/rack/server.rb:268:in `start'
868
+ railties (3.2.17) lib/rails/commands/server.rb:70:in `start'
869
+ railties (3.2.17) lib/rails/commands.rb:55:in `block in <top (required)>'
870
+ railties (3.2.17) lib/rails/commands.rb:50:in `tap'
871
+ railties (3.2.17) lib/rails/commands.rb:50:in `<top (required)>'
872
+ script/rails:6:in `require'
873
+ script/rails:6:in `<main>'
874
+
875
+
876
+ Rendered /Users/noel/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-3.2.17/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
877
+
878
+
879
+ Started GET "/users/1.xlsx" for 127.0.0.1 at 2014-09-03 14:24:41 -0700
880
+ Processing by UsersController#show as XLSX
881
+ Parameters: {"id"=>"1"}
882
+ Completed 500 Internal Server Error in 0.6ms
883
+
884
+ ActiveRecord::StatementInvalid (Could not find table 'users'):
885
+ app/controllers/users_controller.rb:16:in `show'
886
+
887
+
888
+ Rendered /Users/noel/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-3.2.17/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
889
+ Rendered /Users/noel/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-3.2.17/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
890
+ Rendered /Users/noel/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-3.2.17/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.8ms)
891
+ Connecting to database specified by database.yml
892
+  (0.1ms) select sqlite_version(*)
893
+  (6.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
894
+  (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
895
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
896
+ Migrating to CreateUsers (20120717192452)
897
+  (0.0ms) begin transaction
898
+  (0.5ms) 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)
899
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120717192452')
900
+  (1.3ms) commit transaction
901
+ Migrating to CreateLikes (20121206210955)
902
+  (0.0ms) begin transaction
903
+  (0.3ms) CREATE TABLE "likes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "user_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
904
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121206210955')
905
+  (1.7ms) commit transaction
906
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
907
+ Connecting to database specified by database.yml
908
+ Connecting to database specified by database.yml
909
+
910
+
911
+ Started GET "/users/1.xlsx" for 127.0.0.1 at 2014-09-03 14:28:03 -0700
912
+ Processing by UsersController#show as XLSX
913
+ Parameters: {"id"=>"1"}
914
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
915
+ DEPRECATION WARNING: Passing a template handler in the template name is deprecated. You can simply remove the handler name or pass render :handlers => [:axlsx] instead. (called from realtime at /Users/noel/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296)
916
+ Rendered users/respond_with.xlsx.axlsx (7.9ms)
917
+ Completed 200 OK in 21.5ms (Views: 14.1ms | ActiveRecord: 0.2ms)
918
+
919
+
920
+ Started GET "/users/1.xlsx" for 127.0.0.1 at 2014-09-03 14:50:35 -0700
921
+ Processing by UsersController#show as XLSX
922
+ Parameters: {"id"=>"1"}
923
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
924
+ DEPRECATION WARNING: Passing a template handler in the template name is deprecated. You can simply remove the handler name or pass render :handlers => [:axlsx] instead. (called from realtime at /Users/noel/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296)
925
+ Rendered users/respond_with.xlsx.axlsx (7.9ms)
926
+ Completed 200 OK in 11.8ms (Views: 10.3ms | ActiveRecord: 0.1ms)
927
+ Connecting to database specified by database.yml
928
+
929
+
930
+ Started GET "/users/1.xlsx" for 127.0.0.1 at 2014-09-03 14:53:50 -0700
931
+ Processing by UsersController#show as XLSX
932
+ Parameters: {"id"=>"1"}
933
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
934
+ DEPRECATION WARNING: Passing a template handler in the template name is deprecated. You can simply remove the handler name or pass render :handlers => [:axlsx] instead. (called from realtime at /Users/noel/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/benchmark.rb:296)
935
+ Rendered users/respond_with.xlsx.axlsx (8.5ms)
936
+ Completed 200 OK in 27.9ms (Views: 19.0ms | ActiveRecord: 0.3ms)
@@ -497,3 +497,1490 @@ Completed 200 OK in 25.7ms (Views: 25.0ms | ActiveRecord: 0.0ms)
497
497
  Started GET "/" for 127.0.0.1 at 2014-04-11 12:17:39 -0700
498
498
  Processing by HomeController#index as HTML
499
499
  Completed 200 OK in 4.4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
500
+ Connecting to database specified by database.yml
501
+  (0.1ms) select sqlite_version(*)
502
+  (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
503
+  (1.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
504
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
505
+ Migrating to CreateUsers (20120717192452)
506
+  (0.0ms) begin transaction
507
+  (0.3ms) 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)
508
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120717192452')
509
+  (1.6ms) commit transaction
510
+ Migrating to CreateLikes (20121206210955)
511
+  (0.0ms) begin transaction
512
+  (0.4ms) CREATE TABLE "likes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "user_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
513
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121206210955')
514
+  (1.3ms) commit transaction
515
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
516
+ Connecting to database specified by database.yml
517
+  (0.1ms) begin transaction
518
+ SQL (3.4ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Somewhere, Over NY 11111"], ["created_at", Wed, 03 Sep 2014 20:56:41 UTC +00:00], ["email", "elmer@fudd.com"], ["last_name", "Fudd"], ["name", "Elmer"], ["updated_at", Wed, 03 Sep 2014 20:56:41 UTC +00:00]]
519
+  (2.1ms) commit transaction
520
+ Started GET "/users/1/send_instructions" for 127.0.0.1 at 2014-09-03 13:56:41 -0700
521
+ Processing by UsersController#send_instructions as HTML
522
+ Parameters: {"user_id"=>"1"}
523
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
524
+ Rendered users/mailers/instructions.xlsx.axlsx (7.7ms)
525
+
526
+ Sent mail to elmer@fudd.com (11.2ms)
527
+ Date: Wed, 03 Sep 2014 13:56:41 -0700
528
+ From: noreply@company.com
529
+ To: elmer@fudd.com
530
+ Message-ID: <54078089a1da2_66283fe29c85e6e86952@edoras.local.mail>
531
+ Subject: Instructions
532
+ Mime-Version: 1.0
533
+ Content-Type: multipart/mixed;
534
+ charset=UTF-8
535
+ Content-Transfer-Encoding: 7bit
536
+
537
+
538
+ --
539
+ Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;
540
+ charset=UTF-8
541
+ Content-Transfer-Encoding: base64
542
+ Content-Disposition: attachment;
543
+ filename=user_1.xlsx
544
+ Content-ID: <540780899eb70_66283fe29c85e6e8694e4@edoras.local.mail>
545
+
546
+ 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
627
+
628
+ ----
629
+
630
+ Rendered text template (0.0ms)
631
+ Completed 200 OK in 46.6ms (Views: 1.3ms | ActiveRecord: 0.2ms)
632
+ Started GET "/home.xlsx" for 127.0.0.1 at 2014-09-03 13:56:41 -0700
633
+ Processing by HomeController#index as XLSX
634
+ Completed 200 OK in 10.8ms (Views: 10.3ms | ActiveRecord: 0.0ms)
635
+ Started GET "/" for 127.0.0.1 at 2014-09-03 13:56:41 -0700
636
+ Processing by HomeController#index as HTML
637
+ Completed 200 OK in 4.3ms (Views: 4.0ms | ActiveRecord: 0.0ms)
638
+ User Load (0.1ms) SELECT "users".* FROM "users" 
639
+  (0.0ms) begin transaction
640
+ SQL (0.3ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
641
+  (1.3ms) commit transaction
642
+  (0.1ms) begin transaction
643
+ 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", Wed, 03 Sep 2014 20:56:41 UTC +00:00], ["email", "bugs@bunny.com"], ["last_name", "Bunny"], ["name", "Bugs"], ["updated_at", Wed, 03 Sep 2014 20:56:41 UTC +00:00]]
644
+  (1.2ms) commit transaction
645
+ Started GET "/users/2/render_elsewhere.xlsx" for 127.0.0.1 at 2014-09-03 13:56:41 -0700
646
+ Processing by LikesController#render_elsewhere as XLSX
647
+ Parameters: {"user_id"=>"2"}
648
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "2"]]
649
+ User Load (0.2ms) SELECT "users".* FROM "users" 
650
+ Sent data index.xlsx (0.4ms)
651
+ Completed 200 OK in 13.4ms (Views: 11.9ms | ActiveRecord: 0.1ms)
652
+ Started GET "/home/render_elsewhere.xlsx?type=1" for 127.0.0.1 at 2014-09-03 13:56:41 -0700
653
+ Processing by HomeController#render_elsewhere as XLSX
654
+ Parameters: {"type"=>"1"}
655
+ User Load (0.2ms) SELECT "users".* FROM "users"
656
+ Sent data index.xlsx (0.4ms)
657
+ Completed 200 OK in 10.7ms (Views: 10.3ms | ActiveRecord: 0.0ms)
658
+ Started GET "/home/render_elsewhere.xlsx?type=2" for 127.0.0.1 at 2014-09-03 13:56:41 -0700
659
+ Processing by HomeController#render_elsewhere as XLSX
660
+ Parameters: {"type"=>"2"}
661
+ User Load (0.2ms) SELECT "users".* FROM "users" 
662
+ Sent data index.xlsx (0.4ms)
663
+ Completed 200 OK in 10.6ms (Views: 10.4ms | ActiveRecord: 0.0ms)
664
+ Started GET "/home/render_elsewhere.xlsx?type=3" for 127.0.0.1 at 2014-09-03 13:56:41 -0700
665
+ Processing by HomeController#render_elsewhere as XLSX
666
+ Parameters: {"type"=>"3"}
667
+ User Load (0.2ms) SELECT "users".* FROM "users"
668
+ Completed 200 OK in 14.7ms (Views: 14.3ms | ActiveRecord: 0.2ms)
669
+ Started GET "/home/render_elsewhere.xlsx?type=4" for 127.0.0.1 at 2014-09-03 13:56:41 -0700
670
+ Processing by HomeController#render_elsewhere as XLSX
671
+ Parameters: {"type"=>"4"}
672
+ User Load (0.2ms) SELECT "users".* FROM "users" 
673
+ Completed 200 OK in 87.1ms (Views: 86.7ms | ActiveRecord: 0.2ms)
674
+ Started GET "/home/render_elsewhere.xlsx?type=5" for 127.0.0.1 at 2014-09-03 13:56:42 -0700
675
+ Processing by HomeController#render_elsewhere as XLSX
676
+ Parameters: {"type"=>"5"}
677
+ Sent data index.xlsx (0.4ms)
678
+ Completed 200 OK in 9.2ms (Views: 9.1ms | ActiveRecord: 0.0ms)
679
+ Started GET "/another" for 127.0.0.1 at 2014-09-03 13:56:42 -0700
680
+ Processing by HomeController#another as HTML
681
+ Sent data filename_test.xlsx (0.5ms)
682
+ Completed 200 OK in 12.5ms (Views: 12.0ms | ActiveRecord: 0.0ms)
683
+ Started GET "/useheader.xlsx" for 127.0.0.1 at 2014-09-03 13:56:42 -0700
684
+ Processing by HomeController#useheader as XLSX
685
+ Sent data filename_test.xlsx (0.4ms)
686
+ Completed 200 OK in 10.2ms (Views: 9.8ms | ActiveRecord: 0.0ms)
687
+ Started GET "/useheader.xlsx?set_direct=true" for 127.0.0.1 at 2014-09-03 13:56:42 -0700
688
+ Processing by HomeController#useheader as XLSX
689
+ Parameters: {"set_direct"=>"true"}
690
+ Completed 200 OK in 8.7ms (Views: 8.4ms | ActiveRecord: 0.0ms)
691
+ Started GET "/another.xlsx" for 127.0.0.1 at 2014-09-03 13:56:42 -0700
692
+ Processing by HomeController#another as XLSX
693
+ Sent data filename_test.xlsx (0.4ms)
694
+ Completed 200 OK in 10.2ms (Views: 10.1ms | ActiveRecord: 0.0ms)
695
+ User Load (0.2ms) SELECT "users".* FROM "users"
696
+  (0.0ms) begin transaction
697
+ SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
698
+  (1.4ms) commit transaction
699
+  (0.0ms) begin transaction
700
+ SQL (0.4ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Right Turn, Albuquerque NM 22222"], ["created_at", Wed, 03 Sep 2014 20:56:42 UTC +00:00], ["email", "bugs@bunny.com"], ["last_name", "Bunny"], ["name", "Responder"], ["updated_at", Wed, 03 Sep 2014 20:56:42 UTC +00:00]]
701
+  (1.3ms) commit transaction
702
+ Started GET "/users/3.xlsx" for 127.0.0.1 at 2014-09-03 13:56:42 -0700
703
+ Processing by UsersController#show as XLSX
704
+ Parameters: {"id"=>"3"}
705
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "3"]]
706
+ Completed 200 OK in 12.4ms (Views: 10.9ms | ActiveRecord: 0.1ms)
707
+ Started GET "/withpartial.xlsx" for 127.0.0.1 at 2014-09-03 13:56:42 -0700
708
+ Processing by HomeController#withpartial as XLSX
709
+ Rendered home/_cover_sheet.xlsx.axlsx (6.5ms)
710
+ Completed 200 OK in 19.9ms (Views: 19.5ms | ActiveRecord: 0.0ms)
711
+ User Load (0.2ms) SELECT "users".* FROM "users"
712
+  (0.0ms) begin transaction
713
+ SQL (0.3ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
714
+  (1.5ms) commit transaction
715
+  (0.0ms) begin transaction
716
+ 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", Wed, 03 Sep 2014 20:56:42 UTC +00:00], ["email", "bugs@bunny.com"], ["last_name", "Bunny"], ["name", "Bugs"], ["updated_at", Wed, 03 Sep 2014 20:56:42 UTC +00:00]]
717
+  (1.5ms) commit transaction
718
+  (0.1ms) begin transaction
719
+ SQL (0.5ms) INSERT INTO "likes" ("created_at", "name", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 03 Sep 2014 20:56:42 UTC +00:00], ["name", "Carrots"], ["updated_at", Wed, 03 Sep 2014 20:56:42 UTC +00:00], ["user_id", 4]]
720
+  (1.9ms) commit transaction
721
+  (0.0ms) begin transaction
722
+ SQL (0.4ms) INSERT INTO "likes" ("created_at", "name", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 03 Sep 2014 20:56:42 UTC +00:00], ["name", "Celery"], ["updated_at", Wed, 03 Sep 2014 20:56:42 UTC +00:00], ["user_id", 4]]
723
+  (2.3ms) commit transaction
724
+ Started GET "/users/4/likes.xlsx" for 127.0.0.1 at 2014-09-03 13:56:42 -0700
725
+ Processing by LikesController#index as XLSX
726
+ Parameters: {"user_id"=>"4"}
727
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "4"]]
728
+ Like Load (0.2ms) SELECT "likes".* FROM "likes" WHERE "likes"."user_id" = 4
729
+ Completed 200 OK in 12.3ms (Views: 10.0ms | ActiveRecord: 0.3ms)
730
+ User Load (0.2ms) SELECT "users".* FROM "users" 
731
+  (0.0ms) begin transaction
732
+ SQL (0.3ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
733
+  (1.2ms) commit transaction
734
+  (0.0ms) begin transaction
735
+ SQL (0.4ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Somewhere, Over NY 11111"], ["created_at", Wed, 03 Sep 2014 20:56:42 UTC +00:00], ["email", "elmer@fudd.com"], ["last_name", "Fudd"], ["name", "Elmer"], ["updated_at", Wed, 03 Sep 2014 20:56:42 UTC +00:00]]
736
+  (1.6ms) commit transaction
737
+  (0.0ms) begin transaction
738
+ 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", Wed, 03 Sep 2014 20:56:42 UTC +00:00], ["email", "bugs@bunny.com"], ["last_name", "Bunny"], ["name", "Bugs"], ["updated_at", Wed, 03 Sep 2014 20:56:42 UTC +00:00]]
739
+  (1.7ms) commit transaction
740
+ Started GET "/users.xlsx" for 127.0.0.1 at 2014-09-03 13:56:42 -0700
741
+ Processing by UsersController#index as XLSX
742
+ User Load (0.1ms) SELECT "users".* FROM "users" 
743
+ CACHE (0.0ms) SELECT "users".* FROM "users"
744
+ Completed 200 OK in 10.2ms (Views: 8.9ms | ActiveRecord: 0.1ms)
745
+  (0.0ms) select sqlite_version(*)
746
+  (5.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
747
+  (0.1ms) PRAGMA index_list("schema_migrations")
748
+  (56.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
749
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
750
+ Migrating to CreateUsers (20120717192452)
751
+  (0.4ms) 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, "updated_at" datetime)
752
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120717192452')
753
+ Migrating to CreateLikes (20121206210955)
754
+  (0.3ms) CREATE TABLE "likes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "user_id" integer, "created_at" datetime, "updated_at" datetime)
755
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121206210955')
756
+  (0.3ms) select sqlite_version(*)
757
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
758
+  (0.0ms) PRAGMA index_list("likes")
759
+  (0.0ms) PRAGMA index_list("users")
760
+ SQL (4.6ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Somewhere, Over NY 11111"], ["created_at", Wed, 03 Sep 2014 21:00:27 UTC +00:00], ["email", "elmer@fudd.com"], ["last_name", "Fudd"], ["name", "Elmer"], ["updated_at", Wed, 03 Sep 2014 21:00:27 UTC +00:00]]
761
+
762
+
763
+ Started GET "/users/1/send_instructions" for 127.0.0.1 at 2014-09-03 14:00:27 -0700
764
+ Processing by UsersController#send_instructions as HTML
765
+ Parameters: {"user_id"=>"1"}
766
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
767
+ Rendered users/mailers/instructions.xlsx.axlsx (10.6ms)
768
+
769
+ Sent mail to elmer@fudd.com (10ms)
770
+ Date: Wed, 03 Sep 2014 14:00:27 -0700
771
+ From: noreply@company.com
772
+ To: elmer@fudd.com
773
+ Message-ID: <5407816bc20f9_669f3ff48845e6e445149@edoras.local.mail>
774
+ Subject: Instructions
775
+ Mime-Version: 1.0
776
+ Content-Type: multipart/mixed;
777
+ charset=UTF-8
778
+ Content-Transfer-Encoding: 7bit
779
+
780
+
781
+
782
+ --
783
+ Date: Wed, 03 Sep 2014 14:00:27 -0700
784
+ Mime-Version: 1.0
785
+ Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;
786
+ charset=UTF-8
787
+ Content-Transfer-Encoding: base64
788
+ Content-Disposition: attachment;
789
+ filename=user_1.xlsx
790
+ Content-ID: <5407816bbd254_669f3ff48845e6e44502e@edoras.local.mail>
791
+
792
+ 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
873
+
874
+
875
+ ----
876
+ Rendered text template (0.0ms)
877
+ Completed 200 OK in 60ms (Views: 2.5ms | ActiveRecord: 0.3ms)
878
+
879
+
880
+ Started GET "/useheader.xlsx?set_direct=true" for 127.0.0.1 at 2014-09-03 14:00:27 -0700
881
+ Processing by HomeController#useheader as XLSX
882
+ Parameters: {"set_direct"=>"true"}
883
+ Completed 200 OK in 11ms (Views: 11.0ms | ActiveRecord: 0.0ms)
884
+
885
+
886
+ Started GET "/" for 127.0.0.1 at 2014-09-03 14:00:27 -0700
887
+ Processing by HomeController#index as HTML
888
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
889
+
890
+
891
+ Started GET "/home.xlsx" for 127.0.0.1 at 2014-09-03 14:00:27 -0700
892
+ Processing by HomeController#index as XLSX
893
+ Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
894
+
895
+
896
+ Started GET "/withpartial.xlsx" for 127.0.0.1 at 2014-09-03 14:00:27 -0700
897
+ Processing by HomeController#withpartial as XLSX
898
+ Rendered home/_cover_sheet.xlsx.axlsx (6.8ms)
899
+ Completed 200 OK in 20ms (Views: 19.4ms | ActiveRecord: 0.0ms)
900
+
901
+
902
+ Started GET "/another.xlsx" for 127.0.0.1 at 2014-09-03 14:00:28 -0700
903
+ Processing by HomeController#another as XLSX
904
+ Sent data filename_test.xlsx (0.4ms)
905
+ Completed 200 OK in 86ms (Views: 85.6ms | ActiveRecord: 0.0ms)
906
+ User Load (0.2ms) SELECT "users".* FROM "users" 
907
+ SQL (0.3ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
908
+ 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", Wed, 03 Sep 2014 21:00:28 UTC +00:00], ["email", "bugs@bunny.com"], ["last_name", "Bunny"], ["name", "Bugs"], ["updated_at", Wed, 03 Sep 2014 21:00:28 UTC +00:00]]
909
+ SQL (0.5ms) INSERT INTO "likes" ("created_at", "name", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 03 Sep 2014 21:00:28 UTC +00:00], ["name", "Carrots"], ["updated_at", Wed, 03 Sep 2014 21:00:28 UTC +00:00], ["user_id", 2]]
910
+ SQL (0.3ms) INSERT INTO "likes" ("created_at", "name", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Wed, 03 Sep 2014 21:00:28 UTC +00:00], ["name", "Celery"], ["updated_at", Wed, 03 Sep 2014 21:00:28 UTC +00:00], ["user_id", 2]]
911
+
912
+
913
+ Started GET "/users/2/likes.xlsx" for 127.0.0.1 at 2014-09-03 14:00:28 -0700
914
+ Processing by LikesController#index as XLSX
915
+ Parameters: {"user_id"=>"2"}
916
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "2"]]
917
+ Like Load (0.2ms) SELECT "likes".* FROM "likes" WHERE "likes"."user_id" = 2
918
+ Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 0.3ms)
919
+
920
+
921
+ Started GET "/useheader.xlsx" for 127.0.0.1 at 2014-09-03 14:00:28 -0700
922
+ Processing by HomeController#useheader as XLSX
923
+ Sent data filename_test.xlsx (0.4ms)
924
+ Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)
925
+ User Load (0.2ms) SELECT "users".* FROM "users"
926
+ SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
927
+ SQL (0.4ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Right Turn, Albuquerque NM 22222"], ["created_at", Wed, 03 Sep 2014 21:00:28 UTC +00:00], ["email", "bugs@bunny.com"], ["last_name", "Bunny"], ["name", "Responder"], ["updated_at", Wed, 03 Sep 2014 21:00:28 UTC +00:00]]
928
+
929
+
930
+ Started GET "/users/3.xlsx" for 127.0.0.1 at 2014-09-03 14:00:28 -0700
931
+ Processing by UsersController#show as XLSX
932
+ Parameters: {"id"=>"3"}
933
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "3"]]
934
+ Completed 200 OK in 10ms (Views: 9.0ms | ActiveRecord: 0.1ms)
935
+ User Load (0.2ms) SELECT "users".* FROM "users"
936
+ SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
937
+ SQL (0.4ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Somewhere, Over NY 11111"], ["created_at", Wed, 03 Sep 2014 21:00:28 UTC +00:00], ["email", "elmer@fudd.com"], ["last_name", "Fudd"], ["name", "Elmer"], ["updated_at", Wed, 03 Sep 2014 21:00:28 UTC +00:00]]
938
+ SQL (0.6ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Left Turn, Albuquerque NM 22222"], ["created_at", Wed, 03 Sep 2014 21:00:28 UTC +00:00], ["email", "bugs@bunny.com"], ["last_name", "Bunny"], ["name", "Bugs"], ["updated_at", Wed, 03 Sep 2014 21:00:28 UTC +00:00]]
939
+
940
+
941
+ Started GET "/users.xlsx" for 127.0.0.1 at 2014-09-03 14:00:28 -0700
942
+ Processing by UsersController#index as XLSX
943
+ User Load (0.2ms) SELECT "users".* FROM "users"
944
+ CACHE (0.0ms) SELECT "users".* FROM "users" 
945
+ Completed 200 OK in 11ms (Views: 9.6ms | ActiveRecord: 0.2ms)
946
+ User Load (0.2ms) SELECT "users".* FROM "users"
947
+ SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
948
+ SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 5]]
949
+ 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", Wed, 03 Sep 2014 21:00:28 UTC +00:00], ["email", "bugs@bunny.com"], ["last_name", "Bunny"], ["name", "Bugs"], ["updated_at", Wed, 03 Sep 2014 21:00:28 UTC +00:00]]
950
+
951
+
952
+ Started GET "/users/6/render_elsewhere.xlsx" for 127.0.0.1 at 2014-09-03 14:00:28 -0700
953
+ Processing by LikesController#render_elsewhere as XLSX
954
+ Parameters: {"user_id"=>"6"}
955
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "6"]]
956
+ User Load (0.1ms) SELECT "users".* FROM "users" 
957
+ Sent data index.xlsx (0.4ms)
958
+ Completed 200 OK in 11ms (Views: 9.5ms | ActiveRecord: 0.1ms)
959
+
960
+
961
+ Started GET "/home/render_elsewhere.xlsx?type=1" for 127.0.0.1 at 2014-09-03 14:00:28 -0700
962
+ Processing by HomeController#render_elsewhere as XLSX
963
+ Parameters: {"type"=>"1"}
964
+ User Load (0.1ms) SELECT "users".* FROM "users"
965
+ Sent data index.xlsx (0.4ms)
966
+ Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
967
+
968
+
969
+ Started GET "/home/render_elsewhere.xlsx?type=2" for 127.0.0.1 at 2014-09-03 14:00:28 -0700
970
+ Processing by HomeController#render_elsewhere as XLSX
971
+ Parameters: {"type"=>"2"}
972
+ User Load (0.2ms) SELECT "users".* FROM "users" 
973
+ Sent data index.xlsx (0.4ms)
974
+ Completed 200 OK in 10ms (Views: 10.1ms | ActiveRecord: 0.0ms)
975
+
976
+
977
+ Started GET "/home/render_elsewhere.xlsx?type=3" for 127.0.0.1 at 2014-09-03 14:00:29 -0700
978
+ Processing by HomeController#render_elsewhere as XLSX
979
+ Parameters: {"type"=>"3"}
980
+ User Load (0.2ms) SELECT "users".* FROM "users"
981
+ Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.2ms)
982
+
983
+
984
+ Started GET "/home/render_elsewhere.xlsx?type=4" for 127.0.0.1 at 2014-09-03 14:00:29 -0700
985
+ Processing by HomeController#render_elsewhere as XLSX
986
+ Parameters: {"type"=>"4"}
987
+ User Load (0.2ms) SELECT "users".* FROM "users" 
988
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.2ms)
989
+
990
+
991
+ Started GET "/home/render_elsewhere.xlsx?type=5" for 127.0.0.1 at 2014-09-03 14:00:29 -0700
992
+ Processing by HomeController#render_elsewhere as XLSX
993
+ Parameters: {"type"=>"5"}
994
+ Sent data index.xlsx (0.4ms)
995
+ Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms)
996
+ Connecting to database specified by database.yml
997
+  (0.1ms) select sqlite_version(*)
998
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
999
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1000
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1001
+ Migrating to CreateUsers (20120717192452)
1002
+  (0.0ms) begin transaction
1003
+  (0.4ms) 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)
1004
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120717192452')
1005
+  (1.5ms) commit transaction
1006
+ Migrating to CreateLikes (20121206210955)
1007
+  (0.0ms) begin transaction
1008
+  (0.3ms) CREATE TABLE "likes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "user_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1009
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121206210955')
1010
+  (1.5ms) commit transaction
1011
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1012
+ Connecting to database specified by database.yml
1013
+  (0.1ms) begin transaction
1014
+ SQL (55.4ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Somewhere, Over NY 11111"], ["created_at", Thu, 04 Sep 2014 18:58:11 UTC +00:00], ["email", "elmer@fudd.com"], ["last_name", "Fudd"], ["name", "Elmer"], ["updated_at", Thu, 04 Sep 2014 18:58:11 UTC +00:00]]
1015
+  (2.7ms) commit transaction
1016
+ Started GET "/users/1/send_instructions" for 127.0.0.1 at 2014-09-04 11:58:11 -0700
1017
+ Processing by UsersController#send_instructions as HTML
1018
+ Parameters: {"user_id"=>"1"}
1019
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
1020
+ Rendered users/mailers/instructions.xlsx.axlsx (7.3ms)
1021
+
1022
+ Sent mail to elmer@fudd.com (12.8ms)
1023
+ Date: Thu, 04 Sep 2014 11:58:11 -0700
1024
+ From: noreply@company.com
1025
+ To: elmer@fudd.com
1026
+ Message-ID: <5408b643e4eb1_bb773fdd0885e6f043747@edoras.local.mail>
1027
+ Subject: Instructions
1028
+ Mime-Version: 1.0
1029
+ Content-Type: multipart/mixed;
1030
+ charset=UTF-8
1031
+ Content-Transfer-Encoding: 7bit
1032
+
1033
+
1034
+ --
1035
+ Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;
1036
+ charset=UTF-8
1037
+ Content-Transfer-Encoding: base64
1038
+ Content-Disposition: attachment;
1039
+ filename=user_1.xlsx
1040
+ Content-ID: <5408b643e15dd_bb773fdd0885e6f043683@edoras.local.mail>
1041
+
1042
+ UEsDBBQAAAAIAACAn+tjOGvU2QAAAEECAAALAAAAX3JlbHMvLnJlbHOtksFO
1043
+ wzAMhu88ReT7mm5ICKFluyCk3RAqD2ASt43axJEToLw9gQNiaAgOO1r2//3f
1044
+ wdv9Emb1QpI9RwPrpgVF0bLzcTDw2N2trmG/2z7QjKVe5NGnrGokZgNjKelG
1045
+ 62xHCpgbThTrpmcJWOoog05oJxxIb9r2Sst3BhwzVYcyUDGwzPqVZXpinpoK
1046
+ A9W9JfpPFfe9t3TL9jlQLCcaf1yAOjgDcnBr0L+4OLb3wjVpWejcNoEKOiz4
1047
+ CV+l2kNSPOUvr83fXpjSubVoKRQduVNGlx9G+ugVdhfvUEsDBBQAAAAIAACA
1048
+ n+vvyqPEyAEAAAkFAAANAAAAeGwvc3R5bGVzLnhtbKVU22rcMBB971cIfUBl
1049
+ bZpAF8tQAoZCEwrJQ1+1a3lt0MVIcrDz9RlJri1DQ5bUD6vR2XPOjEZjl87P
1050
+ Ujx1Qng0Kakdw533w5EQd+6E4u6rGYSGf1pjFfewtRfiBit444JISXIoijui
1051
+ eK9xVepR1co7dDaj9gwfVgil5WfDMC0KjJLdvWkEwzM8RCnSNBiRfwroewLU
1052
+ dUeljs5FJVnSV2Vr9FYFxQkAa64EeuGS4R+25xKDxr0mgNKwa7nq5bwgASBJ
1053
+ GJfg20u5O10AqnLg3gura9igJX6eB6hUGy2ARTJCMIvLB9KL5TM93L6njgtU
1054
+ dDK2EXZXU4IQcFKUIVK0HsUrZ9h38crORhqL7OXEcF0X8UnNDNyqtP2lu1oS
1055
+ yVXpzXCtAqihPO+NulaS2NnplgCacRZSPgWXP+3u9qcWJU4YJ7DZZiuOol5D
1056
+ 6OkSgu3Uwk9umRJk3jef857afZKdBf1/i10V9NuHHnwY5Pw4qpOwdXzNYhV5
1057
+ B9bDx1bseruiKLxdDD8GB5m5k7yLYNNMWwOLMN4BgKHhJ/gQJftGtHyU/nmF
1058
+ GN7iB9H0o/qO/7J+9y/GL6wt/hVGkd7hLVM4UJYEdtu3r/ryBlBLAwQUAAAA
1059
+ CAAAgJ/rN2/53Q4BAADmAQAAEQAAAGRvY1Byb3BzL2NvcmUueG1sbZHLTsMw
1060
+ EEX3fEXkfWK7LahYSboAdQUSEkUgdpYzpBbxQ7Zpwt/juG1IpS5n7pnjsabc
1061
+ DKrLDuC8NLpCtCAoAy1MI3VbobfdNl+jTV0Ky4Rx8OKMBRck+CyOac+ErdA+
1062
+ BMsw9mIPivsiEjqGX8YpHmLpWmy5+OYt4AUhd1hB4A0PHI/C3E5GdFI2YlLa
1063
+ H9clQSMwdKBAB49pQfE/q2T4tXB14hzO6ABO+atwSiZy8HKi+r4v+mXi4v4U
1064
+ fzw/vaav5lL7wLUAVJeNYMIBD8bVfOj8UOJZpzw9fGxAk0U9O659Tt6XD4+7
1065
+ LaoXhK5ycp+T1Y5SdrtmlH6Orov5dA4HBznerCYlnpepurxVffMHUEsDBBQA
1066
+ AAAIAACAn+vQvk+njgAAAOIAAAAQAAAAZG9jUHJvcHMvYXBwLnhtbJ2OsQrC
1067
+ MBRFd7+iZG8THURKmy7F2aG6l+S1DZj3QvIs9e+NCLo7Xs7lcJpu8/dihZgc
1068
+ YSv2lRIFoCHrcG7FdTiXJ9Hp5hIpQGQHqch/TK1YmEMtZTIL+DFVGWMmE0U/
1069
+ cp5xljRNzkBP5uEBWR6UOkrYGNCCLcNXKD7GeuV/pZbMuy/dhmfIPt3IX67e
1070
+ vQBQSwMEFAAAAAgAAICf6/gcrSW6AAAAlwEAABoAAAB4bC9fcmVscy93b3Jr
1071
+ Ym9vay54bWwucmVsc62QTQvCMAyG7/6KkrvLFBURqxcRdpX5A0qXfeDWlqZ+
1072
+ 7N9bFURBwYOnEJI8z0uW60vXihN5bqyRMEpSEGS0LRpTSdjn2+Ec1qvljloV
1073
+ 4gbXjWMRTwxLqENwC0TWNXWKE+vIxElpfadCbH2FTumDqgjHaTpD/8qAd6bI
1074
+ la8oSDhbf+CaKDDeyyiJSBB57+gXoS3LRtPG6mNHJnzw4lMAIisk+KyYAH4J
1075
+ w6Fvif+d4EF96qc3Pb49eDW4AlBLAwQUAAAACAAAgJ/rMc+oZiMBAACFAwAA
1076
+ EwAAAFtDb250ZW50X1R5cGVzXS54bWytk79OwzAQxneeIvKKYrcMCKGmHQqM
1077
+ 0KE8gLEviVX/k88t6dtzSShDl6ai0+l89/2+z5a8WHXOFgdIaIKv2JzPWAFe
1078
+ BW18U7HP7Vv5xFbLxfYYAQta9VixNuf4LASqFpxEHiJ4mtQhOZmpTY2IUu1k
1079
+ A+JhNnsUKvgMPpe5Z7Dl4gVqube5WI/nPbpiMkZrlMyUQhy8PoOWv0CewA47
1080
+ 2JqI97TAiteOKGN6miITExzOhX1Pug96h2Q0FBuZ8rt0pBI6qE0KEQXp+aC7
1081
+ Jneoa6OAGHtHEg69pQZdRkJCygbGS1zyViHB9eanR+vVEx07KzAfLeC/r4ox
1082
+ gdTYAmRn+Qi94Pwd0u4rhN2tvfvKnTR+gv+wjGIo8xsH+eOfcojhWy3vfgBQ
1083
+ SwMEFAAAAAgAAICf62uSPf7GAAAALwEAAA8AAAB4bC93b3JrYm9vay54bWyN
1084
+ j8FOwzAMhu88ReQ7S4cmBFXTXRBSbxzgAULirtEau7KzjccndExcOdnW7//z
1085
+ 727/lWdzRtHE5GC7acAgBY6JDg4+3l/vn2DfdxeW4yfz0dRtUgdTKUtrrYYJ
1086
+ s9cNL0hVGVmyL3WUg9VF0EedEEue7UPTPNrsE8GV0Mp/GDyOKeALh1NGKleI
1087
+ 4OxLzapTWhT+kr2Jib7g9rnZORj9rAi279b7+lsN+YwOBtIip7BCwKzKEOvr
1088
+ YKRNtZEh7n689ma2txv93TdQSwMEFAAAAAgAAICf69oog2pzAAAAiwAAACMA
1089
+ AAB4bC93b3Jrc2hlZXRzL19yZWxzL3NoZWV0MS54bWwucmVsc1WMSw4CIRAF
1090
+ 956C9N5pnIUxBpjdHMCMByDYAnH4hCbG48tSl5VXr9TySbt4U+NYsobTJEFQ
1091
+ duURs9dw39bjBRajbrTbPgwOsbIYl8waQu/1isguULI8lUp5LM/Sku0Dm8dq
1092
+ 3ct6wlnKM7bfBhiFf1Fz+AJQSwMEFAAAAAgAAICf6yI+jzC/AgAAkQYAABgA
1093
+ AAB4bC93b3Jrc2hlZXRzL3NoZWV0MS54bWyVVd1v2jAQf99fEeV9BChtAYV0
1094
+ LR3rJLZWo12lvZnkQqw6vsh2SNu/fmcnhCAxtL7Aff7ufF8Jr15z4W1BaY5y
1095
+ 5g96fd8DGWPC5WbmPz0uPo/9qyisUL3oDMB4ZC71zM+MKaZBoOMMcqZ7WIAk
1096
+ TYoqZ4ZYtQl0oYAlzikXwbDfvwhyxqVfI0zV/2BgmvIYbjEuc5CmBlEgmKFk
1097
+ dcYL7dCmumAxzHwKqEFtwY9CF/ZBeVFYsA2swDwVxKXcPOIDCWZ+yoQG3wui
1098
+ MGhsozDhFMXWwVOQzvzrwXQ+JKyglTe4vzlUukN7FZcJVg8KDcTG1bGBN2y9
1099
+ AkFCSFqZzrB6zriBVZ11R3xfGsElrN7yNQp9oFpQVUrB9kLFNxm9ZgmpOTD8
1100
+ AwrJyqiyEfwqBagDAVZzFHfUHOp6V/FN8WRJ8VthAikrhbFy8sAW5R0xX8VM
1101
+ UPaDPg2MnY414ostxnd6ab9jsrJVWrI3LF2tDpW2F//S/bRzIJxs1yRr1KV3
1102
+ TVi4kaEGr5kGyvSZJyab+eP2BfTkO7AFo4THrusxFdj9ejm3c+97OXt1/2vQ
1103
+ ZsHN7q1xqQ3mDWItqmpm1BuMJ+Px5cWoPxpNRmeTHXANOWwghx+AvOyNTkGe
1104
+ NZBnH4AcDHuTI5hBXQBXvltmWBQqrDzlKkARLXVNpHb1pzCSFmEbDcJga30b
1105
+ i5uuBZdudo0iS07QJvoqclBhYMjDClq3+Wk3sG5f0jJJejHmh/4BZdmmOtyn
1106
+ OjyJeCSHm9Me36WmKrpl1sde8JF4dc5Bp9SOnDMR25tUCmHJe7lEluyaRx0q
1107
+ FJfmvnAp2ANtOG3FnM4gqM41yVDxd5TmmIo2nK74/mRs9vu9P3/2Pv5gasMp
1108
+ iqpXpN+7PPc94S5LTa/R0Hg1nweDRUOlSBdPWaPzOlzLBO3hLQvL1MqFs7fr
1109
+ 3OWJbT8v0ae/UEsBAjQDFAAAAAgAAICf62M4a9TZAAAAQQIAAAsAAAAAAAAA
1110
+ AQAAAKSBAAAAAF9yZWxzLy5yZWxzUEsBAjQDFAAAAAgAAICf6+/Ko8TIAQAA
1111
+ CQUAAA0AAAAAAAAAAQAAAKSBAgEAAHhsL3N0eWxlcy54bWxQSwECNAMUAAAA
1112
+ CAAAgJ/rN2/53Q4BAADmAQAAEQAAAAAAAAABAAAApIH1AgAAZG9jUHJvcHMv
1113
+ Y29yZS54bWxQSwECNAMUAAAACAAAgJ/r0L5Pp44AAADiAAAAEAAAAAAAAAAB
1114
+ AAAApIEyBAAAZG9jUHJvcHMvYXBwLnhtbFBLAQI0AxQAAAAIAACAn+v4HK0l
1115
+ ugAAAJcBAAAaAAAAAAAAAAEAAACkge4EAAB4bC9fcmVscy93b3JrYm9vay54
1116
+ bWwucmVsc1BLAQI0AxQAAAAIAACAn+sxz6hmIwEAAIUDAAATAAAAAAAAAAEA
1117
+ AACkgeAFAABbQ29udGVudF9UeXBlc10ueG1sUEsBAjQDFAAAAAgAAICf62uS
1118
+ Pf7GAAAALwEAAA8AAAAAAAAAAQAAAKSBNAcAAHhsL3dvcmtib29rLnhtbFBL
1119
+ AQI0AxQAAAAIAACAn+vaKINqcwAAAIsAAAAjAAAAAAAAAAEAAACkgScIAAB4
1120
+ bC93b3Jrc2hlZXRzL19yZWxzL3NoZWV0MS54bWwucmVsc1BLAQI0AxQAAAAI
1121
+ AACAn+siPo8wvwIAAJEGAAAYAAAAAAAAAAEAAACkgdsIAAB4bC93b3Jrc2hl
1122
+ ZXRzL3NoZWV0MS54bWxQSwUGAAAAAAkACQBOAgAA0AsAAAAA
1123
+
1124
+ ----
1125
+
1126
+ Rendered text template (0.0ms)
1127
+ Completed 200 OK in 67.5ms (Views: 10.7ms | ActiveRecord: 0.3ms)
1128
+ Started GET "/" for 127.0.0.1 at 2014-09-04 11:58:11 -0700
1129
+ Processing by HomeController#index as HTML
1130
+ Completed 200 OK in 5.8ms (Views: 5.2ms | ActiveRecord: 0.0ms)
1131
+ Started GET "/withpartial.xlsx" for 127.0.0.1 at 2014-09-04 11:58:11 -0700
1132
+ Processing by HomeController#withpartial as XLSX
1133
+ Rendered home/_cover_sheet.xlsx.axlsx (7.7ms)
1134
+ Completed 200 OK in 24.8ms (Views: 24.3ms | ActiveRecord: 0.0ms)
1135
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1136
+  (0.0ms) begin transaction
1137
+ SQL (0.3ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
1138
+  (1.4ms) commit transaction
1139
+  (0.0ms) begin transaction
1140
+ SQL (0.5ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Right Turn, Albuquerque NM 22222"], ["created_at", Thu, 04 Sep 2014 18:58:12 UTC +00:00], ["email", "bugs@bunny.com"], ["last_name", "Bunny"], ["name", "Responder"], ["updated_at", Thu, 04 Sep 2014 18:58:12 UTC +00:00]]
1141
+  (1.3ms) commit transaction
1142
+ Started GET "/users/2.xlsx" for 127.0.0.1 at 2014-09-04 11:58:12 -0700
1143
+ Processing by UsersController#show as XLSX
1144
+ Parameters: {"id"=>"2"}
1145
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "2"]]
1146
+ Completed 200 OK in 13.0ms (Views: 11.2ms | ActiveRecord: 0.1ms)
1147
+ Started GET "/useheader.xlsx?set_direct=true" for 127.0.0.1 at 2014-09-04 11:58:12 -0700
1148
+ Processing by HomeController#useheader as XLSX
1149
+ Parameters: {"set_direct"=>"true"}
1150
+ Completed 200 OK in 9.9ms (Views: 9.4ms | ActiveRecord: 0.0ms)
1151
+ User Load (0.3ms) SELECT "users".* FROM "users" 
1152
+  (0.1ms) begin transaction
1153
+ SQL (0.3ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
1154
+  (1.2ms) commit transaction
1155
+  (0.1ms) begin transaction
1156
+ SQL (0.6ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Left Turn, Albuquerque NM 22222"], ["created_at", Thu, 04 Sep 2014 18:58:12 UTC +00:00], ["email", "bugs@bunny.com"], ["last_name", "Bunny"], ["name", "Bugs"], ["updated_at", Thu, 04 Sep 2014 18:58:12 UTC +00:00]]
1157
+  (1.4ms) commit transaction
1158
+  (0.1ms) begin transaction
1159
+ SQL (0.6ms) INSERT INTO "likes" ("created_at", "name", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Thu, 04 Sep 2014 18:58:12 UTC +00:00], ["name", "Carrots"], ["updated_at", Thu, 04 Sep 2014 18:58:12 UTC +00:00], ["user_id", 3]]
1160
+  (1.6ms) commit transaction
1161
+  (0.0ms) begin transaction
1162
+ SQL (0.3ms) INSERT INTO "likes" ("created_at", "name", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Thu, 04 Sep 2014 18:58:12 UTC +00:00], ["name", "Celery"], ["updated_at", Thu, 04 Sep 2014 18:58:12 UTC +00:00], ["user_id", 3]]
1163
+  (1.8ms) commit transaction
1164
+ Started GET "/users/3/likes.xlsx" for 127.0.0.1 at 2014-09-04 11:58:12 -0700
1165
+ Processing by LikesController#index as XLSX
1166
+ Parameters: {"user_id"=>"3"}
1167
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "3"]]
1168
+ Like Load (0.2ms) SELECT "likes".* FROM "likes" WHERE "likes"."user_id" = 3
1169
+ Completed 200 OK in 12.6ms (Views: 10.9ms | ActiveRecord: 0.3ms)
1170
+ Started GET "/another.xlsx" for 127.0.0.1 at 2014-09-04 11:58:12 -0700
1171
+ Processing by HomeController#another as XLSX
1172
+ Sent data filename_test.xlsx (0.5ms)
1173
+ Completed 200 OK in 14.1ms (Views: 13.6ms | ActiveRecord: 0.0ms)
1174
+ Started GET "/home.xlsx" for 127.0.0.1 at 2014-09-04 11:58:12 -0700
1175
+ Processing by HomeController#index as XLSX
1176
+ Completed 200 OK in 9.3ms (Views: 9.0ms | ActiveRecord: 0.0ms)
1177
+ User Load (0.2ms) SELECT "users".* FROM "users"
1178
+  (0.1ms) begin transaction
1179
+ SQL (0.3ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
1180
+  (1.3ms) commit transaction
1181
+  (0.1ms) begin transaction
1182
+ 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", Thu, 04 Sep 2014 18:58:12 UTC +00:00], ["email", "bugs@bunny.com"], ["last_name", "Bunny"], ["name", "Bugs"], ["updated_at", Thu, 04 Sep 2014 18:58:12 UTC +00:00]]
1183
+  (1.5ms) commit transaction
1184
+ Started GET "/users/4/render_elsewhere.xlsx" for 127.0.0.1 at 2014-09-04 11:58:12 -0700
1185
+ Processing by LikesController#render_elsewhere as XLSX
1186
+ Parameters: {"user_id"=>"4"}
1187
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "4"]]
1188
+ User Load (0.1ms) SELECT "users".* FROM "users"
1189
+ Sent data index.xlsx (0.4ms)
1190
+ Completed 200 OK in 12.5ms (Views: 11.1ms | ActiveRecord: 0.1ms)
1191
+ Started GET "/home/render_elsewhere.xlsx?type=5" for 127.0.0.1 at 2014-09-04 11:58:12 -0700
1192
+ Processing by HomeController#render_elsewhere as XLSX
1193
+ Parameters: {"type"=>"5"}
1194
+ Sent data index.xlsx (0.4ms)
1195
+ Completed 200 OK in 9.9ms (Views: 9.5ms | ActiveRecord: 0.0ms)
1196
+ Started GET "/home/render_elsewhere.xlsx?type=4" for 127.0.0.1 at 2014-09-04 11:58:12 -0700
1197
+ Processing by HomeController#render_elsewhere as XLSX
1198
+ Parameters: {"type"=>"4"}
1199
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1200
+ Completed 200 OK in 84.6ms (Views: 84.2ms | ActiveRecord: 0.2ms)
1201
+ Started GET "/home/render_elsewhere.xlsx?type=3" for 127.0.0.1 at 2014-09-04 11:58:12 -0700
1202
+ Processing by HomeController#render_elsewhere as XLSX
1203
+ Parameters: {"type"=>"3"}
1204
+ User Load (0.1ms) SELECT "users".* FROM "users"
1205
+ Completed 200 OK in 9.9ms (Views: 9.5ms | ActiveRecord: 0.1ms)
1206
+ Started GET "/home/render_elsewhere.xlsx?type=2" for 127.0.0.1 at 2014-09-04 11:58:12 -0700
1207
+ Processing by HomeController#render_elsewhere as XLSX
1208
+ Parameters: {"type"=>"2"}
1209
+ User Load (0.1ms) SELECT "users".* FROM "users" 
1210
+ Sent data index.xlsx (0.4ms)
1211
+ Completed 200 OK in 10.2ms (Views: 10.1ms | ActiveRecord: 0.0ms)
1212
+ Started GET "/home/render_elsewhere.xlsx?type=1" for 127.0.0.1 at 2014-09-04 11:58:12 -0700
1213
+ Processing by HomeController#render_elsewhere as XLSX
1214
+ Parameters: {"type"=>"1"}
1215
+ User Load (0.1ms) SELECT "users".* FROM "users"
1216
+ Sent data index.xlsx (0.4ms)
1217
+ Completed 200 OK in 9.6ms (Views: 9.4ms | ActiveRecord: 0.0ms)
1218
+ Started GET "/another" for 127.0.0.1 at 2014-09-04 11:58:12 -0700
1219
+ Processing by HomeController#another as HTML
1220
+ Sent data filename_test.xlsx (0.5ms)
1221
+ Completed 200 OK in 9.8ms (Views: 9.6ms | ActiveRecord: 0.0ms)
1222
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1223
+  (0.0ms) begin transaction
1224
+ SQL (0.3ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
1225
+  (1.1ms) commit transaction
1226
+  (0.1ms) begin transaction
1227
+ SQL (0.6ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Somewhere, Over NY 11111"], ["created_at", Thu, 04 Sep 2014 18:58:12 UTC +00:00], ["email", "elmer@fudd.com"], ["last_name", "Fudd"], ["name", "Elmer"], ["updated_at", Thu, 04 Sep 2014 18:58:12 UTC +00:00]]
1228
+  (1.5ms) commit transaction
1229
+  (0.1ms) begin transaction
1230
+ SQL (0.7ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Left Turn, Albuquerque NM 22222"], ["created_at", Thu, 04 Sep 2014 18:58:12 UTC +00:00], ["email", "bugs@bunny.com"], ["last_name", "Bunny"], ["name", "Bugs"], ["updated_at", Thu, 04 Sep 2014 18:58:12 UTC +00:00]]
1231
+  (2.3ms) commit transaction
1232
+ Started GET "/users.xlsx" for 127.0.0.1 at 2014-09-04 11:58:12 -0700
1233
+ Processing by UsersController#index as XLSX
1234
+ User Load (0.3ms) SELECT "users".* FROM "users" 
1235
+ CACHE (0.0ms) SELECT "users".* FROM "users"
1236
+ Completed 200 OK in 15.3ms (Views: 12.3ms | ActiveRecord: 0.3ms)
1237
+ Started GET "/useheader.xlsx" for 127.0.0.1 at 2014-09-04 11:58:12 -0700
1238
+ Processing by HomeController#useheader as XLSX
1239
+ Sent data filename_test.xlsx (0.6ms)
1240
+ Completed 200 OK in 15.2ms (Views: 15.0ms | ActiveRecord: 0.0ms)
1241
+  (0.0ms) select sqlite_version(*)
1242
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1243
+  (0.0ms) PRAGMA index_list("schema_migrations")
1244
+  (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1245
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1246
+ Migrating to CreateUsers (20120717192452)
1247
+  (0.5ms) 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, "updated_at" datetime)
1248
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120717192452')
1249
+ Migrating to CreateLikes (20121206210955)
1250
+  (0.3ms) CREATE TABLE "likes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "user_id" integer, "created_at" datetime, "updated_at" datetime)
1251
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121206210955')
1252
+  (0.3ms) select sqlite_version(*)
1253
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1254
+  (0.0ms) PRAGMA index_list("likes")
1255
+  (0.0ms) PRAGMA index_list("users")
1256
+
1257
+
1258
+ Started GET "/useheader.xlsx?set_direct=true" for 127.0.0.1 at 2014-09-04 11:58:30 -0700
1259
+ Processing by HomeController#useheader as XLSX
1260
+ Parameters: {"set_direct"=>"true"}
1261
+ Rendered home/useheader.xlsx.axlsx (10.6ms)
1262
+ Completed 200 OK in 29ms (Views: 28.9ms | ActiveRecord: 0.0ms)
1263
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1264
+ SQL (16.8ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Left Turn, Albuquerque NM 22222"], ["created_at", Thu, 04 Sep 2014 18:58:30 UTC +00:00], ["email", "bugs@bunny.com"], ["last_name", "Bunny"], ["name", "Bugs"], ["updated_at", Thu, 04 Sep 2014 18:58:30 UTC +00:00]]
1265
+ SQL (0.5ms) INSERT INTO "likes" ("created_at", "name", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Thu, 04 Sep 2014 18:58:30 UTC +00:00], ["name", "Carrots"], ["updated_at", Thu, 04 Sep 2014 18:58:30 UTC +00:00], ["user_id", 1]]
1266
+ SQL (0.3ms) INSERT INTO "likes" ("created_at", "name", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Thu, 04 Sep 2014 18:58:30 UTC +00:00], ["name", "Celery"], ["updated_at", Thu, 04 Sep 2014 18:58:30 UTC +00:00], ["user_id", 1]]
1267
+
1268
+
1269
+ Started GET "/users/1/likes.xlsx" for 127.0.0.1 at 2014-09-04 11:58:30 -0700
1270
+ Processing by LikesController#index as XLSX
1271
+ Parameters: {"user_id"=>"1"}
1272
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
1273
+ Like Load (0.2ms) SELECT "likes".* FROM "likes" WHERE "likes"."user_id" = 1
1274
+ Completed 200 OK in 14ms (Views: 11.3ms | ActiveRecord: 0.4ms)
1275
+
1276
+
1277
+ Started GET "/withpartial.xlsx" for 127.0.0.1 at 2014-09-04 11:58:30 -0700
1278
+ Processing by HomeController#withpartial as XLSX
1279
+ Rendered home/_cover_sheet.xlsx.axlsx (7.2ms)
1280
+ Completed 200 OK in 45ms (Views: 45.1ms | ActiveRecord: 0.0ms)
1281
+
1282
+
1283
+ Started GET "/useheader.xlsx" for 127.0.0.1 at 2014-09-04 11:58:30 -0700
1284
+ Processing by HomeController#useheader as XLSX
1285
+ Sent data filename_test.xlsx (1.8ms)
1286
+ Completed 200 OK in 11ms (Views: 10.8ms | ActiveRecord: 0.0ms)
1287
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1288
+ SQL (0.3ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
1289
+ SQL (0.5ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Somewhere, Over NY 11111"], ["created_at", Thu, 04 Sep 2014 18:58:30 UTC +00:00], ["email", "elmer@fudd.com"], ["last_name", "Fudd"], ["name", "Elmer"], ["updated_at", Thu, 04 Sep 2014 18:58:30 UTC +00:00]]
1290
+ 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", Thu, 04 Sep 2014 18:58:30 UTC +00:00], ["email", "bugs@bunny.com"], ["last_name", "Bunny"], ["name", "Bugs"], ["updated_at", Thu, 04 Sep 2014 18:58:30 UTC +00:00]]
1291
+
1292
+
1293
+ Started GET "/users.xlsx" for 127.0.0.1 at 2014-09-04 11:58:30 -0700
1294
+ Processing by UsersController#index as XLSX
1295
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1296
+ CACHE (0.0ms) SELECT "users".* FROM "users"
1297
+ Completed 200 OK in 14ms (Views: 12.7ms | ActiveRecord: 0.2ms)
1298
+
1299
+
1300
+ Started GET "/" for 127.0.0.1 at 2014-09-04 11:58:30 -0700
1301
+ Processing by HomeController#index as HTML
1302
+ Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.0ms)
1303
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1304
+ SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
1305
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
1306
+ 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", Thu, 04 Sep 2014 18:58:30 UTC +00:00], ["email", "bugs@bunny.com"], ["last_name", "Bunny"], ["name", "Bugs"], ["updated_at", Thu, 04 Sep 2014 18:58:30 UTC +00:00]]
1307
+
1308
+
1309
+ Started GET "/users/4/render_elsewhere.xlsx" for 127.0.0.1 at 2014-09-04 11:58:30 -0700
1310
+ Processing by LikesController#render_elsewhere as XLSX
1311
+ Parameters: {"user_id"=>"4"}
1312
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "4"]]
1313
+ User Load (0.1ms) SELECT "users".* FROM "users"
1314
+ Sent data index.xlsx (0.5ms)
1315
+ Completed 200 OK in 12ms (Views: 10.4ms | ActiveRecord: 0.1ms)
1316
+
1317
+
1318
+ Started GET "/home/render_elsewhere.xlsx?type=5" for 127.0.0.1 at 2014-09-04 11:58:30 -0700
1319
+ Processing by HomeController#render_elsewhere as XLSX
1320
+ Parameters: {"type"=>"5"}
1321
+ Sent data index.xlsx (0.4ms)
1322
+ Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.0ms)
1323
+
1324
+
1325
+ Started GET "/home/render_elsewhere.xlsx?type=4" for 127.0.0.1 at 2014-09-04 11:58:30 -0700
1326
+ Processing by HomeController#render_elsewhere as XLSX
1327
+ Parameters: {"type"=>"4"}
1328
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1329
+ Completed 200 OK in 10ms (Views: 9.1ms | ActiveRecord: 0.2ms)
1330
+
1331
+
1332
+ Started GET "/home/render_elsewhere.xlsx?type=3" for 127.0.0.1 at 2014-09-04 11:58:30 -0700
1333
+ Processing by HomeController#render_elsewhere as XLSX
1334
+ Parameters: {"type"=>"3"}
1335
+ User Load (0.2ms) SELECT "users".* FROM "users"
1336
+ Completed 200 OK in 11ms (Views: 10.8ms | ActiveRecord: 0.2ms)
1337
+
1338
+
1339
+ Started GET "/home/render_elsewhere.xlsx?type=2" for 127.0.0.1 at 2014-09-04 11:58:31 -0700
1340
+ Processing by HomeController#render_elsewhere as XLSX
1341
+ Parameters: {"type"=>"2"}
1342
+ User Load (0.1ms) SELECT "users".* FROM "users" 
1343
+ Sent data index.xlsx (0.4ms)
1344
+ Completed 200 OK in 10ms (Views: 10.1ms | ActiveRecord: 0.0ms)
1345
+
1346
+
1347
+ Started GET "/home/render_elsewhere.xlsx?type=1" for 127.0.0.1 at 2014-09-04 11:58:31 -0700
1348
+ Processing by HomeController#render_elsewhere as XLSX
1349
+ Parameters: {"type"=>"1"}
1350
+ User Load (0.2ms) SELECT "users".* FROM "users"
1351
+ Sent data index.xlsx (0.4ms)
1352
+ Completed 200 OK in 12ms (Views: 11.8ms | ActiveRecord: 0.0ms)
1353
+
1354
+
1355
+ Started GET "/home.xlsx" for 127.0.0.1 at 2014-09-04 11:58:31 -0700
1356
+ Processing by HomeController#index as XLSX
1357
+ Completed 200 OK in 11ms (Views: 11.0ms | ActiveRecord: 0.0ms)
1358
+
1359
+
1360
+ Started GET "/another.xlsx" for 127.0.0.1 at 2014-09-04 11:58:31 -0700
1361
+ Processing by HomeController#another as XLSX
1362
+ Sent data filename_test.xlsx (0.4ms)
1363
+ Completed 200 OK in 9ms (Views: 9.2ms | ActiveRecord: 0.0ms)
1364
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1365
+ SQL (0.3ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
1366
+ SQL (0.4ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Right Turn, Albuquerque NM 22222"], ["created_at", Thu, 04 Sep 2014 18:58:31 UTC +00:00], ["email", "bugs@bunny.com"], ["last_name", "Bunny"], ["name", "Responder"], ["updated_at", Thu, 04 Sep 2014 18:58:31 UTC +00:00]]
1367
+
1368
+
1369
+ Started GET "/users/5.xlsx" for 127.0.0.1 at 2014-09-04 11:58:31 -0700
1370
+ Processing by UsersController#show as XLSX
1371
+ Parameters: {"id"=>"5"}
1372
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "5"]]
1373
+ Completed 200 OK in 12ms (Views: 10.6ms | ActiveRecord: 0.1ms)
1374
+ SQL (0.5ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Somewhere, Over NY 11111"], ["created_at", Thu, 04 Sep 2014 18:58:31 UTC +00:00], ["email", "elmer@fudd.com"], ["last_name", "Fudd"], ["name", "Elmer"], ["updated_at", Thu, 04 Sep 2014 18:58:31 UTC +00:00]]
1375
+
1376
+
1377
+ Started GET "/users/6/send_instructions" for 127.0.0.1 at 2014-09-04 11:58:31 -0700
1378
+ Processing by UsersController#send_instructions as HTML
1379
+ Parameters: {"user_id"=>"6"}
1380
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "6"]]
1381
+
1382
+ Sent mail to elmer@fudd.com (15ms)
1383
+ Date: Thu, 04 Sep 2014 11:58:31 -0700
1384
+ From: noreply@company.com
1385
+ To: elmer@fudd.com
1386
+ Message-ID: <5408b65744c8e_bb923fc18c45e6f0535b3@edoras.local.mail>
1387
+ Subject: Instructions
1388
+ Mime-Version: 1.0
1389
+ Content-Type: multipart/mixed;
1390
+ charset=UTF-8
1391
+ Content-Transfer-Encoding: 7bit
1392
+
1393
+
1394
+
1395
+ --
1396
+ Date: Thu, 04 Sep 2014 11:58:31 -0700
1397
+ Mime-Version: 1.0
1398
+ Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;
1399
+ charset=UTF-8
1400
+ Content-Transfer-Encoding: base64
1401
+ Content-Disposition: attachment;
1402
+ filename=user_6.xlsx
1403
+ Content-ID: <5408b6573406a_bb923fc18c45e6f0534e1@edoras.local.mail>
1404
+
1405
+ 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
1486
+
1487
+
1488
+ ----
1489
+ Completed 200 OK in 165ms (Views: 0.4ms | ActiveRecord: 0.1ms)
1490
+  (0.0ms) select sqlite_version(*)
1491
+  (2.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1492
+  (0.1ms) PRAGMA index_list("schema_migrations")
1493
+  (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1494
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1495
+ Migrating to CreateUsers (20120717192452)
1496
+  (0.4ms) 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, "updated_at" datetime)
1497
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120717192452')
1498
+ Migrating to CreateLikes (20121206210955)
1499
+  (0.3ms) CREATE TABLE "likes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "user_id" integer, "created_at" datetime, "updated_at" datetime)
1500
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121206210955')
1501
+  (0.3ms) select sqlite_version(*)
1502
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1503
+  (0.0ms) PRAGMA index_list("likes")
1504
+  (0.0ms) PRAGMA index_list("users")
1505
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1506
+ SQL (70.2ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Somewhere, Over NY 11111"], ["created_at", Thu, 04 Sep 2014 19:20:02 UTC +00:00], ["email", "elmer@fudd.com"], ["last_name", "Fudd"], ["name", "Elmer"], ["updated_at", Thu, 04 Sep 2014 19:20:02 UTC +00:00]]
1507
+ 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", Thu, 04 Sep 2014 19:20:02 UTC +00:00], ["email", "bugs@bunny.com"], ["last_name", "Bunny"], ["name", "Bugs"], ["updated_at", Thu, 04 Sep 2014 19:20:02 UTC +00:00]]
1508
+
1509
+
1510
+ Started GET "/users.xlsx" for 127.0.0.1 at 2014-09-04 12:20:02 -0700
1511
+ Processing by UsersController#index as XLSX
1512
+ User Load (0.2ms) SELECT "users".* FROM "users"
1513
+ CACHE (0.0ms) SELECT "users".* FROM "users" 
1514
+ Rendered users/index.xlsx.axlsx (11.9ms)
1515
+ Completed 200 OK in 25ms (Views: 23.3ms | ActiveRecord: 0.2ms)
1516
+
1517
+
1518
+ Started GET "/useheader.xlsx?set_direct=true" for 127.0.0.1 at 2014-09-04 12:20:02 -0700
1519
+ Processing by HomeController#useheader as XLSX
1520
+ Parameters: {"set_direct"=>"true"}
1521
+ Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.0ms)
1522
+ User Load (0.2ms) SELECT "users".* FROM "users"
1523
+ SQL (0.5ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
1524
+ SQL (0.3ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
1525
+ SQL (0.7ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Right Turn, Albuquerque NM 22222"], ["created_at", Thu, 04 Sep 2014 19:20:02 UTC +00:00], ["email", "bugs@bunny.com"], ["last_name", "Bunny"], ["name", "Responder"], ["updated_at", Thu, 04 Sep 2014 19:20:02 UTC +00:00]]
1526
+
1527
+
1528
+ Started GET "/users/3.xlsx" for 127.0.0.1 at 2014-09-04 12:20:02 -0700
1529
+ Processing by UsersController#show as XLSX
1530
+ Parameters: {"id"=>"3"}
1531
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "3"]]
1532
+ Completed 200 OK in 14ms (Views: 10.8ms | ActiveRecord: 0.3ms)
1533
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1534
+ SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
1535
+ 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", Thu, 04 Sep 2014 19:20:02 UTC +00:00], ["email", "bugs@bunny.com"], ["last_name", "Bunny"], ["name", "Bugs"], ["updated_at", Thu, 04 Sep 2014 19:20:02 UTC +00:00]]
1536
+
1537
+
1538
+ Started GET "/users/4/render_elsewhere.xlsx" for 127.0.0.1 at 2014-09-04 12:20:02 -0700
1539
+ Processing by LikesController#render_elsewhere as XLSX
1540
+ Parameters: {"user_id"=>"4"}
1541
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "4"]]
1542
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1543
+ Sent data index.xlsx (4.1ms)
1544
+ Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.1ms)
1545
+
1546
+
1547
+ Started GET "/home/render_elsewhere.xlsx?type=5" for 127.0.0.1 at 2014-09-04 12:20:02 -0700
1548
+ Processing by HomeController#render_elsewhere as XLSX
1549
+ Parameters: {"type"=>"5"}
1550
+ Sent data index.xlsx (0.5ms)
1551
+ Completed 200 OK in 30ms (Views: 29.5ms | ActiveRecord: 0.0ms)
1552
+
1553
+
1554
+ Started GET "/home/render_elsewhere.xlsx?type=4" for 127.0.0.1 at 2014-09-04 12:20:02 -0700
1555
+ Processing by HomeController#render_elsewhere as XLSX
1556
+ Parameters: {"type"=>"4"}
1557
+ User Load (0.2ms) SELECT "users".* FROM "users"
1558
+ Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.2ms)
1559
+
1560
+
1561
+ Started GET "/home/render_elsewhere.xlsx?type=3" for 127.0.0.1 at 2014-09-04 12:20:03 -0700
1562
+ Processing by HomeController#render_elsewhere as XLSX
1563
+ Parameters: {"type"=>"3"}
1564
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1565
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.2ms)
1566
+
1567
+
1568
+ Started GET "/home/render_elsewhere.xlsx?type=2" for 127.0.0.1 at 2014-09-04 12:20:03 -0700
1569
+ Processing by HomeController#render_elsewhere as XLSX
1570
+ Parameters: {"type"=>"2"}
1571
+ User Load (0.2ms) SELECT "users".* FROM "users"
1572
+ Sent data index.xlsx (0.4ms)
1573
+ Completed 200 OK in 10ms (Views: 10.2ms | ActiveRecord: 0.0ms)
1574
+
1575
+
1576
+ Started GET "/home/render_elsewhere.xlsx?type=1" for 127.0.0.1 at 2014-09-04 12:20:04 -0700
1577
+ Processing by HomeController#render_elsewhere as XLSX
1578
+ Parameters: {"type"=>"1"}
1579
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1580
+ Sent data index.xlsx (0.4ms)
1581
+ Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms)
1582
+
1583
+
1584
+ Started GET "/another.xlsx" for 127.0.0.1 at 2014-09-04 12:20:04 -0700
1585
+ Processing by HomeController#another as XLSX
1586
+ Sent data filename_test.xlsx (0.4ms)
1587
+ Completed 200 OK in 10ms (Views: 9.7ms | ActiveRecord: 0.0ms)
1588
+
1589
+
1590
+ Started GET "/useheader.xlsx" for 127.0.0.1 at 2014-09-04 12:20:04 -0700
1591
+ Processing by HomeController#useheader as XLSX
1592
+ Sent data filename_test.xlsx (0.5ms)
1593
+ Completed 200 OK in 10ms (Views: 10.3ms | ActiveRecord: 0.0ms)
1594
+
1595
+
1596
+ Started GET "/" for 127.0.0.1 at 2014-09-04 12:20:04 -0700
1597
+ Processing by HomeController#index as HTML
1598
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
1599
+
1600
+
1601
+ Started GET "/home.xlsx" for 127.0.0.1 at 2014-09-04 12:20:04 -0700
1602
+ Processing by HomeController#index as XLSX
1603
+ Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.0ms)
1604
+ User Load (0.2ms) SELECT "users".* FROM "users"
1605
+ SQL (0.3ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
1606
+ 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", Thu, 04 Sep 2014 19:20:04 UTC +00:00], ["email", "bugs@bunny.com"], ["last_name", "Bunny"], ["name", "Bugs"], ["updated_at", Thu, 04 Sep 2014 19:20:04 UTC +00:00]]
1607
+ SQL (0.5ms) INSERT INTO "likes" ("created_at", "name", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Thu, 04 Sep 2014 19:20:04 UTC +00:00], ["name", "Carrots"], ["updated_at", Thu, 04 Sep 2014 19:20:04 UTC +00:00], ["user_id", 5]]
1608
+ SQL (0.4ms) INSERT INTO "likes" ("created_at", "name", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Thu, 04 Sep 2014 19:20:04 UTC +00:00], ["name", "Celery"], ["updated_at", Thu, 04 Sep 2014 19:20:04 UTC +00:00], ["user_id", 5]]
1609
+
1610
+
1611
+ Started GET "/users/5/likes.xlsx" for 127.0.0.1 at 2014-09-04 12:20:04 -0700
1612
+ Processing by LikesController#index as XLSX
1613
+ Parameters: {"user_id"=>"5"}
1614
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "5"]]
1615
+ Like Load (0.2ms) SELECT "likes".* FROM "likes" WHERE "likes"."user_id" = 5
1616
+ Completed 200 OK in 12ms (Views: 10.0ms | ActiveRecord: 0.3ms)
1617
+
1618
+
1619
+ Started GET "/withpartial.xlsx" for 127.0.0.1 at 2014-09-04 12:20:04 -0700
1620
+ Processing by HomeController#withpartial as XLSX
1621
+ Rendered home/_cover_sheet.xlsx.axlsx (7.0ms)
1622
+ Completed 200 OK in 23ms (Views: 22.5ms | ActiveRecord: 0.0ms)
1623
+ SQL (0.5ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Somewhere, Over NY 11111"], ["created_at", Thu, 04 Sep 2014 19:20:04 UTC +00:00], ["email", "elmer@fudd.com"], ["last_name", "Fudd"], ["name", "Elmer"], ["updated_at", Thu, 04 Sep 2014 19:20:04 UTC +00:00]]
1624
+
1625
+
1626
+ Started GET "/users/6/send_instructions" for 127.0.0.1 at 2014-09-04 12:20:05 -0700
1627
+ Processing by UsersController#send_instructions as HTML
1628
+ Parameters: {"user_id"=>"6"}
1629
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "6"]]
1630
+
1631
+ Sent mail to elmer@fudd.com (15ms)
1632
+ Date: Thu, 04 Sep 2014 12:20:05 -0700
1633
+ From: noreply@company.com
1634
+ To: elmer@fudd.com
1635
+ Message-ID: <5408bb6515c3c_c1703fcb40c5e6e4901e2@edoras.local.mail>
1636
+ Subject: Instructions
1637
+ Mime-Version: 1.0
1638
+ Content-Type: multipart/mixed;
1639
+ charset=UTF-8
1640
+ Content-Transfer-Encoding: 7bit
1641
+
1642
+
1643
+
1644
+ --
1645
+ Date: Thu, 04 Sep 2014 12:20:05 -0700
1646
+ Mime-Version: 1.0
1647
+ Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;
1648
+ charset=UTF-8
1649
+ Content-Transfer-Encoding: base64
1650
+ Content-Disposition: attachment;
1651
+ filename=user_6.xlsx
1652
+ Content-ID: <5408bb65f7af_c1703fcb40c5e6e490030@edoras.local.mail>
1653
+
1654
+ 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
1735
+
1736
+
1737
+ ----
1738
+ Completed 200 OK in 90ms (Views: 0.4ms | ActiveRecord: 0.2ms)
1739
+ Connecting to database specified by database.yml
1740
+  (0.1ms) select sqlite_version(*)
1741
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1742
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1743
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1744
+ Migrating to CreateUsers (20120717192452)
1745
+  (0.0ms) begin transaction
1746
+  (0.4ms) 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)
1747
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120717192452')
1748
+  (1.5ms) commit transaction
1749
+ Migrating to CreateLikes (20121206210955)
1750
+  (0.0ms) begin transaction
1751
+  (0.3ms) CREATE TABLE "likes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "user_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1752
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121206210955')
1753
+  (1.3ms) commit transaction
1754
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1755
+ Connecting to database specified by database.yml
1756
+  (0.1ms) begin transaction
1757
+ SQL (38.4ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Somewhere, Over NY 11111"], ["created_at", Thu, 04 Sep 2014 19:20:25 UTC +00:00], ["email", "elmer@fudd.com"], ["last_name", "Fudd"], ["name", "Elmer"], ["updated_at", Thu, 04 Sep 2014 19:20:25 UTC +00:00]]
1758
+  (2.3ms) commit transaction
1759
+ Started GET "/users/1/send_instructions" for 127.0.0.1 at 2014-09-04 12:20:25 -0700
1760
+ Processing by UsersController#send_instructions as HTML
1761
+ Parameters: {"user_id"=>"1"}
1762
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
1763
+ Rendered users/mailers/instructions.xlsx.axlsx (8.7ms)
1764
+
1765
+ Sent mail to elmer@fudd.com (13.0ms)
1766
+ Date: Thu, 04 Sep 2014 12:20:25 -0700
1767
+ From: noreply@company.com
1768
+ To: elmer@fudd.com
1769
+ Message-ID: <5408bb79c11cb_c1983fda1a05e6e414773@edoras.local.mail>
1770
+ Subject: Instructions
1771
+ Mime-Version: 1.0
1772
+ Content-Type: multipart/mixed;
1773
+ charset=UTF-8
1774
+ Content-Transfer-Encoding: 7bit
1775
+
1776
+
1777
+ --
1778
+ Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;
1779
+ charset=UTF-8
1780
+ Content-Transfer-Encoding: base64
1781
+ Content-Disposition: attachment;
1782
+ filename=user_1.xlsx
1783
+ Content-ID: <5408bb79bc6fc_c1983fda1a05e6e41464f@edoras.local.mail>
1784
+
1785
+ UEsDBBQAAAAIAACAn+tjOGvU2QAAAEECAAALAAAAX3JlbHMvLnJlbHOtksFO
1786
+ wzAMhu88ReT7mm5ICKFluyCk3RAqD2ASt43axJEToLw9gQNiaAgOO1r2//3f
1787
+ wdv9Emb1QpI9RwPrpgVF0bLzcTDw2N2trmG/2z7QjKVe5NGnrGokZgNjKelG
1788
+ 62xHCpgbThTrpmcJWOoog05oJxxIb9r2Sst3BhwzVYcyUDGwzPqVZXpinpoK
1789
+ A9W9JfpPFfe9t3TL9jlQLCcaf1yAOjgDcnBr0L+4OLb3wjVpWejcNoEKOiz4
1790
+ CV+l2kNSPOUvr83fXpjSubVoKRQduVNGlx9G+ugVdhfvUEsDBBQAAAAIAACA
1791
+ n+vvyqPEyAEAAAkFAAANAAAAeGwvc3R5bGVzLnhtbKVU22rcMBB971cIfUBl
1792
+ bZpAF8tQAoZCEwrJQ1+1a3lt0MVIcrDz9RlJri1DQ5bUD6vR2XPOjEZjl87P
1793
+ Ujx1Qng0Kakdw533w5EQd+6E4u6rGYSGf1pjFfewtRfiBit444JISXIoijui
1794
+ eK9xVepR1co7dDaj9gwfVgil5WfDMC0KjJLdvWkEwzM8RCnSNBiRfwroewLU
1795
+ dUeljs5FJVnSV2Vr9FYFxQkAa64EeuGS4R+25xKDxr0mgNKwa7nq5bwgASBJ
1796
+ GJfg20u5O10AqnLg3gura9igJX6eB6hUGy2ARTJCMIvLB9KL5TM93L6njgtU
1797
+ dDK2EXZXU4IQcFKUIVK0HsUrZ9h38crORhqL7OXEcF0X8UnNDNyqtP2lu1oS
1798
+ yVXpzXCtAqihPO+NulaS2NnplgCacRZSPgWXP+3u9qcWJU4YJ7DZZiuOol5D
1799
+ 6OkSgu3Uwk9umRJk3jef857afZKdBf1/i10V9NuHHnwY5Pw4qpOwdXzNYhV5
1800
+ B9bDx1bseruiKLxdDD8GB5m5k7yLYNNMWwOLMN4BgKHhJ/gQJftGtHyU/nmF
1801
+ GN7iB9H0o/qO/7J+9y/GL6wt/hVGkd7hLVM4UJYEdtu3r/ryBlBLAwQUAAAA
1802
+ CAAAgJ/rkIXN0Q4BAADmAQAAEQAAAGRvY1Byb3BzL2NvcmUueG1sbZHLTsMw
1803
+ EEX3fEXkfWI7LQisJF2AugIJiSBQd5YzpBbxQ7Zpwt+TuG1IpS5n7pnjsabY
1804
+ DKpLDuC8NLpENCMoAS1MI3Vbovd6m96jTVUIy4Rx8OqMBRck+GQc054JW6J9
1805
+ CJZh7MUeFPfZSOgx/DJO8TCWrsWWi2/eAs4JucMKAm944HgSpnY2opOyEbPS
1806
+ /rguChqBoQMFOnhMM4r/WSXDr4WrE+dwQQdwyl+FYzKTg5cz1fd91q8iN+5P
1807
+ 8efL81v8aiq1D1wLQFXRCCYc8GBcxYfODwVedIrTw8cGNMmoZ8e1z8nH6vGp
1808
+ 3qIqJ3SdkoeUrGuas5yw/HY3uS7m4zkcHOR0s4oUeFnG6vJW1c0fUEsDBBQA
1809
+ AAAIAACAn+vQvk+njgAAAOIAAAAQAAAAZG9jUHJvcHMvYXBwLnhtbJ2OsQrC
1810
+ MBRFd7+iZG8THURKmy7F2aG6l+S1DZj3QvIs9e+NCLo7Xs7lcJpu8/dihZgc
1811
+ YSv2lRIFoCHrcG7FdTiXJ9Hp5hIpQGQHqch/TK1YmEMtZTIL+DFVGWMmE0U/
1812
+ cp5xljRNzkBP5uEBWR6UOkrYGNCCLcNXKD7GeuV/pZbMuy/dhmfIPt3IX67e
1813
+ vQBQSwMEFAAAAAgAAICf6/gcrSW6AAAAlwEAABoAAAB4bC9fcmVscy93b3Jr
1814
+ Ym9vay54bWwucmVsc62QTQvCMAyG7/6KkrvLFBURqxcRdpX5A0qXfeDWlqZ+
1815
+ 7N9bFURBwYOnEJI8z0uW60vXihN5bqyRMEpSEGS0LRpTSdjn2+Ec1qvljloV
1816
+ 4gbXjWMRTwxLqENwC0TWNXWKE+vIxElpfadCbH2FTumDqgjHaTpD/8qAd6bI
1817
+ la8oSDhbf+CaKDDeyyiJSBB57+gXoS3LRtPG6mNHJnzw4lMAIisk+KyYAH4J
1818
+ w6Fvif+d4EF96qc3Pb49eDW4AlBLAwQUAAAACAAAgJ/rMc+oZiMBAACFAwAA
1819
+ EwAAAFtDb250ZW50X1R5cGVzXS54bWytk79OwzAQxneeIvKKYrcMCKGmHQqM
1820
+ 0KE8gLEviVX/k88t6dtzSShDl6ai0+l89/2+z5a8WHXOFgdIaIKv2JzPWAFe
1821
+ BW18U7HP7Vv5xFbLxfYYAQta9VixNuf4LASqFpxEHiJ4mtQhOZmpTY2IUu1k
1822
+ A+JhNnsUKvgMPpe5Z7Dl4gVqube5WI/nPbpiMkZrlMyUQhy8PoOWv0CewA47
1823
+ 2JqI97TAiteOKGN6miITExzOhX1Pug96h2Q0FBuZ8rt0pBI6qE0KEQXp+aC7
1824
+ Jneoa6OAGHtHEg69pQZdRkJCygbGS1zyViHB9eanR+vVEx07KzAfLeC/r4ox
1825
+ gdTYAmRn+Qi94Pwd0u4rhN2tvfvKnTR+gv+wjGIo8xsH+eOfcojhWy3vfgBQ
1826
+ SwMEFAAAAAgAAICf62uSPf7GAAAALwEAAA8AAAB4bC93b3JrYm9vay54bWyN
1827
+ j8FOwzAMhu88ReQ7S4cmBFXTXRBSbxzgAULirtEau7KzjccndExcOdnW7//z
1828
+ 727/lWdzRtHE5GC7acAgBY6JDg4+3l/vn2DfdxeW4yfz0dRtUgdTKUtrrYYJ
1829
+ s9cNL0hVGVmyL3WUg9VF0EedEEue7UPTPNrsE8GV0Mp/GDyOKeALh1NGKleI
1830
+ 4OxLzapTWhT+kr2Jib7g9rnZORj9rAi279b7+lsN+YwOBtIip7BCwKzKEOvr
1831
+ YKRNtZEh7n689ma2txv93TdQSwMEFAAAAAgAAICf69oog2pzAAAAiwAAACMA
1832
+ AAB4bC93b3Jrc2hlZXRzL19yZWxzL3NoZWV0MS54bWwucmVsc1WMSw4CIRAF
1833
+ 956C9N5pnIUxBpjdHMCMByDYAnH4hCbG48tSl5VXr9TySbt4U+NYsobTJEFQ
1834
+ duURs9dw39bjBRajbrTbPgwOsbIYl8waQu/1isguULI8lUp5LM/Sku0Dm8dq
1835
+ 3ct6wlnKM7bfBhiFf1Fz+AJQSwMEFAAAAAgAAICf6yI+jzC/AgAAkQYAABgA
1836
+ AAB4bC93b3Jrc2hlZXRzL3NoZWV0MS54bWyVVd1v2jAQf99fEeV9BChtAYV0
1837
+ LR3rJLZWo12lvZnkQqw6vsh2SNu/fmcnhCAxtL7Aff7ufF8Jr15z4W1BaY5y
1838
+ 5g96fd8DGWPC5WbmPz0uPo/9qyisUL3oDMB4ZC71zM+MKaZBoOMMcqZ7WIAk
1839
+ TYoqZ4ZYtQl0oYAlzikXwbDfvwhyxqVfI0zV/2BgmvIYbjEuc5CmBlEgmKFk
1840
+ dcYL7dCmumAxzHwKqEFtwY9CF/ZBeVFYsA2swDwVxKXcPOIDCWZ+yoQG3wui
1841
+ MGhsozDhFMXWwVOQzvzrwXQ+JKyglTe4vzlUukN7FZcJVg8KDcTG1bGBN2y9
1842
+ AkFCSFqZzrB6zriBVZ11R3xfGsElrN7yNQp9oFpQVUrB9kLFNxm9ZgmpOTD8
1843
+ AwrJyqiyEfwqBagDAVZzFHfUHOp6V/FN8WRJ8VthAikrhbFy8sAW5R0xX8VM
1844
+ UPaDPg2MnY414ostxnd6ab9jsrJVWrI3LF2tDpW2F//S/bRzIJxs1yRr1KV3
1845
+ TVi4kaEGr5kGyvSZJyab+eP2BfTkO7AFo4THrusxFdj9ejm3c+97OXt1/2vQ
1846
+ ZsHN7q1xqQ3mDWItqmpm1BuMJ+Px5cWoPxpNRmeTHXANOWwghx+AvOyNTkGe
1847
+ NZBnH4AcDHuTI5hBXQBXvltmWBQqrDzlKkARLXVNpHb1pzCSFmEbDcJga30b
1848
+ i5uuBZdudo0iS07QJvoqclBhYMjDClq3+Wk3sG5f0jJJejHmh/4BZdmmOtyn
1849
+ OjyJeCSHm9Me36WmKrpl1sde8JF4dc5Bp9SOnDMR25tUCmHJe7lEluyaRx0q
1850
+ FJfmvnAp2ANtOG3FnM4gqM41yVDxd5TmmIo2nK74/mRs9vu9P3/2Pv5gasMp
1851
+ iqpXpN+7PPc94S5LTa/R0Hg1nweDRUOlSBdPWaPzOlzLBO3hLQvL1MqFs7fr
1852
+ 3OWJbT8v0ae/UEsBAjQDFAAAAAgAAICf62M4a9TZAAAAQQIAAAsAAAAAAAAA
1853
+ AQAAAKSBAAAAAF9yZWxzLy5yZWxzUEsBAjQDFAAAAAgAAICf6+/Ko8TIAQAA
1854
+ CQUAAA0AAAAAAAAAAQAAAKSBAgEAAHhsL3N0eWxlcy54bWxQSwECNAMUAAAA
1855
+ CAAAgJ/rkIXN0Q4BAADmAQAAEQAAAAAAAAABAAAApIH1AgAAZG9jUHJvcHMv
1856
+ Y29yZS54bWxQSwECNAMUAAAACAAAgJ/r0L5Pp44AAADiAAAAEAAAAAAAAAAB
1857
+ AAAApIEyBAAAZG9jUHJvcHMvYXBwLnhtbFBLAQI0AxQAAAAIAACAn+v4HK0l
1858
+ ugAAAJcBAAAaAAAAAAAAAAEAAACkge4EAAB4bC9fcmVscy93b3JrYm9vay54
1859
+ bWwucmVsc1BLAQI0AxQAAAAIAACAn+sxz6hmIwEAAIUDAAATAAAAAAAAAAEA
1860
+ AACkgeAFAABbQ29udGVudF9UeXBlc10ueG1sUEsBAjQDFAAAAAgAAICf62uS
1861
+ Pf7GAAAALwEAAA8AAAAAAAAAAQAAAKSBNAcAAHhsL3dvcmtib29rLnhtbFBL
1862
+ AQI0AxQAAAAIAACAn+vaKINqcwAAAIsAAAAjAAAAAAAAAAEAAACkgScIAAB4
1863
+ bC93b3Jrc2hlZXRzL19yZWxzL3NoZWV0MS54bWwucmVsc1BLAQI0AxQAAAAI
1864
+ AACAn+siPo8wvwIAAJEGAAAYAAAAAAAAAAEAAACkgdsIAAB4bC93b3Jrc2hl
1865
+ ZXRzL3NoZWV0MS54bWxQSwUGAAAAAAkACQBOAgAA0AsAAAAA
1866
+
1867
+ ----
1868
+
1869
+ Rendered text template (0.0ms)
1870
+ Completed 200 OK in 55.8ms (Views: 1.7ms | ActiveRecord: 0.2ms)
1871
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1872
+  (0.0ms) begin transaction
1873
+ SQL (0.3ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
1874
+  (1.4ms) commit transaction
1875
+  (0.0ms) begin transaction
1876
+ SQL (0.4ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Somewhere, Over NY 11111"], ["created_at", Thu, 04 Sep 2014 19:20:25 UTC +00:00], ["email", "elmer@fudd.com"], ["last_name", "Fudd"], ["name", "Elmer"], ["updated_at", Thu, 04 Sep 2014 19:20:25 UTC +00:00]]
1877
+  (1.4ms) commit transaction
1878
+  (0.0ms) begin transaction
1879
+ 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", Thu, 04 Sep 2014 19:20:25 UTC +00:00], ["email", "bugs@bunny.com"], ["last_name", "Bunny"], ["name", "Bugs"], ["updated_at", Thu, 04 Sep 2014 19:20:25 UTC +00:00]]
1880
+  (1.2ms) commit transaction
1881
+ Started GET "/users.xlsx" for 127.0.0.1 at 2014-09-04 12:20:25 -0700
1882
+ Processing by UsersController#index as XLSX
1883
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1884
+ CACHE (0.0ms) SELECT "users".* FROM "users"
1885
+ Completed 200 OK in 13.0ms (Views: 11.5ms | ActiveRecord: 0.2ms)
1886
+ Started GET "/withpartial.xlsx" for 127.0.0.1 at 2014-09-04 12:20:25 -0700
1887
+ Processing by HomeController#withpartial as XLSX
1888
+ Rendered home/_cover_sheet.xlsx.axlsx (7.4ms)
1889
+ Completed 200 OK in 22.7ms (Views: 22.2ms | ActiveRecord: 0.0ms)
1890
+ Started GET "/another.xlsx" for 127.0.0.1 at 2014-09-04 12:20:25 -0700
1891
+ Processing by HomeController#another as XLSX
1892
+ Sent data filename_test.xlsx (0.4ms)
1893
+ Completed 200 OK in 10.5ms (Views: 10.1ms | ActiveRecord: 0.0ms)
1894
+ Started GET "/useheader.xlsx?set_direct=true" for 127.0.0.1 at 2014-09-04 12:20:25 -0700
1895
+ Processing by HomeController#useheader as XLSX
1896
+ Parameters: {"set_direct"=>"true"}
1897
+ Completed 200 OK in 10.2ms (Views: 9.7ms | ActiveRecord: 0.0ms)
1898
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1899
+  (0.0ms) begin transaction
1900
+ SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]]
1901
+  (1.5ms) commit transaction
1902
+  (0.1ms) begin transaction
1903
+ SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 3]]
1904
+  (1.3ms) commit transaction
1905
+  (0.1ms) begin transaction
1906
+ SQL (0.6ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Left Turn, Albuquerque NM 22222"], ["created_at", Thu, 04 Sep 2014 19:20:26 UTC +00:00], ["email", "bugs@bunny.com"], ["last_name", "Bunny"], ["name", "Bugs"], ["updated_at", Thu, 04 Sep 2014 19:20:26 UTC +00:00]]
1907
+  (1.4ms) commit transaction
1908
+ Started GET "/users/4/render_elsewhere.xlsx" for 127.0.0.1 at 2014-09-04 12:20:26 -0700
1909
+ Processing by LikesController#render_elsewhere as XLSX
1910
+ Parameters: {"user_id"=>"4"}
1911
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "4"]]
1912
+ User Load (0.2ms) SELECT "users".* FROM "users"
1913
+ Sent data index.xlsx (0.5ms)
1914
+ Completed 200 OK in 16.2ms (Views: 14.1ms | ActiveRecord: 0.2ms)
1915
+ Started GET "/home/render_elsewhere.xlsx?type=5" for 127.0.0.1 at 2014-09-04 12:20:26 -0700
1916
+ Processing by HomeController#render_elsewhere as XLSX
1917
+ Parameters: {"type"=>"5"}
1918
+ Sent data index.xlsx (0.5ms)
1919
+ Completed 200 OK in 14.3ms (Views: 13.8ms | ActiveRecord: 0.0ms)
1920
+ Started GET "/home/render_elsewhere.xlsx?type=4" for 127.0.0.1 at 2014-09-04 12:20:26 -0700
1921
+ Processing by HomeController#render_elsewhere as XLSX
1922
+ Parameters: {"type"=>"4"}
1923
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1924
+ Completed 200 OK in 12.5ms (Views: 11.9ms | ActiveRecord: 0.2ms)
1925
+ Started GET "/home/render_elsewhere.xlsx?type=3" for 127.0.0.1 at 2014-09-04 12:20:26 -0700
1926
+ Processing by HomeController#render_elsewhere as XLSX
1927
+ Parameters: {"type"=>"3"}
1928
+ User Load (0.3ms) SELECT "users".* FROM "users"
1929
+ Completed 200 OK in 12.3ms (Views: 11.8ms | ActiveRecord: 0.3ms)
1930
+ Started GET "/home/render_elsewhere.xlsx?type=2" for 127.0.0.1 at 2014-09-04 12:20:26 -0700
1931
+ Processing by HomeController#render_elsewhere as XLSX
1932
+ Parameters: {"type"=>"2"}
1933
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1934
+ Sent data index.xlsx (0.5ms)
1935
+ Completed 200 OK in 10.8ms (Views: 10.6ms | ActiveRecord: 0.0ms)
1936
+ Started GET "/home/render_elsewhere.xlsx?type=1" for 127.0.0.1 at 2014-09-04 12:20:26 -0700
1937
+ Processing by HomeController#render_elsewhere as XLSX
1938
+ Parameters: {"type"=>"1"}
1939
+ User Load (0.2ms) SELECT "users".* FROM "users"
1940
+ Sent data index.xlsx (0.5ms)
1941
+ Completed 200 OK in 86.3ms (Views: 86.2ms | ActiveRecord: 0.0ms)
1942
+ Started GET "/another" for 127.0.0.1 at 2014-09-04 12:20:26 -0700
1943
+ Processing by HomeController#another as HTML
1944
+ Sent data filename_test.xlsx (0.4ms)
1945
+ Completed 200 OK in 11.1ms (Views: 10.9ms | ActiveRecord: 0.0ms)
1946
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1947
+  (0.0ms) begin transaction
1948
+ SQL (0.3ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 4]]
1949
+  (1.4ms) commit transaction
1950
+  (0.0ms) begin transaction
1951
+ SQL (0.4ms) INSERT INTO "users" ("address", "created_at", "email", "last_name", "name", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["address", "1234 Right Turn, Albuquerque NM 22222"], ["created_at", Thu, 04 Sep 2014 19:20:26 UTC +00:00], ["email", "bugs@bunny.com"], ["last_name", "Bunny"], ["name", "Responder"], ["updated_at", Thu, 04 Sep 2014 19:20:26 UTC +00:00]]
1952
+  (1.3ms) commit transaction
1953
+ Started GET "/users/5.xlsx" for 127.0.0.1 at 2014-09-04 12:20:26 -0700
1954
+ Processing by UsersController#show as XLSX
1955
+ Parameters: {"id"=>"5"}
1956
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "5"]]
1957
+ Completed 200 OK in 12.5ms (Views: 10.9ms | ActiveRecord: 0.1ms)
1958
+ User Load (0.2ms) SELECT "users".* FROM "users" 
1959
+  (0.0ms) begin transaction
1960
+ SQL (0.3ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 5]]
1961
+  (1.2ms) commit transaction
1962
+  (0.1ms) begin transaction
1963
+ 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", Thu, 04 Sep 2014 19:20:26 UTC +00:00], ["email", "bugs@bunny.com"], ["last_name", "Bunny"], ["name", "Bugs"], ["updated_at", Thu, 04 Sep 2014 19:20:26 UTC +00:00]]
1964
+  (1.7ms) commit transaction
1965
+  (0.1ms) begin transaction
1966
+ SQL (0.6ms) INSERT INTO "likes" ("created_at", "name", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Thu, 04 Sep 2014 19:20:26 UTC +00:00], ["name", "Carrots"], ["updated_at", Thu, 04 Sep 2014 19:20:26 UTC +00:00], ["user_id", 6]]
1967
+  (1.4ms) commit transaction
1968
+  (0.1ms) begin transaction
1969
+ SQL (0.4ms) INSERT INTO "likes" ("created_at", "name", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Thu, 04 Sep 2014 19:20:26 UTC +00:00], ["name", "Celery"], ["updated_at", Thu, 04 Sep 2014 19:20:26 UTC +00:00], ["user_id", 6]]
1970
+  (1.4ms) commit transaction
1971
+ Started GET "/users/6/likes.xlsx" for 127.0.0.1 at 2014-09-04 12:20:26 -0700
1972
+ Processing by LikesController#index as XLSX
1973
+ Parameters: {"user_id"=>"6"}
1974
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "6"]]
1975
+ Like Load (0.2ms) SELECT "likes".* FROM "likes" WHERE "likes"."user_id" = 6
1976
+ Completed 200 OK in 12.9ms (Views: 11.0ms | ActiveRecord: 0.3ms)
1977
+ Started GET "/home.xlsx" for 127.0.0.1 at 2014-09-04 12:20:26 -0700
1978
+ Processing by HomeController#index as XLSX
1979
+ Completed 200 OK in 9.8ms (Views: 9.3ms | ActiveRecord: 0.0ms)
1980
+ Started GET "/useheader.xlsx" for 127.0.0.1 at 2014-09-04 12:20:26 -0700
1981
+ Processing by HomeController#useheader as XLSX
1982
+ Sent data filename_test.xlsx (1.0ms)
1983
+ Completed 200 OK in 18.4ms (Views: 18.1ms | ActiveRecord: 0.0ms)
1984
+ Started GET "/" for 127.0.0.1 at 2014-09-04 12:20:26 -0700
1985
+ Processing by HomeController#index as HTML
1986
+ Completed 200 OK in 5.9ms (Views: 5.5ms | ActiveRecord: 0.0ms)