csv_rb 6.0.2.1 → 6.0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8d521aaac69d3fdbef96ec78a42bb92e0a283a40e17c7ec4bc42fb57188857ad
4
- data.tar.gz: b376e3777281236f6c43cb78ee6df457c149df0a711a82526751421e2bcb21cf
3
+ metadata.gz: 173b49d48be5a6ceeb5bd0da38ec6298766a722358ab2347b932b1ef7fdfc750
4
+ data.tar.gz: 604dfbffa029bdcad44d808f2a63416241ab24dd3b266ab99b5383afadee3ce8
5
5
  SHA512:
6
- metadata.gz: 38a9c2b4c410b44871111f9fb9d4e92ae30a9764ea444405132958b3289e55271d0e62b4d162de3d53379a7dab1690c1472f1e97443ff5aa8406c3baed9cdaf7
7
- data.tar.gz: fba0ef7f58de4300fd278de4c895cdcbc1c09114ded4e6a36a4c7a528e4ec0ac9db05e2b08e313a303b2b7d307207b237ebec8beb4c56a563c56ac0f79f91871
6
+ metadata.gz: 93818e17f866e0d416f71836f6bf494f97dca7ecc6b559663eb6234dd83f3c7f242d14dd51afb40dd1ad24605a04bbf091a3e0163863dda491db64e9fc5a81c5
7
+ data.tar.gz: 3fce143d655ff95bd532f28c1304596e3396e4fe9d1a06b03397506013d380b42f735e6b84c35c22b1d86cb6e69a47c50a8b15a279778c3b1f631ca4fbcfdaed
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- csv_rb (6.0.2.1)
4
+ csv_rb (6.0.2.2)
5
5
  actionpack (>= 5.2)
6
6
  csv (>= 3.1.0)
7
7
 
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'action_controller'
4
- require 'csv_rb/stream_csv_deflator'
4
+ require 'csv_rb/stream_builder'
5
5
  unless Mime[:csv]
6
6
  Mime::Type.register 'text/csv', :csv
7
7
  end
@@ -41,7 +41,7 @@ ActionController::Renderers.add :csv do |filename, options|
41
41
 
42
42
 
43
43
  return self.response_body = Enumerator.new do |y|
44
- csv = CSVRb::StreamCSVDeflator.new(y, with_compression)
44
+ csv = CSVRb::StreamBuilder.new(y, with_compression)
45
45
  view_context.instance_eval lookup_context.find_template(options[:template], options[:prefixes], options[:partial], options.dup.merge(formats: [:csv])).source
46
46
  csv.close
47
47
  end
@@ -0,0 +1,39 @@
1
+ module CSVRb
2
+ class StreamBuilder
3
+ def initialize(enum, with_compression = true)
4
+ @enum = enum
5
+ @with_compression = with_compression
6
+ @deflator = Zlib::Deflate.new
7
+ end
8
+
9
+ def y
10
+ @enum
11
+ end
12
+
13
+ def set(value)
14
+ y << compress(value)
15
+ end
16
+
17
+ def stream(row)
18
+ y << compress(
19
+ CSV.generate_line(row, force_quotes: true, encoding: 'utf-8')
20
+ )
21
+ end
22
+
23
+ def <<(row)
24
+ stream(row)
25
+ end
26
+
27
+ def close
28
+ y << @deflator.flush(Zlib::FINISH) if @with_compression
29
+ end
30
+
31
+ private
32
+ def compress(value)
33
+ @with_compression \
34
+ ? @deflator.deflate(value, Zlib::SYNC_FLUSH) \
35
+ : value
36
+ end
37
+
38
+ end
39
+ end
@@ -1,39 +1,6 @@
1
- module CSVRb
2
- class StreamCSVDeflator
3
- def initialize(enum, with_compression = true)
4
- @enum = enum
5
- @with_compression = with_compression
6
- @deflator = Zlib::Deflate.new
7
- end
8
-
9
- def y
10
- @enum
11
- end
12
-
13
- def set(value)
14
- y << compress(value)
15
- end
16
-
17
- def stream(row)
18
- y << compress(
19
- CSV.generate_line(row, force_quotes: true, encoding: 'utf-8')
20
- )
21
- end
22
-
23
- def <<(row)
24
- stream(row)
25
- end
26
-
27
- def close
28
- y << @deflator.flush(Zlib::FINISH) if @with_compression
29
- end
30
-
31
- private
32
- def compress(value)
33
- @with_compression \
34
- ? @deflator.deflate(value, Zlib::SYNC_FLUSH) \
35
- : value
36
- end
1
+ require 'csv_rb/stream_builder'
37
2
 
3
+ module CSVRb
4
+ class StreamCSVDeflator << StreamBuilder
38
5
  end
39
6
  end
@@ -12,13 +12,13 @@ module ActionView
12
12
  Mime[:csv]
13
13
  end
14
14
 
15
- def call(template)
15
+ def call(template, source = nil)
16
16
  builder = StringIO.new
17
17
  builder << "# encoding: utf-8\n"
18
18
  builder << "require 'csv';"
19
19
  builder << "require 'csv_rb/plain_builder';"
20
20
  builder << "csv ||= CSVRb::PlainBuilder.new;"
21
- builder << template.source
21
+ builder << (source || template.source)
22
22
  builder << ";csv = csv.to_str if csv.is_a?(CSVRb::PlainBuilder); csv;"
23
23
  builder.string
24
24
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CSVRb
4
- VERSION = '6.0.2.1'
4
+ VERSION = '6.0.2.2'
5
5
  end
@@ -9,18 +9,24 @@ describe 'csvrb template handler' do
9
9
 
10
10
  let( :handler ) { AB.new }
11
11
 
12
- let( :template ) do
13
- src = <<-RUBY
12
+ let( :template_src ) do
13
+ <<-RUBY
14
14
  csv << ['TEST', 'STUFF']
15
15
  RUBY
16
- VT.new(src, [])
17
16
  end
18
17
 
19
- let( :set_template ) do
20
- src = <<-RUBY
18
+ let( :template ) do
19
+ VT.new(template_src, [])
20
+ end
21
+
22
+ let( :set_template_src ) do
23
+ <<-RUBY
21
24
  csv.set CSV.generate_line(['TEST', 'STUFF'], encoding: 'utf-8', force_quotes: true)
22
25
  RUBY
23
- VT.new(src, [])
26
+ end
27
+
28
+ let( :set_template ) do
29
+ VT.new(set_template_src, [])
24
30
  end
25
31
 
26
32
  context "Rails #{Rails.version}" do
@@ -33,21 +39,37 @@ describe 'csvrb template handler' do
33
39
  expect(handler.default_format).to eq(mime_type)
34
40
  end
35
41
 
36
- it "compiles to an csv spreadsheet" do
37
- csv = nil
38
- eval( AB.new.call template )
39
- expect{ csv = CSV.parse(csv) }.to_not raise_error
40
- expect(csv[0][0]).to eq('TEST')
42
+ context "compiles to an csv spreadsheet" do
43
+ it "rails 5 single arity call format" do
44
+ csv = nil
45
+ eval( AB.new.call template )
46
+ expect{ csv = CSV.parse(csv) }.to_not raise_error
47
+ expect(csv[0][0]).to eq('TEST')
48
+ end
49
+
50
+ it "rails 6 dual arity call format" do
51
+ csv = nil
52
+ eval( AB.new.call template, template_src )
53
+ expect{ csv = CSV.parse(csv) }.to_not raise_error
54
+ expect(csv[0][0]).to eq('TEST')
55
+ end
41
56
  end
42
57
 
43
- it "accepts a full CSV string" do
44
- csv = nil
45
- eval( AB.new.call set_template )
46
- expect{ csv = CSV.parse(csv) }.to_not raise_error
47
- expect(csv[0][0]).to eq('TEST')
58
+ context "accepts a full CSV string" do
59
+ it "rails 5 single arity call format" do
60
+ csv = nil
61
+ eval( AB.new.call set_template )
62
+ expect{ csv = CSV.parse(csv) }.to_not raise_error
63
+ expect(csv[0][0]).to eq('TEST')
64
+ end
65
+
66
+ it "rails 6 dual arity call format" do
67
+ csv = nil
68
+ eval( AB.new.call set_template, set_template_src )
69
+ expect{ csv = CSV.parse(csv) }.to_not raise_error
70
+ expect(csv[0][0]).to eq('TEST')
71
+ end
48
72
  end
49
73
 
50
- #TODO:
51
- # Test if author field is set - does roo parse that?
52
74
  end
53
75
  end
@@ -7,7 +7,7 @@ describe "Mailer", type: :request do
7
7
  @user = User.create name: 'Elmer', last_name: 'Fudd', address: '1234 Somewhere, Over NY 11111', email: 'elmer@fudd.com'
8
8
  end
9
9
 
10
- it "attaches an csv file" do
10
+ it "attaches a csv file" do
11
11
  visit "/users/#{@user.id}/send_instructions"
12
12
  last_email = ActionMailer::Base.deliveries.last
13
13
  expect(last_email.to).to eq([@user.email])
Binary file
@@ -27151,3 +27151,3699 @@ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.1ms | Allocations: 762)
27151
27151
  Started GET "/another" for 127.0.0.1 at 2020-02-26 15:51:25 -0700
27152
27152
  Processing by HomeController#another as HTML
27153
27153
  Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 131)
27154
+  (0.7ms) SELECT sqlite_version(*)
27155
+ Started GET "/another" for 127.0.0.1 at 2020-03-10 12:28:34 -0600
27156
+ Processing by HomeController#another as */*
27157
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 228)
27158
+ Started GET "/home/only_html" for 127.0.0.1 at 2020-03-10 12:28:35 -0600
27159
+ Processing by HomeController#only_html as */*
27160
+ Rendering home/only_html.html.erb within layouts/application
27161
+ Rendered home/only_html.html.erb within layouts/application (Duration: 0.4ms | Allocations: 300)
27162
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms | Allocations: 1623)
27163
+ User Load (0.2ms) SELECT "users".* FROM "users"
27164
+  (0.0ms) begin transaction
27165
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 579]]
27166
+  (1.6ms) commit transaction
27167
+  (0.0ms) begin transaction
27168
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 580]]
27169
+  (1.3ms) commit transaction
27170
+  (0.0ms) begin transaction
27171
+ User Create (0.2ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Responder"], ["last_name", "Bunny"], ["address", "1234 Right Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:28:35.018814"], ["updated_at", "2020-03-10 18:28:35.018814"]]
27172
+  (1.4ms) commit transaction
27173
+ Started GET "/users/581.csv" for 127.0.0.1 at 2020-03-10 12:28:35 -0600
27174
+ Processing by UsersController#show as CSV
27175
+ Parameters: {"id"=>"581"}
27176
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 581], ["LIMIT", 1]]
27177
+ Rendering users/respond_with.csv.csvrb
27178
+ Rendered users/respond_with.csv.csvrb (Duration: 0.2ms | Allocations: 166)
27179
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 968)
27180
+ User Load (0.0ms) SELECT "users".* FROM "users"
27181
+  (0.0ms) begin transaction
27182
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 581]]
27183
+  (1.6ms) commit transaction
27184
+  (0.0ms) begin transaction
27185
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:28:35.028297"], ["updated_at", "2020-03-10 18:28:35.028297"]]
27186
+  (1.9ms) commit transaction
27187
+  (0.0ms) begin transaction
27188
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:28:35.030934"], ["updated_at", "2020-03-10 18:28:35.030934"]]
27189
+  (1.5ms) commit transaction
27190
+ Started GET "/users/noaction.csv" for 127.0.0.1 at 2020-03-10 12:28:35 -0600
27191
+ Processing by UsersController#noaction as CSV
27192
+ Rendering users/noaction.csv.csvrb
27193
+ User Load (0.1ms) SELECT "users".* FROM "users"
27194
+ Rendered users/noaction.csv.csvrb (Duration: 0.6ms | Allocations: 447)
27195
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.1ms | Allocations: 771)
27196
+  (0.0ms) begin transaction
27197
+ User Create (0.2ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:28:35.036314"], ["updated_at", "2020-03-10 18:28:35.036314"]]
27198
+  (1.7ms) commit transaction
27199
+ Started GET "/" for 127.0.0.1 at 2020-03-10 12:28:35 -0600
27200
+ Processing by HomeController#index as HTML
27201
+ Rendering home/index.html.erb within layouts/application
27202
+ Rendered home/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 249)
27203
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 690)
27204
+ User Load (0.1ms) SELECT "users".* FROM "users"
27205
+  (0.0ms) begin transaction
27206
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 582]]
27207
+  (1.3ms) commit transaction
27208
+  (0.0ms) begin transaction
27209
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 583]]
27210
+  (1.4ms) commit transaction
27211
+  (0.0ms) begin transaction
27212
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 584]]
27213
+  (1.4ms) commit transaction
27214
+  (0.0ms) begin transaction
27215
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:28:35.073306"], ["updated_at", "2020-03-10 18:28:35.073306"]]
27216
+  (1.5ms) commit transaction
27217
+ Started GET "/users/585/render_elsewhere.csv" for 127.0.0.1 at 2020-03-10 12:28:35 -0600
27218
+ Processing by LikesController#render_elsewhere as CSV
27219
+ Parameters: {"user_id"=>"585"}
27220
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 585], ["LIMIT", 1]]
27221
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 255)
27222
+ User Load (0.1ms) SELECT "users".* FROM "users"
27223
+ Started GET "/home/render_elsewhere.csv?type=5" for 127.0.0.1 at 2020-03-10 12:28:35 -0600
27224
+ Processing by HomeController#render_elsewhere as CSV
27225
+ Parameters: {"type"=>"5"}
27226
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 143)
27227
+ Started GET "/home/render_elsewhere.csv?type=4" for 127.0.0.1 at 2020-03-10 12:28:35 -0600
27228
+ Processing by HomeController#render_elsewhere as CSV
27229
+ Parameters: {"type"=>"4"}
27230
+ Rendering users/index.csv.csvrb
27231
+ User Load (0.1ms) SELECT "users".* FROM "users"
27232
+ Rendered users/index.csv.csvrb (Duration: 0.9ms | Allocations: 316)
27233
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.1ms | Allocations: 1601)
27234
+ Started GET "/home/render_elsewhere.csv?type=3" for 127.0.0.1 at 2020-03-10 12:28:35 -0600
27235
+ Processing by HomeController#render_elsewhere as CSV
27236
+ Parameters: {"type"=>"3"}
27237
+ Rendering users/index.csv.csvrb
27238
+ User Load (0.1ms) SELECT "users".* FROM "users"
27239
+ Rendered users/index.csv.csvrb (Duration: 0.7ms | Allocations: 251)
27240
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.1ms | Allocations: 532)
27241
+ Started GET "/home/render_elsewhere.csv?type=1" for 127.0.0.1 at 2020-03-10 12:28:35 -0600
27242
+ Processing by HomeController#render_elsewhere as CSV
27243
+ Parameters: {"type"=>"1"}
27244
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 147)
27245
+ User Load (0.1ms) SELECT "users".* FROM "users"
27246
+ Started GET "/home.csv" for 127.0.0.1 at 2020-03-10 12:28:35 -0600
27247
+ Processing by HomeController#index as CSV
27248
+ Rendering home/index.csv.csvrb
27249
+ Rendered home/index.csv.csvrb (Duration: 0.3ms | Allocations: 168)
27250
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms | Allocations: 617)
27251
+ Started GET "/useheader.csv?set_direct=true" for 127.0.0.1 at 2020-03-10 12:28:35 -0600
27252
+ Processing by HomeController#useheader as CSV
27253
+ Parameters: {"set_direct"=>"true"}
27254
+ Rendering home/useheader.csv.csvrb
27255
+ Rendered home/useheader.csv.csvrb (Duration: 0.4ms | Allocations: 165)
27256
+ Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms | Allocations: 633)
27257
+ User Load (0.1ms) SELECT "users".* FROM "users"
27258
+  (0.1ms) begin transaction
27259
+ User Destroy (0.2ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 585]]
27260
+  (1.4ms) commit transaction
27261
+  (0.0ms) begin transaction
27262
+ User Create (0.2ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Responder"], ["last_name", "Bunny"], ["address", "1234 Right Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:28:35.106950"], ["updated_at", "2020-03-10 18:28:35.106950"]]
27263
+  (1.6ms) commit transaction
27264
+ Started GET "/users/export/586.csv" for 127.0.0.1 at 2020-03-10 12:28:35 -0600
27265
+ Processing by UsersController#export as CSV
27266
+ Parameters: {"id"=>"586"}
27267
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 586], ["LIMIT", 1]]
27268
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 286)
27269
+ User Load (0.1ms) SELECT "users".* FROM "users"
27270
+  (0.1ms) begin transaction
27271
+ User Destroy (0.2ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 586]]
27272
+  (2.4ms) commit transaction
27273
+  (0.1ms) begin transaction
27274
+ User Create (0.2ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:28:35.117885"], ["updated_at", "2020-03-10 18:28:35.117885"]]
27275
+  (1.8ms) commit transaction
27276
+  (0.1ms) begin transaction
27277
+ Like Create (0.3ms) INSERT INTO "likes" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Carrots"], ["user_id", 587], ["created_at", "2020-03-10 18:28:35.150364"], ["updated_at", "2020-03-10 18:28:35.150364"]]
27278
+  (1.5ms) commit transaction
27279
+  (0.0ms) begin transaction
27280
+ Like Create (0.1ms) INSERT INTO "likes" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Celery"], ["user_id", 587], ["created_at", "2020-03-10 18:28:35.153267"], ["updated_at", "2020-03-10 18:28:35.153267"]]
27281
+  (1.6ms) commit transaction
27282
+ Started GET "/users/587/likes.csv" for 127.0.0.1 at 2020-03-10 12:28:35 -0600
27283
+ Processing by LikesController#index as CSV
27284
+ Parameters: {"user_id"=>"587"}
27285
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 587], ["LIMIT", 1]]
27286
+ Rendering likes/index.csv.csvrb
27287
+ Like Load (0.1ms) SELECT "likes".* FROM "likes" WHERE "likes"."user_id" = ? [["user_id", 587]]
27288
+ Rendered likes/index.csv.csvrb (Duration: 1.1ms | Allocations: 602)
27289
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.2ms | Allocations: 1481)
27290
+ User Load (0.1ms) SELECT "users".* FROM "users"
27291
+  (0.0ms) begin transaction
27292
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 587]]
27293
+  (1.3ms) commit transaction
27294
+  (0.0ms) begin transaction
27295
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:28:35.162032"], ["updated_at", "2020-03-10 18:28:35.162032"]]
27296
+  (1.3ms) commit transaction
27297
+  (0.0ms) begin transaction
27298
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:28:35.164092"], ["updated_at", "2020-03-10 18:28:35.164092"]]
27299
+  (1.3ms) commit transaction
27300
+ Started GET "/users.csv" for 127.0.0.1 at 2020-03-10 12:28:35 -0600
27301
+ Processing by UsersController#index as CSV
27302
+ Rendering users/index.csv.csvrb
27303
+ User Load (0.1ms) SELECT "users".* FROM "users"
27304
+ Rendered users/index.csv.csvrb (Duration: 0.4ms | Allocations: 371)
27305
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 624)
27306
+ Started GET "/another.csv" for 127.0.0.1 at 2020-03-10 12:28:35 -0600
27307
+ Processing by HomeController#another as CSV
27308
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 131)
27309
+ Started GET "/withpartial.csv" for 127.0.0.1 at 2020-03-10 12:28:35 -0600
27310
+ Processing by HomeController#withpartial as CSV
27311
+ Rendering home/withpartial.csv.csvrb
27312
+ Rendered home/_cover_sheet.csv.csvrb (Duration: 0.1ms | Allocations: 136)
27313
+ Rendered home/withpartial.csv.csvrb (Duration: 0.5ms | Allocations: 499)
27314
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms | Allocations: 923)
27315
+ Started GET "/another" for 127.0.0.1 at 2020-03-10 12:28:35 -0600
27316
+ Processing by HomeController#another as HTML
27317
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 131)
27318
+ Started GET "/useheader.csv" for 127.0.0.1 at 2020-03-10 12:28:35 -0600
27319
+ Processing by HomeController#useheader as CSV
27320
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms | Allocations: 176)
27321
+  (0.0ms) begin transaction
27322
+ User Create (0.2ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:28:35.175630"], ["updated_at", "2020-03-10 18:28:35.175630"]]
27323
+  (1.7ms) commit transaction
27324
+ Started GET "/users/590/send_instructions" for 127.0.0.1 at 2020-03-10 12:28:35 -0600
27325
+ Processing by UsersController#send_instructions as HTML
27326
+ Parameters: {"user_id"=>"590"}
27327
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 590], ["LIMIT", 1]]
27328
+ Rendering users/send_instructions.csv.csvrb
27329
+ Rendered users/send_instructions.csv.csvrb (Duration: 0.2ms | Allocations: 199)
27330
+ Rendering notifier/instructions.html.erb
27331
+ Rendered notifier/instructions.html.erb (Duration: 0.2ms | Allocations: 121)
27332
+ Notifier#instructions: processed outbound mail in 5.9ms
27333
+ Delivered mail 5e67dc532dc7c_32e02ae7c50c396053570@samps-dus.mail (3.8ms)
27334
+ Date: Tue, 10 Mar 2020 12:28:35 -0600
27335
+ From: noreply@company.com
27336
+ To: elmer@fudd.com
27337
+ Message-ID: <5e67dc532dc7c_32e02ae7c50c396053570@samps-dus.mail>
27338
+ Subject: Instructions
27339
+ Mime-Version: 1.0
27340
+ Content-Type: multipart/mixed;
27341
+ boundary="--==_mimepart_5e67dc532d6ac_32e02ae7c50c39605346b";
27342
+ charset=UTF-8
27343
+ Content-Transfer-Encoding: 7bit
27344
+
27345
+
27346
+ ----==_mimepart_5e67dc532d6ac_32e02ae7c50c39605346b
27347
+ Content-Type: text/html;
27348
+ charset=UTF-8
27349
+ Content-Transfer-Encoding: 7bit
27350
+
27351
+ <!DOCTYPE html>
27352
+ <html>
27353
+ <head>
27354
+ <meta content='text/html; charset=UTF-8' http-equiv='Content-Type' />
27355
+ </head>
27356
+ <body>
27357
+ <h1>Instructions</h1>
27358
+ <p>
27359
+ You have successfully signed up to example.com,
27360
+ your username is: elmer@fudd.com.<br/>
27361
+ </p>
27362
+ <p>Thanks for joining and have a great day!</p>
27363
+ </body>
27364
+ </html>
27365
+
27366
+ ----==_mimepart_5e67dc532d6ac_32e02ae7c50c39605346b
27367
+ Content-Type: text/csv;
27368
+ charset=UTF-8
27369
+ Content-Transfer-Encoding: base64
27370
+ Content-Disposition: attachment;
27371
+ filename=user_590.csv
27372
+ Content-ID: <5e67dc532e201_32e02ae7c50c3960536dc@samps-dus.mail>
27373
+
27374
+ IjU5MCIsIkVsbWVyIiwiZWxtZXJAZnVkZC5jb20iDQoiIiwiSW5zdHJ1Y3Rp
27375
+ b25zIiwiIg0K
27376
+
27377
+ ----==_mimepart_5e67dc532d6ac_32e02ae7c50c39605346b--
27378
+
27379
+ Rendering text template
27380
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
27381
+ Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 8481)
27382
+  (0.5ms) SELECT sqlite_version(*)
27383
+ User Load (0.1ms) SELECT "users".* FROM "users"
27384
+  (0.0ms) begin transaction
27385
+ User Destroy (0.2ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 588]]
27386
+  (53.8ms) commit transaction
27387
+  (0.1ms) begin transaction
27388
+ User Destroy (0.4ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 589]]
27389
+  (2.6ms) commit transaction
27390
+  (0.1ms) begin transaction
27391
+ User Destroy (0.4ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 590]]
27392
+  (2.5ms) commit transaction
27393
+  (0.1ms) begin transaction
27394
+ User Create (0.5ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Responder"], ["last_name", "Bunny"], ["address", "1234 Right Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:30:16.530551"], ["updated_at", "2020-03-10 18:30:16.530551"]]
27395
+  (3.6ms) commit transaction
27396
+ Started GET "/users/591.csv" for 127.0.0.1 at 2020-03-10 12:30:16 -0600
27397
+ Processing by UsersController#show as CSV
27398
+ Parameters: {"id"=>"591"}
27399
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 591], ["LIMIT", 1]]
27400
+ Rendering users/respond_with.csv.csvrb
27401
+ Rendered users/respond_with.csv.csvrb (Duration: 0.7ms | Allocations: 379)
27402
+ Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.2ms | Allocations: 2367)
27403
+ Started GET "/useheader.csv" for 127.0.0.1 at 2020-03-10 12:30:16 -0600
27404
+ Processing by HomeController#useheader as CSV
27405
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 184)
27406
+ Started GET "/another" for 127.0.0.1 at 2020-03-10 12:30:16 -0600
27407
+ Processing by HomeController#another as HTML
27408
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 131)
27409
+ User Load (0.1ms) SELECT "users".* FROM "users"
27410
+  (0.0ms) begin transaction
27411
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 591]]
27412
+  (1.5ms) commit transaction
27413
+  (0.0ms) begin transaction
27414
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Responder"], ["last_name", "Bunny"], ["address", "1234 Right Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:30:16.586056"], ["updated_at", "2020-03-10 18:30:16.586056"]]
27415
+  (1.7ms) commit transaction
27416
+ Started GET "/users/export/592.csv" for 127.0.0.1 at 2020-03-10 12:30:16 -0600
27417
+ Processing by UsersController#export as CSV
27418
+ Parameters: {"id"=>"592"}
27419
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 592], ["LIMIT", 1]]
27420
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 286)
27421
+  (0.0ms) begin transaction
27422
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:30:16.591056"], ["updated_at", "2020-03-10 18:30:16.591056"]]
27423
+  (1.7ms) commit transaction
27424
+ Started GET "/" for 127.0.0.1 at 2020-03-10 12:30:16 -0600
27425
+ Processing by HomeController#index as HTML
27426
+ Rendering home/index.html.erb within layouts/application
27427
+ Rendered home/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 256)
27428
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms | Allocations: 1265)
27429
+ Started GET "/another" for 127.0.0.1 at 2020-03-10 12:30:16 -0600
27430
+ Processing by HomeController#another as */*
27431
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 134)
27432
+ Started GET "/home/only_html" for 127.0.0.1 at 2020-03-10 12:30:16 -0600
27433
+ Processing by HomeController#only_html as */*
27434
+ Rendering home/only_html.html.erb within layouts/application
27435
+ Rendered home/only_html.html.erb within layouts/application (Duration: 0.1ms | Allocations: 83)
27436
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 531)
27437
+ Started GET "/withpartial.csv" for 127.0.0.1 at 2020-03-10 12:30:16 -0600
27438
+ Processing by HomeController#withpartial as CSV
27439
+ Rendering home/withpartial.csv.csvrb
27440
+ Rendered home/_cover_sheet.csv.csvrb (Duration: 0.2ms | Allocations: 136)
27441
+ Rendered home/withpartial.csv.csvrb (Duration: 0.5ms | Allocations: 499)
27442
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms | Allocations: 1790)
27443
+ Started GET "/home.csv" for 127.0.0.1 at 2020-03-10 12:30:16 -0600
27444
+ Processing by HomeController#index as CSV
27445
+ Rendering home/index.csv.csvrb
27446
+ Rendered home/index.csv.csvrb (Duration: 0.2ms | Allocations: 168)
27447
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 624)
27448
+ Started GET "/another.csv" for 127.0.0.1 at 2020-03-10 12:30:16 -0600
27449
+ Processing by HomeController#another as CSV
27450
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 131)
27451
+ User Load (0.1ms) SELECT "users".* FROM "users"
27452
+  (0.0ms) begin transaction
27453
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 592]]
27454
+  (1.5ms) commit transaction
27455
+  (0.0ms) begin transaction
27456
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 593]]
27457
+  (1.7ms) commit transaction
27458
+  (0.0ms) begin transaction
27459
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:30:16.610827"], ["updated_at", "2020-03-10 18:30:16.610827"]]
27460
+  (1.6ms) commit transaction
27461
+  (0.0ms) begin transaction
27462
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:30:16.613242"], ["updated_at", "2020-03-10 18:30:16.613242"]]
27463
+  (1.7ms) commit transaction
27464
+ Started GET "/users/noaction.csv" for 127.0.0.1 at 2020-03-10 12:30:16 -0600
27465
+ Processing by UsersController#noaction as CSV
27466
+ Rendering users/noaction.csv.csvrb
27467
+ User Load (0.1ms) SELECT "users".* FROM "users"
27468
+ Rendered users/noaction.csv.csvrb (Duration: 0.6ms | Allocations: 447)
27469
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.1ms | Allocations: 771)
27470
+ User Load (0.1ms) SELECT "users".* FROM "users"
27471
+  (0.0ms) begin transaction
27472
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 594]]
27473
+  (2.9ms) commit transaction
27474
+  (0.0ms) begin transaction
27475
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 595]]
27476
+  (1.5ms) commit transaction
27477
+  (0.0ms) begin transaction
27478
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:30:16.624213"], ["updated_at", "2020-03-10 18:30:16.624213"]]
27479
+  (1.5ms) commit transaction
27480
+  (0.0ms) begin transaction
27481
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:30:16.626501"], ["updated_at", "2020-03-10 18:30:16.626501"]]
27482
+  (1.5ms) commit transaction
27483
+ Started GET "/users.csv" for 127.0.0.1 at 2020-03-10 12:30:16 -0600
27484
+ Processing by UsersController#index as CSV
27485
+ Rendering users/index.csv.csvrb
27486
+ User Load (0.1ms) SELECT "users".* FROM "users"
27487
+ Rendered users/index.csv.csvrb (Duration: 0.6ms | Allocations: 436)
27488
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 822)
27489
+ User Load (0.0ms) SELECT "users".* FROM "users"
27490
+  (0.0ms) begin transaction
27491
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 596]]
27492
+  (1.7ms) commit transaction
27493
+  (0.0ms) begin transaction
27494
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 597]]
27495
+  (1.5ms) commit transaction
27496
+  (0.0ms) begin transaction
27497
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:30:16.635694"], ["updated_at", "2020-03-10 18:30:16.635694"]]
27498
+  (1.5ms) commit transaction
27499
+ Started GET "/users/598/render_elsewhere.csv" for 127.0.0.1 at 2020-03-10 12:30:16 -0600
27500
+ Processing by LikesController#render_elsewhere as CSV
27501
+ Parameters: {"user_id"=>"598"}
27502
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 598], ["LIMIT", 1]]
27503
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 255)
27504
+ User Load (0.1ms) SELECT "users".* FROM "users"
27505
+ Started GET "/home/render_elsewhere.csv?type=5" for 127.0.0.1 at 2020-03-10 12:30:16 -0600
27506
+ Processing by HomeController#render_elsewhere as CSV
27507
+ Parameters: {"type"=>"5"}
27508
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 143)
27509
+ Started GET "/home/render_elsewhere.csv?type=4" for 127.0.0.1 at 2020-03-10 12:30:16 -0600
27510
+ Processing by HomeController#render_elsewhere as CSV
27511
+ Parameters: {"type"=>"4"}
27512
+ Rendering users/index.csv.csvrb
27513
+ User Load (0.1ms) SELECT "users".* FROM "users"
27514
+ Rendered users/index.csv.csvrb (Duration: 0.4ms | Allocations: 251)
27515
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 530)
27516
+ Started GET "/home/render_elsewhere.csv?type=3" for 127.0.0.1 at 2020-03-10 12:30:16 -0600
27517
+ Processing by HomeController#render_elsewhere as CSV
27518
+ Parameters: {"type"=>"3"}
27519
+ Rendering users/index.csv.csvrb
27520
+ User Load (0.1ms) SELECT "users".* FROM "users"
27521
+ Rendered users/index.csv.csvrb (Duration: 0.3ms | Allocations: 251)
27522
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 531)
27523
+ Started GET "/home/render_elsewhere.csv?type=1" for 127.0.0.1 at 2020-03-10 12:30:16 -0600
27524
+ Processing by HomeController#render_elsewhere as CSV
27525
+ Parameters: {"type"=>"1"}
27526
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 149)
27527
+ User Load (0.1ms) SELECT "users".* FROM "users"
27528
+ User Load (0.0ms) SELECT "users".* FROM "users"
27529
+  (0.0ms) begin transaction
27530
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 598]]
27531
+  (1.8ms) commit transaction
27532
+  (0.0ms) begin transaction
27533
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:30:16.656221"], ["updated_at", "2020-03-10 18:30:16.656221"]]
27534
+  (3.2ms) commit transaction
27535
+  (0.0ms) begin transaction
27536
+ Like Create (0.1ms) INSERT INTO "likes" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Carrots"], ["user_id", 599], ["created_at", "2020-03-10 18:30:16.669056"], ["updated_at", "2020-03-10 18:30:16.669056"]]
27537
+  (1.8ms) commit transaction
27538
+  (0.0ms) begin transaction
27539
+ Like Create (0.1ms) INSERT INTO "likes" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Celery"], ["user_id", 599], ["created_at", "2020-03-10 18:30:16.671789"], ["updated_at", "2020-03-10 18:30:16.671789"]]
27540
+  (2.1ms) commit transaction
27541
+ Started GET "/users/599/likes.csv" for 127.0.0.1 at 2020-03-10 12:30:16 -0600
27542
+ Processing by LikesController#index as CSV
27543
+ Parameters: {"user_id"=>"599"}
27544
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 599], ["LIMIT", 1]]
27545
+ Rendering likes/index.csv.csvrb
27546
+ Like Load (0.1ms) SELECT "likes".* FROM "likes" WHERE "likes"."user_id" = ? [["user_id", 599]]
27547
+ Rendered likes/index.csv.csvrb (Duration: 0.8ms | Allocations: 602)
27548
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.1ms | Allocations: 1479)
27549
+ Started GET "/useheader.csv?set_direct=true" for 127.0.0.1 at 2020-03-10 12:30:16 -0600
27550
+ Processing by HomeController#useheader as CSV
27551
+ Parameters: {"set_direct"=>"true"}
27552
+ Rendering home/useheader.csv.csvrb
27553
+ Rendered home/useheader.csv.csvrb (Duration: 0.2ms | Allocations: 165)
27554
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 633)
27555
+  (0.0ms) begin transaction
27556
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:30:16.680411"], ["updated_at", "2020-03-10 18:30:16.680411"]]
27557
+  (1.9ms) commit transaction
27558
+ Started GET "/users/600/send_instructions" for 127.0.0.1 at 2020-03-10 12:30:16 -0600
27559
+ Processing by UsersController#send_instructions as HTML
27560
+ Parameters: {"user_id"=>"600"}
27561
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 600], ["LIMIT", 1]]
27562
+ Rendering users/send_instructions.csv.csvrb
27563
+ Rendered users/send_instructions.csv.csvrb (Duration: 0.3ms | Allocations: 199)
27564
+ Rendering notifier/instructions.html.erb
27565
+ Rendered notifier/instructions.html.erb (Duration: 0.2ms | Allocations: 121)
27566
+ Notifier#instructions: processed outbound mail in 5.5ms
27567
+ Delivered mail 5e67dcb8a9095_33362b02988a9970227ef@samps-dus.mail (3.4ms)
27568
+ Date: Tue, 10 Mar 2020 12:30:16 -0600
27569
+ From: noreply@company.com
27570
+ To: elmer@fudd.com
27571
+ Message-ID: <5e67dcb8a9095_33362b02988a9970227ef@samps-dus.mail>
27572
+ Subject: Instructions
27573
+ Mime-Version: 1.0
27574
+ Content-Type: multipart/mixed;
27575
+ boundary="--==_mimepart_5e67dcb8a8a36_33362b02988a99702261e";
27576
+ charset=UTF-8
27577
+ Content-Transfer-Encoding: 7bit
27578
+
27579
+
27580
+ ----==_mimepart_5e67dcb8a8a36_33362b02988a99702261e
27581
+ Content-Type: text/html;
27582
+ charset=UTF-8
27583
+ Content-Transfer-Encoding: 7bit
27584
+
27585
+ <!DOCTYPE html>
27586
+ <html>
27587
+ <head>
27588
+ <meta content='text/html; charset=UTF-8' http-equiv='Content-Type' />
27589
+ </head>
27590
+ <body>
27591
+ <h1>Instructions</h1>
27592
+ <p>
27593
+ You have successfully signed up to example.com,
27594
+ your username is: elmer@fudd.com.<br/>
27595
+ </p>
27596
+ <p>Thanks for joining and have a great day!</p>
27597
+ </body>
27598
+ </html>
27599
+
27600
+ ----==_mimepart_5e67dcb8a8a36_33362b02988a99702261e
27601
+ Content-Type: text/csv;
27602
+ charset=UTF-8
27603
+ Content-Transfer-Encoding: base64
27604
+ Content-Disposition: attachment;
27605
+ filename=user_600.csv
27606
+ Content-ID: <5e67dcb8a9535_33362b02988a9970228be@samps-dus.mail>
27607
+
27608
+ IjYwMCIsIkVsbWVyIiwiZWxtZXJAZnVkZC5jb20iDQoiIiwiSW5zdHJ1Y3Rp
27609
+ b25zIiwiIg0K
27610
+
27611
+ ----==_mimepart_5e67dcb8a8a36_33362b02988a99702261e--
27612
+
27613
+ Rendering text template
27614
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
27615
+ Completed 200 OK in 12ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 8481)
27616
+  (0.5ms) SELECT sqlite_version(*)
27617
+ Started GET "/another.csv" for 127.0.0.1 at 2020-03-10 12:30:50 -0600
27618
+ Processing by HomeController#another as CSV
27619
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 224)
27620
+ Started GET "/another" for 127.0.0.1 at 2020-03-10 12:30:50 -0600
27621
+ Processing by HomeController#another as HTML
27622
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms | Allocations: 131)
27623
+ User Load (0.1ms) SELECT "users".* FROM "users"
27624
+  (0.0ms) begin transaction
27625
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 599]]
27626
+  (5.0ms) commit transaction
27627
+  (0.0ms) begin transaction
27628
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 600]]
27629
+  (1.9ms) commit transaction
27630
+  (0.0ms) begin transaction
27631
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:30:50.116057"], ["updated_at", "2020-03-10 18:30:50.116057"]]
27632
+  (2.9ms) commit transaction
27633
+  (0.0ms) begin transaction
27634
+ Like Create (0.1ms) INSERT INTO "likes" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Carrots"], ["user_id", 601], ["created_at", "2020-03-10 18:30:50.134600"], ["updated_at", "2020-03-10 18:30:50.134600"]]
27635
+  (2.3ms) commit transaction
27636
+  (0.0ms) begin transaction
27637
+ Like Create (0.1ms) INSERT INTO "likes" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Celery"], ["user_id", 601], ["created_at", "2020-03-10 18:30:50.137894"], ["updated_at", "2020-03-10 18:30:50.137894"]]
27638
+  (1.7ms) commit transaction
27639
+ Started GET "/users/601/likes.csv" for 127.0.0.1 at 2020-03-10 12:30:50 -0600
27640
+ Processing by LikesController#index as CSV
27641
+ Parameters: {"user_id"=>"601"}
27642
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 601], ["LIMIT", 1]]
27643
+ Rendering likes/index.csv.csvrb
27644
+ Like Load (0.1ms) SELECT "likes".* FROM "likes" WHERE "likes"."user_id" = ? [["user_id", 601]]
27645
+ Rendered likes/index.csv.csvrb (Duration: 1.2ms | Allocations: 945)
27646
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.2ms | Allocations: 3020)
27647
+ User Load (0.0ms) SELECT "users".* FROM "users"
27648
+  (0.0ms) begin transaction
27649
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 601]]
27650
+  (1.9ms) commit transaction
27651
+  (0.0ms) begin transaction
27652
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:30:50.149490"], ["updated_at", "2020-03-10 18:30:50.149490"]]
27653
+  (1.8ms) commit transaction
27654
+  (0.0ms) begin transaction
27655
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:30:50.152148"], ["updated_at", "2020-03-10 18:30:50.152148"]]
27656
+  (1.6ms) commit transaction
27657
+ Started GET "/users/noaction.csv" for 127.0.0.1 at 2020-03-10 12:30:50 -0600
27658
+ Processing by UsersController#noaction as CSV
27659
+ Rendering users/noaction.csv.csvrb
27660
+ User Load (0.1ms) SELECT "users".* FROM "users"
27661
+ Rendered users/noaction.csv.csvrb (Duration: 0.6ms | Allocations: 445)
27662
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms | Allocations: 923)
27663
+ User Load (0.1ms) SELECT "users".* FROM "users"
27664
+  (0.0ms) begin transaction
27665
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 602]]
27666
+  (1.9ms) commit transaction
27667
+  (0.0ms) begin transaction
27668
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 603]]
27669
+  (1.6ms) commit transaction
27670
+  (0.0ms) begin transaction
27671
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Responder"], ["last_name", "Bunny"], ["address", "1234 Right Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:30:50.163424"], ["updated_at", "2020-03-10 18:30:50.163424"]]
27672
+  (1.5ms) commit transaction
27673
+ Started GET "/users/export/604.csv" for 127.0.0.1 at 2020-03-10 12:30:50 -0600
27674
+ Processing by UsersController#export as CSV
27675
+ Parameters: {"id"=>"604"}
27676
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 604], ["LIMIT", 1]]
27677
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 286)
27678
+ Started GET "/home.csv" for 127.0.0.1 at 2020-03-10 12:30:50 -0600
27679
+ Processing by HomeController#index as CSV
27680
+ Rendering home/index.csv.csvrb
27681
+ Rendered home/index.csv.csvrb (Duration: 0.2ms | Allocations: 171)
27682
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 906)
27683
+ User Load (0.1ms) SELECT "users".* FROM "users"
27684
+  (0.0ms) begin transaction
27685
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 604]]
27686
+  (2.6ms) commit transaction
27687
+  (0.0ms) begin transaction
27688
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:30:50.174269"], ["updated_at", "2020-03-10 18:30:50.174269"]]
27689
+  (1.5ms) commit transaction
27690
+  (0.0ms) begin transaction
27691
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:30:50.176882"], ["updated_at", "2020-03-10 18:30:50.176882"]]
27692
+  (1.6ms) commit transaction
27693
+ Started GET "/users.csv" for 127.0.0.1 at 2020-03-10 12:30:50 -0600
27694
+ Processing by UsersController#index as CSV
27695
+ Rendering users/index.csv.csvrb
27696
+ User Load (0.1ms) SELECT "users".* FROM "users"
27697
+ Rendered users/index.csv.csvrb (Duration: 1.1ms | Allocations: 436)
27698
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.1ms | Allocations: 822)
27699
+ Started GET "/useheader.csv" for 127.0.0.1 at 2020-03-10 12:30:50 -0600
27700
+ Processing by HomeController#useheader as CSV
27701
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 176)
27702
+ Started GET "/useheader.csv?set_direct=true" for 127.0.0.1 at 2020-03-10 12:30:50 -0600
27703
+ Processing by HomeController#useheader as CSV
27704
+ Parameters: {"set_direct"=>"true"}
27705
+ Rendering home/useheader.csv.csvrb
27706
+ Rendered home/useheader.csv.csvrb (Duration: 0.8ms | Allocations: 165)
27707
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms | Allocations: 632)
27708
+  (0.7ms) begin transaction
27709
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:30:50.193048"], ["updated_at", "2020-03-10 18:30:50.193048"]]
27710
+  (2.1ms) commit transaction
27711
+ Started GET "/" for 127.0.0.1 at 2020-03-10 12:30:50 -0600
27712
+ Processing by HomeController#index as HTML
27713
+ Rendering home/index.html.erb within layouts/application
27714
+ Rendered home/index.html.erb within layouts/application (Duration: 0.9ms | Allocations: 256)
27715
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms | Allocations: 1257)
27716
+ User Load (0.1ms) SELECT "users".* FROM "users"
27717
+  (0.0ms) begin transaction
27718
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 605]]
27719
+  (2.0ms) commit transaction
27720
+  (0.0ms) begin transaction
27721
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 606]]
27722
+  (1.5ms) commit transaction
27723
+  (0.0ms) begin transaction
27724
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 607]]
27725
+  (1.7ms) commit transaction
27726
+  (0.0ms) begin transaction
27727
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Responder"], ["last_name", "Bunny"], ["address", "1234 Right Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:30:50.211325"], ["updated_at", "2020-03-10 18:30:50.211325"]]
27728
+  (1.6ms) commit transaction
27729
+ Started GET "/users/608.csv" for 127.0.0.1 at 2020-03-10 12:30:50 -0600
27730
+ Processing by UsersController#show as CSV
27731
+ Parameters: {"id"=>"608"}
27732
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 608], ["LIMIT", 1]]
27733
+ Rendering users/respond_with.csv.csvrb
27734
+ Rendered users/respond_with.csv.csvrb (Duration: 0.3ms | Allocations: 165)
27735
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.1ms | Allocations: 643)
27736
+ User Load (0.1ms) SELECT "users".* FROM "users"
27737
+  (0.0ms) begin transaction
27738
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 608]]
27739
+  (2.5ms) commit transaction
27740
+  (0.0ms) begin transaction
27741
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:30:50.222485"], ["updated_at", "2020-03-10 18:30:50.222485"]]
27742
+  (1.7ms) commit transaction
27743
+ Started GET "/users/609/render_elsewhere.csv" for 127.0.0.1 at 2020-03-10 12:30:50 -0600
27744
+ Processing by LikesController#render_elsewhere as CSV
27745
+ Parameters: {"user_id"=>"609"}
27746
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 609], ["LIMIT", 1]]
27747
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 252)
27748
+ User Load (0.0ms) SELECT "users".* FROM "users"
27749
+ Started GET "/home/render_elsewhere.csv?type=5" for 127.0.0.1 at 2020-03-10 12:30:50 -0600
27750
+ Processing by HomeController#render_elsewhere as CSV
27751
+ Parameters: {"type"=>"5"}
27752
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 143)
27753
+ Started GET "/home/render_elsewhere.csv?type=4" for 127.0.0.1 at 2020-03-10 12:30:50 -0600
27754
+ Processing by HomeController#render_elsewhere as CSV
27755
+ Parameters: {"type"=>"4"}
27756
+ Rendering users/index.csv.csvrb
27757
+ User Load (0.1ms) SELECT "users".* FROM "users"
27758
+ Rendered users/index.csv.csvrb (Duration: 1.2ms | Allocations: 251)
27759
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.1ms | Allocations: 530)
27760
+ Started GET "/home/render_elsewhere.csv?type=3" for 127.0.0.1 at 2020-03-10 12:30:50 -0600
27761
+ Processing by HomeController#render_elsewhere as CSV
27762
+ Parameters: {"type"=>"3"}
27763
+ Rendering users/index.csv.csvrb
27764
+ User Load (0.1ms) SELECT "users".* FROM "users"
27765
+ Rendered users/index.csv.csvrb (Duration: 0.5ms | Allocations: 251)
27766
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.1ms | Allocations: 531)
27767
+ Started GET "/home/render_elsewhere.csv?type=1" for 127.0.0.1 at 2020-03-10 12:30:50 -0600
27768
+ Processing by HomeController#render_elsewhere as CSV
27769
+ Parameters: {"type"=>"1"}
27770
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 147)
27771
+ User Load (0.1ms) SELECT "users".* FROM "users"
27772
+ Started GET "/withpartial.csv" for 127.0.0.1 at 2020-03-10 12:30:50 -0600
27773
+ Processing by HomeController#withpartial as CSV
27774
+ Rendering home/withpartial.csv.csvrb
27775
+ Rendered home/_cover_sheet.csv.csvrb (Duration: 0.4ms | Allocations: 136)
27776
+ Rendered home/withpartial.csv.csvrb (Duration: 0.8ms | Allocations: 499)
27777
+ Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms | Allocations: 923)
27778
+ Started GET "/another" for 127.0.0.1 at 2020-03-10 12:30:50 -0600
27779
+ Processing by HomeController#another as */*
27780
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 134)
27781
+ Started GET "/home/only_html" for 127.0.0.1 at 2020-03-10 12:30:50 -0600
27782
+ Processing by HomeController#only_html as */*
27783
+ Rendering home/only_html.html.erb within layouts/application
27784
+ Rendered home/only_html.html.erb within layouts/application (Duration: 0.2ms | Allocations: 88)
27785
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 539)
27786
+  (0.0ms) begin transaction
27787
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:30:50.260518"], ["updated_at", "2020-03-10 18:30:50.260518"]]
27788
+  (1.7ms) commit transaction
27789
+ Started GET "/users/610/send_instructions" for 127.0.0.1 at 2020-03-10 12:30:50 -0600
27790
+ Processing by UsersController#send_instructions as HTML
27791
+ Parameters: {"user_id"=>"610"}
27792
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 610], ["LIMIT", 1]]
27793
+ Rendering users/send_instructions.csv.csvrb
27794
+ Rendered users/send_instructions.csv.csvrb (Duration: 0.2ms | Allocations: 199)
27795
+ Rendering notifier/instructions.html.erb
27796
+ Rendered notifier/instructions.html.erb (Duration: 0.2ms | Allocations: 119)
27797
+ Notifier#instructions: processed outbound mail in 4.2ms
27798
+ Delivered mail 5e67dcda41fe7_33572b1522f2b9644319b@samps-dus.mail (3.5ms)
27799
+ Date: Tue, 10 Mar 2020 12:30:50 -0600
27800
+ From: noreply@company.com
27801
+ To: elmer@fudd.com
27802
+ Message-ID: <5e67dcda41fe7_33572b1522f2b9644319b@samps-dus.mail>
27803
+ Subject: Instructions
27804
+ Mime-Version: 1.0
27805
+ Content-Type: multipart/mixed;
27806
+ boundary="--==_mimepart_5e67dcda41a94_33572b1522f2b964430c3";
27807
+ charset=UTF-8
27808
+ Content-Transfer-Encoding: 7bit
27809
+
27810
+
27811
+ ----==_mimepart_5e67dcda41a94_33572b1522f2b964430c3
27812
+ Content-Type: text/html;
27813
+ charset=UTF-8
27814
+ Content-Transfer-Encoding: 7bit
27815
+
27816
+ <!DOCTYPE html>
27817
+ <html>
27818
+ <head>
27819
+ <meta content='text/html; charset=UTF-8' http-equiv='Content-Type' />
27820
+ </head>
27821
+ <body>
27822
+ <h1>Instructions</h1>
27823
+ <p>
27824
+ You have successfully signed up to example.com,
27825
+ your username is: elmer@fudd.com.<br/>
27826
+ </p>
27827
+ <p>Thanks for joining and have a great day!</p>
27828
+ </body>
27829
+ </html>
27830
+
27831
+ ----==_mimepart_5e67dcda41a94_33572b1522f2b964430c3
27832
+ Content-Type: text/csv;
27833
+ charset=UTF-8
27834
+ Content-Transfer-Encoding: base64
27835
+ Content-Disposition: attachment;
27836
+ filename=user_610.csv
27837
+ Content-ID: <5e67dcda424a2_33572b1522f2b9644329e@samps-dus.mail>
27838
+
27839
+ IjYxMCIsIkVsbWVyIiwiZWxtZXJAZnVkZC5jb20iDQoiIiwiSW5zdHJ1Y3Rp
27840
+ b25zIiwiIg0K
27841
+
27842
+ ----==_mimepart_5e67dcda41a94_33572b1522f2b964430c3--
27843
+
27844
+ Rendering text template
27845
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
27846
+ Completed 200 OK in 10ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 8480)
27847
+  (0.5ms) SELECT sqlite_version(*)
27848
+ Started GET "/another" for 127.0.0.1 at 2020-03-10 12:31:38 -0600
27849
+ Processing by HomeController#another as */*
27850
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 226)
27851
+ Started GET "/home/only_html" for 127.0.0.1 at 2020-03-10 12:31:38 -0600
27852
+ Processing by HomeController#only_html as */*
27853
+ Rendering home/only_html.html.erb within layouts/application
27854
+ Rendered home/only_html.html.erb within layouts/application (Duration: 0.3ms | Allocations: 301)
27855
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms | Allocations: 1624)
27856
+ Started GET "/useheader.csv?set_direct=true" for 127.0.0.1 at 2020-03-10 12:31:38 -0600
27857
+ Processing by HomeController#useheader as CSV
27858
+ Parameters: {"set_direct"=>"true"}
27859
+ Rendering home/useheader.csv.csvrb
27860
+ Rendered home/useheader.csv.csvrb (Duration: 0.3ms | Allocations: 298)
27861
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms | Allocations: 1648)
27862
+ Started GET "/withpartial.csv" for 127.0.0.1 at 2020-03-10 12:31:38 -0600
27863
+ Processing by HomeController#withpartial as CSV
27864
+ Rendering home/withpartial.csv.csvrb
27865
+ Rendered home/_cover_sheet.csv.csvrb (Duration: 0.2ms | Allocations: 136)
27866
+ Rendered home/withpartial.csv.csvrb (Duration: 0.5ms | Allocations: 499)
27867
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms | Allocations: 924)
27868
+ User Load (0.1ms) SELECT "users".* FROM "users"
27869
+  (0.1ms) begin transaction
27870
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 609]]
27871
+  (2.2ms) commit transaction
27872
+  (0.0ms) begin transaction
27873
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 610]]
27874
+  (2.0ms) commit transaction
27875
+  (0.0ms) begin transaction
27876
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Responder"], ["last_name", "Bunny"], ["address", "1234 Right Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:31:38.590910"], ["updated_at", "2020-03-10 18:31:38.590910"]]
27877
+  (2.4ms) commit transaction
27878
+ Started GET "/users/611.csv" for 127.0.0.1 at 2020-03-10 12:31:38 -0600
27879
+ Processing by UsersController#show as CSV
27880
+ Parameters: {"id"=>"611"}
27881
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 611], ["LIMIT", 1]]
27882
+ Rendering users/respond_with.csv.csvrb
27883
+ Rendered users/respond_with.csv.csvrb (Duration: 0.2ms | Allocations: 166)
27884
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 954)
27885
+ Started GET "/another" for 127.0.0.1 at 2020-03-10 12:31:38 -0600
27886
+ Processing by HomeController#another as HTML
27887
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 131)
27888
+ Started GET "/home.csv" for 127.0.0.1 at 2020-03-10 12:31:38 -0600
27889
+ Processing by HomeController#index as CSV
27890
+ Rendering home/index.csv.csvrb
27891
+ Rendered home/index.csv.csvrb (Duration: 0.2ms | Allocations: 168)
27892
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 626)
27893
+ User Load (0.1ms) SELECT "users".* FROM "users"
27894
+  (0.0ms) begin transaction
27895
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 611]]
27896
+  (1.9ms) commit transaction
27897
+  (0.0ms) begin transaction
27898
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Responder"], ["last_name", "Bunny"], ["address", "1234 Right Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:31:38.604664"], ["updated_at", "2020-03-10 18:31:38.604664"]]
27899
+  (2.0ms) commit transaction
27900
+ Started GET "/users/export/612.csv" for 127.0.0.1 at 2020-03-10 12:31:38 -0600
27901
+ Processing by UsersController#export as CSV
27902
+ Parameters: {"id"=>"612"}
27903
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 612], ["LIMIT", 1]]
27904
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 286)
27905
+ Started GET "/another.csv" for 127.0.0.1 at 2020-03-10 12:31:38 -0600
27906
+ Processing by HomeController#another as CSV
27907
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 131)
27908
+ Started GET "/useheader.csv" for 127.0.0.1 at 2020-03-10 12:31:38 -0600
27909
+ Processing by HomeController#useheader as CSV
27910
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms | Allocations: 176)
27911
+ User Load (0.1ms) SELECT "users".* FROM "users"
27912
+  (0.0ms) begin transaction
27913
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 612]]
27914
+  (2.5ms) commit transaction
27915
+  (0.0ms) begin transaction
27916
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:31:38.616098"], ["updated_at", "2020-03-10 18:31:38.616098"]]
27917
+  (1.6ms) commit transaction
27918
+  (0.0ms) begin transaction
27919
+ Like Create (0.1ms) INSERT INTO "likes" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Carrots"], ["user_id", 613], ["created_at", "2020-03-10 18:31:38.631074"], ["updated_at", "2020-03-10 18:31:38.631074"]]
27920
+  (2.0ms) commit transaction
27921
+  (0.0ms) begin transaction
27922
+ Like Create (0.1ms) INSERT INTO "likes" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Celery"], ["user_id", 613], ["created_at", "2020-03-10 18:31:38.634283"], ["updated_at", "2020-03-10 18:31:38.634283"]]
27923
+  (1.6ms) commit transaction
27924
+ Started GET "/users/613/likes.csv" for 127.0.0.1 at 2020-03-10 12:31:38 -0600
27925
+ Processing by LikesController#index as CSV
27926
+ Parameters: {"user_id"=>"613"}
27927
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 613], ["LIMIT", 1]]
27928
+ Rendering likes/index.csv.csvrb
27929
+ Like Load (0.1ms) SELECT "likes".* FROM "likes" WHERE "likes"."user_id" = ? [["user_id", 613]]
27930
+ Rendered likes/index.csv.csvrb (Duration: 1.6ms | Allocations: 603)
27931
+ Completed 200 OK in 4ms (Views: 2.6ms | ActiveRecord: 0.2ms | Allocations: 1632)
27932
+ User Load (0.1ms) SELECT "users".* FROM "users"
27933
+  (0.0ms) begin transaction
27934
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 613]]
27935
+  (1.6ms) commit transaction
27936
+  (0.0ms) begin transaction
27937
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:31:38.648842"], ["updated_at", "2020-03-10 18:31:38.648842"]]
27938
+  (1.6ms) commit transaction
27939
+  (0.0ms) begin transaction
27940
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:31:38.651547"], ["updated_at", "2020-03-10 18:31:38.651547"]]
27941
+  (1.5ms) commit transaction
27942
+ Started GET "/users.csv" for 127.0.0.1 at 2020-03-10 12:31:38 -0600
27943
+ Processing by UsersController#index as CSV
27944
+ Rendering users/index.csv.csvrb
27945
+ User Load (0.1ms) SELECT "users".* FROM "users"
27946
+ Rendered users/index.csv.csvrb (Duration: 1.2ms | Allocations: 445)
27947
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.1ms | Allocations: 831)
27948
+ User Load (0.1ms) SELECT "users".* FROM "users"
27949
+  (0.0ms) begin transaction
27950
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 614]]
27951
+  (1.6ms) commit transaction
27952
+  (0.0ms) begin transaction
27953
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 615]]
27954
+  (2.6ms) commit transaction
27955
+  (0.0ms) begin transaction
27956
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:31:38.666388"], ["updated_at", "2020-03-10 18:31:38.666388"]]
27957
+  (1.6ms) commit transaction
27958
+  (0.0ms) begin transaction
27959
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:31:38.669301"], ["updated_at", "2020-03-10 18:31:38.669301"]]
27960
+  (1.6ms) commit transaction
27961
+ Started GET "/users/noaction.csv" for 127.0.0.1 at 2020-03-10 12:31:38 -0600
27962
+ Processing by UsersController#noaction as CSV
27963
+ Rendering users/noaction.csv.csvrb
27964
+ User Load (0.1ms) SELECT "users".* FROM "users"
27965
+ Rendered users/noaction.csv.csvrb (Duration: 1.3ms | Allocations: 436)
27966
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.1ms | Allocations: 760)
27967
+  (0.0ms) begin transaction
27968
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:31:38.678351"], ["updated_at", "2020-03-10 18:31:38.678351"]]
27969
+  (2.0ms) commit transaction
27970
+ Started GET "/" for 127.0.0.1 at 2020-03-10 12:31:38 -0600
27971
+ Processing by HomeController#index as HTML
27972
+ Rendering home/index.html.erb within layouts/application
27973
+ Rendered home/index.html.erb within layouts/application (Duration: 0.9ms | Allocations: 251)
27974
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms | Allocations: 690)
27975
+ User Load (0.1ms) SELECT "users".* FROM "users"
27976
+  (0.0ms) begin transaction
27977
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 616]]
27978
+  (1.6ms) commit transaction
27979
+  (0.0ms) begin transaction
27980
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 617]]
27981
+  (1.7ms) commit transaction
27982
+  (0.0ms) begin transaction
27983
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 618]]
27984
+  (1.7ms) commit transaction
27985
+  (0.0ms) begin transaction
27986
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:31:38.694469"], ["updated_at", "2020-03-10 18:31:38.694469"]]
27987
+  (1.7ms) commit transaction
27988
+ Started GET "/users/619/render_elsewhere.csv" for 127.0.0.1 at 2020-03-10 12:31:38 -0600
27989
+ Processing by LikesController#render_elsewhere as CSV
27990
+ Parameters: {"user_id"=>"619"}
27991
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 619], ["LIMIT", 1]]
27992
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 252)
27993
+ User Load (0.0ms) SELECT "users".* FROM "users"
27994
+ Started GET "/home/render_elsewhere.csv?type=5" for 127.0.0.1 at 2020-03-10 12:31:38 -0600
27995
+ Processing by HomeController#render_elsewhere as CSV
27996
+ Parameters: {"type"=>"5"}
27997
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 143)
27998
+ Started GET "/home/render_elsewhere.csv?type=4" for 127.0.0.1 at 2020-03-10 12:31:38 -0600
27999
+ Processing by HomeController#render_elsewhere as CSV
28000
+ Parameters: {"type"=>"4"}
28001
+ Rendering users/index.csv.csvrb
28002
+ User Load (0.1ms) SELECT "users".* FROM "users"
28003
+ Rendered users/index.csv.csvrb (Duration: 1.1ms | Allocations: 251)
28004
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.1ms | Allocations: 530)
28005
+ Started GET "/home/render_elsewhere.csv?type=3" for 127.0.0.1 at 2020-03-10 12:31:38 -0600
28006
+ Processing by HomeController#render_elsewhere as CSV
28007
+ Parameters: {"type"=>"3"}
28008
+ Rendering users/index.csv.csvrb
28009
+ User Load (0.1ms) SELECT "users".* FROM "users"
28010
+ Rendered users/index.csv.csvrb (Duration: 1.0ms | Allocations: 251)
28011
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.1ms | Allocations: 531)
28012
+ Started GET "/home/render_elsewhere.csv?type=1" for 127.0.0.1 at 2020-03-10 12:31:38 -0600
28013
+ Processing by HomeController#render_elsewhere as CSV
28014
+ Parameters: {"type"=>"1"}
28015
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms | Allocations: 147)
28016
+ User Load (0.0ms) SELECT "users".* FROM "users"
28017
+  (0.0ms) begin transaction
28018
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:31:38.723004"], ["updated_at", "2020-03-10 18:31:38.723004"]]
28019
+  (2.7ms) commit transaction
28020
+ Started GET "/users/620/send_instructions" for 127.0.0.1 at 2020-03-10 12:31:38 -0600
28021
+ Processing by UsersController#send_instructions as HTML
28022
+ Parameters: {"user_id"=>"620"}
28023
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 620], ["LIMIT", 1]]
28024
+ Rendering users/send_instructions.csv.csvrb
28025
+ Rendered users/send_instructions.csv.csvrb (Duration: 0.2ms | Allocations: 200)
28026
+ Rendering notifier/instructions.html.erb
28027
+ Rendered notifier/instructions.html.erb (Duration: 0.1ms | Allocations: 123)
28028
+ Notifier#instructions: processed outbound mail in 3.7ms
28029
+ Delivered mail 5e67dd0ab31bf_33852b1e090cf97074157@samps-dus.mail (3.4ms)
28030
+ Date: Tue, 10 Mar 2020 12:31:38 -0600
28031
+ From: noreply@company.com
28032
+ To: elmer@fudd.com
28033
+ Message-ID: <5e67dd0ab31bf_33852b1e090cf97074157@samps-dus.mail>
28034
+ Subject: Instructions
28035
+ Mime-Version: 1.0
28036
+ Content-Type: multipart/mixed;
28037
+ boundary="--==_mimepart_5e67dd0ab2c7d_33852b1e090cf970740f3";
28038
+ charset=UTF-8
28039
+ Content-Transfer-Encoding: 7bit
28040
+
28041
+
28042
+ ----==_mimepart_5e67dd0ab2c7d_33852b1e090cf970740f3
28043
+ Content-Type: text/html;
28044
+ charset=UTF-8
28045
+ Content-Transfer-Encoding: 7bit
28046
+
28047
+ <!DOCTYPE html>
28048
+ <html>
28049
+ <head>
28050
+ <meta content='text/html; charset=UTF-8' http-equiv='Content-Type' />
28051
+ </head>
28052
+ <body>
28053
+ <h1>Instructions</h1>
28054
+ <p>
28055
+ You have successfully signed up to example.com,
28056
+ your username is: elmer@fudd.com.<br/>
28057
+ </p>
28058
+ <p>Thanks for joining and have a great day!</p>
28059
+ </body>
28060
+ </html>
28061
+
28062
+ ----==_mimepart_5e67dd0ab2c7d_33852b1e090cf970740f3
28063
+ Content-Type: text/csv;
28064
+ charset=UTF-8
28065
+ Content-Transfer-Encoding: base64
28066
+ Content-Disposition: attachment;
28067
+ filename=user_620.csv
28068
+ Content-ID: <5e67dd0ab362d_33852b1e090cf9707422c@samps-dus.mail>
28069
+
28070
+ IjYyMCIsIkVsbWVyIiwiZWxtZXJAZnVkZC5jb20iDQoiIiwiSW5zdHJ1Y3Rp
28071
+ b25zIiwiIg0K
28072
+
28073
+ ----==_mimepart_5e67dd0ab2c7d_33852b1e090cf970740f3--
28074
+
28075
+ Rendering text template
28076
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
28077
+ Completed 200 OK in 9ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 8485)
28078
+  (0.5ms) SELECT sqlite_version(*)
28079
+ Started GET "/another.csv" for 127.0.0.1 at 2020-03-10 12:32:04 -0600
28080
+ Processing by HomeController#another as CSV
28081
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 226)
28082
+ User Load (0.1ms) SELECT "users".* FROM "users"
28083
+  (0.0ms) begin transaction
28084
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 619]]
28085
+  (53.3ms) commit transaction
28086
+  (0.0ms) begin transaction
28087
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 620]]
28088
+  (2.1ms) commit transaction
28089
+  (0.0ms) begin transaction
28090
+ User Create (0.2ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:32:04.913404"], ["updated_at", "2020-03-10 18:32:04.913404"]]
28091
+  (2.5ms) commit transaction
28092
+ Started GET "/users/621/render_elsewhere.csv" for 127.0.0.1 at 2020-03-10 12:32:04 -0600
28093
+ Processing by LikesController#render_elsewhere as CSV
28094
+ Parameters: {"user_id"=>"621"}
28095
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 621], ["LIMIT", 1]]
28096
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 412)
28097
+ User Load (0.1ms) SELECT "users".* FROM "users"
28098
+ Started GET "/home/render_elsewhere.csv?type=5" for 127.0.0.1 at 2020-03-10 12:32:04 -0600
28099
+ Processing by HomeController#render_elsewhere as CSV
28100
+ Parameters: {"type"=>"5"}
28101
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 143)
28102
+ Started GET "/home/render_elsewhere.csv?type=4" for 127.0.0.1 at 2020-03-10 12:32:04 -0600
28103
+ Processing by HomeController#render_elsewhere as CSV
28104
+ Parameters: {"type"=>"4"}
28105
+ Rendering users/index.csv.csvrb
28106
+ User Load (0.1ms) SELECT "users".* FROM "users"
28107
+ Rendered users/index.csv.csvrb (Duration: 1.3ms | Allocations: 658)
28108
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.1ms | Allocations: 2242)
28109
+ Started GET "/home/render_elsewhere.csv?type=3" for 127.0.0.1 at 2020-03-10 12:32:04 -0600
28110
+ Processing by HomeController#render_elsewhere as CSV
28111
+ Parameters: {"type"=>"3"}
28112
+ Rendering users/index.csv.csvrb
28113
+ User Load (0.1ms) SELECT "users".* FROM "users"
28114
+ Rendered users/index.csv.csvrb (Duration: 0.5ms | Allocations: 251)
28115
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 532)
28116
+ Started GET "/home/render_elsewhere.csv?type=1" for 127.0.0.1 at 2020-03-10 12:32:04 -0600
28117
+ Processing by HomeController#render_elsewhere as CSV
28118
+ Parameters: {"type"=>"1"}
28119
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 147)
28120
+ User Load (0.1ms) SELECT "users".* FROM "users"
28121
+ User Load (0.1ms) SELECT "users".* FROM "users"
28122
+  (0.0ms) begin transaction
28123
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 621]]
28124
+  (2.4ms) commit transaction
28125
+  (0.0ms) begin transaction
28126
+ User Create (0.2ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:32:04.937311"], ["updated_at", "2020-03-10 18:32:04.937311"]]
28127
+  (1.6ms) commit transaction
28128
+  (0.0ms) begin transaction
28129
+ Like Create (0.1ms) INSERT INTO "likes" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Carrots"], ["user_id", 622], ["created_at", "2020-03-10 18:32:04.950508"], ["updated_at", "2020-03-10 18:32:04.950508"]]
28130
+  (1.8ms) commit transaction
28131
+  (0.0ms) begin transaction
28132
+ Like Create (0.1ms) INSERT INTO "likes" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Celery"], ["user_id", 622], ["created_at", "2020-03-10 18:32:04.953250"], ["updated_at", "2020-03-10 18:32:04.953250"]]
28133
+  (1.7ms) commit transaction
28134
+ Started GET "/users/622/likes.csv" for 127.0.0.1 at 2020-03-10 12:32:04 -0600
28135
+ Processing by LikesController#index as CSV
28136
+ Parameters: {"user_id"=>"622"}
28137
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 622], ["LIMIT", 1]]
28138
+ Rendering likes/index.csv.csvrb
28139
+ Like Load (0.1ms) SELECT "likes".* FROM "likes" WHERE "likes"."user_id" = ? [["user_id", 622]]
28140
+ Rendered likes/index.csv.csvrb (Duration: 0.8ms | Allocations: 601)
28141
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.1ms | Allocations: 1492)
28142
+ User Load (0.0ms) SELECT "users".* FROM "users"
28143
+  (0.0ms) begin transaction
28144
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 622]]
28145
+  (1.7ms) commit transaction
28146
+  (0.0ms) begin transaction
28147
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Responder"], ["last_name", "Bunny"], ["address", "1234 Right Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:32:04.962348"], ["updated_at", "2020-03-10 18:32:04.962348"]]
28148
+  (1.6ms) commit transaction
28149
+ Started GET "/users/export/623.csv" for 127.0.0.1 at 2020-03-10 12:32:04 -0600
28150
+ Processing by UsersController#export as CSV
28151
+ Parameters: {"id"=>"623"}
28152
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 623], ["LIMIT", 1]]
28153
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 289)
28154
+ Started GET "/another" for 127.0.0.1 at 2020-03-10 12:32:04 -0600
28155
+ Processing by HomeController#another as HTML
28156
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 131)
28157
+ User Load (0.1ms) SELECT "users".* FROM "users"
28158
+  (0.0ms) begin transaction
28159
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 623]]
28160
+  (7.1ms) commit transaction
28161
+  (0.0ms) begin transaction
28162
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Responder"], ["last_name", "Bunny"], ["address", "1234 Right Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:32:04.978084"], ["updated_at", "2020-03-10 18:32:04.978084"]]
28163
+  (2.5ms) commit transaction
28164
+ Started GET "/users/624.csv" for 127.0.0.1 at 2020-03-10 12:32:04 -0600
28165
+ Processing by UsersController#show as CSV
28166
+ Parameters: {"id"=>"624"}
28167
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 624], ["LIMIT", 1]]
28168
+ Rendering users/respond_with.csv.csvrb
28169
+ Rendered users/respond_with.csv.csvrb (Duration: 0.2ms | Allocations: 165)
28170
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 643)
28171
+ User Load (0.1ms) SELECT "users".* FROM "users"
28172
+  (0.0ms) begin transaction
28173
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 624]]
28174
+  (1.6ms) commit transaction
28175
+  (0.0ms) begin transaction
28176
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:32:04.986610"], ["updated_at", "2020-03-10 18:32:04.986610"]]
28177
+  (1.5ms) commit transaction
28178
+  (0.0ms) begin transaction
28179
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:32:04.988951"], ["updated_at", "2020-03-10 18:32:04.988951"]]
28180
+  (1.6ms) commit transaction
28181
+ Started GET "/users.csv" for 127.0.0.1 at 2020-03-10 12:32:04 -0600
28182
+ Processing by UsersController#index as CSV
28183
+ Rendering users/index.csv.csvrb
28184
+ User Load (0.1ms) SELECT "users".* FROM "users"
28185
+ Rendered users/index.csv.csvrb (Duration: 0.5ms | Allocations: 371)
28186
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 624)
28187
+ Started GET "/useheader.csv?set_direct=true" for 127.0.0.1 at 2020-03-10 12:32:04 -0600
28188
+ Processing by HomeController#useheader as CSV
28189
+ Parameters: {"set_direct"=>"true"}
28190
+ Rendering home/useheader.csv.csvrb
28191
+ Rendered home/useheader.csv.csvrb (Duration: 0.2ms | Allocations: 165)
28192
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 633)
28193
+ User Load (0.1ms) SELECT "users".* FROM "users"
28194
+  (0.0ms) begin transaction
28195
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 625]]
28196
+  (1.6ms) commit transaction
28197
+  (0.0ms) begin transaction
28198
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 626]]
28199
+  (1.6ms) commit transaction
28200
+  (0.0ms) begin transaction
28201
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:32:05.008251"], ["updated_at", "2020-03-10 18:32:05.008251"]]
28202
+  (1.7ms) commit transaction
28203
+  (0.0ms) begin transaction
28204
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:32:05.010818"], ["updated_at", "2020-03-10 18:32:05.010818"]]
28205
+  (1.8ms) commit transaction
28206
+ Started GET "/users/noaction.csv" for 127.0.0.1 at 2020-03-10 12:32:05 -0600
28207
+ Processing by UsersController#noaction as CSV
28208
+ Rendering users/noaction.csv.csvrb
28209
+ User Load (0.1ms) SELECT "users".* FROM "users"
28210
+ Rendered users/noaction.csv.csvrb (Duration: 0.6ms | Allocations: 437)
28211
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.1ms | Allocations: 762)
28212
+ Started GET "/home.csv" for 127.0.0.1 at 2020-03-10 12:32:05 -0600
28213
+ Processing by HomeController#index as CSV
28214
+ Rendering home/index.csv.csvrb
28215
+ Rendered home/index.csv.csvrb (Duration: 0.2ms | Allocations: 168)
28216
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 620)
28217
+ Started GET "/useheader.csv" for 127.0.0.1 at 2020-03-10 12:32:05 -0600
28218
+ Processing by HomeController#useheader as CSV
28219
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 176)
28220
+  (0.0ms) begin transaction
28221
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:32:05.021102"], ["updated_at", "2020-03-10 18:32:05.021102"]]
28222
+  (2.3ms) commit transaction
28223
+ Started GET "/" for 127.0.0.1 at 2020-03-10 12:32:05 -0600
28224
+ Processing by HomeController#index as HTML
28225
+ Rendering home/index.html.erb within layouts/application
28226
+ Rendered home/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 256)
28227
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms | Allocations: 1256)
28228
+ Started GET "/another" for 127.0.0.1 at 2020-03-10 12:32:05 -0600
28229
+ Processing by HomeController#another as */*
28230
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 134)
28231
+ Started GET "/home/only_html" for 127.0.0.1 at 2020-03-10 12:32:05 -0600
28232
+ Processing by HomeController#only_html as */*
28233
+ Rendering home/only_html.html.erb within layouts/application
28234
+ Rendered home/only_html.html.erb within layouts/application (Duration: 0.1ms | Allocations: 83)
28235
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 531)
28236
+ Started GET "/withpartial.csv" for 127.0.0.1 at 2020-03-10 12:32:05 -0600
28237
+ Processing by HomeController#withpartial as CSV
28238
+ Rendering home/withpartial.csv.csvrb
28239
+ Rendered home/_cover_sheet.csv.csvrb (Duration: 0.2ms | Allocations: 136)
28240
+ Rendered home/withpartial.csv.csvrb (Duration: 0.5ms | Allocations: 499)
28241
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms | Allocations: 924)
28242
+  (0.0ms) begin transaction
28243
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:32:05.034067"], ["updated_at", "2020-03-10 18:32:05.034067"]]
28244
+  (1.5ms) commit transaction
28245
+ Started GET "/users/630/send_instructions" for 127.0.0.1 at 2020-03-10 12:32:05 -0600
28246
+ Processing by UsersController#send_instructions as HTML
28247
+ Parameters: {"user_id"=>"630"}
28248
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 630], ["LIMIT", 1]]
28249
+ Rendering users/send_instructions.csv.csvrb
28250
+ Rendered users/send_instructions.csv.csvrb (Duration: 0.4ms | Allocations: 199)
28251
+ Rendering notifier/instructions.html.erb
28252
+ Rendered notifier/instructions.html.erb (Duration: 0.2ms | Allocations: 119)
28253
+ Notifier#instructions: processed outbound mail in 4.8ms
28254
+ Delivered mail 5e67dd25b022_33a22b23465ab95c3091e@samps-dus.mail (3.2ms)
28255
+ Date: Tue, 10 Mar 2020 12:32:05 -0600
28256
+ From: noreply@company.com
28257
+ To: elmer@fudd.com
28258
+ Message-ID: <5e67dd25b022_33a22b23465ab95c3091e@samps-dus.mail>
28259
+ Subject: Instructions
28260
+ Mime-Version: 1.0
28261
+ Content-Type: multipart/mixed;
28262
+ boundary="--==_mimepart_5e67dd25aaf5_33a22b23465ab95c30850";
28263
+ charset=UTF-8
28264
+ Content-Transfer-Encoding: 7bit
28265
+
28266
+
28267
+ ----==_mimepart_5e67dd25aaf5_33a22b23465ab95c30850
28268
+ Content-Type: text/html;
28269
+ charset=UTF-8
28270
+ Content-Transfer-Encoding: 7bit
28271
+
28272
+ <!DOCTYPE html>
28273
+ <html>
28274
+ <head>
28275
+ <meta content='text/html; charset=UTF-8' http-equiv='Content-Type' />
28276
+ </head>
28277
+ <body>
28278
+ <h1>Instructions</h1>
28279
+ <p>
28280
+ You have successfully signed up to example.com,
28281
+ your username is: elmer@fudd.com.<br/>
28282
+ </p>
28283
+ <p>Thanks for joining and have a great day!</p>
28284
+ </body>
28285
+ </html>
28286
+
28287
+ ----==_mimepart_5e67dd25aaf5_33a22b23465ab95c30850
28288
+ Content-Type: text/csv;
28289
+ charset=UTF-8
28290
+ Content-Transfer-Encoding: base64
28291
+ Content-Disposition: attachment;
28292
+ filename=user_630.csv
28293
+ Content-ID: <5e67dd25b465_33a22b23465ab95c3105f@samps-dus.mail>
28294
+
28295
+ IjYzMCIsIkVsbWVyIiwiZWxtZXJAZnVkZC5jb20iDQoiIiwiSW5zdHJ1Y3Rp
28296
+ b25zIiwiIg0K
28297
+
28298
+ ----==_mimepart_5e67dd25aaf5_33a22b23465ab95c30850--
28299
+
28300
+ Rendering text template
28301
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
28302
+ Completed 200 OK in 10ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 8478)
28303
+  (0.5ms) SELECT sqlite_version(*)
28304
+ User Load (0.1ms) SELECT "users".* FROM "users"
28305
+  (0.0ms) begin transaction
28306
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 627]]
28307
+  (2.8ms) commit transaction
28308
+  (0.0ms) begin transaction
28309
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 628]]
28310
+  (2.4ms) commit transaction
28311
+  (0.0ms) begin transaction
28312
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 629]]
28313
+  (1.7ms) commit transaction
28314
+  (0.0ms) begin transaction
28315
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 630]]
28316
+  (1.6ms) commit transaction
28317
+  (0.0ms) begin transaction
28318
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Responder"], ["last_name", "Bunny"], ["address", "1234 Right Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:32:52.135358"], ["updated_at", "2020-03-10 18:32:52.135358"]]
28319
+  (1.6ms) commit transaction
28320
+ Started GET "/users/631.csv" for 127.0.0.1 at 2020-03-10 12:32:52 -0600
28321
+ Processing by UsersController#show as CSV
28322
+ Parameters: {"id"=>"631"}
28323
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 631], ["LIMIT", 1]]
28324
+ Rendering users/respond_with.csv.csvrb
28325
+ Rendered users/respond_with.csv.csvrb (Duration: 0.4ms | Allocations: 377)
28326
+ Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.1ms | Allocations: 2365)
28327
+ Started GET "/another" for 127.0.0.1 at 2020-03-10 12:32:52 -0600
28328
+ Processing by HomeController#another as HTML
28329
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 138)
28330
+  (0.0ms) begin transaction
28331
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:32:52.152401"], ["updated_at", "2020-03-10 18:32:52.152401"]]
28332
+  (1.7ms) commit transaction
28333
+ Started GET "/" for 127.0.0.1 at 2020-03-10 12:32:52 -0600
28334
+ Processing by HomeController#index as HTML
28335
+ Rendering home/index.html.erb within layouts/application
28336
+ Rendered home/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 256)
28337
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms | Allocations: 1266)
28338
+ User Load (0.1ms) SELECT "users".* FROM "users"
28339
+  (0.0ms) begin transaction
28340
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 631]]
28341
+  (1.6ms) commit transaction
28342
+  (0.0ms) begin transaction
28343
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 632]]
28344
+  (1.6ms) commit transaction
28345
+  (0.0ms) begin transaction
28346
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:32:52.162293"], ["updated_at", "2020-03-10 18:32:52.162293"]]
28347
+  (2.3ms) commit transaction
28348
+ Started GET "/users/633/render_elsewhere.csv" for 127.0.0.1 at 2020-03-10 12:32:52 -0600
28349
+ Processing by LikesController#render_elsewhere as CSV
28350
+ Parameters: {"user_id"=>"633"}
28351
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 633], ["LIMIT", 1]]
28352
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 255)
28353
+ User Load (0.0ms) SELECT "users".* FROM "users"
28354
+ Started GET "/home/render_elsewhere.csv?type=5" for 127.0.0.1 at 2020-03-10 12:32:52 -0600
28355
+ Processing by HomeController#render_elsewhere as CSV
28356
+ Parameters: {"type"=>"5"}
28357
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 143)
28358
+ Started GET "/home/render_elsewhere.csv?type=4" for 127.0.0.1 at 2020-03-10 12:32:52 -0600
28359
+ Processing by HomeController#render_elsewhere as CSV
28360
+ Parameters: {"type"=>"4"}
28361
+ Rendering users/index.csv.csvrb
28362
+ User Load (0.1ms) SELECT "users".* FROM "users"
28363
+ Rendered users/index.csv.csvrb (Duration: 0.9ms | Allocations: 316)
28364
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.1ms | Allocations: 1601)
28365
+ Started GET "/home/render_elsewhere.csv?type=3" for 127.0.0.1 at 2020-03-10 12:32:52 -0600
28366
+ Processing by HomeController#render_elsewhere as CSV
28367
+ Parameters: {"type"=>"3"}
28368
+ Rendering users/index.csv.csvrb
28369
+ User Load (0.1ms) SELECT "users".* FROM "users"
28370
+ Rendered users/index.csv.csvrb (Duration: 0.5ms | Allocations: 251)
28371
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 532)
28372
+ Started GET "/home/render_elsewhere.csv?type=1" for 127.0.0.1 at 2020-03-10 12:32:52 -0600
28373
+ Processing by HomeController#render_elsewhere as CSV
28374
+ Parameters: {"type"=>"1"}
28375
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 147)
28376
+ User Load (0.0ms) SELECT "users".* FROM "users"
28377
+ Started GET "/withpartial.csv" for 127.0.0.1 at 2020-03-10 12:32:52 -0600
28378
+ Processing by HomeController#withpartial as CSV
28379
+ Rendering home/withpartial.csv.csvrb
28380
+ Rendered home/_cover_sheet.csv.csvrb (Duration: 0.2ms | Allocations: 136)
28381
+ Rendered home/withpartial.csv.csvrb (Duration: 0.5ms | Allocations: 499)
28382
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms | Allocations: 923)
28383
+ User Load (0.1ms) SELECT "users".* FROM "users"
28384
+  (0.0ms) begin transaction
28385
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 633]]
28386
+  (2.1ms) commit transaction
28387
+  (0.0ms) begin transaction
28388
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:32:52.182531"], ["updated_at", "2020-03-10 18:32:52.182531"]]
28389
+  (1.6ms) commit transaction
28390
+  (0.0ms) begin transaction
28391
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:32:52.184861"], ["updated_at", "2020-03-10 18:32:52.184861"]]
28392
+  (1.5ms) commit transaction
28393
+ Started GET "/users.csv" for 127.0.0.1 at 2020-03-10 12:32:52 -0600
28394
+ Processing by UsersController#index as CSV
28395
+ Rendering users/index.csv.csvrb
28396
+ User Load (0.1ms) SELECT "users".* FROM "users"
28397
+ Rendered users/index.csv.csvrb (Duration: 0.5ms | Allocations: 371)
28398
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 624)
28399
+ Started GET "/useheader.csv?set_direct=true" for 127.0.0.1 at 2020-03-10 12:32:52 -0600
28400
+ Processing by HomeController#useheader as CSV
28401
+ Parameters: {"set_direct"=>"true"}
28402
+ Rendering home/useheader.csv.csvrb
28403
+ Rendered home/useheader.csv.csvrb (Duration: 0.2ms | Allocations: 165)
28404
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 633)
28405
+ Started GET "/useheader.csv" for 127.0.0.1 at 2020-03-10 12:32:52 -0600
28406
+ Processing by HomeController#useheader as CSV
28407
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 176)
28408
+ User Load (0.1ms) SELECT "users".* FROM "users"
28409
+  (0.0ms) begin transaction
28410
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 634]]
28411
+  (1.7ms) commit transaction
28412
+  (0.0ms) begin transaction
28413
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 635]]
28414
+  (1.5ms) commit transaction
28415
+  (0.0ms) begin transaction
28416
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:32:52.198787"], ["updated_at", "2020-03-10 18:32:52.198787"]]
28417
+  (1.6ms) commit transaction
28418
+  (0.0ms) begin transaction
28419
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:32:52.201053"], ["updated_at", "2020-03-10 18:32:52.201053"]]
28420
+  (1.6ms) commit transaction
28421
+ Started GET "/users/noaction.csv" for 127.0.0.1 at 2020-03-10 12:32:52 -0600
28422
+ Processing by UsersController#noaction as CSV
28423
+ Rendering users/noaction.csv.csvrb
28424
+ User Load (0.1ms) SELECT "users".* FROM "users"
28425
+ Rendered users/noaction.csv.csvrb (Duration: 0.6ms | Allocations: 436)
28426
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.1ms | Allocations: 760)
28427
+ Started GET "/another.csv" for 127.0.0.1 at 2020-03-10 12:32:52 -0600
28428
+ Processing by HomeController#another as CSV
28429
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 133)
28430
+ Started GET "/another" for 127.0.0.1 at 2020-03-10 12:32:52 -0600
28431
+ Processing by HomeController#another as */*
28432
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 134)
28433
+ Started GET "/home/only_html" for 127.0.0.1 at 2020-03-10 12:32:52 -0600
28434
+ Processing by HomeController#only_html as */*
28435
+ Rendering home/only_html.html.erb within layouts/application
28436
+ Rendered home/only_html.html.erb within layouts/application (Duration: 0.1ms | Allocations: 88)
28437
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 536)
28438
+ User Load (0.1ms) SELECT "users".* FROM "users"
28439
+  (0.0ms) begin transaction
28440
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 636]]
28441
+  (2.5ms) commit transaction
28442
+  (0.0ms) begin transaction
28443
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 637]]
28444
+  (2.2ms) commit transaction
28445
+  (0.0ms) begin transaction
28446
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Responder"], ["last_name", "Bunny"], ["address", "1234 Right Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:32:52.223698"], ["updated_at", "2020-03-10 18:32:52.223698"]]
28447
+  (1.6ms) commit transaction
28448
+ Started GET "/users/export/638.csv" for 127.0.0.1 at 2020-03-10 12:32:52 -0600
28449
+ Processing by UsersController#export as CSV
28450
+ Parameters: {"id"=>"638"}
28451
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 638], ["LIMIT", 1]]
28452
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 286)
28453
+ User Load (0.0ms) SELECT "users".* FROM "users"
28454
+  (0.0ms) begin transaction
28455
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 638]]
28456
+  (1.9ms) commit transaction
28457
+  (0.0ms) begin transaction
28458
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:32:52.231232"], ["updated_at", "2020-03-10 18:32:52.231232"]]
28459
+  (1.8ms) commit transaction
28460
+  (0.0ms) begin transaction
28461
+ Like Create (0.1ms) INSERT INTO "likes" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Carrots"], ["user_id", 639], ["created_at", "2020-03-10 18:32:52.243146"], ["updated_at", "2020-03-10 18:32:52.243146"]]
28462
+  (1.8ms) commit transaction
28463
+  (0.0ms) begin transaction
28464
+ Like Create (0.1ms) INSERT INTO "likes" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Celery"], ["user_id", 639], ["created_at", "2020-03-10 18:32:52.246033"], ["updated_at", "2020-03-10 18:32:52.246033"]]
28465
+  (2.1ms) commit transaction
28466
+ Started GET "/users/639/likes.csv" for 127.0.0.1 at 2020-03-10 12:32:52 -0600
28467
+ Processing by LikesController#index as CSV
28468
+ Parameters: {"user_id"=>"639"}
28469
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 639], ["LIMIT", 1]]
28470
+ Rendering likes/index.csv.csvrb
28471
+ Like Load (0.1ms) SELECT "likes".* FROM "likes" WHERE "likes"."user_id" = ? [["user_id", 639]]
28472
+ Rendered likes/index.csv.csvrb (Duration: 0.8ms | Allocations: 601)
28473
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.1ms | Allocations: 1477)
28474
+ Started GET "/home.csv" for 127.0.0.1 at 2020-03-10 12:32:52 -0600
28475
+ Processing by HomeController#index as CSV
28476
+ Rendering home/index.csv.csvrb
28477
+ Rendered home/index.csv.csvrb (Duration: 0.2ms | Allocations: 168)
28478
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 618)
28479
+  (0.0ms) begin transaction
28480
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:32:52.254529"], ["updated_at", "2020-03-10 18:32:52.254529"]]
28481
+  (2.0ms) commit transaction
28482
+ Started GET "/users/640/send_instructions" for 127.0.0.1 at 2020-03-10 12:32:52 -0600
28483
+ Processing by UsersController#send_instructions as HTML
28484
+ Parameters: {"user_id"=>"640"}
28485
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 640], ["LIMIT", 1]]
28486
+ Rendering users/send_instructions.csv.csvrb
28487
+ Rendered users/send_instructions.csv.csvrb (Duration: 0.2ms | Allocations: 199)
28488
+ Rendering notifier/instructions.html.erb
28489
+ Rendered notifier/instructions.html.erb (Duration: 0.1ms | Allocations: 119)
28490
+ Notifier#instructions: processed outbound mail in 4.7ms
28491
+ Delivered mail 5e67dd5440d31_33d52b2048f8396c991c7@samps-dus.mail (7.7ms)
28492
+ Date: Tue, 10 Mar 2020 12:32:52 -0600
28493
+ From: noreply@company.com
28494
+ To: elmer@fudd.com
28495
+ Message-ID: <5e67dd5440d31_33d52b2048f8396c991c7@samps-dus.mail>
28496
+ Subject: Instructions
28497
+ Mime-Version: 1.0
28498
+ Content-Type: multipart/mixed;
28499
+ boundary="--==_mimepart_5e67dd54401d9_33d52b2048f8396c9909d";
28500
+ charset=UTF-8
28501
+ Content-Transfer-Encoding: 7bit
28502
+
28503
+
28504
+ ----==_mimepart_5e67dd54401d9_33d52b2048f8396c9909d
28505
+ Content-Type: text/html;
28506
+ charset=UTF-8
28507
+ Content-Transfer-Encoding: 7bit
28508
+
28509
+ <!DOCTYPE html>
28510
+ <html>
28511
+ <head>
28512
+ <meta content='text/html; charset=UTF-8' http-equiv='Content-Type' />
28513
+ </head>
28514
+ <body>
28515
+ <h1>Instructions</h1>
28516
+ <p>
28517
+ You have successfully signed up to example.com,
28518
+ your username is: elmer@fudd.com.<br/>
28519
+ </p>
28520
+ <p>Thanks for joining and have a great day!</p>
28521
+ </body>
28522
+ </html>
28523
+
28524
+ ----==_mimepart_5e67dd54401d9_33d52b2048f8396c9909d
28525
+ Content-Type: text/csv;
28526
+ charset=UTF-8
28527
+ Content-Transfer-Encoding: base64
28528
+ Content-Disposition: attachment;
28529
+ filename=user_640.csv
28530
+ Content-ID: <5e67dd54419e0_33d52b2048f8396c9926d@samps-dus.mail>
28531
+
28532
+ IjY0MCIsIkVsbWVyIiwiZWxtZXJAZnVkZC5jb20iDQoiIiwiSW5zdHJ1Y3Rp
28533
+ b25zIiwiIg0K
28534
+
28535
+ ----==_mimepart_5e67dd54401d9_33d52b2048f8396c9909d--
28536
+
28537
+ Rendering text template
28538
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
28539
+ Completed 200 OK in 15ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 8481)
28540
+  (0.5ms) SELECT sqlite_version(*)
28541
+ User Load (0.1ms) SELECT "users".* FROM "users"
28542
+  (0.0ms) begin transaction
28543
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 639]]
28544
+  (2.3ms) commit transaction
28545
+  (0.0ms) begin transaction
28546
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 640]]
28547
+  (2.2ms) commit transaction
28548
+  (0.0ms) begin transaction
28549
+ User Create (0.2ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Responder"], ["last_name", "Bunny"], ["address", "1234 Right Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:33:21.139175"], ["updated_at", "2020-03-10 18:33:21.139175"]]
28550
+  (1.6ms) commit transaction
28551
+ Started GET "/users/export/641.csv" for 127.0.0.1 at 2020-03-10 12:33:21 -0600
28552
+ Processing by UsersController#export as CSV
28553
+ Parameters: {"id"=>"641"}
28554
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 641], ["LIMIT", 1]]
28555
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 543)
28556
+ Started GET "/withpartial.csv" for 127.0.0.1 at 2020-03-10 12:33:21 -0600
28557
+ Processing by HomeController#withpartial as CSV
28558
+ Rendering home/withpartial.csv.csvrb
28559
+ Rendered home/_cover_sheet.csv.csvrb (Duration: 0.1ms | Allocations: 136)
28560
+ Rendered home/withpartial.csv.csvrb (Duration: 0.9ms | Allocations: 844)
28561
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms | Allocations: 2591)
28562
+ Started GET "/another" for 127.0.0.1 at 2020-03-10 12:33:21 -0600
28563
+ Processing by HomeController#another as */*
28564
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 134)
28565
+ Started GET "/home/only_html" for 127.0.0.1 at 2020-03-10 12:33:21 -0600
28566
+ Processing by HomeController#only_html as */*
28567
+ Rendering home/only_html.html.erb within layouts/application
28568
+ Rendered home/only_html.html.erb within layouts/application (Duration: 0.1ms | Allocations: 91)
28569
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms | Allocations: 1111)
28570
+ User Load (0.1ms) SELECT "users".* FROM "users"
28571
+  (0.0ms) begin transaction
28572
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 641]]
28573
+  (1.6ms) commit transaction
28574
+  (0.0ms) begin transaction
28575
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:33:21.165300"], ["updated_at", "2020-03-10 18:33:21.165300"]]
28576
+  (1.6ms) commit transaction
28577
+  (0.0ms) begin transaction
28578
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:33:21.167636"], ["updated_at", "2020-03-10 18:33:21.167636"]]
28579
+  (1.6ms) commit transaction
28580
+ Started GET "/users/noaction.csv" for 127.0.0.1 at 2020-03-10 12:33:21 -0600
28581
+ Processing by UsersController#noaction as CSV
28582
+ Rendering users/noaction.csv.csvrb
28583
+ User Load (0.1ms) SELECT "users".* FROM "users"
28584
+ Rendered users/noaction.csv.csvrb (Duration: 0.6ms | Allocations: 447)
28585
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.1ms | Allocations: 771)
28586
+ Started GET "/another.csv" for 127.0.0.1 at 2020-03-10 12:33:21 -0600
28587
+ Processing by HomeController#another as CSV
28588
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 131)
28589
+ Started GET "/another" for 127.0.0.1 at 2020-03-10 12:33:21 -0600
28590
+ Processing by HomeController#another as HTML
28591
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 131)
28592
+ User Load (0.1ms) SELECT "users".* FROM "users"
28593
+  (0.0ms) begin transaction
28594
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 642]]
28595
+  (1.7ms) commit transaction
28596
+  (0.0ms) begin transaction
28597
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 643]]
28598
+  (1.6ms) commit transaction
28599
+  (0.0ms) begin transaction
28600
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:33:21.189035"], ["updated_at", "2020-03-10 18:33:21.189035"]]
28601
+  (1.7ms) commit transaction
28602
+  (0.0ms) begin transaction
28603
+ Like Create (0.1ms) INSERT INTO "likes" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Carrots"], ["user_id", 644], ["created_at", "2020-03-10 18:33:21.200685"], ["updated_at", "2020-03-10 18:33:21.200685"]]
28604
+  (2.2ms) commit transaction
28605
+  (0.0ms) begin transaction
28606
+ Like Create (0.1ms) INSERT INTO "likes" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Celery"], ["user_id", 644], ["created_at", "2020-03-10 18:33:21.203868"], ["updated_at", "2020-03-10 18:33:21.203868"]]
28607
+  (1.5ms) commit transaction
28608
+ Started GET "/users/644/likes.csv" for 127.0.0.1 at 2020-03-10 12:33:21 -0600
28609
+ Processing by LikesController#index as CSV
28610
+ Parameters: {"user_id"=>"644"}
28611
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 644], ["LIMIT", 1]]
28612
+ Rendering likes/index.csv.csvrb
28613
+ Like Load (0.1ms) SELECT "likes".* FROM "likes" WHERE "likes"."user_id" = ? [["user_id", 644]]
28614
+ Rendered likes/index.csv.csvrb (Duration: 0.9ms | Allocations: 602)
28615
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.2ms | Allocations: 1640)
28616
+ User Load (0.0ms) SELECT "users".* FROM "users"
28617
+  (0.0ms) begin transaction
28618
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 644]]
28619
+  (1.8ms) commit transaction
28620
+  (0.0ms) begin transaction
28621
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Responder"], ["last_name", "Bunny"], ["address", "1234 Right Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:33:21.213789"], ["updated_at", "2020-03-10 18:33:21.213789"]]
28622
+  (1.7ms) commit transaction
28623
+ Started GET "/users/645.csv" for 127.0.0.1 at 2020-03-10 12:33:21 -0600
28624
+ Processing by UsersController#show as CSV
28625
+ Parameters: {"id"=>"645"}
28626
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 645], ["LIMIT", 1]]
28627
+ Rendering users/respond_with.csv.csvrb
28628
+ Rendered users/respond_with.csv.csvrb (Duration: 0.2ms | Allocations: 165)
28629
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 643)
28630
+ User Load (0.1ms) SELECT "users".* FROM "users"
28631
+  (0.0ms) begin transaction
28632
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 645]]
28633
+  (1.6ms) commit transaction
28634
+  (0.0ms) begin transaction
28635
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:33:21.221154"], ["updated_at", "2020-03-10 18:33:21.221154"]]
28636
+  (1.6ms) commit transaction
28637
+ Started GET "/users/646/render_elsewhere.csv" for 127.0.0.1 at 2020-03-10 12:33:21 -0600
28638
+ Processing by LikesController#render_elsewhere as CSV
28639
+ Parameters: {"user_id"=>"646"}
28640
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 646], ["LIMIT", 1]]
28641
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 252)
28642
+ User Load (0.0ms) SELECT "users".* FROM "users"
28643
+ Started GET "/home/render_elsewhere.csv?type=5" for 127.0.0.1 at 2020-03-10 12:33:21 -0600
28644
+ Processing by HomeController#render_elsewhere as CSV
28645
+ Parameters: {"type"=>"5"}
28646
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 143)
28647
+ Started GET "/home/render_elsewhere.csv?type=4" for 127.0.0.1 at 2020-03-10 12:33:21 -0600
28648
+ Processing by HomeController#render_elsewhere as CSV
28649
+ Parameters: {"type"=>"4"}
28650
+ Rendering users/index.csv.csvrb
28651
+ User Load (0.0ms) SELECT "users".* FROM "users"
28652
+ Rendered users/index.csv.csvrb (Duration: 0.5ms | Allocations: 316)
28653
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms | Allocations: 729)
28654
+ Started GET "/home/render_elsewhere.csv?type=3" for 127.0.0.1 at 2020-03-10 12:33:21 -0600
28655
+ Processing by HomeController#render_elsewhere as CSV
28656
+ Parameters: {"type"=>"3"}
28657
+ Rendering users/index.csv.csvrb
28658
+ User Load (0.0ms) SELECT "users".* FROM "users"
28659
+ Rendered users/index.csv.csvrb (Duration: 0.3ms | Allocations: 251)
28660
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 532)
28661
+ Started GET "/home/render_elsewhere.csv?type=1" for 127.0.0.1 at 2020-03-10 12:33:21 -0600
28662
+ Processing by HomeController#render_elsewhere as CSV
28663
+ Parameters: {"type"=>"1"}
28664
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms | Allocations: 147)
28665
+ User Load (0.0ms) SELECT "users".* FROM "users"
28666
+ User Load (0.0ms) SELECT "users".* FROM "users"
28667
+  (0.0ms) begin transaction
28668
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 646]]
28669
+  (1.7ms) commit transaction
28670
+  (0.0ms) begin transaction
28671
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:33:21.234098"], ["updated_at", "2020-03-10 18:33:21.234098"]]
28672
+  (1.8ms) commit transaction
28673
+  (0.0ms) begin transaction
28674
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:33:21.236651"], ["updated_at", "2020-03-10 18:33:21.236651"]]
28675
+  (2.0ms) commit transaction
28676
+ Started GET "/users.csv" for 127.0.0.1 at 2020-03-10 12:33:21 -0600
28677
+ Processing by UsersController#index as CSV
28678
+ Rendering users/index.csv.csvrb
28679
+ User Load (0.1ms) SELECT "users".* FROM "users"
28680
+ Rendered users/index.csv.csvrb (Duration: 0.5ms | Allocations: 371)
28681
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 624)
28682
+ Started GET "/useheader.csv?set_direct=true" for 127.0.0.1 at 2020-03-10 12:33:21 -0600
28683
+ Processing by HomeController#useheader as CSV
28684
+ Parameters: {"set_direct"=>"true"}
28685
+ Rendering home/useheader.csv.csvrb
28686
+ Rendered home/useheader.csv.csvrb (Duration: 0.2ms | Allocations: 165)
28687
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 632)
28688
+  (0.0ms) begin transaction
28689
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:33:21.244152"], ["updated_at", "2020-03-10 18:33:21.244152"]]
28690
+  (1.9ms) commit transaction
28691
+ Started GET "/" for 127.0.0.1 at 2020-03-10 12:33:21 -0600
28692
+ Processing by HomeController#index as HTML
28693
+ Rendering home/index.html.erb within layouts/application
28694
+ Rendered home/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 251)
28695
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 690)
28696
+ Started GET "/home.csv" for 127.0.0.1 at 2020-03-10 12:33:21 -0600
28697
+ Processing by HomeController#index as CSV
28698
+ Rendering home/index.csv.csvrb
28699
+ Rendered home/index.csv.csvrb (Duration: 0.2ms | Allocations: 168)
28700
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 618)
28701
+ Started GET "/useheader.csv" for 127.0.0.1 at 2020-03-10 12:33:21 -0600
28702
+ Processing by HomeController#useheader as CSV
28703
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 176)
28704
+  (0.0ms) begin transaction
28705
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:33:21.254585"], ["updated_at", "2020-03-10 18:33:21.254585"]]
28706
+  (1.6ms) commit transaction
28707
+ Started GET "/users/650/send_instructions" for 127.0.0.1 at 2020-03-10 12:33:21 -0600
28708
+ Processing by UsersController#send_instructions as HTML
28709
+ Parameters: {"user_id"=>"650"}
28710
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 650], ["LIMIT", 1]]
28711
+ Rendering users/send_instructions.csv.csvrb
28712
+ Rendered users/send_instructions.csv.csvrb (Duration: 0.2ms | Allocations: 199)
28713
+ Rendering notifier/instructions.html.erb
28714
+ Rendered notifier/instructions.html.erb (Duration: 0.1ms | Allocations: 119)
28715
+ Notifier#instructions: processed outbound mail in 3.6ms
28716
+ Delivered mail 5e67dd714069d_33f12aaeac18397466012@samps-dus.mail (3.2ms)
28717
+ Date: Tue, 10 Mar 2020 12:33:21 -0600
28718
+ From: noreply@company.com
28719
+ To: elmer@fudd.com
28720
+ Message-ID: <5e67dd714069d_33f12aaeac18397466012@samps-dus.mail>
28721
+ Subject: Instructions
28722
+ Mime-Version: 1.0
28723
+ Content-Type: multipart/mixed;
28724
+ boundary="--==_mimepart_5e67dd714018d_33f12aaeac18397465927";
28725
+ charset=UTF-8
28726
+ Content-Transfer-Encoding: 7bit
28727
+
28728
+
28729
+ ----==_mimepart_5e67dd714018d_33f12aaeac18397465927
28730
+ Content-Type: text/html;
28731
+ charset=UTF-8
28732
+ Content-Transfer-Encoding: 7bit
28733
+
28734
+ <!DOCTYPE html>
28735
+ <html>
28736
+ <head>
28737
+ <meta content='text/html; charset=UTF-8' http-equiv='Content-Type' />
28738
+ </head>
28739
+ <body>
28740
+ <h1>Instructions</h1>
28741
+ <p>
28742
+ You have successfully signed up to example.com,
28743
+ your username is: elmer@fudd.com.<br/>
28744
+ </p>
28745
+ <p>Thanks for joining and have a great day!</p>
28746
+ </body>
28747
+ </html>
28748
+
28749
+ ----==_mimepart_5e67dd714018d_33f12aaeac18397465927
28750
+ Content-Type: text/csv;
28751
+ charset=UTF-8
28752
+ Content-Transfer-Encoding: base64
28753
+ Content-Disposition: attachment;
28754
+ filename=user_650.csv
28755
+ Content-ID: <5e67dd7140ac9_33f12aaeac183974661f1@samps-dus.mail>
28756
+
28757
+ IjY1MCIsIkVsbWVyIiwiZWxtZXJAZnVkZC5jb20iDQoiIiwiSW5zdHJ1Y3Rp
28758
+ b25zIiwiIg0K
28759
+
28760
+ ----==_mimepart_5e67dd714018d_33f12aaeac18397465927--
28761
+
28762
+ Rendering text template
28763
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
28764
+ Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.1ms | Allocations: 8480)
28765
+  (0.5ms) SELECT sqlite_version(*)
28766
+  (0.0ms) begin transaction
28767
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:35:15.078704"], ["updated_at", "2020-03-10 18:35:15.078704"]]
28768
+  (54.6ms) commit transaction
28769
+ Started GET "/users/651/send_instructions" for 127.0.0.1 at 2020-03-10 12:35:15 -0600
28770
+ Processing by UsersController#send_instructions as HTML
28771
+ Parameters: {"user_id"=>"651"}
28772
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 651], ["LIMIT", 1]]
28773
+ Rendering users/send_instructions.csv.csvrb
28774
+ Rendered users/send_instructions.csv.csvrb (Duration: 0.8ms | Allocations: 411)
28775
+ Rendering notifier/instructions.html.erb
28776
+ Rendered notifier/instructions.html.erb (Duration: 0.2ms | Allocations: 128)
28777
+ Notifier#instructions: processed outbound mail in 20.1ms
28778
+ Delivered mail 5e67dde32b9b1_34882ab16279b9705112@samps-dus.mail (4.6ms)
28779
+ Date: Tue, 10 Mar 2020 12:35:15 -0600
28780
+ From: noreply@company.com
28781
+ To: elmer@fudd.com
28782
+ Message-ID: <5e67dde32b9b1_34882ab16279b9705112@samps-dus.mail>
28783
+ Subject: Instructions
28784
+ Mime-Version: 1.0
28785
+ Content-Type: multipart/mixed;
28786
+ boundary="--==_mimepart_5e67dde32b1c1_34882ab16279b97051082";
28787
+ charset=UTF-8
28788
+ Content-Transfer-Encoding: 7bit
28789
+
28790
+
28791
+ ----==_mimepart_5e67dde32b1c1_34882ab16279b97051082
28792
+ Content-Type: text/html;
28793
+ charset=UTF-8
28794
+ Content-Transfer-Encoding: 7bit
28795
+
28796
+ <!DOCTYPE html>
28797
+ <html>
28798
+ <head>
28799
+ <meta content='text/html; charset=UTF-8' http-equiv='Content-Type' />
28800
+ </head>
28801
+ <body>
28802
+ <h1>Instructions</h1>
28803
+ <p>
28804
+ You have successfully signed up to example.com,
28805
+ your username is: elmer@fudd.com.<br/>
28806
+ </p>
28807
+ <p>Thanks for joining and have a great day!</p>
28808
+ </body>
28809
+ </html>
28810
+
28811
+ ----==_mimepart_5e67dde32b1c1_34882ab16279b97051082
28812
+ Content-Type: text/csv;
28813
+ charset=UTF-8
28814
+ Content-Transfer-Encoding: base64
28815
+ Content-Disposition: attachment;
28816
+ filename=user_651.csv
28817
+ Content-ID: <5e67dde32c005_34882ab16279b97051271@samps-dus.mail>
28818
+
28819
+ IjY1MSIsIkVsbWVyIiwiZWxtZXJAZnVkZC5jb20iDQoiIiwiSW5zdHJ1Y3Rp
28820
+ b25zIiwiIg0K
28821
+
28822
+ ----==_mimepart_5e67dde32b1c1_34882ab16279b97051082--
28823
+
28824
+ Rendering text template
28825
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
28826
+ Completed 200 OK in 31ms (Views: 0.6ms | ActiveRecord: 0.2ms | Allocations: 10731)
28827
+ User Load (0.1ms) SELECT "users".* FROM "users"
28828
+  (0.0ms) begin transaction
28829
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 647]]
28830
+  (2.3ms) commit transaction
28831
+  (0.0ms) begin transaction
28832
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 648]]
28833
+  (1.7ms) commit transaction
28834
+  (0.0ms) begin transaction
28835
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 649]]
28836
+  (1.7ms) commit transaction
28837
+  (0.0ms) begin transaction
28838
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 650]]
28839
+  (1.9ms) commit transaction
28840
+  (0.0ms) begin transaction
28841
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 651]]
28842
+  (1.9ms) commit transaction
28843
+  (0.0ms) begin transaction
28844
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:35:15.196822"], ["updated_at", "2020-03-10 18:35:15.196822"]]
28845
+  (1.6ms) commit transaction
28846
+  (0.0ms) begin transaction
28847
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:35:15.199089"], ["updated_at", "2020-03-10 18:35:15.199089"]]
28848
+  (1.5ms) commit transaction
28849
+ Started GET "/users/noaction.csv" for 127.0.0.1 at 2020-03-10 12:35:15 -0600
28850
+ Processing by UsersController#noaction as CSV
28851
+ Rendering users/noaction.csv.csvrb
28852
+ User Load (0.1ms) SELECT "users".* FROM "users"
28853
+ Rendered users/noaction.csv.csvrb (Duration: 0.6ms | Allocations: 445)
28854
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.1ms | Allocations: 782)
28855
+ Started GET "/another.csv" for 127.0.0.1 at 2020-03-10 12:35:15 -0600
28856
+ Processing by HomeController#another as CSV
28857
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 138)
28858
+ User Load (0.1ms) SELECT "users".* FROM "users"
28859
+  (0.0ms) begin transaction
28860
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 652]]
28861
+  (2.8ms) commit transaction
28862
+  (0.0ms) begin transaction
28863
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 653]]
28864
+  (2.3ms) commit transaction
28865
+  (0.0ms) begin transaction
28866
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:35:15.214548"], ["updated_at", "2020-03-10 18:35:15.214548"]]
28867
+  (1.7ms) commit transaction
28868
+  (0.0ms) begin transaction
28869
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:35:15.217030"], ["updated_at", "2020-03-10 18:35:15.217030"]]
28870
+  (1.5ms) commit transaction
28871
+ Started GET "/users.csv" for 127.0.0.1 at 2020-03-10 12:35:15 -0600
28872
+ Processing by UsersController#index as CSV
28873
+ Rendering users/index.csv.csvrb
28874
+ User Load (0.1ms) SELECT "users".* FROM "users"
28875
+ Rendered users/index.csv.csvrb (Duration: 0.6ms | Allocations: 436)
28876
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.1ms | Allocations: 836)
28877
+ User Load (0.1ms) SELECT "users".* FROM "users"
28878
+  (0.0ms) begin transaction
28879
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 654]]
28880
+  (1.6ms) commit transaction
28881
+  (0.0ms) begin transaction
28882
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 655]]
28883
+  (1.6ms) commit transaction
28884
+  (0.0ms) begin transaction
28885
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:35:15.226355"], ["updated_at", "2020-03-10 18:35:15.226355"]]
28886
+  (1.6ms) commit transaction
28887
+ Started GET "/users/656/render_elsewhere.csv" for 127.0.0.1 at 2020-03-10 12:35:15 -0600
28888
+ Processing by LikesController#render_elsewhere as CSV
28889
+ Parameters: {"user_id"=>"656"}
28890
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 656], ["LIMIT", 1]]
28891
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 255)
28892
+ User Load (0.0ms) SELECT "users".* FROM "users"
28893
+ Started GET "/home/render_elsewhere.csv?type=5" for 127.0.0.1 at 2020-03-10 12:35:15 -0600
28894
+ Processing by HomeController#render_elsewhere as CSV
28895
+ Parameters: {"type"=>"5"}
28896
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 143)
28897
+ Started GET "/home/render_elsewhere.csv?type=4" for 127.0.0.1 at 2020-03-10 12:35:15 -0600
28898
+ Processing by HomeController#render_elsewhere as CSV
28899
+ Parameters: {"type"=>"4"}
28900
+ Rendering users/index.csv.csvrb
28901
+ User Load (0.1ms) SELECT "users".* FROM "users"
28902
+ Rendered users/index.csv.csvrb (Duration: 0.5ms | Allocations: 251)
28903
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.1ms | Allocations: 1396)
28904
+ Started GET "/home/render_elsewhere.csv?type=3" for 127.0.0.1 at 2020-03-10 12:35:15 -0600
28905
+ Processing by HomeController#render_elsewhere as CSV
28906
+ Parameters: {"type"=>"3"}
28907
+ Rendering users/index.csv.csvrb
28908
+ User Load (0.1ms) SELECT "users".* FROM "users"
28909
+ Rendered users/index.csv.csvrb (Duration: 0.5ms | Allocations: 251)
28910
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.1ms | Allocations: 531)
28911
+ Started GET "/home/render_elsewhere.csv?type=1" for 127.0.0.1 at 2020-03-10 12:35:15 -0600
28912
+ Processing by HomeController#render_elsewhere as CSV
28913
+ Parameters: {"type"=>"1"}
28914
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 147)
28915
+ User Load (0.1ms) SELECT "users".* FROM "users"
28916
+ Started GET "/another" for 127.0.0.1 at 2020-03-10 12:35:15 -0600
28917
+ Processing by HomeController#another as HTML
28918
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 131)
28919
+  (0.0ms) begin transaction
28920
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:35:15.249610"], ["updated_at", "2020-03-10 18:35:15.249610"]]
28921
+  (1.6ms) commit transaction
28922
+ Started GET "/" for 127.0.0.1 at 2020-03-10 12:35:15 -0600
28923
+ Processing by HomeController#index as HTML
28924
+ Rendering home/index.html.erb within layouts/application
28925
+ Rendered home/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 250)
28926
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms | Allocations: 1250)
28927
+ User Load (0.1ms) SELECT "users".* FROM "users"
28928
+  (0.0ms) begin transaction
28929
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 656]]
28930
+  (2.9ms) commit transaction
28931
+  (0.0ms) begin transaction
28932
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 657]]
28933
+  (2.1ms) commit transaction
28934
+  (0.0ms) begin transaction
28935
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:35:15.266726"], ["updated_at", "2020-03-10 18:35:15.266726"]]
28936
+  (1.7ms) commit transaction
28937
+  (0.0ms) begin transaction
28938
+ Like Create (0.1ms) INSERT INTO "likes" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Carrots"], ["user_id", 658], ["created_at", "2020-03-10 18:35:15.288432"], ["updated_at", "2020-03-10 18:35:15.288432"]]
28939
+  (1.7ms) commit transaction
28940
+  (0.0ms) begin transaction
28941
+ Like Create (0.1ms) INSERT INTO "likes" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Celery"], ["user_id", 658], ["created_at", "2020-03-10 18:35:15.291655"], ["updated_at", "2020-03-10 18:35:15.291655"]]
28942
+  (1.7ms) commit transaction
28943
+ Started GET "/users/658/likes.csv" for 127.0.0.1 at 2020-03-10 12:35:15 -0600
28944
+ Processing by LikesController#index as CSV
28945
+ Parameters: {"user_id"=>"658"}
28946
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 658], ["LIMIT", 1]]
28947
+ Rendering likes/index.csv.csvrb
28948
+ Like Load (0.1ms) SELECT "likes".* FROM "likes" WHERE "likes"."user_id" = ? [["user_id", 658]]
28949
+ Rendered likes/index.csv.csvrb (Duration: 1.5ms | Allocations: 601)
28950
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.1ms | Allocations: 1477)
28951
+ Started GET "/useheader.csv?set_direct=true" for 127.0.0.1 at 2020-03-10 12:35:15 -0600
28952
+ Processing by HomeController#useheader as CSV
28953
+ Parameters: {"set_direct"=>"true"}
28954
+ Rendering home/useheader.csv.csvrb
28955
+ Rendered home/useheader.csv.csvrb (Duration: 0.2ms | Allocations: 169)
28956
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 640)
28957
+ Started GET "/home.csv" for 127.0.0.1 at 2020-03-10 12:35:15 -0600
28958
+ Processing by HomeController#index as CSV
28959
+ Rendering home/index.csv.csvrb
28960
+ Rendered home/index.csv.csvrb (Duration: 0.2ms | Allocations: 168)
28961
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 620)
28962
+ Started GET "/withpartial.csv" for 127.0.0.1 at 2020-03-10 12:35:15 -0600
28963
+ Processing by HomeController#withpartial as CSV
28964
+ Rendering home/withpartial.csv.csvrb
28965
+ Rendered home/_cover_sheet.csv.csvrb (Duration: 0.1ms | Allocations: 136)
28966
+ Rendered home/withpartial.csv.csvrb (Duration: 0.5ms | Allocations: 499)
28967
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms | Allocations: 924)
28968
+ User Load (0.1ms) SELECT "users".* FROM "users"
28969
+  (0.0ms) begin transaction
28970
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 658]]
28971
+  (2.0ms) commit transaction
28972
+  (0.0ms) begin transaction
28973
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Responder"], ["last_name", "Bunny"], ["address", "1234 Right Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:35:15.317131"], ["updated_at", "2020-03-10 18:35:15.317131"]]
28974
+  (1.6ms) commit transaction
28975
+ Started GET "/users/659.csv" for 127.0.0.1 at 2020-03-10 12:35:15 -0600
28976
+ Processing by UsersController#show as CSV
28977
+ Parameters: {"id"=>"659"}
28978
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 659], ["LIMIT", 1]]
28979
+ Rendering users/respond_with.csv.csvrb
28980
+ Rendered users/respond_with.csv.csvrb (Duration: 0.2ms | Allocations: 165)
28981
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 643)
28982
+ Started GET "/another" for 127.0.0.1 at 2020-03-10 12:35:15 -0600
28983
+ Processing by HomeController#another as */*
28984
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 134)
28985
+ Started GET "/home/only_html" for 127.0.0.1 at 2020-03-10 12:35:15 -0600
28986
+ Processing by HomeController#only_html as */*
28987
+ Rendering home/only_html.html.erb within layouts/application
28988
+ Rendered home/only_html.html.erb within layouts/application (Duration: 0.1ms | Allocations: 85)
28989
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 533)
28990
+ User Load (0.1ms) SELECT "users".* FROM "users"
28991
+  (0.0ms) begin transaction
28992
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 659]]
28993
+  (2.0ms) commit transaction
28994
+  (0.0ms) begin transaction
28995
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Responder"], ["last_name", "Bunny"], ["address", "1234 Right Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:35:15.328191"], ["updated_at", "2020-03-10 18:35:15.328191"]]
28996
+  (2.6ms) commit transaction
28997
+ Started GET "/users/export/660.csv" for 127.0.0.1 at 2020-03-10 12:35:15 -0600
28998
+ Processing by UsersController#export as CSV
28999
+ Parameters: {"id"=>"660"}
29000
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 660], ["LIMIT", 1]]
29001
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 286)
29002
+ Started GET "/useheader.csv" for 127.0.0.1 at 2020-03-10 12:35:15 -0600
29003
+ Processing by HomeController#useheader as CSV
29004
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 176)
29005
+  (0.5ms) SELECT sqlite_version(*)
29006
+  (0.0ms) begin transaction
29007
+ User Create (0.2ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:36:02.004384"], ["updated_at", "2020-03-10 18:36:02.004384"]]
29008
+  (5.0ms) commit transaction
29009
+ Started GET "/users/661/send_instructions" for 127.0.0.1 at 2020-03-10 12:36:02 -0600
29010
+ Processing by UsersController#send_instructions as HTML
29011
+ Parameters: {"user_id"=>"661"}
29012
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 661], ["LIMIT", 1]]
29013
+ Rendering users/send_instructions.csv.csvrb
29014
+ Rendered users/send_instructions.csv.csvrb (Duration: 0.6ms | Allocations: 551)
29015
+ Rendering notifier/instructions.html.erb
29016
+ Rendered notifier/instructions.html.erb (Duration: 0.2ms | Allocations: 128)
29017
+ Notifier#instructions: processed outbound mail in 5.5ms
29018
+ Delivered mail 5e67de127cca_34b22b0cb2e7595c4787f@samps-dus.mail (3.3ms)
29019
+ Date: Tue, 10 Mar 2020 12:36:02 -0600
29020
+ From: noreply@company.com
29021
+ To: elmer@fudd.com
29022
+ Message-ID: <5e67de127cca_34b22b0cb2e7595c4787f@samps-dus.mail>
29023
+ Subject: Instructions
29024
+ Mime-Version: 1.0
29025
+ Content-Type: multipart/mixed;
29026
+ boundary="--==_mimepart_5e67de1277ba_34b22b0cb2e7595c47779";
29027
+ charset=UTF-8
29028
+ Content-Transfer-Encoding: 7bit
29029
+
29030
+
29031
+ ----==_mimepart_5e67de1277ba_34b22b0cb2e7595c47779
29032
+ Content-Type: text/html;
29033
+ charset=UTF-8
29034
+ Content-Transfer-Encoding: 7bit
29035
+
29036
+ <!DOCTYPE html>
29037
+ <html>
29038
+ <head>
29039
+ <meta content='text/html; charset=UTF-8' http-equiv='Content-Type' />
29040
+ </head>
29041
+ <body>
29042
+ <h1>Instructions</h1>
29043
+ <p>
29044
+ You have successfully signed up to example.com,
29045
+ your username is: elmer@fudd.com.<br/>
29046
+ </p>
29047
+ <p>Thanks for joining and have a great day!</p>
29048
+ </body>
29049
+ </html>
29050
+
29051
+ ----==_mimepart_5e67de1277ba_34b22b0cb2e7595c47779
29052
+ Content-Type: text/csv;
29053
+ charset=UTF-8
29054
+ Content-Transfer-Encoding: base64
29055
+ Content-Disposition: attachment;
29056
+ filename=user_661.csv
29057
+ Content-ID: <5e67de12814a_34b22b0cb2e7595c479e5@samps-dus.mail>
29058
+
29059
+ IjY2MSIsIkVsbWVyIiwiZWxtZXJAZnVkZC5jb20iDQoiIiwiSW5zdHJ1Y3Rp
29060
+ b25zIiwiIg0K
29061
+
29062
+ ----==_mimepart_5e67de1277ba_34b22b0cb2e7595c47779--
29063
+
29064
+ Rendering text template
29065
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
29066
+ Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 10866)
29067
+ Started GET "/home.csv" for 127.0.0.1 at 2020-03-10 12:36:02 -0600
29068
+ Processing by HomeController#index as CSV
29069
+ Rendering home/index.csv.csvrb
29070
+ Rendered home/index.csv.csvrb (Duration: 0.2ms | Allocations: 175)
29071
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms | Allocations: 1674)
29072
+ Started GET "/useheader.csv" for 127.0.0.1 at 2020-03-10 12:36:02 -0600
29073
+ Processing by HomeController#useheader as CSV
29074
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 180)
29075
+ User Load (0.1ms) SELECT "users".* FROM "users"
29076
+  (0.0ms) begin transaction
29077
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 660]]
29078
+  (2.3ms) commit transaction
29079
+  (0.0ms) begin transaction
29080
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 661]]
29081
+  (2.9ms) commit transaction
29082
+  (0.0ms) begin transaction
29083
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Responder"], ["last_name", "Bunny"], ["address", "1234 Right Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:36:02.051431"], ["updated_at", "2020-03-10 18:36:02.051431"]]
29084
+  (1.6ms) commit transaction
29085
+ Started GET "/users/export/662.csv" for 127.0.0.1 at 2020-03-10 12:36:02 -0600
29086
+ Processing by UsersController#export as CSV
29087
+ Parameters: {"id"=>"662"}
29088
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 662], ["LIMIT", 1]]
29089
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 286)
29090
+ Started GET "/useheader.csv?set_direct=true" for 127.0.0.1 at 2020-03-10 12:36:02 -0600
29091
+ Processing by HomeController#useheader as CSV
29092
+ Parameters: {"set_direct"=>"true"}
29093
+ Rendering home/useheader.csv.csvrb
29094
+ Rendered home/useheader.csv.csvrb (Duration: 0.3ms | Allocations: 169)
29095
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 636)
29096
+ Started GET "/withpartial.csv" for 127.0.0.1 at 2020-03-10 12:36:02 -0600
29097
+ Processing by HomeController#withpartial as CSV
29098
+ Rendering home/withpartial.csv.csvrb
29099
+ Rendered home/_cover_sheet.csv.csvrb (Duration: 0.2ms | Allocations: 140)
29100
+ Rendered home/withpartial.csv.csvrb (Duration: 0.6ms | Allocations: 507)
29101
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms | Allocations: 932)
29102
+ User Load (0.1ms) SELECT "users".* FROM "users"
29103
+  (0.0ms) begin transaction
29104
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 662]]
29105
+  (1.9ms) commit transaction
29106
+  (0.0ms) begin transaction
29107
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:36:02.066056"], ["updated_at", "2020-03-10 18:36:02.066056"]]
29108
+  (1.6ms) commit transaction
29109
+  (0.0ms) begin transaction
29110
+ Like Create (0.1ms) INSERT INTO "likes" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Carrots"], ["user_id", 663], ["created_at", "2020-03-10 18:36:02.079880"], ["updated_at", "2020-03-10 18:36:02.079880"]]
29111
+  (1.8ms) commit transaction
29112
+  (0.0ms) begin transaction
29113
+ Like Create (0.1ms) INSERT INTO "likes" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Celery"], ["user_id", 663], ["created_at", "2020-03-10 18:36:02.082556"], ["updated_at", "2020-03-10 18:36:02.082556"]]
29114
+  (1.8ms) commit transaction
29115
+ Started GET "/users/663/likes.csv" for 127.0.0.1 at 2020-03-10 12:36:02 -0600
29116
+ Processing by LikesController#index as CSV
29117
+ Parameters: {"user_id"=>"663"}
29118
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 663], ["LIMIT", 1]]
29119
+ Rendering likes/index.csv.csvrb
29120
+ Like Load (0.1ms) SELECT "likes".* FROM "likes" WHERE "likes"."user_id" = ? [["user_id", 663]]
29121
+ Rendered likes/index.csv.csvrb (Duration: 0.9ms | Allocations: 606)
29122
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.2ms | Allocations: 1635)
29123
+ Started GET "/another.csv" for 127.0.0.1 at 2020-03-10 12:36:02 -0600
29124
+ Processing by HomeController#another as CSV
29125
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 131)
29126
+ User Load (0.1ms) SELECT "users".* FROM "users"
29127
+  (0.0ms) begin transaction
29128
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 663]]
29129
+  (2.0ms) commit transaction
29130
+  (0.0ms) begin transaction
29131
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:36:02.100650"], ["updated_at", "2020-03-10 18:36:02.100650"]]
29132
+  (1.8ms) commit transaction
29133
+  (0.0ms) begin transaction
29134
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:36:02.103261"], ["updated_at", "2020-03-10 18:36:02.103261"]]
29135
+  (2.7ms) commit transaction
29136
+ Started GET "/users/noaction.csv" for 127.0.0.1 at 2020-03-10 12:36:02 -0600
29137
+ Processing by UsersController#noaction as CSV
29138
+ Rendering users/noaction.csv.csvrb
29139
+ User Load (0.1ms) SELECT "users".* FROM "users"
29140
+ Rendered users/noaction.csv.csvrb (Duration: 0.7ms | Allocations: 449)
29141
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms | Allocations: 774)
29142
+ User Load (0.1ms) SELECT "users".* FROM "users"
29143
+  (0.0ms) begin transaction
29144
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 664]]
29145
+  (1.5ms) commit transaction
29146
+  (0.0ms) begin transaction
29147
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 665]]
29148
+  (1.7ms) commit transaction
29149
+  (0.0ms) begin transaction
29150
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:36:02.114291"], ["updated_at", "2020-03-10 18:36:02.114291"]]
29151
+  (1.5ms) commit transaction
29152
+ Started GET "/users/666/render_elsewhere.csv" for 127.0.0.1 at 2020-03-10 12:36:02 -0600
29153
+ Processing by LikesController#render_elsewhere as CSV
29154
+ Parameters: {"user_id"=>"666"}
29155
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 666], ["LIMIT", 1]]
29156
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 252)
29157
+ User Load (0.1ms) SELECT "users".* FROM "users"
29158
+ Started GET "/home/render_elsewhere.csv?type=5" for 127.0.0.1 at 2020-03-10 12:36:02 -0600
29159
+ Processing by HomeController#render_elsewhere as CSV
29160
+ Parameters: {"type"=>"5"}
29161
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 143)
29162
+ Started GET "/home/render_elsewhere.csv?type=4" for 127.0.0.1 at 2020-03-10 12:36:02 -0600
29163
+ Processing by HomeController#render_elsewhere as CSV
29164
+ Parameters: {"type"=>"4"}
29165
+ Rendering users/index.csv.csvrb
29166
+ User Load (0.1ms) SELECT "users".* FROM "users"
29167
+ Rendered users/index.csv.csvrb (Duration: 0.9ms | Allocations: 320)
29168
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.1ms | Allocations: 733)
29169
+ Started GET "/home/render_elsewhere.csv?type=3" for 127.0.0.1 at 2020-03-10 12:36:02 -0600
29170
+ Processing by HomeController#render_elsewhere as CSV
29171
+ Parameters: {"type"=>"3"}
29172
+ Rendering users/index.csv.csvrb
29173
+ User Load (0.1ms) SELECT "users".* FROM "users"
29174
+ Rendered users/index.csv.csvrb (Duration: 0.5ms | Allocations: 251)
29175
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.1ms | Allocations: 532)
29176
+ Started GET "/home/render_elsewhere.csv?type=1" for 127.0.0.1 at 2020-03-10 12:36:02 -0600
29177
+ Processing by HomeController#render_elsewhere as CSV
29178
+ Parameters: {"type"=>"1"}
29179
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 147)
29180
+ User Load (0.1ms) SELECT "users".* FROM "users"
29181
+ User Load (0.1ms) SELECT "users".* FROM "users"
29182
+  (0.0ms) begin transaction
29183
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 666]]
29184
+  (1.7ms) commit transaction
29185
+  (0.0ms) begin transaction
29186
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:36:02.130074"], ["updated_at", "2020-03-10 18:36:02.130074"]]
29187
+  (2.1ms) commit transaction
29188
+  (0.0ms) begin transaction
29189
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:36:02.132929"], ["updated_at", "2020-03-10 18:36:02.132929"]]
29190
+  (1.5ms) commit transaction
29191
+ Started GET "/users.csv" for 127.0.0.1 at 2020-03-10 12:36:02 -0600
29192
+ Processing by UsersController#index as CSV
29193
+ Rendering users/index.csv.csvrb
29194
+ User Load (0.1ms) SELECT "users".* FROM "users"
29195
+ Rendered users/index.csv.csvrb (Duration: 0.7ms | Allocations: 371)
29196
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms | Allocations: 626)
29197
+  (0.0ms) begin transaction
29198
+ User Create (0.2ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:36:02.138742"], ["updated_at", "2020-03-10 18:36:02.138742"]]
29199
+  (1.5ms) commit transaction
29200
+ Started GET "/" for 127.0.0.1 at 2020-03-10 12:36:02 -0600
29201
+ Processing by HomeController#index as HTML
29202
+ Rendering home/index.html.erb within layouts/application
29203
+ Rendered home/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 252)
29204
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms | Allocations: 1258)
29205
+ Started GET "/another" for 127.0.0.1 at 2020-03-10 12:36:02 -0600
29206
+ Processing by HomeController#another as */*
29207
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 134)
29208
+ Started GET "/home/only_html" for 127.0.0.1 at 2020-03-10 12:36:02 -0600
29209
+ Processing by HomeController#only_html as */*
29210
+ Rendering home/only_html.html.erb within layouts/application
29211
+ Rendered home/only_html.html.erb within layouts/application (Duration: 0.1ms | Allocations: 83)
29212
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 531)
29213
+ Started GET "/another" for 127.0.0.1 at 2020-03-10 12:36:02 -0600
29214
+ Processing by HomeController#another as HTML
29215
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms | Allocations: 131)
29216
+ User Load (0.1ms) SELECT "users".* FROM "users"
29217
+  (0.0ms) begin transaction
29218
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 667]]
29219
+  (2.5ms) commit transaction
29220
+  (0.0ms) begin transaction
29221
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 668]]
29222
+  (1.5ms) commit transaction
29223
+  (0.0ms) begin transaction
29224
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 669]]
29225
+  (1.5ms) commit transaction
29226
+  (0.0ms) begin transaction
29227
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Responder"], ["last_name", "Bunny"], ["address", "1234 Right Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:36:02.156896"], ["updated_at", "2020-03-10 18:36:02.156896"]]
29228
+  (1.5ms) commit transaction
29229
+ Started GET "/users/670.csv" for 127.0.0.1 at 2020-03-10 12:36:02 -0600
29230
+ Processing by UsersController#show as CSV
29231
+ Parameters: {"id"=>"670"}
29232
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 670], ["LIMIT", 1]]
29233
+ Rendering users/respond_with.csv.csvrb
29234
+ Rendered users/respond_with.csv.csvrb (Duration: 0.2ms | Allocations: 169)
29235
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 647)
29236
+  (0.5ms) SELECT sqlite_version(*)
29237
+  (0.0ms) begin transaction
29238
+ User Create (0.2ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:36:42.329111"], ["updated_at", "2020-03-10 18:36:42.329111"]]
29239
+  (52.7ms) commit transaction
29240
+ Started GET "/users/671/send_instructions" for 127.0.0.1 at 2020-03-10 12:36:42 -0600
29241
+ Processing by UsersController#send_instructions as HTML
29242
+ Parameters: {"user_id"=>"671"}
29243
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 671], ["LIMIT", 1]]
29244
+ Rendering users/send_instructions.csv.csvrb
29245
+ Rendered users/send_instructions.csv.csvrb (Duration: 0.8ms | Allocations: 551)
29246
+ Rendering notifier/instructions.html.erb
29247
+ Rendered notifier/instructions.html.erb (Duration: 0.2ms | Allocations: 128)
29248
+ Notifier#instructions: processed outbound mail in 6.8ms
29249
+ Delivered mail 5e67de3a63488_34f82af06435796852131@samps-dus.mail (4.2ms)
29250
+ Date: Tue, 10 Mar 2020 12:36:42 -0600
29251
+ From: noreply@company.com
29252
+ To: elmer@fudd.com
29253
+ Message-ID: <5e67de3a63488_34f82af06435796852131@samps-dus.mail>
29254
+ Subject: Instructions
29255
+ Mime-Version: 1.0
29256
+ Content-Type: multipart/mixed;
29257
+ boundary="--==_mimepart_5e67de3a62de1_34f82af06435796852027";
29258
+ charset=UTF-8
29259
+ Content-Transfer-Encoding: 7bit
29260
+
29261
+
29262
+ ----==_mimepart_5e67de3a62de1_34f82af06435796852027
29263
+ Content-Type: text/html;
29264
+ charset=UTF-8
29265
+ Content-Transfer-Encoding: 7bit
29266
+
29267
+ <!DOCTYPE html>
29268
+ <html>
29269
+ <head>
29270
+ <meta content='text/html; charset=UTF-8' http-equiv='Content-Type' />
29271
+ </head>
29272
+ <body>
29273
+ <h1>Instructions</h1>
29274
+ <p>
29275
+ You have successfully signed up to example.com,
29276
+ your username is: elmer@fudd.com.<br/>
29277
+ </p>
29278
+ <p>Thanks for joining and have a great day!</p>
29279
+ </body>
29280
+ </html>
29281
+
29282
+ ----==_mimepart_5e67de3a62de1_34f82af06435796852027
29283
+ Content-Type: text/csv;
29284
+ charset=UTF-8
29285
+ Content-Transfer-Encoding: base64
29286
+ Content-Disposition: attachment;
29287
+ filename=user_671.csv
29288
+ Content-ID: <5e67de3a63a08_34f82af064357968522b3@samps-dus.mail>
29289
+
29290
+ IjY3MSIsIkVsbWVyIiwiZWxtZXJAZnVkZC5jb20iDQoiIiwiSW5zdHJ1Y3Rp
29291
+ b25zIiwiIg0K
29292
+
29293
+ ----==_mimepart_5e67de3a62de1_34f82af06435796852027--
29294
+
29295
+ Rendering text template
29296
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
29297
+ Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 10869)
29298
+ User Load (0.1ms) SELECT "users".* FROM "users"
29299
+  (0.0ms) begin transaction
29300
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 670]]
29301
+  (1.8ms) commit transaction
29302
+  (0.0ms) begin transaction
29303
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 671]]
29304
+  (2.4ms) commit transaction
29305
+  (0.0ms) begin transaction
29306
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:36:42.420637"], ["updated_at", "2020-03-10 18:36:42.420637"]]
29307
+  (1.6ms) commit transaction
29308
+ Started GET "/users/672/render_elsewhere.csv" for 127.0.0.1 at 2020-03-10 12:36:42 -0600
29309
+ Processing by LikesController#render_elsewhere as CSV
29310
+ Parameters: {"user_id"=>"672"}
29311
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 672], ["LIMIT", 1]]
29312
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 260)
29313
+ User Load (0.1ms) SELECT "users".* FROM "users"
29314
+ Started GET "/home/render_elsewhere.csv?type=5" for 127.0.0.1 at 2020-03-10 12:36:42 -0600
29315
+ Processing by HomeController#render_elsewhere as CSV
29316
+ Parameters: {"type"=>"5"}
29317
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 146)
29318
+ Started GET "/home/render_elsewhere.csv?type=4" for 127.0.0.1 at 2020-03-10 12:36:42 -0600
29319
+ Processing by HomeController#render_elsewhere as CSV
29320
+ Parameters: {"type"=>"4"}
29321
+ Rendering users/index.csv.csvrb
29322
+ User Load (0.1ms) SELECT "users".* FROM "users"
29323
+ Rendered users/index.csv.csvrb (Duration: 0.6ms | Allocations: 320)
29324
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.1ms | Allocations: 1609)
29325
+ Started GET "/home/render_elsewhere.csv?type=3" for 127.0.0.1 at 2020-03-10 12:36:42 -0600
29326
+ Processing by HomeController#render_elsewhere as CSV
29327
+ Parameters: {"type"=>"3"}
29328
+ Rendering users/index.csv.csvrb
29329
+ User Load (0.0ms) SELECT "users".* FROM "users"
29330
+ Rendered users/index.csv.csvrb (Duration: 0.4ms | Allocations: 251)
29331
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 532)
29332
+ Started GET "/home/render_elsewhere.csv?type=1" for 127.0.0.1 at 2020-03-10 12:36:42 -0600
29333
+ Processing by HomeController#render_elsewhere as CSV
29334
+ Parameters: {"type"=>"1"}
29335
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 147)
29336
+ User Load (0.1ms) SELECT "users".* FROM "users"
29337
+ Started GET "/another" for 127.0.0.1 at 2020-03-10 12:36:42 -0600
29338
+ Processing by HomeController#another as */*
29339
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 134)
29340
+ Started GET "/home/only_html" for 127.0.0.1 at 2020-03-10 12:36:42 -0600
29341
+ Processing by HomeController#only_html as */*
29342
+ Rendering home/only_html.html.erb within layouts/application
29343
+ Rendered home/only_html.html.erb within layouts/application (Duration: 0.1ms | Allocations: 83)
29344
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms | Allocations: 1106)
29345
+ Started GET "/another" for 127.0.0.1 at 2020-03-10 12:36:42 -0600
29346
+ Processing by HomeController#another as HTML
29347
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 131)
29348
+ User Load (0.1ms) SELECT "users".* FROM "users"
29349
+  (0.0ms) begin transaction
29350
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 672]]
29351
+  (2.1ms) commit transaction
29352
+  (0.0ms) begin transaction
29353
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:36:42.444897"], ["updated_at", "2020-03-10 18:36:42.444897"]]
29354
+  (1.9ms) commit transaction
29355
+  (0.0ms) begin transaction
29356
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:36:42.447465"], ["updated_at", "2020-03-10 18:36:42.447465"]]
29357
+  (1.8ms) commit transaction
29358
+ Started GET "/users/noaction.csv" for 127.0.0.1 at 2020-03-10 12:36:42 -0600
29359
+ Processing by UsersController#noaction as CSV
29360
+ Rendering users/noaction.csv.csvrb
29361
+ User Load (0.1ms) SELECT "users".* FROM "users"
29362
+ Rendered users/noaction.csv.csvrb (Duration: 0.6ms | Allocations: 440)
29363
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.1ms | Allocations: 764)
29364
+ User Load (0.1ms) SELECT "users".* FROM "users"
29365
+  (0.0ms) begin transaction
29366
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 673]]
29367
+  (1.5ms) commit transaction
29368
+  (0.0ms) begin transaction
29369
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 674]]
29370
+  (1.5ms) commit transaction
29371
+  (0.0ms) begin transaction
29372
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:36:42.457156"], ["updated_at", "2020-03-10 18:36:42.457156"]]
29373
+  (1.8ms) commit transaction
29374
+  (0.0ms) begin transaction
29375
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:36:42.459923"], ["updated_at", "2020-03-10 18:36:42.459923"]]
29376
+  (2.9ms) commit transaction
29377
+ Started GET "/users.csv" for 127.0.0.1 at 2020-03-10 12:36:42 -0600
29378
+ Processing by UsersController#index as CSV
29379
+ Rendering users/index.csv.csvrb
29380
+ User Load (0.1ms) SELECT "users".* FROM "users"
29381
+ Rendered users/index.csv.csvrb (Duration: 0.5ms | Allocations: 371)
29382
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 632)
29383
+ Started GET "/another.csv" for 127.0.0.1 at 2020-03-10 12:36:42 -0600
29384
+ Processing by HomeController#another as CSV
29385
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 131)
29386
+  (0.0ms) begin transaction
29387
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:36:42.467528"], ["updated_at", "2020-03-10 18:36:42.467528"]]
29388
+  (1.7ms) commit transaction
29389
+ Started GET "/" for 127.0.0.1 at 2020-03-10 12:36:42 -0600
29390
+ Processing by HomeController#index as HTML
29391
+ Rendering home/index.html.erb within layouts/application
29392
+ Rendered home/index.html.erb within layouts/application (Duration: 0.4ms | Allocations: 253)
29393
+ Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.0ms | Allocations: 694)
29394
+ Started GET "/useheader.csv?set_direct=true" for 127.0.0.1 at 2020-03-10 12:36:42 -0600
29395
+ Processing by HomeController#useheader as CSV
29396
+ Parameters: {"set_direct"=>"true"}
29397
+ Rendering home/useheader.csv.csvrb
29398
+ Rendered home/useheader.csv.csvrb (Duration: 0.2ms | Allocations: 172)
29399
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 640)
29400
+ Started GET "/home.csv" for 127.0.0.1 at 2020-03-10 12:36:42 -0600
29401
+ Processing by HomeController#index as CSV
29402
+ Rendering home/index.csv.csvrb
29403
+ Rendered home/index.csv.csvrb (Duration: 0.2ms | Allocations: 172)
29404
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 622)
29405
+ User Load (0.1ms) SELECT "users".* FROM "users"
29406
+  (0.0ms) begin transaction
29407
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 675]]
29408
+  (1.5ms) commit transaction
29409
+  (0.0ms) begin transaction
29410
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 676]]
29411
+  (1.6ms) commit transaction
29412
+  (0.0ms) begin transaction
29413
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 677]]
29414
+  (1.5ms) commit transaction
29415
+  (0.0ms) begin transaction
29416
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Responder"], ["last_name", "Bunny"], ["address", "1234 Right Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:36:42.489049"], ["updated_at", "2020-03-10 18:36:42.489049"]]
29417
+  (1.5ms) commit transaction
29418
+ Started GET "/users/export/678.csv" for 127.0.0.1 at 2020-03-10 12:36:42 -0600
29419
+ Processing by UsersController#export as CSV
29420
+ Parameters: {"id"=>"678"}
29421
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 678], ["LIMIT", 1]]
29422
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 286)
29423
+ User Load (0.1ms) SELECT "users".* FROM "users"
29424
+  (0.0ms) begin transaction
29425
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 678]]
29426
+  (1.6ms) commit transaction
29427
+  (0.0ms) begin transaction
29428
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Responder"], ["last_name", "Bunny"], ["address", "1234 Right Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:36:42.496092"], ["updated_at", "2020-03-10 18:36:42.496092"]]
29429
+  (2.3ms) commit transaction
29430
+ Started GET "/users/679.csv" for 127.0.0.1 at 2020-03-10 12:36:42 -0600
29431
+ Processing by UsersController#show as CSV
29432
+ Parameters: {"id"=>"679"}
29433
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 679], ["LIMIT", 1]]
29434
+ Rendering users/respond_with.csv.csvrb
29435
+ Rendered users/respond_with.csv.csvrb (Duration: 0.7ms | Allocations: 169)
29436
+ Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.2ms | Allocations: 646)
29437
+ Started GET "/withpartial.csv" for 127.0.0.1 at 2020-03-10 12:36:42 -0600
29438
+ Processing by HomeController#withpartial as CSV
29439
+ Rendering home/withpartial.csv.csvrb
29440
+ Rendered home/_cover_sheet.csv.csvrb (Duration: 0.5ms | Allocations: 140)
29441
+ Rendered home/withpartial.csv.csvrb (Duration: 1.5ms | Allocations: 507)
29442
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms | Allocations: 932)
29443
+ Started GET "/useheader.csv" for 127.0.0.1 at 2020-03-10 12:36:42 -0600
29444
+ Processing by HomeController#useheader as CSV
29445
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 176)
29446
+ User Load (0.1ms) SELECT "users".* FROM "users"
29447
+  (0.1ms) begin transaction
29448
+ User Destroy (0.2ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 679]]
29449
+  (2.9ms) commit transaction
29450
+  (0.0ms) begin transaction
29451
+ User Create (0.2ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:36:42.522067"], ["updated_at", "2020-03-10 18:36:42.522067"]]
29452
+  (1.6ms) commit transaction
29453
+  (0.0ms) begin transaction
29454
+ Like Create (0.2ms) INSERT INTO "likes" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Carrots"], ["user_id", 680], ["created_at", "2020-03-10 18:36:42.536710"], ["updated_at", "2020-03-10 18:36:42.536710"]]
29455
+  (1.6ms) commit transaction
29456
+  (0.0ms) begin transaction
29457
+ Like Create (0.1ms) INSERT INTO "likes" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Celery"], ["user_id", 680], ["created_at", "2020-03-10 18:36:42.539389"], ["updated_at", "2020-03-10 18:36:42.539389"]]
29458
+  (1.6ms) commit transaction
29459
+ Started GET "/users/680/likes.csv" for 127.0.0.1 at 2020-03-10 12:36:42 -0600
29460
+ Processing by LikesController#index as CSV
29461
+ Parameters: {"user_id"=>"680"}
29462
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 680], ["LIMIT", 1]]
29463
+ Rendering likes/index.csv.csvrb
29464
+ Like Load (0.1ms) SELECT "likes".* FROM "likes" WHERE "likes"."user_id" = ? [["user_id", 680]]
29465
+ Rendered likes/index.csv.csvrb (Duration: 0.9ms | Allocations: 605)
29466
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.2ms | Allocations: 1481)
29467
+  (0.5ms) SELECT sqlite_version(*)
29468
+  (0.0ms) begin transaction
29469
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:37:52.169025"], ["updated_at", "2020-03-10 18:37:52.169025"]]
29470
+  (3.7ms) commit transaction
29471
+ Started GET "/users/681/send_instructions" for 127.0.0.1 at 2020-03-10 12:37:52 -0600
29472
+ Processing by UsersController#send_instructions as HTML
29473
+ Parameters: {"user_id"=>"681"}
29474
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 681], ["LIMIT", 1]]
29475
+ Rendering users/send_instructions.csv.csvrb
29476
+ Rendered users/send_instructions.csv.csvrb (Duration: 0.5ms | Allocations: 417)
29477
+ Rendering notifier/instructions.html.erb
29478
+ Rendered notifier/instructions.html.erb (Duration: 0.2ms | Allocations: 128)
29479
+ Notifier#instructions: processed outbound mail in 5.4ms
29480
+ Delivered mail 5e67de802f399_35332ae89ed43954408d0@samps-dus.mail (3.2ms)
29481
+ Date: Tue, 10 Mar 2020 12:37:52 -0600
29482
+ From: noreply@company.com
29483
+ To: elmer@fudd.com
29484
+ Message-ID: <5e67de802f399_35332ae89ed43954408d0@samps-dus.mail>
29485
+ Subject: Instructions
29486
+ Mime-Version: 1.0
29487
+ Content-Type: multipart/mixed;
29488
+ boundary="--==_mimepart_5e67de802ee0d_35332ae89ed43954407b6";
29489
+ charset=UTF-8
29490
+ Content-Transfer-Encoding: 7bit
29491
+
29492
+
29493
+ ----==_mimepart_5e67de802ee0d_35332ae89ed43954407b6
29494
+ Content-Type: text/html;
29495
+ charset=UTF-8
29496
+ Content-Transfer-Encoding: 7bit
29497
+
29498
+ <!DOCTYPE html>
29499
+ <html>
29500
+ <head>
29501
+ <meta content='text/html; charset=UTF-8' http-equiv='Content-Type' />
29502
+ </head>
29503
+ <body>
29504
+ <h1>Instructions</h1>
29505
+ <p>
29506
+ You have successfully signed up to example.com,
29507
+ your username is: elmer@fudd.com.<br/>
29508
+ </p>
29509
+ <p>Thanks for joining and have a great day!</p>
29510
+ </body>
29511
+ </html>
29512
+
29513
+ ----==_mimepart_5e67de802ee0d_35332ae89ed43954407b6
29514
+ Content-Type: text/csv;
29515
+ charset=UTF-8
29516
+ Content-Transfer-Encoding: base64
29517
+ Content-Disposition: attachment;
29518
+ filename=user_681.csv
29519
+ Content-ID: <5e67de802f7b1_35332ae89ed439544093a@samps-dus.mail>
29520
+
29521
+ IjY4MSIsIkVsbWVyIiwiZWxtZXJAZnVkZC5jb20iDQoiIiwiSW5zdHJ1Y3Rp
29522
+ b25zIiwiIg0K
29523
+
29524
+ ----==_mimepart_5e67de802ee0d_35332ae89ed43954407b6--
29525
+
29526
+ Rendering text template
29527
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
29528
+ Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 10734)
29529
+ User Load (0.1ms) SELECT "users".* FROM "users"
29530
+  (0.0ms) begin transaction
29531
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 680]]
29532
+  (3.0ms) commit transaction
29533
+  (0.0ms) begin transaction
29534
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 681]]
29535
+  (1.9ms) commit transaction
29536
+  (0.0ms) begin transaction
29537
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:37:52.205095"], ["updated_at", "2020-03-10 18:37:52.205095"]]
29538
+  (2.4ms) commit transaction
29539
+  (0.0ms) begin transaction
29540
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:37:52.208332"], ["updated_at", "2020-03-10 18:37:52.208332"]]
29541
+  (1.9ms) commit transaction
29542
+ Started GET "/users.csv" for 127.0.0.1 at 2020-03-10 12:37:52 -0600
29543
+ Processing by UsersController#index as CSV
29544
+ Rendering users/index.csv.csvrb
29545
+ User Load (0.1ms) SELECT "users".* FROM "users"
29546
+ Rendered users/index.csv.csvrb (Duration: 0.7ms | Allocations: 451)
29547
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.1ms | Allocations: 867)
29548
+ User Load (0.1ms) SELECT "users".* FROM "users"
29549
+  (0.0ms) begin transaction
29550
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 682]]
29551
+  (1.9ms) commit transaction
29552
+  (0.0ms) begin transaction
29553
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 683]]
29554
+  (1.7ms) commit transaction
29555
+  (0.0ms) begin transaction
29556
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Responder"], ["last_name", "Bunny"], ["address", "1234 Right Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:37:52.218617"], ["updated_at", "2020-03-10 18:37:52.218617"]]
29557
+  (1.5ms) commit transaction
29558
+ Started GET "/users/684.csv" for 127.0.0.1 at 2020-03-10 12:37:52 -0600
29559
+ Processing by UsersController#show as CSV
29560
+ Parameters: {"id"=>"684"}
29561
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 684], ["LIMIT", 1]]
29562
+ Rendering users/respond_with.csv.csvrb
29563
+ Rendered users/respond_with.csv.csvrb (Duration: 0.2ms | Allocations: 173)
29564
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 651)
29565
+ Started GET "/another.csv" for 127.0.0.1 at 2020-03-10 12:37:52 -0600
29566
+ Processing by HomeController#another as CSV
29567
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 138)
29568
+ User Load (0.1ms) SELECT "users".* FROM "users"
29569
+  (0.0ms) begin transaction
29570
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 684]]
29571
+  (2.1ms) commit transaction
29572
+  (0.0ms) begin transaction
29573
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Responder"], ["last_name", "Bunny"], ["address", "1234 Right Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:37:52.231311"], ["updated_at", "2020-03-10 18:37:52.231311"]]
29574
+  (2.0ms) commit transaction
29575
+ Started GET "/users/export/685.csv" for 127.0.0.1 at 2020-03-10 12:37:52 -0600
29576
+ Processing by UsersController#export as CSV
29577
+ Parameters: {"id"=>"685"}
29578
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 685], ["LIMIT", 1]]
29579
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 286)
29580
+ User Load (0.1ms) SELECT "users".* FROM "users"
29581
+  (0.0ms) begin transaction
29582
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 685]]
29583
+  (1.6ms) commit transaction
29584
+  (0.0ms) begin transaction
29585
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:37:52.238696"], ["updated_at", "2020-03-10 18:37:52.238696"]]
29586
+  (1.9ms) commit transaction
29587
+  (0.0ms) begin transaction
29588
+ Like Create (0.1ms) INSERT INTO "likes" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Carrots"], ["user_id", 686], ["created_at", "2020-03-10 18:37:52.250577"], ["updated_at", "2020-03-10 18:37:52.250577"]]
29589
+  (2.1ms) commit transaction
29590
+  (0.0ms) begin transaction
29591
+ Like Create (0.1ms) INSERT INTO "likes" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Celery"], ["user_id", 686], ["created_at", "2020-03-10 18:37:52.253604"], ["updated_at", "2020-03-10 18:37:52.253604"]]
29592
+  (1.6ms) commit transaction
29593
+ Started GET "/users/686/likes.csv" for 127.0.0.1 at 2020-03-10 12:37:52 -0600
29594
+ Processing by LikesController#index as CSV
29595
+ Parameters: {"user_id"=>"686"}
29596
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 686], ["LIMIT", 1]]
29597
+ Rendering likes/index.csv.csvrb
29598
+ Like Load (0.1ms) SELECT "likes".* FROM "likes" WHERE "likes"."user_id" = ? [["user_id", 686]]
29599
+ Rendered likes/index.csv.csvrb (Duration: 1.6ms | Allocations: 610)
29600
+ Completed 200 OK in 9ms (Views: 7.8ms | ActiveRecord: 0.2ms | Allocations: 2220)
29601
+ Started GET "/withpartial.csv" for 127.0.0.1 at 2020-03-10 12:37:52 -0600
29602
+ Processing by HomeController#withpartial as CSV
29603
+ Rendering home/withpartial.csv.csvrb
29604
+ Rendered home/_cover_sheet.csv.csvrb (Duration: 0.2ms | Allocations: 141)
29605
+ Rendered home/withpartial.csv.csvrb (Duration: 0.6ms | Allocations: 509)
29606
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms | Allocations: 1219)
29607
+ Started GET "/useheader.csv" for 127.0.0.1 at 2020-03-10 12:37:52 -0600
29608
+ Processing by HomeController#useheader as CSV
29609
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 176)
29610
+ Started GET "/useheader.csv?set_direct=true" for 127.0.0.1 at 2020-03-10 12:37:52 -0600
29611
+ Processing by HomeController#useheader as CSV
29612
+ Parameters: {"set_direct"=>"true"}
29613
+ Rendering home/useheader.csv.csvrb
29614
+ Rendered home/useheader.csv.csvrb (Duration: 0.2ms | Allocations: 170)
29615
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 637)
29616
+ Started GET "/another" for 127.0.0.1 at 2020-03-10 12:37:52 -0600
29617
+ Processing by HomeController#another as HTML
29618
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 131)
29619
+ Started GET "/home.csv" for 127.0.0.1 at 2020-03-10 12:37:52 -0600
29620
+ Processing by HomeController#index as CSV
29621
+ Rendering home/index.csv.csvrb
29622
+ Rendered home/index.csv.csvrb (Duration: 0.2ms | Allocations: 173)
29623
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 624)
29624
+ Started GET "/another" for 127.0.0.1 at 2020-03-10 12:37:52 -0600
29625
+ Processing by HomeController#another as */*
29626
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 134)
29627
+ Started GET "/home/only_html" for 127.0.0.1 at 2020-03-10 12:37:52 -0600
29628
+ Processing by HomeController#only_html as */*
29629
+ Rendering home/only_html.html.erb within layouts/application
29630
+ Rendered home/only_html.html.erb within layouts/application (Duration: 0.1ms | Allocations: 85)
29631
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms | Allocations: 1097)
29632
+ User Load (0.1ms) SELECT "users".* FROM "users"
29633
+  (0.0ms) begin transaction
29634
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 686]]
29635
+  (1.8ms) commit transaction
29636
+  (0.0ms) begin transaction
29637
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:37:52.284427"], ["updated_at", "2020-03-10 18:37:52.284427"]]
29638
+  (1.6ms) commit transaction
29639
+  (0.0ms) begin transaction
29640
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:37:52.286832"], ["updated_at", "2020-03-10 18:37:52.286832"]]
29641
+  (1.5ms) commit transaction
29642
+ Started GET "/users/noaction.csv" for 127.0.0.1 at 2020-03-10 12:37:52 -0600
29643
+ Processing by UsersController#noaction as CSV
29644
+ Rendering users/noaction.csv.csvrb
29645
+ User Load (0.1ms) SELECT "users".* FROM "users"
29646
+ Rendered users/noaction.csv.csvrb (Duration: 0.7ms | Allocations: 441)
29647
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.1ms | Allocations: 765)
29648
+ User Load (0.1ms) SELECT "users".* FROM "users"
29649
+  (0.0ms) begin transaction
29650
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 687]]
29651
+  (1.6ms) commit transaction
29652
+  (0.0ms) begin transaction
29653
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 688]]
29654
+  (1.7ms) commit transaction
29655
+  (0.0ms) begin transaction
29656
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:37:52.296563"], ["updated_at", "2020-03-10 18:37:52.296563"]]
29657
+  (2.0ms) commit transaction
29658
+ Started GET "/users/689/render_elsewhere.csv" for 127.0.0.1 at 2020-03-10 12:37:52 -0600
29659
+ Processing by LikesController#render_elsewhere as CSV
29660
+ Parameters: {"user_id"=>"689"}
29661
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 689], ["LIMIT", 1]]
29662
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 252)
29663
+ User Load (0.0ms) SELECT "users".* FROM "users"
29664
+ Started GET "/home/render_elsewhere.csv?type=5" for 127.0.0.1 at 2020-03-10 12:37:52 -0600
29665
+ Processing by HomeController#render_elsewhere as CSV
29666
+ Parameters: {"type"=>"5"}
29667
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 143)
29668
+ Started GET "/home/render_elsewhere.csv?type=4" for 127.0.0.1 at 2020-03-10 12:37:52 -0600
29669
+ Processing by HomeController#render_elsewhere as CSV
29670
+ Parameters: {"type"=>"4"}
29671
+ Rendering users/index.csv.csvrb
29672
+ User Load (0.1ms) SELECT "users".* FROM "users"
29673
+ Rendered users/index.csv.csvrb (Duration: 0.5ms | Allocations: 251)
29674
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 530)
29675
+ Started GET "/home/render_elsewhere.csv?type=3" for 127.0.0.1 at 2020-03-10 12:37:52 -0600
29676
+ Processing by HomeController#render_elsewhere as CSV
29677
+ Parameters: {"type"=>"3"}
29678
+ Rendering users/index.csv.csvrb
29679
+ User Load (0.1ms) SELECT "users".* FROM "users"
29680
+ Rendered users/index.csv.csvrb (Duration: 0.4ms | Allocations: 251)
29681
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 531)
29682
+ Started GET "/home/render_elsewhere.csv?type=1" for 127.0.0.1 at 2020-03-10 12:37:52 -0600
29683
+ Processing by HomeController#render_elsewhere as CSV
29684
+ Parameters: {"type"=>"1"}
29685
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 147)
29686
+ User Load (0.0ms) SELECT "users".* FROM "users"
29687
+  (0.0ms) begin transaction
29688
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:37:52.307988"], ["updated_at", "2020-03-10 18:37:52.307988"]]
29689
+  (2.6ms) commit transaction
29690
+ Started GET "/" for 127.0.0.1 at 2020-03-10 12:37:52 -0600
29691
+ Processing by HomeController#index as HTML
29692
+ Rendering home/index.html.erb within layouts/application
29693
+ Rendered home/index.html.erb within layouts/application (Duration: 1.0ms | Allocations: 248)
29694
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms | Allocations: 686)
29695
+  (0.6ms) SELECT sqlite_version(*)
29696
+ Started GET "/another" for 127.0.0.1 at 2020-03-10 12:38:36 -0600
29697
+ Processing by HomeController#another as */*
29698
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 226)
29699
+ Started GET "/home/only_html" for 127.0.0.1 at 2020-03-10 12:38:36 -0600
29700
+ Processing by HomeController#only_html as */*
29701
+ Rendering home/only_html.html.erb within layouts/application
29702
+ Rendered home/only_html.html.erb within layouts/application (Duration: 0.4ms | Allocations: 300)
29703
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms | Allocations: 1623)
29704
+ Started GET "/another" for 127.0.0.1 at 2020-03-10 12:38:36 -0600
29705
+ Processing by HomeController#another as HTML
29706
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 132)
29707
+ User Load (0.1ms) SELECT "users".* FROM "users"
29708
+  (0.0ms) begin transaction
29709
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 689]]
29710
+  (2.9ms) commit transaction
29711
+  (0.0ms) begin transaction
29712
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 690]]
29713
+  (1.8ms) commit transaction
29714
+  (0.0ms) begin transaction
29715
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:38:36.141475"], ["updated_at", "2020-03-10 18:38:36.141475"]]
29716
+  (1.9ms) commit transaction
29717
+  (0.0ms) begin transaction
29718
+ Like Create (0.1ms) INSERT INTO "likes" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Carrots"], ["user_id", 691], ["created_at", "2020-03-10 18:38:36.153181"], ["updated_at", "2020-03-10 18:38:36.153181"]]
29719
+  (2.0ms) commit transaction
29720
+  (0.0ms) begin transaction
29721
+ Like Create (0.1ms) INSERT INTO "likes" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Celery"], ["user_id", 691], ["created_at", "2020-03-10 18:38:36.156113"], ["updated_at", "2020-03-10 18:38:36.156113"]]
29722
+  (2.0ms) commit transaction
29723
+ Started GET "/users/691/likes.csv" for 127.0.0.1 at 2020-03-10 12:38:36 -0600
29724
+ Processing by LikesController#index as CSV
29725
+ Parameters: {"user_id"=>"691"}
29726
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 691], ["LIMIT", 1]]
29727
+ Rendering likes/index.csv.csvrb
29728
+ Like Load (0.1ms) SELECT "likes".* FROM "likes" WHERE "likes"."user_id" = ? [["user_id", 691]]
29729
+ Rendered likes/index.csv.csvrb (Duration: 0.9ms | Allocations: 610)
29730
+ Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.2ms | Allocations: 2388)
29731
+ User Load (0.0ms) SELECT "users".* FROM "users"
29732
+  (0.0ms) begin transaction
29733
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 691]]
29734
+  (2.8ms) commit transaction
29735
+  (0.0ms) begin transaction
29736
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:38:36.167566"], ["updated_at", "2020-03-10 18:38:36.167566"]]
29737
+  (1.7ms) commit transaction
29738
+  (0.0ms) begin transaction
29739
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:38:36.169996"], ["updated_at", "2020-03-10 18:38:36.169996"]]
29740
+  (2.5ms) commit transaction
29741
+ Started GET "/users.csv" for 127.0.0.1 at 2020-03-10 12:38:36 -0600
29742
+ Processing by UsersController#index as CSV
29743
+ Rendering users/index.csv.csvrb
29744
+ User Load (0.1ms) SELECT "users".* FROM "users"
29745
+ Rendered users/index.csv.csvrb (Duration: 0.7ms | Allocations: 450)
29746
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms | Allocations: 989)
29747
+  (0.1ms) begin transaction
29748
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:38:36.178128"], ["updated_at", "2020-03-10 18:38:36.178128"]]
29749
+  (1.5ms) commit transaction
29750
+ Started GET "/" for 127.0.0.1 at 2020-03-10 12:38:36 -0600
29751
+ Processing by HomeController#index as HTML
29752
+ Rendering home/index.html.erb within layouts/application
29753
+ Rendered home/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 251)
29754
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 690)
29755
+ Started GET "/useheader.csv" for 127.0.0.1 at 2020-03-10 12:38:36 -0600
29756
+ Processing by HomeController#useheader as CSV
29757
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 176)
29758
+ User Load (0.6ms) SELECT "users".* FROM "users"
29759
+  (0.0ms) begin transaction
29760
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 692]]
29761
+  (1.6ms) commit transaction
29762
+  (0.0ms) begin transaction
29763
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 693]]
29764
+  (1.6ms) commit transaction
29765
+  (0.0ms) begin transaction
29766
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 694]]
29767
+  (1.5ms) commit transaction
29768
+  (0.0ms) begin transaction
29769
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:38:36.195346"], ["updated_at", "2020-03-10 18:38:36.195346"]]
29770
+  (1.5ms) commit transaction
29771
+ Started GET "/users/695/render_elsewhere.csv" for 127.0.0.1 at 2020-03-10 12:38:36 -0600
29772
+ Processing by LikesController#render_elsewhere as CSV
29773
+ Parameters: {"user_id"=>"695"}
29774
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 695], ["LIMIT", 1]]
29775
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 252)
29776
+ User Load (0.0ms) SELECT "users".* FROM "users"
29777
+ Started GET "/home/render_elsewhere.csv?type=5" for 127.0.0.1 at 2020-03-10 12:38:36 -0600
29778
+ Processing by HomeController#render_elsewhere as CSV
29779
+ Parameters: {"type"=>"5"}
29780
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 143)
29781
+ Started GET "/home/render_elsewhere.csv?type=4" for 127.0.0.1 at 2020-03-10 12:38:36 -0600
29782
+ Processing by HomeController#render_elsewhere as CSV
29783
+ Parameters: {"type"=>"4"}
29784
+ Rendering users/index.csv.csvrb
29785
+ User Load (0.1ms) SELECT "users".* FROM "users"
29786
+ Rendered users/index.csv.csvrb (Duration: 0.5ms | Allocations: 251)
29787
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.1ms | Allocations: 815)
29788
+ Started GET "/home/render_elsewhere.csv?type=3" for 127.0.0.1 at 2020-03-10 12:38:36 -0600
29789
+ Processing by HomeController#render_elsewhere as CSV
29790
+ Parameters: {"type"=>"3"}
29791
+ Rendering users/index.csv.csvrb
29792
+ User Load (0.1ms) SELECT "users".* FROM "users"
29793
+ Rendered users/index.csv.csvrb (Duration: 1.0ms | Allocations: 251)
29794
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.1ms | Allocations: 531)
29795
+ Started GET "/home/render_elsewhere.csv?type=1" for 127.0.0.1 at 2020-03-10 12:38:36 -0600
29796
+ Processing by HomeController#render_elsewhere as CSV
29797
+ Parameters: {"type"=>"1"}
29798
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 147)
29799
+ User Load (0.0ms) SELECT "users".* FROM "users"
29800
+ Started GET "/useheader.csv?set_direct=true" for 127.0.0.1 at 2020-03-10 12:38:36 -0600
29801
+ Processing by HomeController#useheader as CSV
29802
+ Parameters: {"set_direct"=>"true"}
29803
+ Rendering home/useheader.csv.csvrb
29804
+ Rendered home/useheader.csv.csvrb (Duration: 0.2ms | Allocations: 170)
29805
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms | Allocations: 637)
29806
+ User Load (0.1ms) SELECT "users".* FROM "users"
29807
+  (0.6ms) begin transaction
29808
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 695]]
29809
+  (2.7ms) commit transaction
29810
+  (0.0ms) begin transaction
29811
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:38:36.225466"], ["updated_at", "2020-03-10 18:38:36.225466"]]
29812
+  (1.5ms) commit transaction
29813
+  (0.0ms) begin transaction
29814
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:38:36.228351"], ["updated_at", "2020-03-10 18:38:36.228351"]]
29815
+  (1.5ms) commit transaction
29816
+ Started GET "/users/noaction.csv" for 127.0.0.1 at 2020-03-10 12:38:36 -0600
29817
+ Processing by UsersController#noaction as CSV
29818
+ Rendering users/noaction.csv.csvrb
29819
+ User Load (0.1ms) SELECT "users".* FROM "users"
29820
+ Rendered users/noaction.csv.csvrb (Duration: 1.3ms | Allocations: 441)
29821
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.1ms | Allocations: 765)
29822
+ Started GET "/withpartial.csv" for 127.0.0.1 at 2020-03-10 12:38:36 -0600
29823
+ Processing by HomeController#withpartial as CSV
29824
+ Rendering home/withpartial.csv.csvrb
29825
+ Rendered home/_cover_sheet.csv.csvrb (Duration: 0.2ms | Allocations: 141)
29826
+ Rendered home/withpartial.csv.csvrb (Duration: 1.2ms | Allocations: 509)
29827
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms | Allocations: 934)
29828
+ User Load (0.6ms) SELECT "users".* FROM "users"
29829
+  (0.0ms) begin transaction
29830
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 696]]
29831
+  (1.5ms) commit transaction
29832
+  (0.0ms) begin transaction
29833
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 697]]
29834
+  (1.4ms) commit transaction
29835
+  (0.0ms) begin transaction
29836
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Responder"], ["last_name", "Bunny"], ["address", "1234 Right Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:38:36.246205"], ["updated_at", "2020-03-10 18:38:36.246205"]]
29837
+  (1.7ms) commit transaction
29838
+ Started GET "/users/export/698.csv" for 127.0.0.1 at 2020-03-10 12:38:36 -0600
29839
+ Processing by UsersController#export as CSV
29840
+ Parameters: {"id"=>"698"}
29841
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 698], ["LIMIT", 1]]
29842
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 286)
29843
+ User Load (0.7ms) SELECT "users".* FROM "users"
29844
+  (0.0ms) begin transaction
29845
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 698]]
29846
+  (1.5ms) commit transaction
29847
+  (0.0ms) begin transaction
29848
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Responder"], ["last_name", "Bunny"], ["address", "1234 Right Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:38:36.255673"], ["updated_at", "2020-03-10 18:38:36.255673"]]
29849
+  (1.5ms) commit transaction
29850
+ Started GET "/users/699.csv" for 127.0.0.1 at 2020-03-10 12:38:36 -0600
29851
+ Processing by UsersController#show as CSV
29852
+ Parameters: {"id"=>"699"}
29853
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 699], ["LIMIT", 1]]
29854
+ Rendering users/respond_with.csv.csvrb
29855
+ Rendered users/respond_with.csv.csvrb (Duration: 0.2ms | Allocations: 170)
29856
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.1ms | Allocations: 647)
29857
+ Started GET "/home.csv" for 127.0.0.1 at 2020-03-10 12:38:36 -0600
29858
+ Processing by HomeController#index as CSV
29859
+ Rendering home/index.csv.csvrb
29860
+ Rendered home/index.csv.csvrb (Duration: 7.4ms | Allocations: 174)
29861
+ Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.0ms | Allocations: 626)
29862
+ Started GET "/another.csv" for 127.0.0.1 at 2020-03-10 12:38:36 -0600
29863
+ Processing by HomeController#another as CSV
29864
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 131)
29865
+  (0.0ms) begin transaction
29866
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:38:36.274942"], ["updated_at", "2020-03-10 18:38:36.274942"]]
29867
+  (2.7ms) commit transaction
29868
+ Started GET "/users/700/send_instructions" for 127.0.0.1 at 2020-03-10 12:38:36 -0600
29869
+ Processing by UsersController#send_instructions as HTML
29870
+ Parameters: {"user_id"=>"700"}
29871
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 700], ["LIMIT", 1]]
29872
+ Rendering users/send_instructions.csv.csvrb
29873
+ Rendered users/send_instructions.csv.csvrb (Duration: 0.2ms | Allocations: 204)
29874
+ Rendering notifier/instructions.html.erb
29875
+ Rendered notifier/instructions.html.erb (Duration: 0.2ms | Allocations: 123)
29876
+ Notifier#instructions: processed outbound mail in 3.8ms
29877
+ Delivered mail 5e67deac45b39_357e2ae9124d596084375@samps-dus.mail (3.5ms)
29878
+ Date: Tue, 10 Mar 2020 12:38:36 -0600
29879
+ From: noreply@company.com
29880
+ To: elmer@fudd.com
29881
+ Message-ID: <5e67deac45b39_357e2ae9124d596084375@samps-dus.mail>
29882
+ Subject: Instructions
29883
+ Mime-Version: 1.0
29884
+ Content-Type: multipart/mixed;
29885
+ boundary="--==_mimepart_5e67deac455be_357e2ae9124d59608424a";
29886
+ charset=UTF-8
29887
+ Content-Transfer-Encoding: 7bit
29888
+
29889
+
29890
+ ----==_mimepart_5e67deac455be_357e2ae9124d59608424a
29891
+ Content-Type: text/html;
29892
+ charset=UTF-8
29893
+ Content-Transfer-Encoding: 7bit
29894
+
29895
+ <!DOCTYPE html>
29896
+ <html>
29897
+ <head>
29898
+ <meta content='text/html; charset=UTF-8' http-equiv='Content-Type' />
29899
+ </head>
29900
+ <body>
29901
+ <h1>Instructions</h1>
29902
+ <p>
29903
+ You have successfully signed up to example.com,
29904
+ your username is: elmer@fudd.com.<br/>
29905
+ </p>
29906
+ <p>Thanks for joining and have a great day!</p>
29907
+ </body>
29908
+ </html>
29909
+
29910
+ ----==_mimepart_5e67deac455be_357e2ae9124d59608424a
29911
+ Content-Type: text/csv;
29912
+ charset=UTF-8
29913
+ Content-Transfer-Encoding: base64
29914
+ Content-Disposition: attachment;
29915
+ filename=user_700.csv
29916
+ Content-ID: <5e67deac45fba_357e2ae9124d596084436@samps-dus.mail>
29917
+
29918
+ IjcwMCIsIkVsbWVyIiwiZWxtZXJAZnVkZC5jb20iDQoiIiwiSW5zdHJ1Y3Rp
29919
+ b25zIiwiIg0K
29920
+
29921
+ ----==_mimepart_5e67deac455be_357e2ae9124d59608424a--
29922
+
29923
+ Rendering text template
29924
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
29925
+ Completed 200 OK in 10ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 8489)
29926
+  (0.6ms) SELECT sqlite_version(*)
29927
+ User Load (0.1ms) SELECT "users".* FROM "users"
29928
+  (0.0ms) begin transaction
29929
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 699]]
29930
+  (4.8ms) commit transaction
29931
+  (0.0ms) begin transaction
29932
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 700]]
29933
+  (1.5ms) commit transaction
29934
+  (0.0ms) begin transaction
29935
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:43:45.865656"], ["updated_at", "2020-03-10 18:43:45.865656"]]
29936
+  (1.7ms) commit transaction
29937
+ Started GET "/users/701/render_elsewhere.csv" for 127.0.0.1 at 2020-03-10 12:43:45 -0600
29938
+ Processing by LikesController#render_elsewhere as CSV
29939
+ Parameters: {"user_id"=>"701"}
29940
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 701], ["LIMIT", 1]]
29941
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 502)
29942
+ User Load (0.1ms) SELECT "users".* FROM "users"
29943
+ Started GET "/home/render_elsewhere.csv?type=5" for 127.0.0.1 at 2020-03-10 12:43:45 -0600
29944
+ Processing by HomeController#render_elsewhere as CSV
29945
+ Parameters: {"type"=>"5"}
29946
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 146)
29947
+ Started GET "/home/render_elsewhere.csv?type=4" for 127.0.0.1 at 2020-03-10 12:43:45 -0600
29948
+ Processing by HomeController#render_elsewhere as CSV
29949
+ Parameters: {"type"=>"4"}
29950
+ Rendering users/index.csv.csvrb
29951
+ User Load (0.1ms) SELECT "users".* FROM "users"
29952
+ Rendered users/index.csv.csvrb (Duration: 0.8ms | Allocations: 531)
29953
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.1ms | Allocations: 2115)
29954
+ Started GET "/home/render_elsewhere.csv?type=3" for 127.0.0.1 at 2020-03-10 12:43:45 -0600
29955
+ Processing by HomeController#render_elsewhere as CSV
29956
+ Parameters: {"type"=>"3"}
29957
+ Rendering users/index.csv.csvrb
29958
+ User Load (0.1ms) SELECT "users".* FROM "users"
29959
+ Rendered users/index.csv.csvrb (Duration: 0.4ms | Allocations: 251)
29960
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 532)
29961
+ Started GET "/home/render_elsewhere.csv?type=1" for 127.0.0.1 at 2020-03-10 12:43:45 -0600
29962
+ Processing by HomeController#render_elsewhere as CSV
29963
+ Parameters: {"type"=>"1"}
29964
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms | Allocations: 147)
29965
+ User Load (0.0ms) SELECT "users".* FROM "users"
29966
+ User Load (0.0ms) SELECT "users".* FROM "users"
29967
+  (0.0ms) begin transaction
29968
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 701]]
29969
+  (1.7ms) commit transaction
29970
+  (0.0ms) begin transaction
29971
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:43:45.889965"], ["updated_at", "2020-03-10 18:43:45.889965"]]
29972
+  (1.7ms) commit transaction
29973
+  (0.0ms) begin transaction
29974
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:43:45.892355"], ["updated_at", "2020-03-10 18:43:45.892355"]]
29975
+  (1.9ms) commit transaction
29976
+ Started GET "/users.csv" for 127.0.0.1 at 2020-03-10 12:43:45 -0600
29977
+ Processing by UsersController#index as CSV
29978
+ Rendering users/index.csv.csvrb
29979
+ User Load (0.1ms) SELECT "users".* FROM "users"
29980
+ Rendered users/index.csv.csvrb (Duration: 0.4ms | Allocations: 371)
29981
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 793)
29982
+ Started GET "/useheader.csv" for 127.0.0.1 at 2020-03-10 12:43:45 -0600
29983
+ Processing by HomeController#useheader as CSV
29984
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 176)
29985
+ Started GET "/withpartial.csv" for 127.0.0.1 at 2020-03-10 12:43:45 -0600
29986
+ Processing by HomeController#withpartial as CSV
29987
+ Rendering home/withpartial.csv.csvrb
29988
+ Rendered home/_cover_sheet.csv.csvrb (Duration: 0.2ms | Allocations: 141)
29989
+ Rendered home/withpartial.csv.csvrb (Duration: 0.6ms | Allocations: 509)
29990
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms | Allocations: 933)
29991
+ Started GET "/home.csv" for 127.0.0.1 at 2020-03-10 12:43:45 -0600
29992
+ Processing by HomeController#index as CSV
29993
+ Rendering home/index.csv.csvrb
29994
+ Rendered home/index.csv.csvrb (Duration: 0.2ms | Allocations: 173)
29995
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 623)
29996
+ User Load (0.1ms) SELECT "users".* FROM "users"
29997
+  (0.0ms) begin transaction
29998
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 702]]
29999
+  (2.5ms) commit transaction
30000
+  (0.0ms) begin transaction
30001
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 703]]
30002
+  (1.5ms) commit transaction
30003
+  (0.0ms) begin transaction
30004
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Responder"], ["last_name", "Bunny"], ["address", "1234 Right Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:43:45.910397"], ["updated_at", "2020-03-10 18:43:45.910397"]]
30005
+  (1.6ms) commit transaction
30006
+ Started GET "/users/export/704.csv" for 127.0.0.1 at 2020-03-10 12:43:45 -0600
30007
+ Processing by UsersController#export as CSV
30008
+ Parameters: {"id"=>"704"}
30009
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 704], ["LIMIT", 1]]
30010
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 286)
30011
+ User Load (0.0ms) SELECT "users".* FROM "users"
30012
+  (0.0ms) begin transaction
30013
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 704]]
30014
+  (1.7ms) commit transaction
30015
+  (0.0ms) begin transaction
30016
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Responder"], ["last_name", "Bunny"], ["address", "1234 Right Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:43:45.917244"], ["updated_at", "2020-03-10 18:43:45.917244"]]
30017
+  (1.6ms) commit transaction
30018
+ Started GET "/users/705.csv" for 127.0.0.1 at 2020-03-10 12:43:45 -0600
30019
+ Processing by UsersController#show as CSV
30020
+ Parameters: {"id"=>"705"}
30021
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 705], ["LIMIT", 1]]
30022
+ Rendering users/respond_with.csv.csvrb
30023
+ Rendered users/respond_with.csv.csvrb (Duration: 0.2ms | Allocations: 170)
30024
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 647)
30025
+ Started GET "/another.csv" for 127.0.0.1 at 2020-03-10 12:43:45 -0600
30026
+ Processing by HomeController#another as CSV
30027
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 131)
30028
+ Started GET "/another" for 127.0.0.1 at 2020-03-10 12:43:45 -0600
30029
+ Processing by HomeController#another as */*
30030
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 134)
30031
+ Started GET "/home/only_html" for 127.0.0.1 at 2020-03-10 12:43:45 -0600
30032
+ Processing by HomeController#only_html as */*
30033
+ Rendering home/only_html.html.erb within layouts/application
30034
+ Rendered home/only_html.html.erb within layouts/application (Duration: 0.2ms | Allocations: 88)
30035
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms | Allocations: 1107)
30036
+ Started GET "/useheader.csv?set_direct=true" for 127.0.0.1 at 2020-03-10 12:43:45 -0600
30037
+ Processing by HomeController#useheader as CSV
30038
+ Parameters: {"set_direct"=>"true"}
30039
+ Rendering home/useheader.csv.csvrb
30040
+ Rendered home/useheader.csv.csvrb (Duration: 0.2ms | Allocations: 170)
30041
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 638)
30042
+ Started GET "/another" for 127.0.0.1 at 2020-03-10 12:43:45 -0600
30043
+ Processing by HomeController#another as HTML
30044
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 131)
30045
+ User Load (0.1ms) SELECT "users".* FROM "users"
30046
+  (0.0ms) begin transaction
30047
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 705]]
30048
+  (1.6ms) commit transaction
30049
+  (0.0ms) begin transaction
30050
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:43:45.933278"], ["updated_at", "2020-03-10 18:43:45.933278"]]
30051
+  (1.6ms) commit transaction
30052
+  (0.0ms) begin transaction
30053
+ Like Create (0.1ms) INSERT INTO "likes" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Carrots"], ["user_id", 706], ["created_at", "2020-03-10 18:43:45.950684"], ["updated_at", "2020-03-10 18:43:45.950684"]]
30054
+  (2.9ms) commit transaction
30055
+  (0.0ms) begin transaction
30056
+ Like Create (0.1ms) INSERT INTO "likes" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Celery"], ["user_id", 706], ["created_at", "2020-03-10 18:43:45.954486"], ["updated_at", "2020-03-10 18:43:45.954486"]]
30057
+  (2.9ms) commit transaction
30058
+ Started GET "/users/706/likes.csv" for 127.0.0.1 at 2020-03-10 12:43:45 -0600
30059
+ Processing by LikesController#index as CSV
30060
+ Parameters: {"user_id"=>"706"}
30061
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 706], ["LIMIT", 1]]
30062
+ Rendering likes/index.csv.csvrb
30063
+ Like Load (0.1ms) SELECT "likes".* FROM "likes" WHERE "likes"."user_id" = ? [["user_id", 706]]
30064
+ Rendered likes/index.csv.csvrb (Duration: 0.9ms | Allocations: 607)
30065
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.1ms | Allocations: 1486)
30066
+  (0.0ms) begin transaction
30067
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:43:45.961629"], ["updated_at", "2020-03-10 18:43:45.961629"]]
30068
+  (1.6ms) commit transaction
30069
+ Started GET "/" for 127.0.0.1 at 2020-03-10 12:43:45 -0600
30070
+ Processing by HomeController#index as HTML
30071
+ Rendering home/index.html.erb within layouts/application
30072
+ Rendered home/index.html.erb within layouts/application (Duration: 0.3ms | Allocations: 251)
30073
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 690)
30074
+ User Load (0.1ms) SELECT "users".* FROM "users"
30075
+  (0.0ms) begin transaction
30076
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 706]]
30077
+  (1.7ms) commit transaction
30078
+  (0.0ms) begin transaction
30079
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 707]]
30080
+  (1.7ms) commit transaction
30081
+  (0.0ms) begin transaction
30082
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:43:45.971244"], ["updated_at", "2020-03-10 18:43:45.971244"]]
30083
+  (1.9ms) commit transaction
30084
+  (0.0ms) begin transaction
30085
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:43:45.973770"], ["updated_at", "2020-03-10 18:43:45.973770"]]
30086
+  (1.9ms) commit transaction
30087
+ Started GET "/users/noaction.csv" for 127.0.0.1 at 2020-03-10 12:43:45 -0600
30088
+ Processing by UsersController#noaction as CSV
30089
+ Rendering users/noaction.csv.csvrb
30090
+ User Load (0.1ms) SELECT "users".* FROM "users"
30091
+ Rendered users/noaction.csv.csvrb (Duration: 0.6ms | Allocations: 441)
30092
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 765)
30093
+  (0.0ms) begin transaction
30094
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:43:45.979191"], ["updated_at", "2020-03-10 18:43:45.979191"]]
30095
+  (1.8ms) commit transaction
30096
+ Started GET "/users/710/send_instructions" for 127.0.0.1 at 2020-03-10 12:43:45 -0600
30097
+ Processing by UsersController#send_instructions as HTML
30098
+ Parameters: {"user_id"=>"710"}
30099
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 710], ["LIMIT", 1]]
30100
+ Rendering users/send_instructions.csv.csvrb
30101
+ Rendered users/send_instructions.csv.csvrb (Duration: 0.2ms | Allocations: 204)
30102
+ Rendering notifier/instructions.html.erb
30103
+ Rendered notifier/instructions.html.erb (Duration: 0.2ms | Allocations: 119)
30104
+ Notifier#instructions: processed outbound mail in 3.8ms
30105
+ Delivered mail 5e67dfe1f1583_36682ac74b00395c5300@samps-dus.mail (3.4ms)
30106
+ Date: Tue, 10 Mar 2020 12:43:45 -0600
30107
+ From: noreply@company.com
30108
+ To: elmer@fudd.com
30109
+ Message-ID: <5e67dfe1f1583_36682ac74b00395c5300@samps-dus.mail>
30110
+ Subject: Instructions
30111
+ Mime-Version: 1.0
30112
+ Content-Type: multipart/mixed;
30113
+ boundary="--==_mimepart_5e67dfe1f1013_36682ac74b00395c529f7";
30114
+ charset=UTF-8
30115
+ Content-Transfer-Encoding: 7bit
30116
+
30117
+
30118
+ ----==_mimepart_5e67dfe1f1013_36682ac74b00395c529f7
30119
+ Content-Type: text/html;
30120
+ charset=UTF-8
30121
+ Content-Transfer-Encoding: 7bit
30122
+
30123
+ <!DOCTYPE html>
30124
+ <html>
30125
+ <head>
30126
+ <meta content='text/html; charset=UTF-8' http-equiv='Content-Type' />
30127
+ </head>
30128
+ <body>
30129
+ <h1>Instructions</h1>
30130
+ <p>
30131
+ You have successfully signed up to example.com,
30132
+ your username is: elmer@fudd.com.<br/>
30133
+ </p>
30134
+ <p>Thanks for joining and have a great day!</p>
30135
+ </body>
30136
+ </html>
30137
+
30138
+ ----==_mimepart_5e67dfe1f1013_36682ac74b00395c529f7
30139
+ Content-Type: text/csv;
30140
+ charset=UTF-8
30141
+ Content-Transfer-Encoding: base64
30142
+ Content-Disposition: attachment;
30143
+ filename=user_710.csv
30144
+ Content-ID: <5e67dfe1f1a17_36682ac74b00395c531af@samps-dus.mail>
30145
+
30146
+ IjcxMCIsIkVsbWVyIiwiZWxtZXJAZnVkZC5jb20iDQoiIiwiSW5zdHJ1Y3Rp
30147
+ b25zIiwiIg0K
30148
+
30149
+ ----==_mimepart_5e67dfe1f1013_36682ac74b00395c529f7--
30150
+
30151
+ Rendering text template
30152
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
30153
+ Completed 200 OK in 9ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 8484)
30154
+  (0.5ms) SELECT sqlite_version(*)
30155
+  (0.0ms) begin transaction
30156
+ User Create (0.2ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:44:02.208260"], ["updated_at", "2020-03-10 18:44:02.208260"]]
30157
+  (2.2ms) commit transaction
30158
+ Started GET "/users/711/send_instructions" for 127.0.0.1 at 2020-03-10 12:44:02 -0600
30159
+ Processing by UsersController#send_instructions as HTML
30160
+ Parameters: {"user_id"=>"711"}
30161
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 711], ["LIMIT", 1]]
30162
+ Rendering users/send_instructions.csv.csvrb
30163
+ Rendered users/send_instructions.csv.csvrb (Duration: 0.4ms | Allocations: 411)
30164
+ Rendering notifier/instructions.html.erb
30165
+ Rendered notifier/instructions.html.erb (Duration: 0.2ms | Allocations: 128)
30166
+ Notifier#instructions: processed outbound mail in 5.1ms
30167
+ Delivered mail 5e67dff23852c_368a2abe4b1d395c671f6@samps-dus.mail (3.1ms)
30168
+ Date: Tue, 10 Mar 2020 12:44:02 -0600
30169
+ From: noreply@company.com
30170
+ To: elmer@fudd.com
30171
+ Message-ID: <5e67dff23852c_368a2abe4b1d395c671f6@samps-dus.mail>
30172
+ Subject: Instructions
30173
+ Mime-Version: 1.0
30174
+ Content-Type: multipart/mixed;
30175
+ boundary="--==_mimepart_5e67dff23800d_368a2abe4b1d395c6706";
30176
+ charset=UTF-8
30177
+ Content-Transfer-Encoding: 7bit
30178
+
30179
+
30180
+ ----==_mimepart_5e67dff23800d_368a2abe4b1d395c6706
30181
+ Content-Type: text/html;
30182
+ charset=UTF-8
30183
+ Content-Transfer-Encoding: 7bit
30184
+
30185
+ <!DOCTYPE html>
30186
+ <html>
30187
+ <head>
30188
+ <meta content='text/html; charset=UTF-8' http-equiv='Content-Type' />
30189
+ </head>
30190
+ <body>
30191
+ <h1>Instructions</h1>
30192
+ <p>
30193
+ You have successfully signed up to example.com,
30194
+ your username is: elmer@fudd.com.<br/>
30195
+ </p>
30196
+ <p>Thanks for joining and have a great day!</p>
30197
+ </body>
30198
+ </html>
30199
+
30200
+ ----==_mimepart_5e67dff23800d_368a2abe4b1d395c6706
30201
+ Content-Type: text/csv;
30202
+ charset=UTF-8
30203
+ Content-Transfer-Encoding: base64
30204
+ Content-Disposition: attachment;
30205
+ filename=user_711.csv
30206
+ Content-ID: <5e67dff23893e_368a2abe4b1d395c672ca@samps-dus.mail>
30207
+
30208
+ IjcxMSIsIkVsbWVyIiwiZWxtZXJAZnVkZC5jb20iDQoiIiwiSW5zdHJ1Y3Rp
30209
+ b25zIiwiIg0K
30210
+
30211
+ ----==_mimepart_5e67dff23800d_368a2abe4b1d395c6706--
30212
+
30213
+ Rendering text template
30214
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
30215
+ Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 10728)
30216
+ User Load (0.1ms) SELECT "users".* FROM "users"
30217
+  (0.0ms) begin transaction
30218
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 708]]
30219
+  (1.9ms) commit transaction
30220
+  (0.0ms) begin transaction
30221
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 709]]
30222
+  (1.8ms) commit transaction
30223
+  (0.0ms) begin transaction
30224
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 710]]
30225
+  (2.1ms) commit transaction
30226
+  (0.0ms) begin transaction
30227
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 711]]
30228
+  (1.8ms) commit transaction
30229
+  (0.0ms) begin transaction
30230
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:44:02.245144"], ["updated_at", "2020-03-10 18:44:02.245144"]]
30231
+  (1.7ms) commit transaction
30232
+  (0.0ms) begin transaction
30233
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:44:02.247662"], ["updated_at", "2020-03-10 18:44:02.247662"]]
30234
+  (1.7ms) commit transaction
30235
+ Started GET "/users/noaction.csv" for 127.0.0.1 at 2020-03-10 12:44:02 -0600
30236
+ Processing by UsersController#noaction as CSV
30237
+ Rendering users/noaction.csv.csvrb
30238
+ User Load (0.1ms) SELECT "users".* FROM "users"
30239
+ Rendered users/noaction.csv.csvrb (Duration: 0.6ms | Allocations: 445)
30240
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.1ms | Allocations: 782)
30241
+ Started GET "/useheader.csv?set_direct=true" for 127.0.0.1 at 2020-03-10 12:44:02 -0600
30242
+ Processing by HomeController#useheader as CSV
30243
+ Parameters: {"set_direct"=>"true"}
30244
+ Rendering home/useheader.csv.csvrb
30245
+ Rendered home/useheader.csv.csvrb (Duration: 0.2ms | Allocations: 168)
30246
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms | Allocations: 1662)
30247
+ Started GET "/withpartial.csv" for 127.0.0.1 at 2020-03-10 12:44:02 -0600
30248
+ Processing by HomeController#withpartial as CSV
30249
+ Rendering home/withpartial.csv.csvrb
30250
+ Rendered home/_cover_sheet.csv.csvrb (Duration: 0.1ms | Allocations: 136)
30251
+ Rendered home/withpartial.csv.csvrb (Duration: 0.5ms | Allocations: 499)
30252
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms | Allocations: 924)
30253
+ User Load (0.1ms) SELECT "users".* FROM "users"
30254
+  (0.0ms) begin transaction
30255
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 712]]
30256
+  (2.2ms) commit transaction
30257
+  (0.0ms) begin transaction
30258
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 713]]
30259
+  (2.9ms) commit transaction
30260
+  (0.1ms) begin transaction
30261
+ User Create (0.4ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:44:02.266893"], ["updated_at", "2020-03-10 18:44:02.266893"]]
30262
+  (2.0ms) commit transaction
30263
+  (0.0ms) begin transaction
30264
+ Like Create (0.1ms) INSERT INTO "likes" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Carrots"], ["user_id", 714], ["created_at", "2020-03-10 18:44:02.283347"], ["updated_at", "2020-03-10 18:44:02.283347"]]
30265
+  (1.5ms) commit transaction
30266
+  (0.0ms) begin transaction
30267
+ Like Create (0.1ms) INSERT INTO "likes" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Celery"], ["user_id", 714], ["created_at", "2020-03-10 18:44:02.285780"], ["updated_at", "2020-03-10 18:44:02.285780"]]
30268
+  (1.7ms) commit transaction
30269
+ Started GET "/users/714/likes.csv" for 127.0.0.1 at 2020-03-10 12:44:02 -0600
30270
+ Processing by LikesController#index as CSV
30271
+ Parameters: {"user_id"=>"714"}
30272
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 714], ["LIMIT", 1]]
30273
+ Rendering likes/index.csv.csvrb
30274
+ Like Load (0.1ms) SELECT "likes".* FROM "likes" WHERE "likes"."user_id" = ? [["user_id", 714]]
30275
+ Rendered likes/index.csv.csvrb (Duration: 0.9ms | Allocations: 601)
30276
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.2ms | Allocations: 1637)
30277
+ User Load (0.0ms) SELECT "users".* FROM "users"
30278
+  (0.0ms) begin transaction
30279
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 714]]
30280
+  (1.8ms) commit transaction
30281
+  (0.0ms) begin transaction
30282
+ User Create (0.8ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:44:02.295576"], ["updated_at", "2020-03-10 18:44:02.295576"]]
30283
+  (3.0ms) commit transaction
30284
+  (0.0ms) begin transaction
30285
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:44:02.305282"], ["updated_at", "2020-03-10 18:44:02.305282"]]
30286
+  (1.8ms) commit transaction
30287
+ Started GET "/users.csv" for 127.0.0.1 at 2020-03-10 12:44:02 -0600
30288
+ Processing by UsersController#index as CSV
30289
+ Rendering users/index.csv.csvrb
30290
+ User Load (0.1ms) SELECT "users".* FROM "users"
30291
+ Rendered users/index.csv.csvrb (Duration: 0.6ms | Allocations: 437)
30292
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.1ms | Allocations: 826)
30293
+ Started GET "/another.csv" for 127.0.0.1 at 2020-03-10 12:44:02 -0600
30294
+ Processing by HomeController#another as CSV
30295
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 135)
30296
+ User Load (0.1ms) SELECT "users".* FROM "users"
30297
+  (0.0ms) begin transaction
30298
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 715]]
30299
+  (1.7ms) commit transaction
30300
+  (0.0ms) begin transaction
30301
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 716]]
30302
+  (2.4ms) commit transaction
30303
+  (0.0ms) begin transaction
30304
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Responder"], ["last_name", "Bunny"], ["address", "1234 Right Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:44:02.317880"], ["updated_at", "2020-03-10 18:44:02.317880"]]
30305
+  (1.5ms) commit transaction
30306
+ Started GET "/users/717.csv" for 127.0.0.1 at 2020-03-10 12:44:02 -0600
30307
+ Processing by UsersController#show as CSV
30308
+ Parameters: {"id"=>"717"}
30309
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 717], ["LIMIT", 1]]
30310
+ Rendering users/respond_with.csv.csvrb
30311
+ Rendered users/respond_with.csv.csvrb (Duration: 0.3ms | Allocations: 165)
30312
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.1ms | Allocations: 643)
30313
+ Started GET "/useheader.csv" for 127.0.0.1 at 2020-03-10 12:44:02 -0600
30314
+ Processing by HomeController#useheader as CSV
30315
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 176)
30316
+ User Load (0.1ms) SELECT "users".* FROM "users"
30317
+  (0.0ms) begin transaction
30318
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 717]]
30319
+  (1.5ms) commit transaction
30320
+  (0.0ms) begin transaction
30321
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:44:02.327776"], ["updated_at", "2020-03-10 18:44:02.327776"]]
30322
+  (1.4ms) commit transaction
30323
+ Started GET "/users/718/render_elsewhere.csv" for 127.0.0.1 at 2020-03-10 12:44:02 -0600
30324
+ Processing by LikesController#render_elsewhere as CSV
30325
+ Parameters: {"user_id"=>"718"}
30326
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 718], ["LIMIT", 1]]
30327
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 252)
30328
+ User Load (0.0ms) SELECT "users".* FROM "users"
30329
+ Started GET "/home/render_elsewhere.csv?type=5" for 127.0.0.1 at 2020-03-10 12:44:02 -0600
30330
+ Processing by HomeController#render_elsewhere as CSV
30331
+ Parameters: {"type"=>"5"}
30332
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 143)
30333
+ Started GET "/home/render_elsewhere.csv?type=4" for 127.0.0.1 at 2020-03-10 12:44:02 -0600
30334
+ Processing by HomeController#render_elsewhere as CSV
30335
+ Parameters: {"type"=>"4"}
30336
+ Rendering users/index.csv.csvrb
30337
+ User Load (0.1ms) SELECT "users".* FROM "users"
30338
+ Rendered users/index.csv.csvrb (Duration: 0.4ms | Allocations: 251)
30339
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 530)
30340
+ Started GET "/home/render_elsewhere.csv?type=3" for 127.0.0.1 at 2020-03-10 12:44:02 -0600
30341
+ Processing by HomeController#render_elsewhere as CSV
30342
+ Parameters: {"type"=>"3"}
30343
+ Rendering users/index.csv.csvrb
30344
+ User Load (0.1ms) SELECT "users".* FROM "users"
30345
+ Rendered users/index.csv.csvrb (Duration: 0.4ms | Allocations: 251)
30346
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 531)
30347
+ Started GET "/home/render_elsewhere.csv?type=1" for 127.0.0.1 at 2020-03-10 12:44:02 -0600
30348
+ Processing by HomeController#render_elsewhere as CSV
30349
+ Parameters: {"type"=>"1"}
30350
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 147)
30351
+ User Load (0.1ms) SELECT "users".* FROM "users"
30352
+ User Load (0.1ms) SELECT "users".* FROM "users"
30353
+  (0.0ms) begin transaction
30354
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 718]]
30355
+  (1.5ms) commit transaction
30356
+  (0.0ms) begin transaction
30357
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Responder"], ["last_name", "Bunny"], ["address", "1234 Right Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:44:02.341400"], ["updated_at", "2020-03-10 18:44:02.341400"]]
30358
+  (1.7ms) commit transaction
30359
+ Started GET "/users/export/719.csv" for 127.0.0.1 at 2020-03-10 12:44:02 -0600
30360
+ Processing by UsersController#export as CSV
30361
+ Parameters: {"id"=>"719"}
30362
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 719], ["LIMIT", 1]]
30363
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 286)
30364
+ Started GET "/another" for 127.0.0.1 at 2020-03-10 12:44:02 -0600
30365
+ Processing by HomeController#another as HTML
30366
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 131)
30367
+ Started GET "/home.csv" for 127.0.0.1 at 2020-03-10 12:44:02 -0600
30368
+ Processing by HomeController#index as CSV
30369
+ Rendering home/index.csv.csvrb
30370
+ Rendered home/index.csv.csvrb (Duration: 0.2ms | Allocations: 168)
30371
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 617)
30372
+  (0.0ms) begin transaction
30373
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:44:02.349587"], ["updated_at", "2020-03-10 18:44:02.349587"]]
30374
+  (1.6ms) commit transaction
30375
+ Started GET "/" for 127.0.0.1 at 2020-03-10 12:44:02 -0600
30376
+ Processing by HomeController#index as HTML
30377
+ Rendering home/index.html.erb within layouts/application
30378
+ Rendered home/index.html.erb within layouts/application (Duration: 0.5ms | Allocations: 252)
30379
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms | Allocations: 1253)
30380
+ Started GET "/another" for 127.0.0.1 at 2020-03-10 12:44:02 -0600
30381
+ Processing by HomeController#another as */*
30382
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 134)
30383
+ Started GET "/home/only_html" for 127.0.0.1 at 2020-03-10 12:44:02 -0600
30384
+ Processing by HomeController#only_html as */*
30385
+ Rendering home/only_html.html.erb within layouts/application
30386
+ Rendered home/only_html.html.erb within layouts/application (Duration: 0.3ms | Allocations: 83)
30387
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 531)
30388
+  (0.5ms) SELECT sqlite_version(*)
30389
+  (0.0ms) begin transaction
30390
+ User Create (0.2ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:44:20.604856"], ["updated_at", "2020-03-10 18:44:20.604856"]]
30391
+  (19.4ms) commit transaction
30392
+ Started GET "/users/721/send_instructions" for 127.0.0.1 at 2020-03-10 12:44:20 -0600
30393
+ Processing by UsersController#send_instructions as HTML
30394
+ Parameters: {"user_id"=>"721"}
30395
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 721], ["LIMIT", 1]]
30396
+ Rendering users/send_instructions.csv.csvrb
30397
+ Rendered users/send_instructions.csv.csvrb (Duration: 0.6ms | Allocations: 546)
30398
+ Rendering notifier/instructions.html.erb
30399
+ Rendered notifier/instructions.html.erb (Duration: 0.2ms | Allocations: 128)
30400
+ Notifier#instructions: processed outbound mail in 5.4ms
30401
+ Delivered mail 5e67e0049eed9_36ac2ad1abbc5960898b5@samps-dus.mail (3.3ms)
30402
+ Date: Tue, 10 Mar 2020 12:44:20 -0600
30403
+ From: noreply@company.com
30404
+ To: elmer@fudd.com
30405
+ Message-ID: <5e67e0049eed9_36ac2ad1abbc5960898b5@samps-dus.mail>
30406
+ Subject: Instructions
30407
+ Mime-Version: 1.0
30408
+ Content-Type: multipart/mixed;
30409
+ boundary="--==_mimepart_5e67e0049e98a_36ac2ad1abbc5960897ad";
30410
+ charset=UTF-8
30411
+ Content-Transfer-Encoding: 7bit
30412
+
30413
+
30414
+ ----==_mimepart_5e67e0049e98a_36ac2ad1abbc5960897ad
30415
+ Content-Type: text/html;
30416
+ charset=UTF-8
30417
+ Content-Transfer-Encoding: 7bit
30418
+
30419
+ <!DOCTYPE html>
30420
+ <html>
30421
+ <head>
30422
+ <meta content='text/html; charset=UTF-8' http-equiv='Content-Type' />
30423
+ </head>
30424
+ <body>
30425
+ <h1>Instructions</h1>
30426
+ <p>
30427
+ You have successfully signed up to example.com,
30428
+ your username is: elmer@fudd.com.<br/>
30429
+ </p>
30430
+ <p>Thanks for joining and have a great day!</p>
30431
+ </body>
30432
+ </html>
30433
+
30434
+ ----==_mimepart_5e67e0049e98a_36ac2ad1abbc5960897ad
30435
+ Content-Type: text/csv;
30436
+ charset=UTF-8
30437
+ Content-Transfer-Encoding: base64
30438
+ Content-Disposition: attachment;
30439
+ filename=user_721.csv
30440
+ Content-ID: <5e67e0049f32f_36ac2ad1abbc5960899f4@samps-dus.mail>
30441
+
30442
+ IjcyMSIsIkVsbWVyIiwiZWxtZXJAZnVkZC5jb20iDQoiIiwiSW5zdHJ1Y3Rp
30443
+ b25zIiwiIg0K
30444
+
30445
+ ----==_mimepart_5e67e0049e98a_36ac2ad1abbc5960897ad--
30446
+
30447
+ Rendering text template
30448
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
30449
+ Completed 200 OK in 18ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 10866)
30450
+ User Load (0.1ms) SELECT "users".* FROM "users"
30451
+  (0.0ms) begin transaction
30452
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 719]]
30453
+  (15.4ms) commit transaction
30454
+  (0.0ms) begin transaction
30455
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 720]]
30456
+  (23.8ms) commit transaction
30457
+  (0.0ms) begin transaction
30458
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 721]]
30459
+  (19.4ms) commit transaction
30460
+  (0.1ms) begin transaction
30461
+ User Create (0.2ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:44:20.717579"], ["updated_at", "2020-03-10 18:44:20.717579"]]
30462
+  (20.3ms) commit transaction
30463
+ Started GET "/users/722/render_elsewhere.csv" for 127.0.0.1 at 2020-03-10 12:44:20 -0600
30464
+ Processing by LikesController#render_elsewhere as CSV
30465
+ Parameters: {"user_id"=>"722"}
30466
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 722], ["LIMIT", 1]]
30467
+ Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.3ms | Allocations: 260)
30468
+ User Load (0.3ms) SELECT "users".* FROM "users"
30469
+ Started GET "/home/render_elsewhere.csv?type=5" for 127.0.0.1 at 2020-03-10 12:44:20 -0600
30470
+ Processing by HomeController#render_elsewhere as CSV
30471
+ Parameters: {"type"=>"5"}
30472
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 146)
30473
+ Started GET "/home/render_elsewhere.csv?type=4" for 127.0.0.1 at 2020-03-10 12:44:20 -0600
30474
+ Processing by HomeController#render_elsewhere as CSV
30475
+ Parameters: {"type"=>"4"}
30476
+ Rendering users/index.csv.csvrb
30477
+ User Load (0.2ms) SELECT "users".* FROM "users"
30478
+ Rendered users/index.csv.csvrb (Duration: 1.3ms | Allocations: 316)
30479
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.2ms | Allocations: 1605)
30480
+ Started GET "/home/render_elsewhere.csv?type=3" for 127.0.0.1 at 2020-03-10 12:44:20 -0600
30481
+ Processing by HomeController#render_elsewhere as CSV
30482
+ Parameters: {"type"=>"3"}
30483
+ Rendering users/index.csv.csvrb
30484
+ User Load (0.1ms) SELECT "users".* FROM "users"
30485
+ Rendered users/index.csv.csvrb (Duration: 0.7ms | Allocations: 251)
30486
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.1ms | Allocations: 532)
30487
+ Started GET "/home/render_elsewhere.csv?type=1" for 127.0.0.1 at 2020-03-10 12:44:20 -0600
30488
+ Processing by HomeController#render_elsewhere as CSV
30489
+ Parameters: {"type"=>"1"}
30490
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 147)
30491
+ User Load (0.1ms) SELECT "users".* FROM "users"
30492
+ Started GET "/useheader.csv?set_direct=true" for 127.0.0.1 at 2020-03-10 12:44:20 -0600
30493
+ Processing by HomeController#useheader as CSV
30494
+ Parameters: {"set_direct"=>"true"}
30495
+ Rendering home/useheader.csv.csvrb
30496
+ Rendered home/useheader.csv.csvrb (Duration: 0.3ms | Allocations: 165)
30497
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms | Allocations: 643)
30498
+ User Load (0.1ms) SELECT "users".* FROM "users"
30499
+  (0.0ms) begin transaction
30500
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 722]]
30501
+  (15.4ms) commit transaction
30502
+  (0.0ms) begin transaction
30503
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Responder"], ["last_name", "Bunny"], ["address", "1234 Right Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:44:20.811223"], ["updated_at", "2020-03-10 18:44:20.811223"]]
30504
+  (25.4ms) commit transaction
30505
+ Started GET "/users/export/723.csv" for 127.0.0.1 at 2020-03-10 12:44:20 -0600
30506
+ Processing by UsersController#export as CSV
30507
+ Parameters: {"id"=>"723"}
30508
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 723], ["LIMIT", 1]]
30509
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 286)
30510
+ Started GET "/another" for 127.0.0.1 at 2020-03-10 12:44:20 -0600
30511
+ Processing by HomeController#another as */*
30512
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 134)
30513
+ Started GET "/home/only_html" for 127.0.0.1 at 2020-03-10 12:44:20 -0600
30514
+ Processing by HomeController#only_html as */*
30515
+ Rendering home/only_html.html.erb within layouts/application
30516
+ Rendered home/only_html.html.erb within layouts/application (Duration: 0.1ms | Allocations: 83)
30517
+ Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.0ms | Allocations: 1102)
30518
+ User Load (0.1ms) SELECT "users".* FROM "users"
30519
+  (0.0ms) begin transaction
30520
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 723]]
30521
+  (16.8ms) commit transaction
30522
+  (0.0ms) begin transaction
30523
+ User Create (0.2ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Responder"], ["last_name", "Bunny"], ["address", "1234 Right Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:44:20.868795"], ["updated_at", "2020-03-10 18:44:20.868795"]]
30524
+  (19.4ms) commit transaction
30525
+ Started GET "/users/724.csv" for 127.0.0.1 at 2020-03-10 12:44:20 -0600
30526
+ Processing by UsersController#show as CSV
30527
+ Parameters: {"id"=>"724"}
30528
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 724], ["LIMIT", 1]]
30529
+ Rendering users/respond_with.csv.csvrb
30530
+ Rendered users/respond_with.csv.csvrb (Duration: 0.2ms | Allocations: 165)
30531
+ Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 643)
30532
+ Started GET "/home.csv" for 127.0.0.1 at 2020-03-10 12:44:20 -0600
30533
+ Processing by HomeController#index as CSV
30534
+ Rendering home/index.csv.csvrb
30535
+ Rendered home/index.csv.csvrb (Duration: 0.7ms | Allocations: 168)
30536
+ Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms | Allocations: 619)
30537
+ User Load (0.1ms) SELECT "users".* FROM "users"
30538
+  (0.0ms) begin transaction
30539
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 724]]
30540
+  (16.1ms) commit transaction
30541
+  (0.1ms) begin transaction
30542
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:44:20.916986"], ["updated_at", "2020-03-10 18:44:20.916986"]]
30543
+  (23.5ms) commit transaction
30544
+  (0.0ms) begin transaction
30545
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:44:20.941420"], ["updated_at", "2020-03-10 18:44:20.941420"]]
30546
+  (19.4ms) commit transaction
30547
+ Started GET "/users.csv" for 127.0.0.1 at 2020-03-10 12:44:20 -0600
30548
+ Processing by UsersController#index as CSV
30549
+ Rendering users/index.csv.csvrb
30550
+ User Load (0.2ms) SELECT "users".* FROM "users"
30551
+ Rendered users/index.csv.csvrb (Duration: 1.1ms | Allocations: 371)
30552
+ Completed 200 OK in 5ms (Views: 2.7ms | ActiveRecord: 0.2ms | Allocations: 624)
30553
+ Started GET "/useheader.csv" for 127.0.0.1 at 2020-03-10 12:44:20 -0600
30554
+ Processing by HomeController#useheader as CSV
30555
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 176)
30556
+ Started GET "/another" for 127.0.0.1 at 2020-03-10 12:44:20 -0600
30557
+ Processing by HomeController#another as HTML
30558
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 131)
30559
+ User Load (0.1ms) SELECT "users".* FROM "users"
30560
+  (0.1ms) begin transaction
30561
+ User Destroy (0.2ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 725]]
30562
+  (14.6ms) commit transaction
30563
+  (0.1ms) begin transaction
30564
+ User Destroy (0.2ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 726]]
30565
+  (24.5ms) commit transaction
30566
+  (0.2ms) begin transaction
30567
+ User Create (0.8ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:44:21.032882"], ["updated_at", "2020-03-10 18:44:21.032882"]]
30568
+  (17.3ms) commit transaction
30569
+  (0.1ms) begin transaction
30570
+ User Create (0.6ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:44:21.054562"], ["updated_at", "2020-03-10 18:44:21.054562"]]
30571
+  (17.6ms) commit transaction
30572
+ Started GET "/users/noaction.csv" for 127.0.0.1 at 2020-03-10 12:44:21 -0600
30573
+ Processing by UsersController#noaction as CSV
30574
+ Rendering users/noaction.csv.csvrb
30575
+ User Load (0.3ms) SELECT "users".* FROM "users"
30576
+ Rendered users/noaction.csv.csvrb (Duration: 3.6ms | Allocations: 436)
30577
+ Completed 200 OK in 6ms (Views: 4.3ms | ActiveRecord: 0.3ms | Allocations: 759)
30578
+ User Load (0.3ms) SELECT "users".* FROM "users"
30579
+  (0.2ms) begin transaction
30580
+ User Destroy (0.5ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 727]]
30581
+  (16.2ms) commit transaction
30582
+  (0.1ms) begin transaction
30583
+ User Destroy (2.9ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 728]]
30584
+  (20.6ms) commit transaction
30585
+  (0.1ms) begin transaction
30586
+ User Create (0.6ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:44:21.146069"], ["updated_at", "2020-03-10 18:44:21.146069"]]
30587
+  (16.0ms) commit transaction
30588
+  (0.0ms) begin transaction
30589
+ Like Create (0.2ms) INSERT INTO "likes" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Carrots"], ["user_id", 729], ["created_at", "2020-03-10 18:44:21.213225"], ["updated_at", "2020-03-10 18:44:21.213225"]]
30590
+  (15.4ms) commit transaction
30591
+  (0.0ms) begin transaction
30592
+ Like Create (0.1ms) INSERT INTO "likes" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Celery"], ["user_id", 729], ["created_at", "2020-03-10 18:44:21.229906"], ["updated_at", "2020-03-10 18:44:21.229906"]]
30593
+  (19.6ms) commit transaction
30594
+ Started GET "/users/729/likes.csv" for 127.0.0.1 at 2020-03-10 12:44:21 -0600
30595
+ Processing by LikesController#index as CSV
30596
+ Parameters: {"user_id"=>"729"}
30597
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 729], ["LIMIT", 1]]
30598
+ Rendering likes/index.csv.csvrb
30599
+ Like Load (0.1ms) SELECT "likes".* FROM "likes" WHERE "likes"."user_id" = ? [["user_id", 729]]
30600
+ Rendered likes/index.csv.csvrb (Duration: 1.1ms | Allocations: 602)
30601
+ Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.2ms | Allocations: 1481)
30602
+ Started GET "/withpartial.csv" for 127.0.0.1 at 2020-03-10 12:44:21 -0600
30603
+ Processing by HomeController#withpartial as CSV
30604
+ Rendering home/withpartial.csv.csvrb
30605
+ Rendered home/_cover_sheet.csv.csvrb (Duration: 0.2ms | Allocations: 136)
30606
+ Rendered home/withpartial.csv.csvrb (Duration: 0.7ms | Allocations: 499)
30607
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms | Allocations: 924)
30608
+ Started GET "/another.csv" for 127.0.0.1 at 2020-03-10 12:44:21 -0600
30609
+ Processing by HomeController#another as CSV
30610
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 131)
30611
+  (0.0ms) begin transaction
30612
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:44:21.259723"], ["updated_at", "2020-03-10 18:44:21.259723"]]
30613
+  (21.3ms) commit transaction
30614
+ Started GET "/" for 127.0.0.1 at 2020-03-10 12:44:21 -0600
30615
+ Processing by HomeController#index as HTML
30616
+ Rendering home/index.html.erb within layouts/application
30617
+ Rendered home/index.html.erb within layouts/application (Duration: 0.5ms | Allocations: 250)
30618
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms | Allocations: 688)
30619
+  (0.5ms) SELECT sqlite_version(*)
30620
+  (0.0ms) begin transaction
30621
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:44:43.795852"], ["updated_at", "2020-03-10 18:44:43.795852"]]
30622
+  (53.0ms) commit transaction
30623
+ Started GET "/users/731/send_instructions" for 127.0.0.1 at 2020-03-10 12:44:43 -0600
30624
+ Processing by UsersController#send_instructions as HTML
30625
+ Parameters: {"user_id"=>"731"}
30626
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 731], ["LIMIT", 1]]
30627
+ Rendering users/send_instructions.csv.csvrb
30628
+ Rendered users/send_instructions.csv.csvrb (Duration: 1.1ms | Allocations: 545)
30629
+ Rendering notifier/instructions.html.erb
30630
+ Rendered notifier/instructions.html.erb (Duration: 0.3ms | Allocations: 128)
30631
+ Notifier#instructions: processed outbound mail in 10.4ms
30632
+ Delivered mail 5e67e01bd76d4_36c72acc2f79996c385e8@samps-dus.mail (5.6ms)
30633
+ Date: Tue, 10 Mar 2020 12:44:43 -0600
30634
+ From: noreply@company.com
30635
+ To: elmer@fudd.com
30636
+ Message-ID: <5e67e01bd76d4_36c72acc2f79996c385e8@samps-dus.mail>
30637
+ Subject: Instructions
30638
+ Mime-Version: 1.0
30639
+ Content-Type: multipart/mixed;
30640
+ boundary="--==_mimepart_5e67e01bd6d4f_36c72acc2f79996c384d7";
30641
+ charset=UTF-8
30642
+ Content-Transfer-Encoding: 7bit
30643
+
30644
+
30645
+ ----==_mimepart_5e67e01bd6d4f_36c72acc2f79996c384d7
30646
+ Content-Type: text/html;
30647
+ charset=UTF-8
30648
+ Content-Transfer-Encoding: 7bit
30649
+
30650
+ <!DOCTYPE html>
30651
+ <html>
30652
+ <head>
30653
+ <meta content='text/html; charset=UTF-8' http-equiv='Content-Type' />
30654
+ </head>
30655
+ <body>
30656
+ <h1>Instructions</h1>
30657
+ <p>
30658
+ You have successfully signed up to example.com,
30659
+ your username is: elmer@fudd.com.<br/>
30660
+ </p>
30661
+ <p>Thanks for joining and have a great day!</p>
30662
+ </body>
30663
+ </html>
30664
+
30665
+ ----==_mimepart_5e67e01bd6d4f_36c72acc2f79996c384d7
30666
+ Content-Type: text/csv;
30667
+ charset=UTF-8
30668
+ Content-Transfer-Encoding: base64
30669
+ Content-Disposition: attachment;
30670
+ filename=user_731.csv
30671
+ Content-ID: <5e67e01bd7e63_36c72acc2f79996c3866a@samps-dus.mail>
30672
+
30673
+ IjczMSIsIkVsbWVyIiwiZWxtZXJAZnVkZC5jb20iDQoiIiwiSW5zdHJ1Y3Rp
30674
+ b25zIiwiIg0K
30675
+
30676
+ ----==_mimepart_5e67e01bd6d4f_36c72acc2f79996c384d7--
30677
+
30678
+ Rendering text template
30679
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
30680
+ Completed 200 OK in 22ms (Views: 0.7ms | ActiveRecord: 0.2ms | Allocations: 10863)
30681
+ Started GET "/home.csv" for 127.0.0.1 at 2020-03-10 12:44:43 -0600
30682
+ Processing by HomeController#index as CSV
30683
+ Rendering home/index.csv.csvrb
30684
+ Rendered home/index.csv.csvrb (Duration: 0.2ms | Allocations: 171)
30685
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms | Allocations: 1670)
30686
+ Started GET "/another" for 127.0.0.1 at 2020-03-10 12:44:43 -0600
30687
+ Processing by HomeController#another as */*
30688
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 138)
30689
+ Started GET "/home/only_html" for 127.0.0.1 at 2020-03-10 12:44:43 -0600
30690
+ Processing by HomeController#only_html as */*
30691
+ Rendering home/only_html.html.erb within layouts/application
30692
+ Rendered home/only_html.html.erb within layouts/application (Duration: 0.1ms | Allocations: 83)
30693
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms | Allocations: 1102)
30694
+ User Load (0.1ms) SELECT "users".* FROM "users"
30695
+  (0.0ms) begin transaction
30696
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 729]]
30697
+  (1.7ms) commit transaction
30698
+  (0.0ms) begin transaction
30699
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 730]]
30700
+  (1.7ms) commit transaction
30701
+  (0.0ms) begin transaction
30702
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 731]]
30703
+  (1.6ms) commit transaction
30704
+  (0.0ms) begin transaction
30705
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:44:43.907042"], ["updated_at", "2020-03-10 18:44:43.907042"]]
30706
+  (1.6ms) commit transaction
30707
+  (0.0ms) begin transaction
30708
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:44:43.909460"], ["updated_at", "2020-03-10 18:44:43.909460"]]
30709
+  (1.7ms) commit transaction
30710
+ Started GET "/users/noaction.csv" for 127.0.0.1 at 2020-03-10 12:44:43 -0600
30711
+ Processing by UsersController#noaction as CSV
30712
+ Rendering users/noaction.csv.csvrb
30713
+ User Load (0.1ms) SELECT "users".* FROM "users"
30714
+ Rendered users/noaction.csv.csvrb (Duration: 0.6ms | Allocations: 445)
30715
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.1ms | Allocations: 769)
30716
+ User Load (0.1ms) SELECT "users".* FROM "users"
30717
+  (0.0ms) begin transaction
30718
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 732]]
30719
+  (3.0ms) commit transaction
30720
+  (0.0ms) begin transaction
30721
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 733]]
30722
+  (1.6ms) commit transaction
30723
+  (0.0ms) begin transaction
30724
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:44:43.920641"], ["updated_at", "2020-03-10 18:44:43.920641"]]
30725
+  (1.5ms) commit transaction
30726
+ Started GET "/users/734/render_elsewhere.csv" for 127.0.0.1 at 2020-03-10 12:44:43 -0600
30727
+ Processing by LikesController#render_elsewhere as CSV
30728
+ Parameters: {"user_id"=>"734"}
30729
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 734], ["LIMIT", 1]]
30730
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 255)
30731
+ User Load (0.1ms) SELECT "users".* FROM "users"
30732
+ Started GET "/home/render_elsewhere.csv?type=5" for 127.0.0.1 at 2020-03-10 12:44:43 -0600
30733
+ Processing by HomeController#render_elsewhere as CSV
30734
+ Parameters: {"type"=>"5"}
30735
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 143)
30736
+ Started GET "/home/render_elsewhere.csv?type=4" for 127.0.0.1 at 2020-03-10 12:44:43 -0600
30737
+ Processing by HomeController#render_elsewhere as CSV
30738
+ Parameters: {"type"=>"4"}
30739
+ Rendering users/index.csv.csvrb
30740
+ User Load (0.1ms) SELECT "users".* FROM "users"
30741
+ Rendered users/index.csv.csvrb (Duration: 0.5ms | Allocations: 316)
30742
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.1ms | Allocations: 729)
30743
+ Started GET "/home/render_elsewhere.csv?type=3" for 127.0.0.1 at 2020-03-10 12:44:43 -0600
30744
+ Processing by HomeController#render_elsewhere as CSV
30745
+ Parameters: {"type"=>"3"}
30746
+ Rendering users/index.csv.csvrb
30747
+ User Load (0.0ms) SELECT "users".* FROM "users"
30748
+ Rendered users/index.csv.csvrb (Duration: 0.3ms | Allocations: 251)
30749
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 532)
30750
+ Started GET "/home/render_elsewhere.csv?type=1" for 127.0.0.1 at 2020-03-10 12:44:43 -0600
30751
+ Processing by HomeController#render_elsewhere as CSV
30752
+ Parameters: {"type"=>"1"}
30753
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms | Allocations: 147)
30754
+ User Load (0.0ms) SELECT "users".* FROM "users"
30755
+ Started GET "/useheader.csv" for 127.0.0.1 at 2020-03-10 12:44:43 -0600
30756
+ Processing by HomeController#useheader as CSV
30757
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 176)
30758
+ User Load (0.1ms) SELECT "users".* FROM "users"
30759
+  (0.0ms) begin transaction
30760
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 734]]
30761
+  (1.6ms) commit transaction
30762
+  (0.0ms) begin transaction
30763
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Responder"], ["last_name", "Bunny"], ["address", "1234 Right Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:44:43.937807"], ["updated_at", "2020-03-10 18:44:43.937807"]]
30764
+  (1.6ms) commit transaction
30765
+ Started GET "/users/735.csv" for 127.0.0.1 at 2020-03-10 12:44:43 -0600
30766
+ Processing by UsersController#show as CSV
30767
+ Parameters: {"id"=>"735"}
30768
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 735], ["LIMIT", 1]]
30769
+ Rendering users/respond_with.csv.csvrb
30770
+ Rendered users/respond_with.csv.csvrb (Duration: 0.2ms | Allocations: 165)
30771
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 643)
30772
+  (0.0ms) begin transaction
30773
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:44:43.942854"], ["updated_at", "2020-03-10 18:44:43.942854"]]
30774
+  (1.7ms) commit transaction
30775
+ Started GET "/" for 127.0.0.1 at 2020-03-10 12:44:43 -0600
30776
+ Processing by HomeController#index as HTML
30777
+ Rendering home/index.html.erb within layouts/application
30778
+ Rendered home/index.html.erb within layouts/application (Duration: 6.0ms | Allocations: 248)
30779
+ Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.0ms | Allocations: 689)
30780
+ Started GET "/withpartial.csv" for 127.0.0.1 at 2020-03-10 12:44:43 -0600
30781
+ Processing by HomeController#withpartial as CSV
30782
+ Rendering home/withpartial.csv.csvrb
30783
+ Rendered home/_cover_sheet.csv.csvrb (Duration: 0.2ms | Allocations: 136)
30784
+ Rendered home/withpartial.csv.csvrb (Duration: 0.5ms | Allocations: 500)
30785
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms | Allocations: 925)
30786
+ Started GET "/another.csv" for 127.0.0.1 at 2020-03-10 12:44:43 -0600
30787
+ Processing by HomeController#another as CSV
30788
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 131)
30789
+ User Load (0.1ms) SELECT "users".* FROM "users"
30790
+  (0.0ms) begin transaction
30791
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 735]]
30792
+  (1.5ms) commit transaction
30793
+  (0.0ms) begin transaction
30794
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 736]]
30795
+  (1.6ms) commit transaction
30796
+  (0.0ms) begin transaction
30797
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:44:43.962883"], ["updated_at", "2020-03-10 18:44:43.962883"]]
30798
+  (3.1ms) commit transaction
30799
+  (0.0ms) begin transaction
30800
+ Like Create (0.1ms) INSERT INTO "likes" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Carrots"], ["user_id", 737], ["created_at", "2020-03-10 18:44:43.976220"], ["updated_at", "2020-03-10 18:44:43.976220"]]
30801
+  (1.7ms) commit transaction
30802
+  (0.0ms) begin transaction
30803
+ Like Create (0.1ms) INSERT INTO "likes" ("name", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Celery"], ["user_id", 737], ["created_at", "2020-03-10 18:44:43.978831"], ["updated_at", "2020-03-10 18:44:43.978831"]]
30804
+  (1.6ms) commit transaction
30805
+ Started GET "/users/737/likes.csv" for 127.0.0.1 at 2020-03-10 12:44:43 -0600
30806
+ Processing by LikesController#index as CSV
30807
+ Parameters: {"user_id"=>"737"}
30808
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 737], ["LIMIT", 1]]
30809
+ Rendering likes/index.csv.csvrb
30810
+ Like Load (0.1ms) SELECT "likes".* FROM "likes" WHERE "likes"."user_id" = ? [["user_id", 737]]
30811
+ Rendered likes/index.csv.csvrb (Duration: 0.9ms | Allocations: 601)
30812
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.1ms | Allocations: 1479)
30813
+ User Load (0.1ms) SELECT "users".* FROM "users"
30814
+  (0.0ms) begin transaction
30815
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 737]]
30816
+  (1.6ms) commit transaction
30817
+  (0.0ms) begin transaction
30818
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Responder"], ["last_name", "Bunny"], ["address", "1234 Right Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:44:43.987148"], ["updated_at", "2020-03-10 18:44:43.987148"]]
30819
+  (1.7ms) commit transaction
30820
+ Started GET "/users/export/738.csv" for 127.0.0.1 at 2020-03-10 12:44:43 -0600
30821
+ Processing by UsersController#export as CSV
30822
+ Parameters: {"id"=>"738"}
30823
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 738], ["LIMIT", 1]]
30824
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 286)
30825
+ User Load (0.0ms) SELECT "users".* FROM "users"
30826
+  (0.0ms) begin transaction
30827
+ User Destroy (0.1ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 738]]
30828
+  (1.6ms) commit transaction
30829
+  (0.0ms) begin transaction
30830
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer"], ["last_name", "Fudd"], ["address", "1234 Somewhere, Over NY 11111"], ["email", "elmer@fudd.com"], ["created_at", "2020-03-10 18:44:43.994367"], ["updated_at", "2020-03-10 18:44:43.994367"]]
30831
+  (1.7ms) commit transaction
30832
+  (0.0ms) begin transaction
30833
+ User Create (0.1ms) INSERT INTO "users" ("name", "last_name", "address", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bugs"], ["last_name", "Bunny"], ["address", "1234 Left Turn, Albuquerque NM 22222"], ["email", "bugs@bunny.com"], ["created_at", "2020-03-10 18:44:43.996743"], ["updated_at", "2020-03-10 18:44:43.996743"]]
30834
+  (1.8ms) commit transaction
30835
+ Started GET "/users.csv" for 127.0.0.1 at 2020-03-10 12:44:43 -0600
30836
+ Processing by UsersController#index as CSV
30837
+ Rendering users/index.csv.csvrb
30838
+ User Load (0.1ms) SELECT "users".* FROM "users"
30839
+ Rendered users/index.csv.csvrb (Duration: 0.5ms | Allocations: 371)
30840
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 623)
30841
+ Started GET "/another" for 127.0.0.1 at 2020-03-10 12:44:44 -0600
30842
+ Processing by HomeController#another as HTML
30843
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 131)
30844
+ Started GET "/useheader.csv?set_direct=true" for 127.0.0.1 at 2020-03-10 12:44:44 -0600
30845
+ Processing by HomeController#useheader as CSV
30846
+ Parameters: {"set_direct"=>"true"}
30847
+ Rendering home/useheader.csv.csvrb
30848
+ Rendered home/useheader.csv.csvrb (Duration: 0.2ms | Allocations: 165)
30849
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 632)