user_notifier 0.0.5 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3f24fb87d1a33bc6c5548f2d534825be9f2f3709
4
- data.tar.gz: 02b0d8c96d93fed76d5cdb626df8fbaa2ec9ac8d
3
+ metadata.gz: 4eea93c56a1d631f7ce1440cdc8f3c6360ebdb72
4
+ data.tar.gz: d117fe1460f2da2062b6802722e9e7a0c850057e
5
5
  SHA512:
6
- metadata.gz: 27e39bc6b32b7030a02b0d3993b39abf5a6bc95a65907f6f0a0bd4ae3ab71eb7306ea26efe600aeb3bd2eeccc97ed404ee8736027dd74760d7bd92d826273b18
7
- data.tar.gz: e6ed32270997967496c0e898c31b0b6649ffca8496286c5a15093b36074af1ba2236d9ef8f3e5c21fd5b171aec5ee5b43812186a91b01d96ee79ee63b57d7a53
6
+ metadata.gz: c7ba341e3a30900c162bc9644756af9a5960c536cc76aba1d62576f57cf72163bcd39107bc1a0aa2c19caeec862b0effa2b59fa041825abdc0a07b7d915069be
7
+ data.tar.gz: d69f11700cfa024aba57e08b0a19089460945780c9a0266399ec6651c5793ba674ae641ce449baad07fd632d90dfb375fe42c0d1164a2b08d605bad9c6dfc820
@@ -3,21 +3,41 @@ class UserNotifier::Mailer < ActionMailer::Base
3
3
 
4
4
  def notify(notification)
5
5
  @notification = notification
6
- old_locale = I18n.locale
7
- I18n.locale = @notification.locale
8
- subject = render_to_string(template: "user_notifier/mailer/#{@notification.template_name}_subject")
9
- m = mail({
6
+
7
+ I18n.with_locale @notification.locale do
8
+ configure_xsmtp_headers if UserNotifier.use_xsmtp_api
9
+ mail(mail_attributes)
10
+ end
11
+ end
12
+
13
+ private
14
+
15
+ def subject
16
+ render_to_string(template: "user_notifier/mailer/#{@notification.template_name}_subject")
17
+ end
18
+
19
+ def mail_attributes
20
+ {
10
21
  from: address_format(UserNotifier.system_email, @notification.from_name),
11
22
  reply_to: address_format(@notification.from_email, @notification.from_name),
12
23
  to: @notification.user.email,
13
24
  subject: subject,
14
25
  template_name: @notification.template_name
15
- })
16
- I18n.locale = old_locale
17
- m
26
+ }
27
+ end
28
+
29
+
30
+ def configure_xsmtp_headers
31
+ headers['X-SMTPAPI'] = {
32
+ unique_args: {
33
+ notification_user: @notification.user_id,
34
+ notification_type: @notification.class.to_s,
35
+ notification_id: @notification.id,
36
+ template_name: @notification.template_name
37
+ }
38
+ }.to_json
18
39
  end
19
40
 
20
- private
21
41
  def address_format email, name
22
42
  address = Mail::Address.new email
23
43
  address.display_name = name
@@ -1,12 +1,13 @@
1
1
  module UserNotifier
2
2
  module Configuration
3
- VALID_CONFIG_KEYS = [:system_email, :email_layout, :user_class_name, :from_email, :from_name].freeze
3
+ VALID_CONFIG_KEYS = [:system_email, :email_layout, :user_class_name, :from_email, :from_name, :use_xsmtp_api].freeze
4
4
 
5
5
  DEFAULT_SYSTEM_EMAIL = nil
6
6
  DEFAULT_EMAIL_LAYOUT = 'email'
7
7
  DEFAULT_USER_CLASS_NAME = 'User'
8
8
  DEFAULT_FROM_EMAIL = 'no-reply@yourdomain'
9
9
  DEFAULT_FROM_NAME = 'please configure a default from name'
10
+ DEFAULT_USE_XSMTP_API = false
10
11
 
11
12
  # Build accessor methods for every config options so we can do this, for example:
12
13
  # Awesome.format = <img src="http://s2.wp.com/wp-includes/images/smilies/icon_mad.gif?m=1129645325g" alt=":x" class="wp-smiley"> ml
@@ -29,8 +30,9 @@ module UserNotifier
29
30
  self.system_email = DEFAULT_SYSTEM_EMAIL
30
31
  self.email_layout = DEFAULT_EMAIL_LAYOUT
31
32
  self.user_class_name = DEFAULT_USER_CLASS_NAME
32
- self.from_email = DEFAULT_FROM_EMAIL
33
- self.from_name = DEFAULT_FROM_NAME
33
+ self.from_email = DEFAULT_FROM_EMAIL
34
+ self.from_name = DEFAULT_FROM_NAME
35
+ self.use_xsmtp_api = DEFAULT_USE_XSMTP_API
34
36
  end
35
37
 
36
38
  end # Configuration
@@ -1,3 +1,3 @@
1
1
  module UserNotifier
2
- VERSION = "0.0.5"
2
+ VERSION = "0.1.0"
3
3
  end
@@ -0,0 +1 @@
1
+ <%= yield %>
@@ -0,0 +1 @@
1
+ corpo de teste
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ pt:
23
+ hello: "Hello world"
@@ -1469,3 +1469,3713 @@
1469
1469
  SQL (0.2ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1470
1470
   (0.1ms) RELEASE SAVEPOINT active_record_1
1471
1471
   (0.7ms) rollback transaction
1472
+  (21.8ms) begin transaction
1473
+  (0.1ms) rollback transaction
1474
+  (0.1ms) begin transaction
1475
+  (0.1ms) rollback transaction
1476
+  (0.1ms) begin transaction
1477
+  (0.1ms) rollback transaction
1478
+  (0.1ms) begin transaction
1479
+  (0.0ms) rollback transaction
1480
+  (0.1ms) begin transaction
1481
+  (0.0ms) rollback transaction
1482
+  (0.1ms) begin transaction
1483
+  (0.1ms) rollback transaction
1484
+  (0.1ms) begin transaction
1485
+  (0.1ms) rollback transaction
1486
+  (0.1ms) begin transaction
1487
+  (0.1ms) rollback transaction
1488
+  (0.1ms) begin transaction
1489
+  (0.1ms) rollback transaction
1490
+  (0.1ms) begin transaction
1491
+  (0.1ms) rollback transaction
1492
+  (0.1ms) begin transaction
1493
+  (0.1ms) SAVEPOINT active_record_1
1494
+ SQL (0.8ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:10:20.737969"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:10:20.737969"]]
1495
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1496
+  (0.1ms) SAVEPOINT active_record_1
1497
+ SQL (0.6ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-10-29 15:10:20.750132"], ["title", "test"], ["updated_at", "2014-10-29 15:10:20.750132"], ["user_id", 1]]
1498
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1499
+  (0.1ms) SAVEPOINT active_record_1
1500
+ SQL (0.2ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1501
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1502
+ UserNotification Load (0.2ms) SELECT "user_notifications".* FROM "user_notifications" ORDER BY "user_notifications"."id" DESC LIMIT 1
1503
+  (0.9ms) rollback transaction
1504
+  (0.1ms) begin transaction
1505
+  (0.1ms) SAVEPOINT active_record_1
1506
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:10:20.778219"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:10:20.778219"]]
1507
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1508
+  (0.1ms) SAVEPOINT active_record_1
1509
+ SQL (0.6ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-10-29 15:10:20.780506"], ["title", "test"], ["updated_at", "2014-10-29 15:10:20.780506"], ["user_id", 1]]
1510
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1511
+  (0.1ms) SAVEPOINT active_record_1
1512
+ SQL (0.2ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1513
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1514
+  (0.9ms) rollback transaction
1515
+  (0.1ms) begin transaction
1516
+  (0.1ms) SAVEPOINT active_record_1
1517
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:10:20.787676"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:10:20.787676"]]
1518
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1519
+  (0.0ms) SAVEPOINT active_record_1
1520
+ SQL (0.5ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-10-29 15:10:20.789728"], ["title", "test"], ["updated_at", "2014-10-29 15:10:20.789728"], ["user_id", 1]]
1521
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1522
+  (0.1ms) SAVEPOINT active_record_1
1523
+ SQL (0.1ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1524
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1525
+  (1.0ms) rollback transaction
1526
+  (0.1ms) begin transaction
1527
+  (0.1ms) SAVEPOINT active_record_1
1528
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:10:20.812459"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:10:20.812459"]]
1529
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1530
+  (0.1ms) SAVEPOINT active_record_1
1531
+ SQL (0.5ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-10-29 15:10:20.815296"], ["title", "test"], ["updated_at", "2014-10-29 15:10:20.815296"], ["user_id", 1]]
1532
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1533
+  (0.1ms) SAVEPOINT active_record_1
1534
+ SQL (0.2ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1535
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1536
+  (1.0ms) rollback transaction
1537
+  (0.1ms) begin transaction
1538
+  (0.1ms) SAVEPOINT active_record_1
1539
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:10:20.824340"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:10:20.824340"]]
1540
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1541
+  (0.1ms) SAVEPOINT active_record_1
1542
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-10-29 15:10:20.826444"], ["title", "test"], ["updated_at", "2014-10-29 15:10:20.826444"], ["user_id", 1]]
1543
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1544
+  (0.8ms) rollback transaction
1545
+  (0.1ms) begin transaction
1546
+  (0.1ms) SAVEPOINT active_record_1
1547
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:10:20.831878"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:10:20.831878"]]
1548
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1549
+  (0.0ms) SAVEPOINT active_record_1
1550
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-10-29 15:10:20.834027"], ["title", "test"], ["updated_at", "2014-10-29 15:10:20.834027"], ["user_id", 1]]
1551
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1552
+  (0.1ms) SAVEPOINT active_record_1
1553
+ SQL (0.3ms) INSERT INTO "order_notifications" ("from_email", "from_name", "locale", "order_id", "template_name", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["order_id", 1], ["template_name", "test"], ["user_id", 1]]
1554
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1555
+  (0.7ms) rollback transaction
1556
+  (0.1ms) begin transaction
1557
+  (0.1ms) SAVEPOINT active_record_1
1558
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:10:20.851485"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:10:20.851485"]]
1559
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1560
+  (0.0ms) SAVEPOINT active_record_1
1561
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-10-29 15:10:20.853901"], ["title", "test"], ["updated_at", "2014-10-29 15:10:20.853901"], ["user_id", 1]]
1562
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1563
+  (0.1ms) SAVEPOINT active_record_1
1564
+ SQL (0.2ms) INSERT INTO "order_notifications" ("from_email", "from_name", "locale", "order_id", "template_name", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["order_id", 1], ["template_name", "test"], ["user_id", 1]]
1565
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1566
+  (1.1ms) rollback transaction
1567
+  (0.1ms) begin transaction
1568
+  (0.1ms) SAVEPOINT active_record_1
1569
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:10:20.860299"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:10:20.860299"]]
1570
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1571
+  (0.0ms) SAVEPOINT active_record_1
1572
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-10-29 15:10:20.862272"], ["title", "test"], ["updated_at", "2014-10-29 15:10:20.862272"], ["user_id", 1]]
1573
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1574
+  (0.1ms) SAVEPOINT active_record_1
1575
+ SQL (0.1ms) INSERT INTO "order_notifications" ("from_email", "from_name", "locale", "order_id", "template_name", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["order_id", 1], ["template_name", "test"], ["user_id", 1]]
1576
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1577
+  (0.9ms) rollback transaction
1578
+  (0.1ms) begin transaction
1579
+  (0.1ms) SAVEPOINT active_record_1
1580
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:10:20.869801"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:10:20.869801"]]
1581
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1582
+  (0.1ms) SAVEPOINT active_record_1
1583
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-10-29 15:10:20.871953"], ["title", "test"], ["updated_at", "2014-10-29 15:10:20.871953"], ["user_id", 1]]
1584
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1585
+  (0.1ms) SAVEPOINT active_record_1
1586
+ SQL (0.2ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1587
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1588
+  (0.8ms) rollback transaction
1589
+  (0.1ms) begin transaction
1590
+  (0.1ms) SAVEPOINT active_record_1
1591
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:10:20.878597"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:10:20.878597"]]
1592
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1593
+  (0.0ms) SAVEPOINT active_record_1
1594
+ SQL (0.5ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-10-29 15:10:20.880704"], ["title", "test"], ["updated_at", "2014-10-29 15:10:20.880704"], ["user_id", 1]]
1595
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1596
+  (0.1ms) SAVEPOINT active_record_1
1597
+ SQL (0.1ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1598
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1599
+ UserNotification Load (0.2ms) SELECT "user_notifications".* FROM "user_notifications" ORDER BY "user_notifications"."id" DESC LIMIT 1
1600
+  (1.1ms) rollback transaction
1601
+  (0.1ms) begin transaction
1602
+  (0.1ms) SAVEPOINT active_record_1
1603
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:10:20.889272"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:10:20.889272"]]
1604
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1605
+  (0.1ms) SAVEPOINT active_record_1
1606
+ SQL (0.5ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-10-29 15:10:20.891447"], ["title", "test"], ["updated_at", "2014-10-29 15:10:20.891447"], ["user_id", 1]]
1607
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1608
+  (0.1ms) SAVEPOINT active_record_1
1609
+ SQL (0.1ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1610
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1611
+  (0.2ms) SELECT COUNT(*) FROM "user_notifications" WHERE "user_notifications"."user_id" = 1 AND "user_notifications"."template_name" = 'test'
1612
+  (0.1ms) SELECT COUNT(*) FROM "user_notifications"
1613
+  (0.8ms) rollback transaction
1614
+  (0.1ms) begin transaction
1615
+  (0.1ms) SAVEPOINT active_record_1
1616
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:10:20.904074"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:10:20.904074"]]
1617
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1618
+  (0.0ms) SAVEPOINT active_record_1
1619
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-10-29 15:10:20.906266"], ["title", "test"], ["updated_at", "2014-10-29 15:10:20.906266"], ["user_id", 1]]
1620
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1621
+  (0.1ms) SAVEPOINT active_record_1
1622
+ SQL (0.1ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1623
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1624
+  (0.1ms) SELECT COUNT(*) FROM "user_notifications" WHERE "user_notifications"."user_id" = 1 AND "user_notifications"."template_name" = 'another_test'
1625
+  (0.1ms) SAVEPOINT active_record_1
1626
+ SQL (0.1ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "another_test"], ["user_id", 1]]
1627
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1628
+  (0.1ms) SELECT COUNT(*) FROM "user_notifications"
1629
+  (0.9ms) rollback transaction
1630
+  (0.7ms) begin transaction
1631
+  (0.1ms) rollback transaction
1632
+  (0.9ms) begin transaction
1633
+  (0.1ms) rollback transaction
1634
+  (0.6ms) begin transaction
1635
+  (0.1ms) rollback transaction
1636
+  (0.7ms) begin transaction
1637
+  (0.1ms) SAVEPOINT active_record_1
1638
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:19:07.665488"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:19:07.665488"]]
1639
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1640
+  (0.1ms) SAVEPOINT active_record_1
1641
+ SQL (0.6ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1642
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1643
+
1644
+ UserNotifier::Mailer#notify: processed outbound mail in 21.3ms
1645
+  (1.3ms) rollback transaction
1646
+  (0.8ms) begin transaction
1647
+  (0.1ms) SAVEPOINT active_record_1
1648
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:20:37.256927"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:20:37.256927"]]
1649
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1650
+  (0.1ms) SAVEPOINT active_record_1
1651
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1652
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1653
+
1654
+ UserNotifier::Mailer#notify: processed outbound mail in 26.7ms
1655
+  (1.3ms) rollback transaction
1656
+  (0.8ms) begin transaction
1657
+  (0.1ms) SAVEPOINT active_record_1
1658
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:21:01.774394"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:21:01.774394"]]
1659
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1660
+  (0.1ms) SAVEPOINT active_record_1
1661
+ SQL (0.6ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1662
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1663
+ Rendered user_notifier/mailer/test_subject.text.erb (1.8ms)
1664
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.4ms)
1665
+
1666
+ UserNotifier::Mailer#notify: processed outbound mail in 109.5ms
1667
+  (0.9ms) rollback transaction
1668
+  (0.7ms) begin transaction
1669
+  (0.1ms) SAVEPOINT active_record_1
1670
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:22:50.492904"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:22:50.492904"]]
1671
+  (0.4ms) RELEASE SAVEPOINT active_record_1
1672
+  (0.1ms) SAVEPOINT active_record_1
1673
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1674
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1675
+ Rendered user_notifier/mailer/test_subject.text.erb (1.6ms)
1676
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.4ms)
1677
+
1678
+ UserNotifier::Mailer#notify: processed outbound mail in 46.4ms
1679
+  (1.3ms) rollback transaction
1680
+  (0.7ms) begin transaction
1681
+  (0.1ms) SAVEPOINT active_record_1
1682
+ SQL (1.2ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:24:22.661488"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:24:22.661488"]]
1683
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1684
+  (0.1ms) SAVEPOINT active_record_1
1685
+ SQL (0.6ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1686
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1687
+ Rendered user_notifier/mailer/test_subject.text.erb (1.8ms)
1688
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.6ms)
1689
+
1690
+ UserNotifier::Mailer#notify: processed outbound mail in 46.6ms
1691
+  (1.3ms) rollback transaction
1692
+  (0.8ms) begin transaction
1693
+  (0.1ms) SAVEPOINT active_record_1
1694
+ SQL (0.8ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:25:12.720217"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:25:12.720217"]]
1695
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1696
+  (0.1ms) SAVEPOINT active_record_1
1697
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1698
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1699
+ Rendered user_notifier/mailer/test_subject.text.erb (1.7ms)
1700
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.4ms)
1701
+
1702
+ UserNotifier::Mailer#notify: processed outbound mail in 49.0ms
1703
+  (1.4ms) rollback transaction
1704
+  (0.7ms) begin transaction
1705
+  (0.1ms) SAVEPOINT active_record_1
1706
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:25:54.486344"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:25:54.486344"]]
1707
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1708
+  (0.1ms) SAVEPOINT active_record_1
1709
+ SQL (0.6ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1710
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1711
+ Rendered user_notifier/mailer/test_subject.text.erb (1.8ms)
1712
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.5ms)
1713
+
1714
+ UserNotifier::Mailer#notify: processed outbound mail in 45.5ms
1715
+  (1.2ms) rollback transaction
1716
+  (0.7ms) begin transaction
1717
+  (0.1ms) SAVEPOINT active_record_1
1718
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:26:43.323973"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:26:43.323973"]]
1719
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1720
+  (0.1ms) SAVEPOINT active_record_1
1721
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1722
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1723
+ Rendered user_notifier/mailer/test_subject.text.erb (1.6ms)
1724
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.5ms)
1725
+
1726
+ UserNotifier::Mailer#notify: processed outbound mail in 46.3ms
1727
+  (1.3ms) rollback transaction
1728
+  (0.2ms) begin transaction
1729
+  (0.1ms) SAVEPOINT active_record_1
1730
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:26:43.402487"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:26:43.402487"]]
1731
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1732
+  (0.1ms) SAVEPOINT active_record_1
1733
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1734
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1735
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
1736
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
1737
+
1738
+ UserNotifier::Mailer#notify: processed outbound mail in 11.0ms
1739
+  (0.9ms) rollback transaction
1740
+  (0.1ms) begin transaction
1741
+  (0.1ms) SAVEPOINT active_record_1
1742
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:26:43.421919"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:26:43.421919"]]
1743
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1744
+  (0.0ms) SAVEPOINT active_record_1
1745
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1746
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1747
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
1748
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.0ms)
1749
+
1750
+ UserNotifier::Mailer#notify: processed outbound mail in 11.9ms
1751
+  (0.8ms) rollback transaction
1752
+  (0.1ms) begin transaction
1753
+  (0.1ms) SAVEPOINT active_record_1
1754
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:26:43.442502"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:26:43.442502"]]
1755
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1756
+  (0.1ms) SAVEPOINT active_record_1
1757
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1758
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1759
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
1760
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.0ms)
1761
+
1762
+ UserNotifier::Mailer#notify: processed outbound mail in 12.1ms
1763
+  (1.1ms) rollback transaction
1764
+  (0.1ms) begin transaction
1765
+  (0.1ms) SAVEPOINT active_record_1
1766
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:26:43.461720"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:26:43.461720"]]
1767
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1768
+  (0.1ms) SAVEPOINT active_record_1
1769
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1770
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1771
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
1772
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
1773
+
1774
+ UserNotifier::Mailer#notify: processed outbound mail in 12.4ms
1775
+  (1.0ms) rollback transaction
1776
+  (0.7ms) begin transaction
1777
+  (0.1ms) SAVEPOINT active_record_1
1778
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:27:27.433823"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:27:27.433823"]]
1779
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1780
+  (0.1ms) SAVEPOINT active_record_1
1781
+ SQL (0.6ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1782
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1783
+ Rendered user_notifier/mailer/test_subject.text.erb (2.5ms)
1784
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.5ms)
1785
+
1786
+ UserNotifier::Mailer#notify: processed outbound mail in 46.1ms
1787
+  (1.3ms) rollback transaction
1788
+  (0.1ms) begin transaction
1789
+  (0.1ms) SAVEPOINT active_record_1
1790
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:27:27.513363"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:27:27.513363"]]
1791
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1792
+  (0.1ms) SAVEPOINT active_record_1
1793
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1794
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1795
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
1796
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
1797
+
1798
+ UserNotifier::Mailer#notify: processed outbound mail in 11.2ms
1799
+  (0.9ms) rollback transaction
1800
+  (0.1ms) begin transaction
1801
+  (0.1ms) SAVEPOINT active_record_1
1802
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:27:27.532003"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:27:27.532003"]]
1803
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1804
+  (0.1ms) SAVEPOINT active_record_1
1805
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1806
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1807
+ Rendered user_notifier/mailer/test_subject.text.erb (0.0ms)
1808
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
1809
+
1810
+ UserNotifier::Mailer#notify: processed outbound mail in 11.5ms
1811
+  (0.8ms) rollback transaction
1812
+  (0.1ms) begin transaction
1813
+  (0.1ms) SAVEPOINT active_record_1
1814
+ SQL (0.8ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:27:27.552741"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:27:27.552741"]]
1815
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1816
+  (0.1ms) SAVEPOINT active_record_1
1817
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1818
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1819
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
1820
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
1821
+
1822
+ UserNotifier::Mailer#notify: processed outbound mail in 13.4ms
1823
+  (1.0ms) rollback transaction
1824
+  (0.1ms) begin transaction
1825
+  (0.1ms) SAVEPOINT active_record_1
1826
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:27:27.577459"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:27:27.577459"]]
1827
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1828
+  (0.1ms) SAVEPOINT active_record_1
1829
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1830
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1831
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
1832
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
1833
+
1834
+ UserNotifier::Mailer#notify: processed outbound mail in 12.2ms
1835
+  (0.9ms) rollback transaction
1836
+  (1.0ms) begin transaction
1837
+  (0.1ms) SAVEPOINT active_record_1
1838
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:27:48.842161"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:27:48.842161"]]
1839
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1840
+  (0.1ms) SAVEPOINT active_record_1
1841
+ SQL (0.6ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1842
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1843
+ Rendered user_notifier/mailer/test_subject.text.erb (1.9ms)
1844
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (1.1ms)
1845
+
1846
+ UserNotifier::Mailer#notify: processed outbound mail in 49.7ms
1847
+  (1.3ms) rollback transaction
1848
+  (0.1ms) begin transaction
1849
+  (0.1ms) SAVEPOINT active_record_1
1850
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:27:48.928454"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:27:48.928454"]]
1851
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1852
+  (0.1ms) SAVEPOINT active_record_1
1853
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1854
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1855
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
1856
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
1857
+
1858
+ UserNotifier::Mailer#notify: processed outbound mail in 13.4ms
1859
+  (0.8ms) rollback transaction
1860
+  (0.5ms) begin transaction
1861
+  (0.1ms) SAVEPOINT active_record_1
1862
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:27:48.951536"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:27:48.951536"]]
1863
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1864
+  (0.1ms) SAVEPOINT active_record_1
1865
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1866
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1867
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
1868
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.0ms)
1869
+
1870
+ UserNotifier::Mailer#notify: processed outbound mail in 16.6ms
1871
+  (1.5ms) rollback transaction
1872
+  (0.1ms) begin transaction
1873
+  (0.1ms) SAVEPOINT active_record_1
1874
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:27:48.979456"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:27:48.979456"]]
1875
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1876
+  (0.1ms) SAVEPOINT active_record_1
1877
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1878
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1879
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
1880
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.0ms)
1881
+
1882
+ UserNotifier::Mailer#notify: processed outbound mail in 14.3ms
1883
+  (0.9ms) rollback transaction
1884
+  (0.1ms) begin transaction
1885
+  (0.1ms) SAVEPOINT active_record_1
1886
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:27:49.004430"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:27:49.004430"]]
1887
+  (0.3ms) RELEASE SAVEPOINT active_record_1
1888
+  (0.1ms) SAVEPOINT active_record_1
1889
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1890
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1891
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
1892
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
1893
+
1894
+ UserNotifier::Mailer#notify: processed outbound mail in 16.1ms
1895
+  (1.3ms) rollback transaction
1896
+  (0.7ms) begin transaction
1897
+  (0.1ms) SAVEPOINT active_record_1
1898
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:28:04.585515"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:28:04.585515"]]
1899
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1900
+  (0.1ms) SAVEPOINT active_record_1
1901
+ SQL (0.6ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1902
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1903
+ Rendered user_notifier/mailer/test_subject.text.erb (1.6ms)
1904
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.5ms)
1905
+
1906
+ UserNotifier::Mailer#notify: processed outbound mail in 43.9ms
1907
+  (1.3ms) rollback transaction
1908
+  (0.1ms) begin transaction
1909
+  (0.1ms) SAVEPOINT active_record_1
1910
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:28:04.662143"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:28:04.662143"]]
1911
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1912
+  (0.1ms) SAVEPOINT active_record_1
1913
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1914
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1915
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
1916
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
1917
+
1918
+ UserNotifier::Mailer#notify: processed outbound mail in 11.3ms
1919
+  (0.9ms) rollback transaction
1920
+  (0.1ms) begin transaction
1921
+  (0.1ms) SAVEPOINT active_record_1
1922
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:28:04.681669"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:28:04.681669"]]
1923
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1924
+  (0.1ms) SAVEPOINT active_record_1
1925
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1926
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1927
+ Rendered user_notifier/mailer/test_subject.text.erb (0.0ms)
1928
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
1929
+
1930
+ UserNotifier::Mailer#notify: processed outbound mail in 12.3ms
1931
+  (0.9ms) rollback transaction
1932
+  (0.1ms) begin transaction
1933
+  (0.1ms) SAVEPOINT active_record_1
1934
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:28:04.701685"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:28:04.701685"]]
1935
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1936
+  (0.1ms) SAVEPOINT active_record_1
1937
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1938
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1939
+ Rendered user_notifier/mailer/test_subject.text.erb (0.0ms)
1940
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
1941
+
1942
+ UserNotifier::Mailer#notify: processed outbound mail in 12.0ms
1943
+  (0.8ms) rollback transaction
1944
+  (0.1ms) begin transaction
1945
+  (0.1ms) SAVEPOINT active_record_1
1946
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:28:04.721275"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:28:04.721275"]]
1947
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1948
+  (0.1ms) SAVEPOINT active_record_1
1949
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1950
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1951
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
1952
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
1953
+
1954
+ UserNotifier::Mailer#notify: processed outbound mail in 12.3ms
1955
+  (0.8ms) rollback transaction
1956
+  (0.7ms) begin transaction
1957
+  (0.1ms) SAVEPOINT active_record_1
1958
+ SQL (1.6ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:28:24.036235"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:28:24.036235"]]
1959
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1960
+  (0.1ms) SAVEPOINT active_record_1
1961
+ SQL (0.6ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1962
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1963
+ Rendered user_notifier/mailer/test_subject.text.erb (1.8ms)
1964
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.5ms)
1965
+
1966
+ UserNotifier::Mailer#notify: processed outbound mail in 46.2ms
1967
+  (1.3ms) rollback transaction
1968
+  (0.1ms) begin transaction
1969
+  (0.1ms) SAVEPOINT active_record_1
1970
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:28:24.116036"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:28:24.116036"]]
1971
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1972
+  (0.1ms) SAVEPOINT active_record_1
1973
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1974
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1975
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
1976
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
1977
+
1978
+ UserNotifier::Mailer#notify: processed outbound mail in 11.3ms
1979
+  (1.0ms) rollback transaction
1980
+  (0.1ms) begin transaction
1981
+  (0.1ms) SAVEPOINT active_record_1
1982
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:28:24.135672"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:28:24.135672"]]
1983
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1984
+  (0.1ms) SAVEPOINT active_record_1
1985
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1986
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1987
+ Rendered user_notifier/mailer/test_subject.text.erb (0.0ms)
1988
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.0ms)
1989
+
1990
+ UserNotifier::Mailer#notify: processed outbound mail in 11.5ms
1991
+  (0.9ms) rollback transaction
1992
+  (0.1ms) begin transaction
1993
+  (0.1ms) SAVEPOINT active_record_1
1994
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:28:24.154653"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:28:24.154653"]]
1995
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1996
+  (0.1ms) SAVEPOINT active_record_1
1997
+ SQL (0.6ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
1998
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1999
+ Rendered user_notifier/mailer/test_subject.text.erb (0.0ms)
2000
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
2001
+
2002
+ UserNotifier::Mailer#notify: processed outbound mail in 14.1ms
2003
+  (0.9ms) rollback transaction
2004
+  (0.1ms) begin transaction
2005
+  (0.1ms) SAVEPOINT active_record_1
2006
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:28:24.177464"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:28:24.177464"]]
2007
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2008
+  (0.1ms) SAVEPOINT active_record_1
2009
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2010
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2011
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
2012
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
2013
+
2014
+ UserNotifier::Mailer#notify: processed outbound mail in 13.4ms
2015
+  (0.9ms) rollback transaction
2016
+  (0.7ms) begin transaction
2017
+  (0.1ms) SAVEPOINT active_record_1
2018
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:30:11.385275"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:30:11.385275"]]
2019
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2020
+  (0.1ms) SAVEPOINT active_record_1
2021
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2022
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2023
+ Rendered user_notifier/mailer/test_subject.text.erb (1.7ms)
2024
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.4ms)
2025
+
2026
+ UserNotifier::Mailer#notify: processed outbound mail in 45.2ms
2027
+  (1.4ms) rollback transaction
2028
+  (0.1ms) begin transaction
2029
+  (0.1ms) SAVEPOINT active_record_1
2030
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:30:11.462727"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:30:11.462727"]]
2031
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2032
+  (0.1ms) SAVEPOINT active_record_1
2033
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2034
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2035
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
2036
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
2037
+
2038
+ UserNotifier::Mailer#notify: processed outbound mail in 11.5ms
2039
+  (1.0ms) rollback transaction
2040
+  (0.1ms) begin transaction
2041
+  (0.1ms) SAVEPOINT active_record_1
2042
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:30:11.482985"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:30:11.482985"]]
2043
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2044
+  (0.0ms) SAVEPOINT active_record_1
2045
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2046
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2047
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
2048
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
2049
+
2050
+ UserNotifier::Mailer#notify: processed outbound mail in 12.6ms
2051
+  (2.0ms) rollback transaction
2052
+  (0.1ms) begin transaction
2053
+  (0.1ms) SAVEPOINT active_record_1
2054
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:30:11.504570"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:30:11.504570"]]
2055
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2056
+  (0.1ms) SAVEPOINT active_record_1
2057
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2058
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2059
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
2060
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
2061
+
2062
+ UserNotifier::Mailer#notify: processed outbound mail in 12.2ms
2063
+  (0.9ms) rollback transaction
2064
+  (0.1ms) begin transaction
2065
+  (0.1ms) SAVEPOINT active_record_1
2066
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:30:11.525944"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:30:11.525944"]]
2067
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2068
+  (0.1ms) SAVEPOINT active_record_1
2069
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2070
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2071
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
2072
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
2073
+
2074
+ UserNotifier::Mailer#notify: processed outbound mail in 12.8ms
2075
+  (1.0ms) rollback transaction
2076
+  (0.7ms) begin transaction
2077
+  (0.1ms) SAVEPOINT active_record_1
2078
+ SQL (0.9ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:31:04.505734"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:31:04.505734"]]
2079
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2080
+  (0.2ms) SAVEPOINT active_record_1
2081
+ SQL (0.6ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2082
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2083
+ Rendered user_notifier/mailer/test_subject.text.erb (1.8ms)
2084
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.6ms)
2085
+
2086
+ UserNotifier::Mailer#notify: processed outbound mail in 46.2ms
2087
+  (1.5ms) rollback transaction
2088
+  (0.1ms) begin transaction
2089
+  (0.1ms) SAVEPOINT active_record_1
2090
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:31:04.585421"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:31:04.585421"]]
2091
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2092
+  (0.1ms) SAVEPOINT active_record_1
2093
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2094
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2095
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
2096
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
2097
+
2098
+ UserNotifier::Mailer#notify: processed outbound mail in 11.3ms
2099
+  (1.0ms) rollback transaction
2100
+  (0.2ms) begin transaction
2101
+  (0.1ms) SAVEPOINT active_record_1
2102
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:31:04.604336"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:31:04.604336"]]
2103
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2104
+  (0.1ms) SAVEPOINT active_record_1
2105
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2106
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2107
+ Rendered user_notifier/mailer/test_subject.text.erb (0.2ms)
2108
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
2109
+
2110
+ UserNotifier::Mailer#notify: processed outbound mail in 11.9ms
2111
+  (0.9ms) rollback transaction
2112
+  (0.1ms) begin transaction
2113
+  (0.1ms) SAVEPOINT active_record_1
2114
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:31:04.623941"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:31:04.623941"]]
2115
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2116
+  (0.1ms) SAVEPOINT active_record_1
2117
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2118
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2119
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
2120
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
2121
+
2122
+ UserNotifier::Mailer#notify: processed outbound mail in 13.1ms
2123
+  (0.9ms) rollback transaction
2124
+  (0.1ms) begin transaction
2125
+  (0.1ms) SAVEPOINT active_record_1
2126
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:31:04.645254"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:31:04.645254"]]
2127
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2128
+  (0.1ms) SAVEPOINT active_record_1
2129
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2130
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2131
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
2132
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
2133
+
2134
+ UserNotifier::Mailer#notify: processed outbound mail in 13.1ms
2135
+  (1.0ms) rollback transaction
2136
+  (0.7ms) begin transaction
2137
+  (0.1ms) SAVEPOINT active_record_1
2138
+ SQL (1.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:31:33.672187"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:31:33.672187"]]
2139
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2140
+  (0.1ms) SAVEPOINT active_record_1
2141
+ SQL (0.6ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2142
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2143
+ Rendered user_notifier/mailer/test_subject.text.erb (1.7ms)
2144
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.5ms)
2145
+
2146
+ UserNotifier::Mailer#notify: processed outbound mail in 50.0ms
2147
+  (2.3ms) rollback transaction
2148
+  (0.1ms) begin transaction
2149
+  (0.1ms) SAVEPOINT active_record_1
2150
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:31:33.758664"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:31:33.758664"]]
2151
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2152
+  (0.1ms) SAVEPOINT active_record_1
2153
+ SQL (0.6ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2154
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2155
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
2156
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
2157
+
2158
+ UserNotifier::Mailer#notify: processed outbound mail in 11.5ms
2159
+  (0.9ms) rollback transaction
2160
+  (0.1ms) begin transaction
2161
+  (0.1ms) SAVEPOINT active_record_1
2162
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:31:33.778592"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:31:33.778592"]]
2163
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2164
+  (0.0ms) SAVEPOINT active_record_1
2165
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2166
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2167
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
2168
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.0ms)
2169
+
2170
+ UserNotifier::Mailer#notify: processed outbound mail in 12.4ms
2171
+  (0.8ms) rollback transaction
2172
+  (0.1ms) begin transaction
2173
+  (0.1ms) SAVEPOINT active_record_1
2174
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:31:33.798417"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:31:33.798417"]]
2175
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2176
+  (0.1ms) SAVEPOINT active_record_1
2177
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2178
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2179
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
2180
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
2181
+
2182
+ UserNotifier::Mailer#notify: processed outbound mail in 14.2ms
2183
+  (0.9ms) rollback transaction
2184
+  (0.1ms) begin transaction
2185
+  (0.1ms) SAVEPOINT active_record_1
2186
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:31:33.820792"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:31:33.820792"]]
2187
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2188
+  (0.1ms) SAVEPOINT active_record_1
2189
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2190
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2191
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
2192
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
2193
+
2194
+ UserNotifier::Mailer#notify: processed outbound mail in 12.7ms
2195
+  (0.9ms) rollback transaction
2196
+  (0.1ms) begin transaction
2197
+  (0.1ms) SAVEPOINT active_record_1
2198
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:31:33.841238"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:31:33.841238"]]
2199
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2200
+  (0.1ms) SAVEPOINT active_record_1
2201
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2202
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2203
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
2204
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.0ms)
2205
+
2206
+ UserNotifier::Mailer#notify: processed outbound mail in 11.3ms
2207
+  (0.9ms) rollback transaction
2208
+  (0.7ms) begin transaction
2209
+  (0.1ms) SAVEPOINT active_record_1
2210
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:32:28.156789"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:32:28.156789"]]
2211
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2212
+  (0.1ms) SAVEPOINT active_record_1
2213
+ SQL (0.6ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2214
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2215
+ Rendered user_notifier/mailer/test_subject.text.erb (1.6ms)
2216
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.5ms)
2217
+
2218
+ UserNotifier::Mailer#notify: processed outbound mail in 43.9ms
2219
+  (1.3ms) rollback transaction
2220
+  (0.1ms) begin transaction
2221
+  (0.1ms) SAVEPOINT active_record_1
2222
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:32:28.232536"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:32:28.232536"]]
2223
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2224
+  (0.1ms) SAVEPOINT active_record_1
2225
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2226
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2227
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
2228
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
2229
+
2230
+ UserNotifier::Mailer#notify: processed outbound mail in 11.5ms
2231
+  (1.1ms) rollback transaction
2232
+  (0.1ms) begin transaction
2233
+  (0.1ms) SAVEPOINT active_record_1
2234
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:32:28.251877"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:32:28.251877"]]
2235
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2236
+  (0.1ms) SAVEPOINT active_record_1
2237
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2238
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2239
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
2240
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.0ms)
2241
+
2242
+ UserNotifier::Mailer#notify: processed outbound mail in 11.4ms
2243
+  (1.2ms) rollback transaction
2244
+  (0.1ms) begin transaction
2245
+  (0.1ms) SAVEPOINT active_record_1
2246
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:32:28.273104"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:32:28.273104"]]
2247
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2248
+  (0.1ms) SAVEPOINT active_record_1
2249
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2250
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2251
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
2252
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
2253
+
2254
+ UserNotifier::Mailer#notify: processed outbound mail in 13.0ms
2255
+  (0.9ms) rollback transaction
2256
+  (0.1ms) begin transaction
2257
+  (0.1ms) SAVEPOINT active_record_1
2258
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:32:28.294035"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:32:28.294035"]]
2259
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2260
+  (0.1ms) SAVEPOINT active_record_1
2261
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2262
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2263
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
2264
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
2265
+
2266
+ UserNotifier::Mailer#notify: processed outbound mail in 12.8ms
2267
+  (0.9ms) rollback transaction
2268
+  (0.1ms) begin transaction
2269
+  (0.1ms) SAVEPOINT active_record_1
2270
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:32:28.314928"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:32:28.314928"]]
2271
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2272
+  (0.1ms) SAVEPOINT active_record_1
2273
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2274
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2275
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
2276
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
2277
+
2278
+ UserNotifier::Mailer#notify: processed outbound mail in 12.7ms
2279
+  (0.9ms) rollback transaction
2280
+  (0.1ms) begin transaction
2281
+  (0.1ms) SAVEPOINT active_record_1
2282
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:32:28.335109"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:32:28.335109"]]
2283
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2284
+  (0.1ms) SAVEPOINT active_record_1
2285
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2286
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2287
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
2288
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
2289
+
2290
+ UserNotifier::Mailer#notify: processed outbound mail in 13.1ms
2291
+  (1.2ms) rollback transaction
2292
+  (0.7ms) begin transaction
2293
+  (0.1ms) SAVEPOINT active_record_1
2294
+ SQL (1.1ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:34:15.141516"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:34:15.141516"]]
2295
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2296
+  (0.1ms) SAVEPOINT active_record_1
2297
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
2298
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2299
+
2300
+ UserNotifier::Mailer#notify: processed outbound mail in 6.6ms
2301
+  (1.0ms) rollback transaction
2302
+  (0.1ms) begin transaction
2303
+  (0.1ms) SAVEPOINT active_record_1
2304
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:34:15.178737"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:34:15.178737"]]
2305
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2306
+  (0.1ms) SAVEPOINT active_record_1
2307
+ SQL (0.6ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
2308
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2309
+
2310
+ UserNotifier::Mailer#notify: processed outbound mail in 0.3ms
2311
+  (0.8ms) rollback transaction
2312
+  (0.1ms) begin transaction
2313
+  (0.1ms) SAVEPOINT active_record_1
2314
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:34:15.186285"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:34:15.186285"]]
2315
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2316
+  (0.0ms) SAVEPOINT active_record_1
2317
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2318
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2319
+ Rendered user_notifier/mailer/test_subject.text.erb (1.6ms)
2320
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.5ms)
2321
+
2322
+ UserNotifier::Mailer#notify: processed outbound mail in 39.5ms
2323
+  (0.9ms) rollback transaction
2324
+  (0.1ms) begin transaction
2325
+  (0.1ms) SAVEPOINT active_record_1
2326
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:34:15.233282"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:34:15.233282"]]
2327
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2328
+  (0.1ms) SAVEPOINT active_record_1
2329
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2330
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2331
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
2332
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
2333
+
2334
+ UserNotifier::Mailer#notify: processed outbound mail in 11.2ms
2335
+  (0.8ms) rollback transaction
2336
+  (0.1ms) begin transaction
2337
+  (0.1ms) SAVEPOINT active_record_1
2338
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:34:15.252769"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:34:15.252769"]]
2339
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2340
+  (0.1ms) SAVEPOINT active_record_1
2341
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2342
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2343
+ Rendered user_notifier/mailer/test_subject.text.erb (0.0ms)
2344
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.0ms)
2345
+
2346
+ UserNotifier::Mailer#notify: processed outbound mail in 11.5ms
2347
+  (0.8ms) rollback transaction
2348
+  (0.1ms) begin transaction
2349
+  (0.1ms) SAVEPOINT active_record_1
2350
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:34:15.271878"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:34:15.271878"]]
2351
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2352
+  (0.0ms) SAVEPOINT active_record_1
2353
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2354
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2355
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
2356
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.0ms)
2357
+
2358
+ UserNotifier::Mailer#notify: processed outbound mail in 12.4ms
2359
+  (0.7ms) rollback transaction
2360
+  (0.1ms) begin transaction
2361
+  (0.1ms) SAVEPOINT active_record_1
2362
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:34:15.291105"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:34:15.291105"]]
2363
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2364
+  (0.1ms) SAVEPOINT active_record_1
2365
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2366
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2367
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
2368
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
2369
+
2370
+ UserNotifier::Mailer#notify: processed outbound mail in 12.1ms
2371
+  (0.9ms) rollback transaction
2372
+  (0.7ms) begin transaction
2373
+  (0.1ms) SAVEPOINT active_record_1
2374
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:34:45.070709"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:34:45.070709"]]
2375
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2376
+  (0.1ms) SAVEPOINT active_record_1
2377
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2378
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2379
+ Rendered user_notifier/mailer/test_subject.text.erb (1.7ms)
2380
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.4ms)
2381
+
2382
+ UserNotifier::Mailer#notify: processed outbound mail in 44.6ms
2383
+  (1.4ms) rollback transaction
2384
+  (0.1ms) begin transaction
2385
+  (0.1ms) SAVEPOINT active_record_1
2386
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:34:45.146586"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:34:45.146586"]]
2387
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2388
+  (0.1ms) SAVEPOINT active_record_1
2389
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2390
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2391
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
2392
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
2393
+
2394
+ UserNotifier::Mailer#notify: processed outbound mail in 11.3ms
2395
+  (1.0ms) rollback transaction
2396
+  (0.1ms) begin transaction
2397
+  (0.1ms) SAVEPOINT active_record_1
2398
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:34:45.165804"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:34:45.165804"]]
2399
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2400
+  (0.1ms) SAVEPOINT active_record_1
2401
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2402
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2403
+ Rendered user_notifier/mailer/test_subject.text.erb (0.0ms)
2404
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.0ms)
2405
+
2406
+ UserNotifier::Mailer#notify: processed outbound mail in 11.5ms
2407
+  (1.1ms) rollback transaction
2408
+  (0.1ms) begin transaction
2409
+  (0.1ms) SAVEPOINT active_record_1
2410
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:34:45.184841"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:34:45.184841"]]
2411
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2412
+  (0.1ms) SAVEPOINT active_record_1
2413
+ SQL (0.6ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2414
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2415
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
2416
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
2417
+
2418
+ UserNotifier::Mailer#notify: processed outbound mail in 11.9ms
2419
+  (1.0ms) rollback transaction
2420
+  (0.1ms) begin transaction
2421
+  (0.1ms) SAVEPOINT active_record_1
2422
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:34:45.205200"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:34:45.205200"]]
2423
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2424
+  (0.1ms) SAVEPOINT active_record_1
2425
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
2426
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2427
+
2428
+ UserNotifier::Mailer#notify: processed outbound mail in 0.3ms
2429
+  (1.0ms) rollback transaction
2430
+  (0.1ms) begin transaction
2431
+  (0.1ms) SAVEPOINT active_record_1
2432
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:34:45.212866"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:34:45.212866"]]
2433
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2434
+  (0.1ms) SAVEPOINT active_record_1
2435
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
2436
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2437
+
2438
+ UserNotifier::Mailer#notify: processed outbound mail in 0.4ms
2439
+  (0.7ms) rollback transaction
2440
+  (0.1ms) begin transaction
2441
+  (0.1ms) SAVEPOINT active_record_1
2442
+ SQL (1.0ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:34:45.220457"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:34:45.220457"]]
2443
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2444
+  (0.1ms) SAVEPOINT active_record_1
2445
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2446
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2447
+ Rendered user_notifier/mailer/test_subject.text.erb (0.0ms)
2448
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.0ms)
2449
+
2450
+ UserNotifier::Mailer#notify: processed outbound mail in 11.6ms
2451
+  (1.0ms) rollback transaction
2452
+  (0.7ms) begin transaction
2453
+  (0.1ms) SAVEPOINT active_record_1
2454
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:35:45.772578"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:35:45.772578"]]
2455
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2456
+  (0.1ms) SAVEPOINT active_record_1
2457
+ SQL (0.7ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2458
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2459
+ Rendered user_notifier/mailer/test_subject.text.erb (1.6ms)
2460
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.6ms)
2461
+
2462
+ UserNotifier::Mailer#notify: processed outbound mail in 48.1ms
2463
+  (0.9ms) rollback transaction
2464
+  (0.1ms) begin transaction
2465
+  (0.1ms) SAVEPOINT active_record_1
2466
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:35:45.853666"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:35:45.853666"]]
2467
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2468
+  (0.1ms) SAVEPOINT active_record_1
2469
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2470
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2471
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
2472
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
2473
+
2474
+ UserNotifier::Mailer#notify: processed outbound mail in 11.5ms
2475
+  (0.8ms) rollback transaction
2476
+  (0.1ms) begin transaction
2477
+  (0.1ms) SAVEPOINT active_record_1
2478
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:35:45.872595"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:35:45.872595"]]
2479
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2480
+  (0.1ms) SAVEPOINT active_record_1
2481
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2482
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2483
+ Rendered user_notifier/mailer/test_subject.text.erb (0.0ms)
2484
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.0ms)
2485
+
2486
+ UserNotifier::Mailer#notify: processed outbound mail in 12.2ms
2487
+  (0.9ms) rollback transaction
2488
+  (0.1ms) begin transaction
2489
+  (0.1ms) SAVEPOINT active_record_1
2490
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:35:45.892837"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:35:45.892837"]]
2491
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2492
+  (0.1ms) SAVEPOINT active_record_1
2493
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2494
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2495
+ Rendered user_notifier/mailer/test_subject.text.erb (0.0ms)
2496
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.0ms)
2497
+
2498
+ UserNotifier::Mailer#notify: processed outbound mail in 13.5ms
2499
+  (0.9ms) rollback transaction
2500
+  (0.1ms) begin transaction
2501
+  (0.1ms) SAVEPOINT active_record_1
2502
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:35:45.915283"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:35:45.915283"]]
2503
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2504
+  (0.1ms) SAVEPOINT active_record_1
2505
+ SQL (0.6ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2506
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2507
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
2508
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
2509
+
2510
+ UserNotifier::Mailer#notify: processed outbound mail in 12.3ms
2511
+  (1.0ms) rollback transaction
2512
+  (0.1ms) begin transaction
2513
+  (0.2ms) SAVEPOINT active_record_1
2514
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:35:45.936403"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:35:45.936403"]]
2515
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2516
+  (0.1ms) SAVEPOINT active_record_1
2517
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
2518
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2519
+ Rendered user_notifier/mailer/test_subject.text.erb (0.6ms)
2520
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.5ms)
2521
+
2522
+ UserNotifier::Mailer#notify: processed outbound mail in 29.2ms
2523
+  (0.9ms) rollback transaction
2524
+  (0.1ms) begin transaction
2525
+  (0.1ms) SAVEPOINT active_record_1
2526
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:35:45.974898"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:35:45.974898"]]
2527
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2528
+  (0.1ms) SAVEPOINT active_record_1
2529
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
2530
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2531
+ Rendered user_notifier/mailer/test_subject.text.erb (0.1ms)
2532
+ Rendered user_notifier/mailer/test.html.erb within layouts/email (0.1ms)
2533
+
2534
+ UserNotifier::Mailer#notify: processed outbound mail in 55.7ms
2535
+  (1.1ms) rollback transaction
2536
+  (0.7ms) begin transaction
2537
+  (0.1ms) SAVEPOINT active_record_1
2538
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:37:15.087061"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:37:15.087061"]]
2539
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2540
+  (0.1ms) SAVEPOINT active_record_1
2541
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2542
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2543
+
2544
+ UserNotifier::Mailer#notify: processed outbound mail in 22.1ms
2545
+  (1.3ms) rollback transaction
2546
+  (0.1ms) begin transaction
2547
+  (0.1ms) SAVEPOINT active_record_1
2548
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:37:15.140409"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:37:15.140409"]]
2549
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2550
+  (0.1ms) SAVEPOINT active_record_1
2551
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
2552
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2553
+
2554
+ UserNotifier::Mailer#notify: processed outbound mail in 7.6ms
2555
+  (0.9ms) rollback transaction
2556
+  (0.1ms) begin transaction
2557
+  (0.1ms) SAVEPOINT active_record_1
2558
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:37:15.155546"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:37:15.155546"]]
2559
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2560
+  (0.1ms) SAVEPOINT active_record_1
2561
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
2562
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2563
+
2564
+ UserNotifier::Mailer#notify: processed outbound mail in 0.7ms
2565
+  (0.8ms) rollback transaction
2566
+  (0.1ms) begin transaction
2567
+  (0.1ms) SAVEPOINT active_record_1
2568
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:37:15.162938"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:37:15.162938"]]
2569
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2570
+  (0.1ms) SAVEPOINT active_record_1
2571
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
2572
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2573
+
2574
+ UserNotifier::Mailer#notify: processed outbound mail in 0.6ms
2575
+  (0.9ms) rollback transaction
2576
+  (0.1ms) begin transaction
2577
+  (0.1ms) SAVEPOINT active_record_1
2578
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:37:15.170497"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:37:15.170497"]]
2579
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2580
+  (0.1ms) SAVEPOINT active_record_1
2581
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2582
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2583
+
2584
+ UserNotifier::Mailer#notify: processed outbound mail in 0.7ms
2585
+  (1.3ms) rollback transaction
2586
+  (0.1ms) begin transaction
2587
+  (0.1ms) SAVEPOINT active_record_1
2588
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:37:15.179836"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:37:15.179836"]]
2589
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2590
+  (0.0ms) SAVEPOINT active_record_1
2591
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2592
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2593
+
2594
+ UserNotifier::Mailer#notify: processed outbound mail in 0.6ms
2595
+  (0.8ms) rollback transaction
2596
+  (0.1ms) begin transaction
2597
+  (0.1ms) SAVEPOINT active_record_1
2598
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:37:15.187810"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:37:15.187810"]]
2599
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2600
+  (0.1ms) SAVEPOINT active_record_1
2601
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2602
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2603
+
2604
+ UserNotifier::Mailer#notify: processed outbound mail in 0.6ms
2605
+  (0.8ms) rollback transaction
2606
+  (0.8ms) begin transaction
2607
+  (0.1ms) SAVEPOINT active_record_1
2608
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:38:06.374252"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:38:06.374252"]]
2609
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2610
+  (0.1ms) SAVEPOINT active_record_1
2611
+ SQL (0.7ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
2612
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2613
+
2614
+ UserNotifier::Mailer#notify: processed outbound mail in 23.1ms
2615
+  (1.3ms) rollback transaction
2616
+  (0.1ms) begin transaction
2617
+  (0.1ms) SAVEPOINT active_record_1
2618
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:38:06.430831"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:38:06.430831"]]
2619
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2620
+  (0.1ms) SAVEPOINT active_record_1
2621
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
2622
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2623
+
2624
+ UserNotifier::Mailer#notify: processed outbound mail in 0.6ms
2625
+  (0.9ms) rollback transaction
2626
+  (0.1ms) begin transaction
2627
+  (0.1ms) SAVEPOINT active_record_1
2628
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:38:06.438804"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:38:06.438804"]]
2629
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2630
+  (0.1ms) SAVEPOINT active_record_1
2631
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
2632
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2633
+
2634
+ UserNotifier::Mailer#notify: processed outbound mail in 0.6ms
2635
+  (0.9ms) rollback transaction
2636
+  (0.1ms) begin transaction
2637
+  (0.1ms) SAVEPOINT active_record_1
2638
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:38:06.446782"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:38:06.446782"]]
2639
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2640
+  (0.1ms) SAVEPOINT active_record_1
2641
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2642
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2643
+ Rendered user_notifier/mailer/test_subject.en.text.erb (1.7ms)
2644
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.5ms)
2645
+
2646
+ UserNotifier::Mailer#notify: processed outbound mail in 36.5ms
2647
+  (0.9ms) rollback transaction
2648
+  (0.1ms) begin transaction
2649
+  (0.1ms) SAVEPOINT active_record_1
2650
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:38:06.490815"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:38:06.490815"]]
2651
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2652
+  (0.1ms) SAVEPOINT active_record_1
2653
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2654
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2655
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
2656
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
2657
+
2658
+ UserNotifier::Mailer#notify: processed outbound mail in 12.0ms
2659
+  (1.0ms) rollback transaction
2660
+  (0.1ms) begin transaction
2661
+  (0.1ms) SAVEPOINT active_record_1
2662
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:38:06.511002"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:38:06.511002"]]
2663
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2664
+  (0.1ms) SAVEPOINT active_record_1
2665
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
2666
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2667
+
2668
+ UserNotifier::Mailer#notify: processed outbound mail in 0.7ms
2669
+  (0.9ms) rollback transaction
2670
+  (0.1ms) begin transaction
2671
+  (0.1ms) SAVEPOINT active_record_1
2672
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:38:06.519423"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:38:06.519423"]]
2673
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2674
+  (0.1ms) SAVEPOINT active_record_1
2675
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
2676
+  (0.3ms) RELEASE SAVEPOINT active_record_1
2677
+
2678
+ UserNotifier::Mailer#notify: processed outbound mail in 0.7ms
2679
+  (0.7ms) rollback transaction
2680
+  (0.7ms) begin transaction
2681
+  (0.1ms) SAVEPOINT active_record_1
2682
+ SQL (0.9ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:38:38.857994"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:38:38.857994"]]
2683
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2684
+  (0.1ms) SAVEPOINT active_record_1
2685
+ SQL (0.6ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2686
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2687
+ Rendered user_notifier/mailer/test_subject.en.text.erb (1.8ms)
2688
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.4ms)
2689
+
2690
+ UserNotifier::Mailer#notify: processed outbound mail in 47.1ms
2691
+  (1.4ms) rollback transaction
2692
+  (0.1ms) begin transaction
2693
+  (0.1ms) SAVEPOINT active_record_1
2694
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:38:38.937325"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:38:38.937325"]]
2695
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2696
+  (0.1ms) SAVEPOINT active_record_1
2697
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2698
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2699
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
2700
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
2701
+
2702
+ UserNotifier::Mailer#notify: processed outbound mail in 11.5ms
2703
+  (0.9ms) rollback transaction
2704
+  (0.1ms) begin transaction
2705
+  (0.1ms) SAVEPOINT active_record_1
2706
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:38:38.957205"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:38:38.957205"]]
2707
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2708
+  (0.1ms) SAVEPOINT active_record_1
2709
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2710
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2711
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
2712
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.0ms)
2713
+
2714
+ UserNotifier::Mailer#notify: processed outbound mail in 11.7ms
2715
+  (0.9ms) rollback transaction
2716
+  (0.1ms) begin transaction
2717
+  (0.1ms) SAVEPOINT active_record_1
2718
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:38:38.975979"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:38:38.975979"]]
2719
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2720
+  (0.1ms) SAVEPOINT active_record_1
2721
+ SQL (0.7ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2722
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2723
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
2724
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.0ms)
2725
+
2726
+ UserNotifier::Mailer#notify: processed outbound mail in 11.8ms
2727
+  (0.9ms) rollback transaction
2728
+  (0.1ms) begin transaction
2729
+  (0.1ms) SAVEPOINT active_record_1
2730
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:38:38.995883"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:38:38.995883"]]
2731
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2732
+  (0.1ms) SAVEPOINT active_record_1
2733
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2734
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2735
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
2736
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.0ms)
2737
+
2738
+ UserNotifier::Mailer#notify: processed outbound mail in 12.4ms
2739
+  (0.9ms) rollback transaction
2740
+  (0.1ms) begin transaction
2741
+  (0.1ms) SAVEPOINT active_record_1
2742
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:38:39.015868"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:38:39.015868"]]
2743
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2744
+  (0.1ms) SAVEPOINT active_record_1
2745
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
2746
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2747
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.7ms)
2748
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.6ms)
2749
+
2750
+ UserNotifier::Mailer#notify: processed outbound mail in 26.2ms
2751
+  (0.8ms) rollback transaction
2752
+  (0.1ms) begin transaction
2753
+  (0.1ms) SAVEPOINT active_record_1
2754
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:38:39.049197"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:38:39.049197"]]
2755
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2756
+  (0.1ms) SAVEPOINT active_record_1
2757
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
2758
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2759
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
2760
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.1ms)
2761
+
2762
+ UserNotifier::Mailer#notify: processed outbound mail in 55.2ms
2763
+  (1.0ms) rollback transaction
2764
+  (0.7ms) begin transaction
2765
+  (0.1ms) SAVEPOINT active_record_1
2766
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:39:10.313070"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:39:10.313070"]]
2767
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2768
+  (0.1ms) SAVEPOINT active_record_1
2769
+ SQL (0.6ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2770
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2771
+ Rendered user_notifier/mailer/test_subject.en.text.erb (1.7ms)
2772
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.5ms)
2773
+
2774
+ UserNotifier::Mailer#notify: processed outbound mail in 45.7ms
2775
+  (1.3ms) rollback transaction
2776
+  (0.1ms) begin transaction
2777
+  (0.1ms) SAVEPOINT active_record_1
2778
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:39:10.393150"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:39:10.393150"]]
2779
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2780
+  (0.1ms) SAVEPOINT active_record_1
2781
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2782
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2783
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
2784
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
2785
+
2786
+ UserNotifier::Mailer#notify: processed outbound mail in 11.8ms
2787
+  (1.0ms) rollback transaction
2788
+  (0.1ms) begin transaction
2789
+  (0.1ms) SAVEPOINT active_record_1
2790
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:39:10.412741"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:39:10.412741"]]
2791
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2792
+  (0.1ms) SAVEPOINT active_record_1
2793
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2794
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2795
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
2796
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
2797
+
2798
+ UserNotifier::Mailer#notify: processed outbound mail in 12.4ms
2799
+  (0.9ms) rollback transaction
2800
+  (0.2ms) begin transaction
2801
+  (0.1ms) SAVEPOINT active_record_1
2802
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:39:10.432816"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:39:10.432816"]]
2803
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2804
+  (0.1ms) SAVEPOINT active_record_1
2805
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2806
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2807
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
2808
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
2809
+
2810
+ UserNotifier::Mailer#notify: processed outbound mail in 12.9ms
2811
+  (0.9ms) rollback transaction
2812
+  (0.1ms) begin transaction
2813
+  (0.1ms) SAVEPOINT active_record_1
2814
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:39:10.454038"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:39:10.454038"]]
2815
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2816
+  (0.1ms) SAVEPOINT active_record_1
2817
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2818
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2819
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
2820
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
2821
+
2822
+ UserNotifier::Mailer#notify: processed outbound mail in 13.1ms
2823
+  (0.9ms) rollback transaction
2824
+  (0.1ms) begin transaction
2825
+  (0.1ms) SAVEPOINT active_record_1
2826
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:39:10.475303"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:39:10.475303"]]
2827
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2828
+  (0.1ms) SAVEPOINT active_record_1
2829
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
2830
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2831
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.5ms)
2832
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.5ms)
2833
+
2834
+ UserNotifier::Mailer#notify: processed outbound mail in 24.0ms
2835
+  (1.2ms) rollback transaction
2836
+  (0.1ms) begin transaction
2837
+  (0.3ms) SAVEPOINT active_record_1
2838
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:39:10.507687"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:39:10.507687"]]
2839
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2840
+  (0.1ms) SAVEPOINT active_record_1
2841
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
2842
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2843
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
2844
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.1ms)
2845
+
2846
+ UserNotifier::Mailer#notify: processed outbound mail in 62.9ms
2847
+  (1.0ms) rollback transaction
2848
+  (0.7ms) begin transaction
2849
+  (0.1ms) SAVEPOINT active_record_1
2850
+ SQL (1.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:40:24.635229"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:40:24.635229"]]
2851
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2852
+  (0.1ms) SAVEPOINT active_record_1
2853
+ SQL (1.0ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
2854
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2855
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (1.8ms)
2856
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.5ms)
2857
+
2858
+ UserNotifier::Mailer#notify: processed outbound mail in 46.3ms
2859
+  (1.0ms) rollback transaction
2860
+  (0.1ms) begin transaction
2861
+  (0.1ms) SAVEPOINT active_record_1
2862
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:40:24.715905"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:40:24.715905"]]
2863
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2864
+  (0.1ms) SAVEPOINT active_record_1
2865
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
2866
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2867
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
2868
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.1ms)
2869
+
2870
+ UserNotifier::Mailer#notify: processed outbound mail in 11.4ms
2871
+  (0.8ms) rollback transaction
2872
+  (0.1ms) begin transaction
2873
+  (0.1ms) SAVEPOINT active_record_1
2874
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:40:24.734584"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:40:24.734584"]]
2875
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2876
+  (0.1ms) SAVEPOINT active_record_1
2877
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2878
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2879
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.5ms)
2880
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.5ms)
2881
+
2882
+ UserNotifier::Mailer#notify: processed outbound mail in 38.9ms
2883
+  (0.7ms) rollback transaction
2884
+  (0.1ms) begin transaction
2885
+  (0.1ms) SAVEPOINT active_record_1
2886
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:40:24.781867"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:40:24.781867"]]
2887
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2888
+  (0.1ms) SAVEPOINT active_record_1
2889
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2890
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2891
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.2ms)
2892
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
2893
+
2894
+ UserNotifier::Mailer#notify: processed outbound mail in 14.5ms
2895
+  (0.9ms) rollback transaction
2896
+  (0.1ms) begin transaction
2897
+  (0.1ms) SAVEPOINT active_record_1
2898
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:40:24.805877"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:40:24.805877"]]
2899
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2900
+  (0.1ms) SAVEPOINT active_record_1
2901
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2902
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2903
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
2904
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.0ms)
2905
+
2906
+ UserNotifier::Mailer#notify: processed outbound mail in 13.0ms
2907
+  (0.8ms) rollback transaction
2908
+  (0.4ms) begin transaction
2909
+  (0.1ms) SAVEPOINT active_record_1
2910
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:40:24.829115"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:40:24.829115"]]
2911
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2912
+  (0.1ms) SAVEPOINT active_record_1
2913
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2914
+  (0.3ms) RELEASE SAVEPOINT active_record_1
2915
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
2916
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
2917
+
2918
+ UserNotifier::Mailer#notify: processed outbound mail in 12.8ms
2919
+  (0.9ms) rollback transaction
2920
+  (0.1ms) begin transaction
2921
+  (0.1ms) SAVEPOINT active_record_1
2922
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:40:24.849708"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:40:24.849708"]]
2923
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2924
+  (0.1ms) SAVEPOINT active_record_1
2925
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2926
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2927
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
2928
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
2929
+
2930
+ UserNotifier::Mailer#notify: processed outbound mail in 61.3ms
2931
+  (0.9ms) rollback transaction
2932
+  (0.7ms) begin transaction
2933
+  (0.2ms) SAVEPOINT active_record_1
2934
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:41:32.003784"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:41:32.003784"]]
2935
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2936
+  (0.1ms) SAVEPOINT active_record_1
2937
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2938
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2939
+ Rendered user_notifier/mailer/test_subject.en.text.erb (1.7ms)
2940
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.5ms)
2941
+
2942
+ UserNotifier::Mailer#notify: processed outbound mail in 48.8ms
2943
+  (1.4ms) rollback transaction
2944
+  (0.1ms) begin transaction
2945
+  (0.1ms) SAVEPOINT active_record_1
2946
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:41:32.088140"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:41:32.088140"]]
2947
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2948
+  (0.1ms) SAVEPOINT active_record_1
2949
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2950
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2951
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
2952
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
2953
+
2954
+ UserNotifier::Mailer#notify: processed outbound mail in 11.4ms
2955
+  (0.9ms) rollback transaction
2956
+  (0.1ms) begin transaction
2957
+  (0.1ms) SAVEPOINT active_record_1
2958
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:41:32.107288"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:41:32.107288"]]
2959
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2960
+  (0.0ms) SAVEPOINT active_record_1
2961
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2962
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2963
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
2964
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
2965
+
2966
+ UserNotifier::Mailer#notify: processed outbound mail in 11.6ms
2967
+  (0.7ms) rollback transaction
2968
+  (0.1ms) begin transaction
2969
+  (0.1ms) SAVEPOINT active_record_1
2970
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:41:32.126411"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:41:32.126411"]]
2971
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2972
+  (0.1ms) SAVEPOINT active_record_1
2973
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
2974
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2975
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
2976
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
2977
+
2978
+ UserNotifier::Mailer#notify: processed outbound mail in 14.0ms
2979
+  (0.9ms) rollback transaction
2980
+  (0.1ms) begin transaction
2981
+  (0.1ms) SAVEPOINT active_record_1
2982
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:41:32.148301"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:41:32.148301"]]
2983
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2984
+  (0.1ms) SAVEPOINT active_record_1
2985
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
2986
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2987
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.6ms)
2988
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.5ms)
2989
+
2990
+ UserNotifier::Mailer#notify: processed outbound mail in 27.5ms
2991
+  (1.1ms) rollback transaction
2992
+  (0.1ms) begin transaction
2993
+  (0.1ms) SAVEPOINT active_record_1
2994
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:41:32.183807"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:41:32.183807"]]
2995
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2996
+  (0.1ms) SAVEPOINT active_record_1
2997
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
2998
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2999
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
3000
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.1ms)
3001
+
3002
+ UserNotifier::Mailer#notify: processed outbound mail in 12.1ms
3003
+  (0.9ms) rollback transaction
3004
+  (0.1ms) begin transaction
3005
+  (0.1ms) SAVEPOINT active_record_1
3006
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:41:32.204093"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:41:32.204093"]]
3007
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3008
+  (0.1ms) SAVEPOINT active_record_1
3009
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3010
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3011
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
3012
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3013
+
3014
+ UserNotifier::Mailer#notify: processed outbound mail in 56.6ms
3015
+  (0.9ms) rollback transaction
3016
+  (0.7ms) begin transaction
3017
+  (0.1ms) SAVEPOINT active_record_1
3018
+ SQL (1.0ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:42:03.411996"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:03.411996"]]
3019
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3020
+  (0.1ms) SAVEPOINT active_record_1
3021
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3022
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3023
+ Rendered user_notifier/mailer/test_subject.en.text.erb (1.6ms)
3024
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (1.3ms)
3025
+
3026
+ UserNotifier::Mailer#notify: processed outbound mail in 46.9ms
3027
+  (1.2ms) rollback transaction
3028
+  (0.1ms) begin transaction
3029
+  (0.1ms) SAVEPOINT active_record_1
3030
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:42:03.492803"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:03.492803"]]
3031
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3032
+  (0.1ms) SAVEPOINT active_record_1
3033
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3034
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3035
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
3036
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.9ms)
3037
+
3038
+ UserNotifier::Mailer#notify: processed outbound mail in 10.5ms
3039
+  (0.7ms) rollback transaction
3040
+  (0.1ms) begin transaction
3041
+  (0.1ms) SAVEPOINT active_record_1
3042
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:42:03.510452"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:03.510452"]]
3043
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3044
+  (0.1ms) SAVEPOINT active_record_1
3045
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3046
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3047
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
3048
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (1.0ms)
3049
+
3050
+ UserNotifier::Mailer#notify: processed outbound mail in 10.6ms
3051
+  (0.8ms) rollback transaction
3052
+  (0.1ms) begin transaction
3053
+  (0.1ms) SAVEPOINT active_record_1
3054
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:42:03.528688"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:03.528688"]]
3055
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3056
+  (0.1ms) SAVEPOINT active_record_1
3057
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
3058
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3059
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.5ms)
3060
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.5ms)
3061
+
3062
+ UserNotifier::Mailer#notify: processed outbound mail in 30.9ms
3063
+  (0.9ms) rollback transaction
3064
+  (0.1ms) begin transaction
3065
+  (0.1ms) SAVEPOINT active_record_1
3066
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:42:03.568071"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:03.568071"]]
3067
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3068
+  (1.4ms) SAVEPOINT active_record_1
3069
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
3070
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3071
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
3072
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.1ms)
3073
+
3074
+ UserNotifier::Mailer#notify: processed outbound mail in 15.1ms
3075
+  (1.1ms) rollback transaction
3076
+  (0.1ms) begin transaction
3077
+  (0.1ms) SAVEPOINT active_record_1
3078
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:42:03.593652"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:03.593652"]]
3079
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3080
+  (0.1ms) SAVEPOINT active_record_1
3081
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3082
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3083
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
3084
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (1.2ms)
3085
+
3086
+ UserNotifier::Mailer#notify: processed outbound mail in 11.6ms
3087
+  (0.8ms) rollback transaction
3088
+  (0.1ms) begin transaction
3089
+  (0.1ms) SAVEPOINT active_record_1
3090
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:42:03.613134"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:03.613134"]]
3091
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3092
+  (0.1ms) SAVEPOINT active_record_1
3093
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3094
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3095
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
3096
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (1.2ms)
3097
+
3098
+ UserNotifier::Mailer#notify: processed outbound mail in 12.8ms
3099
+  (0.8ms) rollback transaction
3100
+  (0.7ms) begin transaction
3101
+  (0.1ms) SAVEPOINT active_record_1
3102
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:42:14.471942"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:14.471942"]]
3103
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3104
+  (0.1ms) SAVEPOINT active_record_1
3105
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3106
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3107
+ Rendered user_notifier/mailer/test_subject.en.text.erb (1.6ms)
3108
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.5ms)
3109
+
3110
+ UserNotifier::Mailer#notify: processed outbound mail in 47.2ms
3111
+  (1.2ms) rollback transaction
3112
+  (0.1ms) begin transaction
3113
+  (0.1ms) SAVEPOINT active_record_1
3114
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:42:14.550036"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:14.550036"]]
3115
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3116
+  (0.1ms) SAVEPOINT active_record_1
3117
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3118
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3119
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
3120
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3121
+
3122
+ UserNotifier::Mailer#notify: processed outbound mail in 11.7ms
3123
+  (1.0ms) rollback transaction
3124
+  (0.1ms) begin transaction
3125
+  (0.1ms) SAVEPOINT active_record_1
3126
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:42:14.569234"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:14.569234"]]
3127
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3128
+  (0.1ms) SAVEPOINT active_record_1
3129
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3130
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3131
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
3132
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3133
+
3134
+ UserNotifier::Mailer#notify: processed outbound mail in 12.1ms
3135
+  (0.9ms) rollback transaction
3136
+  (0.1ms) begin transaction
3137
+  (0.1ms) SAVEPOINT active_record_1
3138
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:42:14.588499"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:14.588499"]]
3139
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3140
+  (0.1ms) SAVEPOINT active_record_1
3141
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3142
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3143
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
3144
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3145
+
3146
+ UserNotifier::Mailer#notify: processed outbound mail in 12.5ms
3147
+  (0.9ms) rollback transaction
3148
+  (0.1ms) begin transaction
3149
+  (0.1ms) SAVEPOINT active_record_1
3150
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:42:14.608903"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:14.608903"]]
3151
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3152
+  (0.1ms) SAVEPOINT active_record_1
3153
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3154
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3155
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
3156
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3157
+
3158
+ UserNotifier::Mailer#notify: processed outbound mail in 12.8ms
3159
+  (0.9ms) rollback transaction
3160
+  (0.1ms) begin transaction
3161
+  (0.1ms) SAVEPOINT active_record_1
3162
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:42:14.629290"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:14.629290"]]
3163
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3164
+  (0.1ms) SAVEPOINT active_record_1
3165
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
3166
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3167
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.5ms)
3168
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.5ms)
3169
+
3170
+ UserNotifier::Mailer#notify: processed outbound mail in 26.4ms
3171
+  (0.9ms) rollback transaction
3172
+  (0.1ms) begin transaction
3173
+  (0.1ms) SAVEPOINT active_record_1
3174
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:42:14.664244"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:14.664244"]]
3175
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3176
+  (0.1ms) SAVEPOINT active_record_1
3177
+ SQL (0.6ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
3178
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3179
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
3180
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.1ms)
3181
+
3182
+ UserNotifier::Mailer#notify: processed outbound mail in 54.9ms
3183
+  (0.9ms) rollback transaction
3184
+  (0.7ms) begin transaction
3185
+  (0.1ms) SAVEPOINT active_record_1
3186
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:42:32.519347"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:32.519347"]]
3187
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3188
+  (0.1ms) SAVEPOINT active_record_1
3189
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3190
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3191
+ Rendered user_notifier/mailer/test_subject.en.text.erb (1.8ms)
3192
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.5ms)
3193
+
3194
+ UserNotifier::Mailer#notify: processed outbound mail in 47.9ms
3195
+  (1.3ms) rollback transaction
3196
+  (0.1ms) begin transaction
3197
+  (0.1ms) SAVEPOINT active_record_1
3198
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:42:32.600963"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:32.600963"]]
3199
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3200
+  (0.1ms) SAVEPOINT active_record_1
3201
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
3202
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3203
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.5ms)
3204
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.5ms)
3205
+
3206
+ UserNotifier::Mailer#notify: processed outbound mail in 24.1ms
3207
+  (0.8ms) rollback transaction
3208
+  (0.1ms) begin transaction
3209
+  (0.1ms) SAVEPOINT active_record_1
3210
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:42:32.632888"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:32.632888"]]
3211
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3212
+  (0.1ms) SAVEPOINT active_record_1
3213
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
3214
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3215
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
3216
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.1ms)
3217
+
3218
+ UserNotifier::Mailer#notify: processed outbound mail in 13.8ms
3219
+  (0.9ms) rollback transaction
3220
+  (0.1ms) begin transaction
3221
+  (0.1ms) SAVEPOINT active_record_1
3222
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:42:32.654469"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:32.654469"]]
3223
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3224
+  (0.1ms) SAVEPOINT active_record_1
3225
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3226
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3227
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
3228
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3229
+
3230
+ UserNotifier::Mailer#notify: processed outbound mail in 11.8ms
3231
+  (1.0ms) rollback transaction
3232
+  (0.1ms) begin transaction
3233
+  (0.1ms) SAVEPOINT active_record_1
3234
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:42:32.674874"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:32.674874"]]
3235
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3236
+  (0.1ms) SAVEPOINT active_record_1
3237
+ SQL (0.7ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3238
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3239
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
3240
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.2ms)
3241
+
3242
+ UserNotifier::Mailer#notify: processed outbound mail in 14.1ms
3243
+  (0.8ms) rollback transaction
3244
+  (0.1ms) begin transaction
3245
+  (0.1ms) SAVEPOINT active_record_1
3246
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:42:32.697543"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:32.697543"]]
3247
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3248
+  (0.1ms) SAVEPOINT active_record_1
3249
+ SQL (0.6ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3250
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3251
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
3252
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3253
+
3254
+ UserNotifier::Mailer#notify: processed outbound mail in 14.7ms
3255
+  (0.9ms) rollback transaction
3256
+  (0.1ms) begin transaction
3257
+  (0.1ms) SAVEPOINT active_record_1
3258
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:42:32.722172"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:42:32.722172"]]
3259
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3260
+  (0.1ms) SAVEPOINT active_record_1
3261
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3262
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3263
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
3264
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3265
+
3266
+ UserNotifier::Mailer#notify: processed outbound mail in 61.9ms
3267
+  (0.9ms) rollback transaction
3268
+  (0.7ms) begin transaction
3269
+  (0.1ms) SAVEPOINT active_record_1
3270
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:43:17.177020"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:43:17.177020"]]
3271
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3272
+  (0.1ms) SAVEPOINT active_record_1
3273
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3274
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3275
+ Rendered user_notifier/mailer/test_subject.en.text.erb (1.7ms)
3276
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.5ms)
3277
+
3278
+ UserNotifier::Mailer#notify: processed outbound mail in 48.2ms
3279
+  (1.4ms) rollback transaction
3280
+  (0.1ms) begin transaction
3281
+  (0.1ms) SAVEPOINT active_record_1
3282
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:43:17.259735"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:43:17.259735"]]
3283
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3284
+  (0.1ms) SAVEPOINT active_record_1
3285
+ SQL (0.6ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3286
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3287
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
3288
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3289
+
3290
+ UserNotifier::Mailer#notify: processed outbound mail in 11.7ms
3291
+  (0.8ms) rollback transaction
3292
+  (0.1ms) begin transaction
3293
+  (0.1ms) SAVEPOINT active_record_1
3294
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:43:17.280741"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:43:17.280741"]]
3295
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3296
+  (0.1ms) SAVEPOINT active_record_1
3297
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3298
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3299
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
3300
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3301
+
3302
+ UserNotifier::Mailer#notify: processed outbound mail in 16.0ms
3303
+  (1.2ms) rollback transaction
3304
+  (0.1ms) begin transaction
3305
+  (0.1ms) SAVEPOINT active_record_1
3306
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:43:17.306423"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:43:17.306423"]]
3307
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3308
+  (0.1ms) SAVEPOINT active_record_1
3309
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3310
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3311
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
3312
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3313
+
3314
+ UserNotifier::Mailer#notify: processed outbound mail in 13.3ms
3315
+  (0.8ms) rollback transaction
3316
+  (0.1ms) begin transaction
3317
+  (0.1ms) SAVEPOINT active_record_1
3318
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:43:17.330915"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:43:17.330915"]]
3319
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3320
+  (0.1ms) SAVEPOINT active_record_1
3321
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3322
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3323
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
3324
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3325
+
3326
+ UserNotifier::Mailer#notify: processed outbound mail in 12.7ms
3327
+  (0.7ms) rollback transaction
3328
+  (0.1ms) begin transaction
3329
+  (0.1ms) SAVEPOINT active_record_1
3330
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:43:17.352401"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:43:17.352401"]]
3331
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3332
+  (0.1ms) SAVEPOINT active_record_1
3333
+ SQL (0.9ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
3334
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3335
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.6ms)
3336
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.6ms)
3337
+
3338
+ UserNotifier::Mailer#notify: processed outbound mail in 40.4ms
3339
+  (1.0ms) rollback transaction
3340
+  (0.1ms) begin transaction
3341
+  (0.1ms) SAVEPOINT active_record_1
3342
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:43:17.406311"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:43:17.406311"]]
3343
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3344
+  (0.1ms) SAVEPOINT active_record_1
3345
+ SQL (0.7ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
3346
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3347
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.2ms)
3348
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.1ms)
3349
+
3350
+ UserNotifier::Mailer#notify: processed outbound mail in 74.0ms
3351
+  (0.7ms) rollback transaction
3352
+  (0.7ms) begin transaction
3353
+  (0.1ms) SAVEPOINT active_record_1
3354
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:44:42.499300"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:44:42.499300"]]
3355
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3356
+  (0.1ms) SAVEPOINT active_record_1
3357
+ SQL (0.6ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
3358
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3359
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (1.7ms)
3360
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.5ms)
3361
+
3362
+ UserNotifier::Mailer#notify: processed outbound mail in 45.3ms
3363
+  (1.4ms) rollback transaction
3364
+  (0.1ms) begin transaction
3365
+  (0.1ms) SAVEPOINT active_record_1
3366
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:44:42.576155"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:44:42.576155"]]
3367
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3368
+  (0.1ms) SAVEPOINT active_record_1
3369
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
3370
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3371
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
3372
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.1ms)
3373
+
3374
+ UserNotifier::Mailer#notify: processed outbound mail in 12.3ms
3375
+  (1.0ms) rollback transaction
3376
+  (0.1ms) begin transaction
3377
+  (0.1ms) SAVEPOINT active_record_1
3378
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:44:42.596043"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:44:42.596043"]]
3379
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3380
+  (0.1ms) SAVEPOINT active_record_1
3381
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3382
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3383
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.6ms)
3384
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.5ms)
3385
+
3386
+ UserNotifier::Mailer#notify: processed outbound mail in 66.9ms
3387
+  (0.9ms) rollback transaction
3388
+  (0.1ms) begin transaction
3389
+  (0.1ms) SAVEPOINT active_record_1
3390
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:44:42.670694"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:44:42.670694"]]
3391
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3392
+  (0.1ms) SAVEPOINT active_record_1
3393
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3394
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3395
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
3396
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3397
+
3398
+ UserNotifier::Mailer#notify: processed outbound mail in 11.1ms
3399
+  (1.1ms) rollback transaction
3400
+  (0.1ms) begin transaction
3401
+  (0.1ms) SAVEPOINT active_record_1
3402
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:44:42.689094"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:44:42.689094"]]
3403
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3404
+  (0.1ms) SAVEPOINT active_record_1
3405
+ SQL (0.6ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3406
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3407
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
3408
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3409
+
3410
+ UserNotifier::Mailer#notify: processed outbound mail in 11.4ms
3411
+  (1.1ms) rollback transaction
3412
+  (0.1ms) begin transaction
3413
+  (0.1ms) SAVEPOINT active_record_1
3414
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:44:42.708604"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:44:42.708604"]]
3415
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3416
+  (0.1ms) SAVEPOINT active_record_1
3417
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3418
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3419
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
3420
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3421
+
3422
+ UserNotifier::Mailer#notify: processed outbound mail in 11.9ms
3423
+  (1.0ms) rollback transaction
3424
+  (0.1ms) begin transaction
3425
+  (0.1ms) SAVEPOINT active_record_1
3426
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:44:42.728246"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:44:42.728246"]]
3427
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3428
+  (0.1ms) SAVEPOINT active_record_1
3429
+ SQL (0.6ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3430
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3431
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
3432
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3433
+
3434
+ UserNotifier::Mailer#notify: processed outbound mail in 12.1ms
3435
+  (0.9ms) rollback transaction
3436
+  (0.7ms) begin transaction
3437
+  (0.1ms) SAVEPOINT active_record_1
3438
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:45:03.878075"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:03.878075"]]
3439
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3440
+  (0.2ms) SAVEPOINT active_record_1
3441
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3442
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3443
+ Rendered user_notifier/mailer/test_subject.en.text.erb (1.8ms)
3444
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.5ms)
3445
+
3446
+ UserNotifier::Mailer#notify: processed outbound mail in 46.0ms
3447
+  (1.2ms) rollback transaction
3448
+  (0.1ms) begin transaction
3449
+  (0.1ms) SAVEPOINT active_record_1
3450
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:45:03.958816"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:03.958816"]]
3451
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3452
+  (0.1ms) SAVEPOINT active_record_1
3453
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3454
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3455
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
3456
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3457
+
3458
+ UserNotifier::Mailer#notify: processed outbound mail in 11.6ms
3459
+  (1.0ms) rollback transaction
3460
+  (0.3ms) begin transaction
3461
+  (0.1ms) SAVEPOINT active_record_1
3462
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:45:03.978059"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:03.978059"]]
3463
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3464
+  (0.1ms) SAVEPOINT active_record_1
3465
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3466
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3467
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
3468
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3469
+
3470
+ UserNotifier::Mailer#notify: processed outbound mail in 12.7ms
3471
+  (0.8ms) rollback transaction
3472
+  (0.9ms) begin transaction
3473
+  (0.1ms) SAVEPOINT active_record_1
3474
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:45:03.999259"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:03.999259"]]
3475
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3476
+  (0.2ms) SAVEPOINT active_record_1
3477
+ SQL (0.7ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
3478
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3479
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.6ms)
3480
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.5ms)
3481
+
3482
+ UserNotifier::Mailer#notify: processed outbound mail in 25.5ms
3483
+  (0.9ms) rollback transaction
3484
+  (0.1ms) begin transaction
3485
+  (0.1ms) SAVEPOINT active_record_1
3486
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:45:04.033285"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:04.033285"]]
3487
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3488
+  (0.1ms) SAVEPOINT active_record_1
3489
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
3490
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3491
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
3492
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.1ms)
3493
+
3494
+ UserNotifier::Mailer#notify: processed outbound mail in 15.5ms
3495
+  (1.0ms) rollback transaction
3496
+  (0.1ms) begin transaction
3497
+  (0.1ms) SAVEPOINT active_record_1
3498
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:45:04.056979"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:04.056979"]]
3499
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3500
+  (0.1ms) SAVEPOINT active_record_1
3501
+ SQL (0.7ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3502
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3503
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
3504
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3505
+
3506
+ UserNotifier::Mailer#notify: processed outbound mail in 12.0ms
3507
+  (1.0ms) rollback transaction
3508
+  (0.1ms) begin transaction
3509
+  (0.1ms) SAVEPOINT active_record_1
3510
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:45:04.077811"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:04.077811"]]
3511
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3512
+  (0.1ms) SAVEPOINT active_record_1
3513
+ SQL (0.6ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3514
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3515
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
3516
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3517
+
3518
+ UserNotifier::Mailer#notify: processed outbound mail in 60.3ms
3519
+  (0.9ms) rollback transaction
3520
+  (0.9ms) begin transaction
3521
+  (0.1ms) SAVEPOINT active_record_1
3522
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:45:42.132814"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:42.132814"]]
3523
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3524
+  (0.2ms) SAVEPOINT active_record_1
3525
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3526
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3527
+ Rendered user_notifier/mailer/test_subject.en.text.erb (1.7ms)
3528
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.5ms)
3529
+
3530
+ UserNotifier::Mailer#notify: processed outbound mail in 47.6ms
3531
+  (1.7ms) rollback transaction
3532
+  (0.1ms) begin transaction
3533
+  (0.1ms) SAVEPOINT active_record_1
3534
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:45:42.215445"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:42.215445"]]
3535
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3536
+  (0.1ms) SAVEPOINT active_record_1
3537
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3538
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3539
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
3540
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3541
+
3542
+ UserNotifier::Mailer#notify: processed outbound mail in 11.4ms
3543
+  (1.0ms) rollback transaction
3544
+  (0.1ms) begin transaction
3545
+  (0.1ms) SAVEPOINT active_record_1
3546
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:45:42.234466"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:42.234466"]]
3547
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3548
+  (0.1ms) SAVEPOINT active_record_1
3549
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3550
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3551
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
3552
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3553
+
3554
+ UserNotifier::Mailer#notify: processed outbound mail in 12.7ms
3555
+  (1.2ms) rollback transaction
3556
+  (0.1ms) begin transaction
3557
+  (0.1ms) SAVEPOINT active_record_1
3558
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:45:42.255226"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:42.255226"]]
3559
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3560
+  (0.1ms) SAVEPOINT active_record_1
3561
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
3562
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3563
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.5ms)
3564
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.5ms)
3565
+
3566
+ UserNotifier::Mailer#notify: processed outbound mail in 25.5ms
3567
+  (0.9ms) rollback transaction
3568
+  (0.1ms) begin transaction
3569
+  (0.1ms) SAVEPOINT active_record_1
3570
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:45:42.289634"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:42.289634"]]
3571
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3572
+  (0.1ms) SAVEPOINT active_record_1
3573
+ SQL (0.6ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
3574
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3575
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
3576
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.1ms)
3577
+
3578
+ UserNotifier::Mailer#notify: processed outbound mail in 14.0ms
3579
+  (0.8ms) rollback transaction
3580
+  (0.1ms) begin transaction
3581
+  (0.1ms) SAVEPOINT active_record_1
3582
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:45:42.312651"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:42.312651"]]
3583
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3584
+  (0.1ms) SAVEPOINT active_record_1
3585
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3586
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3587
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
3588
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3589
+
3590
+ UserNotifier::Mailer#notify: processed outbound mail in 12.2ms
3591
+  (1.0ms) rollback transaction
3592
+  (0.1ms) begin transaction
3593
+  (0.1ms) SAVEPOINT active_record_1
3594
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:45:42.333592"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:42.333592"]]
3595
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3596
+  (0.1ms) SAVEPOINT active_record_1
3597
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3598
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3599
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
3600
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3601
+
3602
+ UserNotifier::Mailer#notify: processed outbound mail in 58.0ms
3603
+  (0.9ms) rollback transaction
3604
+  (0.8ms) begin transaction
3605
+  (0.1ms) SAVEPOINT active_record_1
3606
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:45:56.854587"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:56.854587"]]
3607
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3608
+  (0.1ms) SAVEPOINT active_record_1
3609
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3610
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3611
+ Rendered user_notifier/mailer/test_subject.en.text.erb (1.6ms)
3612
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.5ms)
3613
+
3614
+ UserNotifier::Mailer#notify: processed outbound mail in 47.3ms
3615
+  (1.3ms) rollback transaction
3616
+  (0.1ms) begin transaction
3617
+  (0.1ms) SAVEPOINT active_record_1
3618
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:45:56.933121"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:56.933121"]]
3619
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3620
+  (0.1ms) SAVEPOINT active_record_1
3621
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3622
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3623
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
3624
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3625
+
3626
+ UserNotifier::Mailer#notify: processed outbound mail in 11.2ms
3627
+  (1.0ms) rollback transaction
3628
+  (0.1ms) begin transaction
3629
+  (0.1ms) SAVEPOINT active_record_1
3630
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:45:56.952183"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:56.952183"]]
3631
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3632
+  (0.1ms) SAVEPOINT active_record_1
3633
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
3634
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3635
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.5ms)
3636
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.5ms)
3637
+
3638
+ UserNotifier::Mailer#notify: processed outbound mail in 26.1ms
3639
+  (0.9ms) rollback transaction
3640
+  (0.1ms) begin transaction
3641
+  (0.1ms) SAVEPOINT active_record_1
3642
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:45:56.985165"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:56.985165"]]
3643
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3644
+  (0.1ms) SAVEPOINT active_record_1
3645
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
3646
+  (0.2ms) RELEASE SAVEPOINT active_record_1
3647
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
3648
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.1ms)
3649
+
3650
+ UserNotifier::Mailer#notify: processed outbound mail in 11.8ms
3651
+  (0.9ms) rollback transaction
3652
+  (0.2ms) begin transaction
3653
+  (0.1ms) SAVEPOINT active_record_1
3654
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:45:57.004621"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:57.004621"]]
3655
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3656
+  (0.1ms) SAVEPOINT active_record_1
3657
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3658
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3659
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
3660
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3661
+
3662
+ UserNotifier::Mailer#notify: processed outbound mail in 12.2ms
3663
+  (0.9ms) rollback transaction
3664
+  (0.1ms) begin transaction
3665
+  (0.1ms) SAVEPOINT active_record_1
3666
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:45:57.024353"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:57.024353"]]
3667
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3668
+  (0.1ms) SAVEPOINT active_record_1
3669
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3670
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3671
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
3672
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3673
+
3674
+ UserNotifier::Mailer#notify: processed outbound mail in 12.9ms
3675
+  (0.8ms) rollback transaction
3676
+  (0.1ms) begin transaction
3677
+  (0.1ms) SAVEPOINT active_record_1
3678
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:45:57.045018"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:45:57.045018"]]
3679
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3680
+  (0.1ms) SAVEPOINT active_record_1
3681
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3682
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3683
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
3684
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3685
+
3686
+ UserNotifier::Mailer#notify: processed outbound mail in 54.2ms
3687
+  (0.8ms) rollback transaction
3688
+  (0.7ms) begin transaction
3689
+  (0.1ms) SAVEPOINT active_record_1
3690
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:46:34.907503"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:46:34.907503"]]
3691
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3692
+  (0.1ms) SAVEPOINT active_record_1
3693
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3694
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3695
+ Rendered user_notifier/mailer/test_subject.en.text.erb (1.7ms)
3696
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.5ms)
3697
+
3698
+ UserNotifier::Mailer#notify: processed outbound mail in 47.4ms
3699
+  (1.4ms) rollback transaction
3700
+  (0.1ms) begin transaction
3701
+  (0.1ms) SAVEPOINT active_record_1
3702
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:46:34.989114"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:46:34.989114"]]
3703
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3704
+  (0.1ms) SAVEPOINT active_record_1
3705
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3706
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3707
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
3708
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3709
+
3710
+ UserNotifier::Mailer#notify: processed outbound mail in 11.3ms
3711
+  (0.9ms) rollback transaction
3712
+  (0.1ms) begin transaction
3713
+  (0.1ms) SAVEPOINT active_record_1
3714
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:46:35.008060"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:46:35.008060"]]
3715
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3716
+  (0.1ms) SAVEPOINT active_record_1
3717
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
3718
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3719
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.5ms)
3720
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.7ms)
3721
+
3722
+ UserNotifier::Mailer#notify: processed outbound mail in 26.3ms
3723
+  (0.9ms) rollback transaction
3724
+  (0.2ms) begin transaction
3725
+  (0.1ms) SAVEPOINT active_record_1
3726
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:46:35.042312"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:46:35.042312"]]
3727
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3728
+  (0.1ms) SAVEPOINT active_record_1
3729
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
3730
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3731
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
3732
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.1ms)
3733
+
3734
+ UserNotifier::Mailer#notify: processed outbound mail in 12.3ms
3735
+  (0.9ms) rollback transaction
3736
+  (0.4ms) begin transaction
3737
+  (0.1ms) SAVEPOINT active_record_1
3738
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:46:35.063118"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:46:35.063118"]]
3739
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3740
+  (0.1ms) SAVEPOINT active_record_1
3741
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
3742
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3743
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.0ms)
3744
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.0ms)
3745
+
3746
+ UserNotifier::Mailer#notify: processed outbound mail in 12.0ms
3747
+  (0.7ms) rollback transaction
3748
+  (0.1ms) begin transaction
3749
+  (0.1ms) SAVEPOINT active_record_1
3750
+ SQL (0.8ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:46:35.083848"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:46:35.083848"]]
3751
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3752
+  (0.1ms) SAVEPOINT active_record_1
3753
+ SQL (0.7ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3754
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3755
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
3756
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3757
+
3758
+ UserNotifier::Mailer#notify: processed outbound mail in 12.9ms
3759
+  (0.9ms) rollback transaction
3760
+  (0.1ms) begin transaction
3761
+  (0.1ms) SAVEPOINT active_record_1
3762
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:46:35.106082"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:46:35.106082"]]
3763
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3764
+  (0.3ms) SAVEPOINT active_record_1
3765
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3766
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3767
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
3768
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3769
+
3770
+ UserNotifier::Mailer#notify: processed outbound mail in 63.1ms
3771
+  (1.1ms) rollback transaction
3772
+  (0.1ms) begin transaction
3773
+  (0.1ms) SAVEPOINT active_record_1
3774
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:46:35.177142"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:46:35.177142"]]
3775
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3776
+  (0.1ms) SAVEPOINT active_record_1
3777
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3778
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3779
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
3780
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3781
+
3782
+ UserNotifier::Mailer#notify: processed outbound mail in 11.7ms
3783
+  (0.9ms) rollback transaction
3784
+  (0.7ms) begin transaction
3785
+  (0.1ms) SAVEPOINT active_record_1
3786
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:46:54.082674"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:46:54.082674"]]
3787
+  (0.2ms) RELEASE SAVEPOINT active_record_1
3788
+  (0.1ms) SAVEPOINT active_record_1
3789
+ SQL (0.6ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3790
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3791
+ Rendered user_notifier/mailer/test_subject.en.text.erb (1.8ms)
3792
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.5ms)
3793
+
3794
+ UserNotifier::Mailer#notify: processed outbound mail in 44.5ms
3795
+  (1.5ms) rollback transaction
3796
+  (0.1ms) begin transaction
3797
+  (0.1ms) SAVEPOINT active_record_1
3798
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:46:54.158162"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:46:54.158162"]]
3799
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3800
+  (0.1ms) SAVEPOINT active_record_1
3801
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3802
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3803
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
3804
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3805
+
3806
+ UserNotifier::Mailer#notify: processed outbound mail in 11.3ms
3807
+  (0.9ms) rollback transaction
3808
+  (0.1ms) begin transaction
3809
+  (0.1ms) SAVEPOINT active_record_1
3810
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:46:54.176768"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:46:54.176768"]]
3811
+  (0.2ms) RELEASE SAVEPOINT active_record_1
3812
+  (0.1ms) SAVEPOINT active_record_1
3813
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
3814
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3815
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.5ms)
3816
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.5ms)
3817
+
3818
+ UserNotifier::Mailer#notify: processed outbound mail in 27.5ms
3819
+  (0.8ms) rollback transaction
3820
+  (0.1ms) begin transaction
3821
+  (0.1ms) SAVEPOINT active_record_1
3822
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:46:54.212393"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:46:54.212393"]]
3823
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3824
+  (0.1ms) SAVEPOINT active_record_1
3825
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
3826
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3827
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
3828
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.1ms)
3829
+
3830
+ UserNotifier::Mailer#notify: processed outbound mail in 12.3ms
3831
+  (0.9ms) rollback transaction
3832
+  (0.1ms) begin transaction
3833
+  (0.1ms) SAVEPOINT active_record_1
3834
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:46:54.232409"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:46:54.232409"]]
3835
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3836
+  (0.1ms) SAVEPOINT active_record_1
3837
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3838
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3839
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
3840
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.2ms)
3841
+
3842
+ UserNotifier::Mailer#notify: processed outbound mail in 12.2ms
3843
+  (0.9ms) rollback transaction
3844
+  (0.1ms) begin transaction
3845
+  (0.1ms) SAVEPOINT active_record_1
3846
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:46:54.252485"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:46:54.252485"]]
3847
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3848
+  (0.1ms) SAVEPOINT active_record_1
3849
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3850
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3851
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
3852
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.0ms)
3853
+
3854
+ UserNotifier::Mailer#notify: processed outbound mail in 12.1ms
3855
+  (0.9ms) rollback transaction
3856
+  (0.1ms) begin transaction
3857
+  (0.1ms) SAVEPOINT active_record_1
3858
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:46:54.272918"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:46:54.272918"]]
3859
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3860
+  (0.1ms) SAVEPOINT active_record_1
3861
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3862
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3863
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
3864
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3865
+
3866
+ UserNotifier::Mailer#notify: processed outbound mail in 54.8ms
3867
+  (0.9ms) rollback transaction
3868
+  (0.7ms) begin transaction
3869
+  (0.1ms) SAVEPOINT active_record_1
3870
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:47:36.872859"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:47:36.872859"]]
3871
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3872
+  (0.1ms) SAVEPOINT active_record_1
3873
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3874
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3875
+ Rendered user_notifier/mailer/test_subject.en.text.erb (1.7ms)
3876
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.5ms)
3877
+
3878
+ UserNotifier::Mailer#notify: processed outbound mail in 45.0ms
3879
+  (1.3ms) rollback transaction
3880
+  (0.1ms) begin transaction
3881
+  (0.1ms) SAVEPOINT active_record_1
3882
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:47:36.950212"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:47:36.950212"]]
3883
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3884
+  (0.1ms) SAVEPOINT active_record_1
3885
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3886
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3887
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
3888
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3889
+
3890
+ UserNotifier::Mailer#notify: processed outbound mail in 11.5ms
3891
+  (0.9ms) rollback transaction
3892
+  (0.1ms) begin transaction
3893
+  (0.1ms) SAVEPOINT active_record_1
3894
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:47:36.970006"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:47:36.970006"]]
3895
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3896
+  (0.1ms) SAVEPOINT active_record_1
3897
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3898
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3899
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
3900
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3901
+
3902
+ UserNotifier::Mailer#notify: processed outbound mail in 11.8ms
3903
+  (0.9ms) rollback transaction
3904
+  (0.1ms) begin transaction
3905
+  (0.1ms) SAVEPOINT active_record_1
3906
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:47:36.989443"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:47:36.989443"]]
3907
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3908
+  (0.1ms) SAVEPOINT active_record_1
3909
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3910
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3911
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
3912
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3913
+
3914
+ UserNotifier::Mailer#notify: processed outbound mail in 13.2ms
3915
+  (1.1ms) rollback transaction
3916
+  (0.1ms) begin transaction
3917
+  (0.1ms) SAVEPOINT active_record_1
3918
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:47:37.009899"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:47:37.009899"]]
3919
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3920
+  (0.1ms) SAVEPOINT active_record_1
3921
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3922
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3923
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
3924
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
3925
+
3926
+ UserNotifier::Mailer#notify: processed outbound mail in 12.7ms
3927
+  (1.0ms) rollback transaction
3928
+  (0.1ms) begin transaction
3929
+  (0.1ms) SAVEPOINT active_record_1
3930
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:47:37.030279"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:47:37.030279"]]
3931
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3932
+  (0.1ms) SAVEPOINT active_record_1
3933
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
3934
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3935
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.5ms)
3936
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.5ms)
3937
+
3938
+ UserNotifier::Mailer#notify: processed outbound mail in 24.3ms
3939
+  (0.9ms) rollback transaction
3940
+  (0.1ms) begin transaction
3941
+  (0.1ms) SAVEPOINT active_record_1
3942
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-10-29 15:47:37.062341"], ["email", "foo@bar.com"], ["updated_at", "2014-10-29 15:47:37.062341"]]
3943
+  (0.2ms) RELEASE SAVEPOINT active_record_1
3944
+  (0.1ms) SAVEPOINT active_record_1
3945
+ SQL (0.6ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
3946
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3947
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
3948
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.1ms)
3949
+
3950
+ UserNotifier::Mailer#notify: processed outbound mail in 54.3ms
3951
+  (0.9ms) rollback transaction
3952
+  (53.6ms) begin transaction
3953
+  (0.2ms) SAVEPOINT active_record_1
3954
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:43:13.737362"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:13.737362"]]
3955
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3956
+  (0.1ms) SAVEPOINT active_record_1
3957
+ SQL (0.5ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:43:13.756879"], ["title", "test"], ["updated_at", "2014-11-18 14:43:13.756879"], ["user_id", 1]]
3958
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3959
+  (0.1ms) SAVEPOINT active_record_1
3960
+ SQL (0.3ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3961
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3962
+  (1.0ms) rollback transaction
3963
+  (0.1ms) begin transaction
3964
+  (0.1ms) SAVEPOINT active_record_1
3965
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:43:13.897564"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:13.897564"]]
3966
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3967
+  (0.1ms) SAVEPOINT active_record_1
3968
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:43:13.899642"], ["title", "test"], ["updated_at", "2014-11-18 14:43:13.899642"], ["user_id", 1]]
3969
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3970
+  (0.1ms) SAVEPOINT active_record_1
3971
+ SQL (0.2ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3972
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3973
+  (0.8ms) rollback transaction
3974
+  (0.1ms) begin transaction
3975
+  (0.1ms) SAVEPOINT active_record_1
3976
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:43:13.906547"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:13.906547"]]
3977
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3978
+  (0.1ms) SAVEPOINT active_record_1
3979
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:43:13.908432"], ["title", "test"], ["updated_at", "2014-11-18 14:43:13.908432"], ["user_id", 1]]
3980
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3981
+  (0.1ms) SAVEPOINT active_record_1
3982
+ SQL (0.2ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3983
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3984
+ UserNotification Load (0.2ms) SELECT "user_notifications".* FROM "user_notifications" ORDER BY "user_notifications"."id" DESC LIMIT 1
3985
+  (1.0ms) rollback transaction
3986
+  (0.1ms) begin transaction
3987
+  (0.1ms) SAVEPOINT active_record_1
3988
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:43:13.942540"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:13.942540"]]
3989
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3990
+  (0.1ms) SAVEPOINT active_record_1
3991
+ SQL (0.5ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:43:13.945247"], ["title", "test"], ["updated_at", "2014-11-18 14:43:13.945247"], ["user_id", 1]]
3992
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3993
+  (0.1ms) SAVEPOINT active_record_1
3994
+ SQL (0.2ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
3995
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3996
+  (0.8ms) rollback transaction
3997
+  (0.1ms) begin transaction
3998
+  (0.1ms) SAVEPOINT active_record_1
3999
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:43:13.964967"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:13.964967"]]
4000
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4001
+  (0.1ms) SAVEPOINT active_record_1
4002
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:43:13.966903"], ["title", "test"], ["updated_at", "2014-11-18 14:43:13.966903"], ["user_id", 1]]
4003
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4004
+  (0.1ms) SAVEPOINT active_record_1
4005
+ SQL (0.3ms) INSERT INTO "order_notifications" ("from_email", "from_name", "locale", "order_id", "template_name", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["order_id", 1], ["template_name", "test"], ["user_id", 1]]
4006
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4007
+  (0.8ms) rollback transaction
4008
+  (0.1ms) begin transaction
4009
+  (0.1ms) SAVEPOINT active_record_1
4010
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:43:13.983748"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:13.983748"]]
4011
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4012
+  (0.1ms) SAVEPOINT active_record_1
4013
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:43:13.986102"], ["title", "test"], ["updated_at", "2014-11-18 14:43:13.986102"], ["user_id", 1]]
4014
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4015
+  (0.1ms) SAVEPOINT active_record_1
4016
+ SQL (0.2ms) INSERT INTO "order_notifications" ("from_email", "from_name", "locale", "order_id", "template_name", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["order_id", 1], ["template_name", "test"], ["user_id", 1]]
4017
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4018
+  (1.0ms) rollback transaction
4019
+  (0.1ms) begin transaction
4020
+  (0.1ms) SAVEPOINT active_record_1
4021
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:43:14.034201"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:14.034201"]]
4022
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4023
+  (0.1ms) SAVEPOINT active_record_1
4024
+ SQL (0.5ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:43:14.036432"], ["title", "test"], ["updated_at", "2014-11-18 14:43:14.036432"], ["user_id", 1]]
4025
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4026
+  (0.1ms) SAVEPOINT active_record_1
4027
+ SQL (0.2ms) INSERT INTO "order_notifications" ("from_email", "from_name", "locale", "order_id", "template_name", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["order_id", 1], ["template_name", "test"], ["user_id", 1]]
4028
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4029
+  (0.9ms) rollback transaction
4030
+  (0.1ms) begin transaction
4031
+  (0.1ms) SAVEPOINT active_record_1
4032
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:43:14.044118"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:14.044118"]]
4033
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4034
+  (0.0ms) SAVEPOINT active_record_1
4035
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:43:14.045962"], ["title", "test"], ["updated_at", "2014-11-18 14:43:14.045962"], ["user_id", 1]]
4036
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4037
+  (0.8ms) rollback transaction
4038
+  (0.1ms) begin transaction
4039
+  (0.1ms) SAVEPOINT active_record_1
4040
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:43:14.050793"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:14.050793"]]
4041
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4042
+  (0.1ms) SAVEPOINT active_record_1
4043
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:43:14.052661"], ["title", "test"], ["updated_at", "2014-11-18 14:43:14.052661"], ["user_id", 1]]
4044
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4045
+  (0.1ms) SAVEPOINT active_record_1
4046
+ SQL (0.1ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4047
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4048
+  (0.8ms) rollback transaction
4049
+  (0.1ms) begin transaction
4050
+  (0.1ms) SAVEPOINT active_record_1
4051
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:43:14.058893"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:14.058893"]]
4052
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4053
+  (0.0ms) SAVEPOINT active_record_1
4054
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:43:14.060704"], ["title", "test"], ["updated_at", "2014-11-18 14:43:14.060704"], ["user_id", 1]]
4055
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4056
+  (0.1ms) SAVEPOINT active_record_1
4057
+ SQL (0.2ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4058
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4059
+  (0.2ms) SELECT COUNT(*) FROM "user_notifications" WHERE "user_notifications"."user_id" = 1 AND "user_notifications"."template_name" = 'test'
4060
+  (0.1ms) SELECT COUNT(*) FROM "user_notifications"
4061
+  (0.8ms) rollback transaction
4062
+  (0.1ms) begin transaction
4063
+  (0.1ms) SAVEPOINT active_record_1
4064
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:43:14.074053"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:14.074053"]]
4065
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4066
+  (0.0ms) SAVEPOINT active_record_1
4067
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:43:14.075962"], ["title", "test"], ["updated_at", "2014-11-18 14:43:14.075962"], ["user_id", 1]]
4068
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4069
+  (0.1ms) SAVEPOINT active_record_1
4070
+ SQL (0.1ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4071
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4072
+ UserNotification Load (0.1ms) SELECT "user_notifications".* FROM "user_notifications" ORDER BY "user_notifications"."id" DESC LIMIT 1
4073
+  (0.9ms) rollback transaction
4074
+  (0.1ms) begin transaction
4075
+  (0.1ms) SAVEPOINT active_record_1
4076
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:43:14.082447"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:14.082447"]]
4077
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4078
+  (0.0ms) SAVEPOINT active_record_1
4079
+ SQL (0.5ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:43:14.084365"], ["title", "test"], ["updated_at", "2014-11-18 14:43:14.084365"], ["user_id", 1]]
4080
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4081
+  (0.1ms) SAVEPOINT active_record_1
4082
+ SQL (0.1ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4083
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4084
+  (0.1ms) SELECT COUNT(*) FROM "user_notifications" WHERE "user_notifications"."user_id" = 1 AND "user_notifications"."template_name" = 'another_test'
4085
+  (0.1ms) SAVEPOINT active_record_1
4086
+ SQL (0.1ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "another_test"], ["user_id", 1]]
4087
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4088
+  (0.1ms) SELECT COUNT(*) FROM "user_notifications"
4089
+  (0.9ms) rollback transaction
4090
+  (0.1ms) begin transaction
4091
+  (0.1ms) rollback transaction
4092
+  (0.1ms) begin transaction
4093
+  (0.1ms) rollback transaction
4094
+  (0.1ms) begin transaction
4095
+  (0.1ms) rollback transaction
4096
+  (0.1ms) begin transaction
4097
+  (0.0ms) rollback transaction
4098
+  (0.1ms) begin transaction
4099
+  (0.0ms) rollback transaction
4100
+  (0.1ms) begin transaction
4101
+  (0.0ms) rollback transaction
4102
+  (0.1ms) begin transaction
4103
+  (0.0ms) rollback transaction
4104
+  (0.1ms) begin transaction
4105
+  (0.0ms) rollback transaction
4106
+  (0.1ms) begin transaction
4107
+  (0.0ms) rollback transaction
4108
+  (0.1ms) begin transaction
4109
+  (0.0ms) rollback transaction
4110
+  (0.1ms) begin transaction
4111
+  (0.0ms) rollback transaction
4112
+  (0.1ms) begin transaction
4113
+  (0.0ms) rollback transaction
4114
+  (0.1ms) begin transaction
4115
+  (0.1ms) SAVEPOINT active_record_1
4116
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:43:14.104941"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:14.104941"]]
4117
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4118
+  (0.1ms) SAVEPOINT active_record_1
4119
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4120
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4121
+ Rendered user_notifier/mailer/test_subject.en.text.erb (3.5ms)
4122
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.5ms)
4123
+
4124
+ UserNotifier::Mailer#notify: processed outbound mail in 215.9ms
4125
+  (0.9ms) rollback transaction
4126
+  (0.1ms) begin transaction
4127
+  (0.1ms) SAVEPOINT active_record_1
4128
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:43:14.328899"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:14.328899"]]
4129
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4130
+  (0.1ms) SAVEPOINT active_record_1
4131
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4132
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4133
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
4134
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
4135
+
4136
+ UserNotifier::Mailer#notify: processed outbound mail in 10.9ms
4137
+  (0.8ms) rollback transaction
4138
+  (0.1ms) begin transaction
4139
+  (0.1ms) SAVEPOINT active_record_1
4140
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:43:14.346657"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:14.346657"]]
4141
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4142
+  (0.0ms) SAVEPOINT active_record_1
4143
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4144
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4145
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
4146
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
4147
+
4148
+ UserNotifier::Mailer#notify: processed outbound mail in 10.7ms
4149
+  (1.3ms) rollback transaction
4150
+  (0.1ms) begin transaction
4151
+  (0.1ms) SAVEPOINT active_record_1
4152
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:43:14.365301"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:14.365301"]]
4153
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4154
+  (0.1ms) SAVEPOINT active_record_1
4155
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
4156
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4157
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.8ms)
4158
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.5ms)
4159
+
4160
+ UserNotifier::Mailer#notify: processed outbound mail in 59.8ms
4161
+  (0.9ms) rollback transaction
4162
+  (0.1ms) begin transaction
4163
+  (0.1ms) SAVEPOINT active_record_1
4164
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:43:14.432878"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:14.432878"]]
4165
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4166
+  (0.1ms) SAVEPOINT active_record_1
4167
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
4168
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4169
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
4170
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.1ms)
4171
+
4172
+ UserNotifier::Mailer#notify: processed outbound mail in 11.2ms
4173
+  (14.4ms) rollback transaction
4174
+  (0.1ms) begin transaction
4175
+  (0.1ms) SAVEPOINT active_record_1
4176
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:43:14.471745"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:14.471745"]]
4177
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4178
+  (0.1ms) SAVEPOINT active_record_1
4179
+ SQL (0.6ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4180
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4181
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
4182
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
4183
+
4184
+ UserNotifier::Mailer#notify: processed outbound mail in 16.1ms
4185
+  (0.9ms) rollback transaction
4186
+  (0.1ms) begin transaction
4187
+  (0.1ms) SAVEPOINT active_record_1
4188
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:43:14.496356"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:43:14.496356"]]
4189
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4190
+  (0.1ms) SAVEPOINT active_record_1
4191
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4192
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4193
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
4194
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
4195
+
4196
+ UserNotifier::Mailer#notify: processed outbound mail in 11.3ms
4197
+  (0.9ms) rollback transaction
4198
+  (0.7ms) begin transaction
4199
+  (0.1ms) SAVEPOINT active_record_1
4200
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:45:08.765764"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:08.765764"]]
4201
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4202
+  (0.1ms) SAVEPOINT active_record_1
4203
+ SQL (0.7ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:45:08.776944"], ["title", "test"], ["updated_at", "2014-11-18 14:45:08.776944"], ["user_id", 1]]
4204
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4205
+  (0.1ms) SAVEPOINT active_record_1
4206
+ SQL (0.2ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4207
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4208
+ UserNotification Load (0.2ms) SELECT "user_notifications".* FROM "user_notifications" ORDER BY "user_notifications"."id" DESC LIMIT 1
4209
+  (1.3ms) rollback transaction
4210
+  (0.1ms) begin transaction
4211
+  (0.1ms) SAVEPOINT active_record_1
4212
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:45:08.806720"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:08.806720"]]
4213
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4214
+  (0.1ms) SAVEPOINT active_record_1
4215
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:45:08.809100"], ["title", "test"], ["updated_at", "2014-11-18 14:45:08.809100"], ["user_id", 1]]
4216
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4217
+  (0.1ms) SAVEPOINT active_record_1
4218
+ SQL (0.2ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4219
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4220
+  (1.0ms) rollback transaction
4221
+  (0.1ms) begin transaction
4222
+  (0.1ms) SAVEPOINT active_record_1
4223
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:45:08.818361"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:08.818361"]]
4224
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4225
+  (0.0ms) SAVEPOINT active_record_1
4226
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:45:08.820312"], ["title", "test"], ["updated_at", "2014-11-18 14:45:08.820312"], ["user_id", 1]]
4227
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4228
+  (0.1ms) SAVEPOINT active_record_1
4229
+ SQL (0.1ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4230
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4231
+  (0.9ms) rollback transaction
4232
+  (0.1ms) begin transaction
4233
+  (0.1ms) SAVEPOINT active_record_1
4234
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:45:08.841126"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:08.841126"]]
4235
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4236
+  (0.1ms) SAVEPOINT active_record_1
4237
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:45:08.843119"], ["title", "test"], ["updated_at", "2014-11-18 14:45:08.843119"], ["user_id", 1]]
4238
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4239
+  (0.0ms) SAVEPOINT active_record_1
4240
+ SQL (0.1ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4241
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4242
+  (0.8ms) rollback transaction
4243
+  (0.1ms) begin transaction
4244
+  (0.1ms) SAVEPOINT active_record_1
4245
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:45:08.850051"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:08.850051"]]
4246
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4247
+  (0.1ms) SAVEPOINT active_record_1
4248
+ SQL (0.5ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:45:08.852398"], ["title", "test"], ["updated_at", "2014-11-18 14:45:08.852398"], ["user_id", 1]]
4249
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4250
+  (0.1ms) SAVEPOINT active_record_1
4251
+ SQL (0.2ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4252
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4253
+  (0.7ms) SELECT COUNT(*) FROM "user_notifications" WHERE "user_notifications"."user_id" = 1 AND "user_notifications"."template_name" = 'test'
4254
+  (0.1ms) SELECT COUNT(*) FROM "user_notifications"
4255
+  (1.0ms) rollback transaction
4256
+  (0.1ms) begin transaction
4257
+  (0.1ms) SAVEPOINT active_record_1
4258
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:45:08.866343"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:08.866343"]]
4259
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4260
+  (0.1ms) SAVEPOINT active_record_1
4261
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:45:08.869504"], ["title", "test"], ["updated_at", "2014-11-18 14:45:08.869504"], ["user_id", 1]]
4262
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4263
+  (0.1ms) SAVEPOINT active_record_1
4264
+ SQL (0.1ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4265
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4266
+  (0.1ms) SELECT COUNT(*) FROM "user_notifications" WHERE "user_notifications"."user_id" = 1 AND "user_notifications"."template_name" = 'another_test'
4267
+  (0.1ms) SAVEPOINT active_record_1
4268
+ SQL (0.1ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "another_test"], ["user_id", 1]]
4269
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4270
+  (0.1ms) SELECT COUNT(*) FROM "user_notifications"
4271
+  (0.9ms) rollback transaction
4272
+  (0.1ms) begin transaction
4273
+  (0.1ms) SAVEPOINT active_record_1
4274
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:45:08.924644"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:08.924644"]]
4275
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4276
+  (0.0ms) SAVEPOINT active_record_1
4277
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:45:08.926595"], ["title", "test"], ["updated_at", "2014-11-18 14:45:08.926595"], ["user_id", 1]]
4278
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4279
+  (0.1ms) SAVEPOINT active_record_1
4280
+ SQL (0.1ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4281
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4282
+ UserNotification Load (0.1ms) SELECT "user_notifications".* FROM "user_notifications" ORDER BY "user_notifications"."id" DESC LIMIT 1
4283
+  (0.9ms) rollback transaction
4284
+  (0.1ms) begin transaction
4285
+  (0.1ms) SAVEPOINT active_record_1
4286
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:45:08.933753"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:08.933753"]]
4287
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4288
+  (0.0ms) SAVEPOINT active_record_1
4289
+ SQL (0.7ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:45:08.935859"], ["title", "test"], ["updated_at", "2014-11-18 14:45:08.935859"], ["user_id", 1]]
4290
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4291
+  (0.1ms) SAVEPOINT active_record_1
4292
+ SQL (0.2ms) INSERT INTO "order_notifications" ("from_email", "from_name", "locale", "order_id", "template_name", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["order_id", 1], ["template_name", "test"], ["user_id", 1]]
4293
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4294
+  (0.9ms) rollback transaction
4295
+  (0.1ms) begin transaction
4296
+  (0.1ms) SAVEPOINT active_record_1
4297
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:45:08.952811"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:08.952811"]]
4298
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4299
+  (0.1ms) SAVEPOINT active_record_1
4300
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:45:08.954730"], ["title", "test"], ["updated_at", "2014-11-18 14:45:08.954730"], ["user_id", 1]]
4301
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4302
+  (0.0ms) SAVEPOINT active_record_1
4303
+ SQL (0.1ms) INSERT INTO "order_notifications" ("from_email", "from_name", "locale", "order_id", "template_name", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["order_id", 1], ["template_name", "test"], ["user_id", 1]]
4304
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4305
+  (1.0ms) rollback transaction
4306
+  (0.1ms) begin transaction
4307
+  (0.1ms) SAVEPOINT active_record_1
4308
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:45:08.961047"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:08.961047"]]
4309
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4310
+  (0.0ms) SAVEPOINT active_record_1
4311
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:45:08.963100"], ["title", "test"], ["updated_at", "2014-11-18 14:45:08.963100"], ["user_id", 1]]
4312
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4313
+  (0.0ms) SAVEPOINT active_record_1
4314
+ SQL (0.1ms) INSERT INTO "order_notifications" ("from_email", "from_name", "locale", "order_id", "template_name", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["order_id", 1], ["template_name", "test"], ["user_id", 1]]
4315
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4316
+  (0.8ms) rollback transaction
4317
+  (0.1ms) begin transaction
4318
+  (0.1ms) SAVEPOINT active_record_1
4319
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:45:08.969203"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:08.969203"]]
4320
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4321
+  (0.1ms) SAVEPOINT active_record_1
4322
+ SQL (1.0ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:45:08.971430"], ["title", "test"], ["updated_at", "2014-11-18 14:45:08.971430"], ["user_id", 1]]
4323
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4324
+  (0.1ms) SAVEPOINT active_record_1
4325
+ SQL (0.2ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4326
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4327
+  (0.9ms) rollback transaction
4328
+  (0.1ms) begin transaction
4329
+  (0.1ms) SAVEPOINT active_record_1
4330
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:45:08.979284"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:08.979284"]]
4331
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4332
+  (0.2ms) SAVEPOINT active_record_1
4333
+ SQL (0.7ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:45:08.981715"], ["title", "test"], ["updated_at", "2014-11-18 14:45:08.981715"], ["user_id", 1]]
4334
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4335
+  (0.8ms) rollback transaction
4336
+  (0.1ms) begin transaction
4337
+  (0.1ms) SAVEPOINT active_record_1
4338
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:45:08.988006"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:08.988006"]]
4339
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4340
+  (0.1ms) SAVEPOINT active_record_1
4341
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4342
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4343
+ Rendered user_notifier/mailer/test_subject.en.text.erb (2.1ms)
4344
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.6ms)
4345
+
4346
+ UserNotifier::Mailer#notify: processed outbound mail in 51.1ms
4347
+  (0.9ms) rollback transaction
4348
+  (0.1ms) begin transaction
4349
+  (0.1ms) SAVEPOINT active_record_1
4350
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:45:09.047171"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:09.047171"]]
4351
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4352
+  (0.1ms) SAVEPOINT active_record_1
4353
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4354
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4355
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
4356
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
4357
+
4358
+ UserNotifier::Mailer#notify: processed outbound mail in 11.9ms
4359
+  (0.9ms) rollback transaction
4360
+  (0.1ms) begin transaction
4361
+  (0.1ms) SAVEPOINT active_record_1
4362
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:45:09.066295"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:09.066295"]]
4363
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4364
+  (0.1ms) SAVEPOINT active_record_1
4365
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4366
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4367
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
4368
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.0ms)
4369
+
4370
+ UserNotifier::Mailer#notify: processed outbound mail in 11.0ms
4371
+  (0.9ms) rollback transaction
4372
+  (0.1ms) begin transaction
4373
+  (0.1ms) SAVEPOINT active_record_1
4374
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:45:09.084166"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:09.084166"]]
4375
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4376
+  (0.1ms) SAVEPOINT active_record_1
4377
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
4378
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4379
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.7ms)
4380
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.4ms)
4381
+
4382
+ UserNotifier::Mailer#notify: processed outbound mail in 27.4ms
4383
+  (0.9ms) rollback transaction
4384
+  (0.1ms) begin transaction
4385
+  (0.1ms) SAVEPOINT active_record_1
4386
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:45:09.118351"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:09.118351"]]
4387
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4388
+  (0.1ms) SAVEPOINT active_record_1
4389
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
4390
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4391
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
4392
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.1ms)
4393
+
4394
+ UserNotifier::Mailer#notify: processed outbound mail in 11.1ms
4395
+  (0.9ms) rollback transaction
4396
+  (0.1ms) begin transaction
4397
+  (0.1ms) SAVEPOINT active_record_1
4398
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:45:09.136736"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:09.136736"]]
4399
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4400
+  (0.1ms) SAVEPOINT active_record_1
4401
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4402
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4403
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
4404
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
4405
+
4406
+ UserNotifier::Mailer#notify: processed outbound mail in 11.6ms
4407
+  (0.9ms) rollback transaction
4408
+  (0.1ms) begin transaction
4409
+  (0.1ms) SAVEPOINT active_record_1
4410
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:45:09.156328"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:45:09.156328"]]
4411
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4412
+  (0.1ms) SAVEPOINT active_record_1
4413
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4414
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4415
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
4416
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.0ms)
4417
+
4418
+ UserNotifier::Mailer#notify: processed outbound mail in 12.2ms
4419
+  (0.9ms) rollback transaction
4420
+  (0.1ms) begin transaction
4421
+  (0.0ms) rollback transaction
4422
+  (0.1ms) begin transaction
4423
+  (0.0ms) rollback transaction
4424
+  (0.1ms) begin transaction
4425
+  (0.0ms) rollback transaction
4426
+  (0.1ms) begin transaction
4427
+  (0.1ms) rollback transaction
4428
+  (0.1ms) begin transaction
4429
+  (0.1ms) rollback transaction
4430
+  (0.1ms) begin transaction
4431
+  (0.0ms) rollback transaction
4432
+  (0.1ms) begin transaction
4433
+  (0.0ms) rollback transaction
4434
+  (0.1ms) begin transaction
4435
+  (0.0ms) rollback transaction
4436
+  (0.1ms) begin transaction
4437
+  (0.0ms) rollback transaction
4438
+  (0.1ms) begin transaction
4439
+  (0.0ms) rollback transaction
4440
+  (0.1ms) begin transaction
4441
+  (0.1ms) rollback transaction
4442
+  (0.1ms) begin transaction
4443
+  (0.2ms) rollback transaction
4444
+  (0.7ms) begin transaction
4445
+  (0.1ms) rollback transaction
4446
+  (0.1ms) begin transaction
4447
+  (0.1ms) rollback transaction
4448
+  (0.1ms) begin transaction
4449
+  (0.0ms) rollback transaction
4450
+  (0.1ms) begin transaction
4451
+  (0.0ms) rollback transaction
4452
+  (0.1ms) begin transaction
4453
+  (0.0ms) rollback transaction
4454
+  (0.1ms) begin transaction
4455
+  (0.1ms) rollback transaction
4456
+  (0.1ms) begin transaction
4457
+  (0.1ms) rollback transaction
4458
+  (0.1ms) begin transaction
4459
+  (0.1ms) rollback transaction
4460
+  (0.1ms) begin transaction
4461
+  (0.1ms) rollback transaction
4462
+  (0.1ms) begin transaction
4463
+  (0.1ms) rollback transaction
4464
+  (0.1ms) begin transaction
4465
+  (0.1ms) rollback transaction
4466
+  (0.1ms) begin transaction
4467
+  (0.1ms) rollback transaction
4468
+  (0.1ms) begin transaction
4469
+  (0.1ms) SAVEPOINT active_record_1
4470
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:47:27.981351"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:27.981351"]]
4471
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4472
+  (0.1ms) SAVEPOINT active_record_1
4473
+ SQL (1.1ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4474
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4475
+ Rendered user_notifier/mailer/test_subject.en.text.erb (1.5ms)
4476
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.4ms)
4477
+
4478
+ UserNotifier::Mailer#notify: processed outbound mail in 656.8ms
4479
+  (0.9ms) rollback transaction
4480
+  (0.1ms) begin transaction
4481
+  (0.1ms) SAVEPOINT active_record_1
4482
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:47:28.685164"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:28.685164"]]
4483
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4484
+  (0.1ms) SAVEPOINT active_record_1
4485
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
4486
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4487
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.5ms)
4488
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.4ms)
4489
+
4490
+ UserNotifier::Mailer#notify: processed outbound mail in 18.1ms
4491
+  (0.8ms) rollback transaction
4492
+  (0.1ms) begin transaction
4493
+  (0.1ms) SAVEPOINT active_record_1
4494
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:47:28.710674"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:28.710674"]]
4495
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4496
+  (0.1ms) SAVEPOINT active_record_1
4497
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
4498
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4499
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
4500
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.0ms)
4501
+
4502
+ UserNotifier::Mailer#notify: processed outbound mail in 2.2ms
4503
+  (0.8ms) rollback transaction
4504
+  (0.1ms) begin transaction
4505
+  (0.1ms) SAVEPOINT active_record_1
4506
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:47:28.720717"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:28.720717"]]
4507
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4508
+  (0.1ms) SAVEPOINT active_record_1
4509
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4510
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4511
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
4512
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
4513
+
4514
+ UserNotifier::Mailer#notify: processed outbound mail in 2.7ms
4515
+  (0.8ms) rollback transaction
4516
+  (0.3ms) begin transaction
4517
+  (0.1ms) SAVEPOINT active_record_1
4518
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:47:28.732069"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:28.732069"]]
4519
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4520
+  (0.1ms) SAVEPOINT active_record_1
4521
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4522
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4523
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
4524
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.0ms)
4525
+
4526
+ UserNotifier::Mailer#notify: processed outbound mail in 2.2ms
4527
+  (0.9ms) rollback transaction
4528
+  (0.1ms) begin transaction
4529
+  (0.1ms) SAVEPOINT active_record_1
4530
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:47:28.742815"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:28.742815"]]
4531
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4532
+  (0.1ms) SAVEPOINT active_record_1
4533
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4534
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4535
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
4536
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.0ms)
4537
+
4538
+ UserNotifier::Mailer#notify: processed outbound mail in 2.2ms
4539
+  (0.9ms) rollback transaction
4540
+  (0.1ms) begin transaction
4541
+  (0.1ms) SAVEPOINT active_record_1
4542
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:47:28.757813"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:28.757813"]]
4543
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4544
+  (0.1ms) SAVEPOINT active_record_1
4545
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4546
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4547
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
4548
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.0ms)
4549
+
4550
+ UserNotifier::Mailer#notify: processed outbound mail in 2.4ms
4551
+  (2.6ms) rollback transaction
4552
+  (0.1ms) begin transaction
4553
+  (0.1ms) SAVEPOINT active_record_1
4554
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:47:28.778147"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:28.778147"]]
4555
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4556
+  (0.1ms) SAVEPOINT active_record_1
4557
+ SQL (0.6ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:47:28.785926"], ["title", "test"], ["updated_at", "2014-11-18 14:47:28.785926"], ["user_id", 1]]
4558
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4559
+  (1.3ms) rollback transaction
4560
+  (0.1ms) begin transaction
4561
+  (0.1ms) SAVEPOINT active_record_1
4562
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:47:28.794219"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:28.794219"]]
4563
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4564
+  (0.1ms) SAVEPOINT active_record_1
4565
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:47:28.796547"], ["title", "test"], ["updated_at", "2014-11-18 14:47:28.796547"], ["user_id", 1]]
4566
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4567
+  (0.1ms) SAVEPOINT active_record_1
4568
+ SQL (0.1ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4569
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4570
+  (0.9ms) rollback transaction
4571
+  (0.1ms) begin transaction
4572
+  (0.1ms) SAVEPOINT active_record_1
4573
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:47:28.803167"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:28.803167"]]
4574
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4575
+  (0.1ms) SAVEPOINT active_record_1
4576
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:47:28.805160"], ["title", "test"], ["updated_at", "2014-11-18 14:47:28.805160"], ["user_id", 1]]
4577
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4578
+  (0.1ms) SAVEPOINT active_record_1
4579
+ SQL (0.3ms) INSERT INTO "order_notifications" ("from_email", "from_name", "locale", "order_id", "template_name", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["order_id", 1], ["template_name", "test"], ["user_id", 1]]
4580
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4581
+  (0.8ms) rollback transaction
4582
+  (0.1ms) begin transaction
4583
+  (0.1ms) SAVEPOINT active_record_1
4584
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:47:28.822089"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:28.822089"]]
4585
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4586
+  (0.1ms) SAVEPOINT active_record_1
4587
+ SQL (0.6ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:47:28.824699"], ["title", "test"], ["updated_at", "2014-11-18 14:47:28.824699"], ["user_id", 1]]
4588
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4589
+  (0.1ms) SAVEPOINT active_record_1
4590
+ SQL (0.2ms) INSERT INTO "order_notifications" ("from_email", "from_name", "locale", "order_id", "template_name", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["order_id", 1], ["template_name", "test"], ["user_id", 1]]
4591
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4592
+  (1.1ms) rollback transaction
4593
+  (0.1ms) begin transaction
4594
+  (0.1ms) SAVEPOINT active_record_1
4595
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:47:28.833809"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:28.833809"]]
4596
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4597
+  (0.1ms) SAVEPOINT active_record_1
4598
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:47:28.836682"], ["title", "test"], ["updated_at", "2014-11-18 14:47:28.836682"], ["user_id", 1]]
4599
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4600
+  (0.1ms) SAVEPOINT active_record_1
4601
+ SQL (0.1ms) INSERT INTO "order_notifications" ("from_email", "from_name", "locale", "order_id", "template_name", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["order_id", 1], ["template_name", "test"], ["user_id", 1]]
4602
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4603
+  (0.8ms) rollback transaction
4604
+  (0.1ms) begin transaction
4605
+  (0.1ms) SAVEPOINT active_record_1
4606
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:47:28.844789"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:28.844789"]]
4607
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4608
+  (0.1ms) SAVEPOINT active_record_1
4609
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:47:28.846998"], ["title", "test"], ["updated_at", "2014-11-18 14:47:28.846998"], ["user_id", 1]]
4610
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4611
+  (0.1ms) SAVEPOINT active_record_1
4612
+ SQL (0.1ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4613
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4614
+  (0.9ms) rollback transaction
4615
+  (0.1ms) begin transaction
4616
+  (0.1ms) SAVEPOINT active_record_1
4617
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:47:28.898941"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:28.898941"]]
4618
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4619
+  (0.1ms) SAVEPOINT active_record_1
4620
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:47:28.901102"], ["title", "test"], ["updated_at", "2014-11-18 14:47:28.901102"], ["user_id", 1]]
4621
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4622
+  (0.1ms) SAVEPOINT active_record_1
4623
+ SQL (0.1ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4624
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4625
+  (0.8ms) rollback transaction
4626
+  (0.1ms) begin transaction
4627
+  (0.1ms) SAVEPOINT active_record_1
4628
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:47:28.907985"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:28.907985"]]
4629
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4630
+  (0.1ms) SAVEPOINT active_record_1
4631
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:47:28.910009"], ["title", "test"], ["updated_at", "2014-11-18 14:47:28.910009"], ["user_id", 1]]
4632
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4633
+  (0.1ms) SAVEPOINT active_record_1
4634
+ SQL (0.1ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4635
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4636
+ UserNotification Load (0.2ms) SELECT "user_notifications".* FROM "user_notifications" ORDER BY "user_notifications"."id" DESC LIMIT 1
4637
+  (1.3ms) rollback transaction
4638
+  (0.1ms) begin transaction
4639
+  (0.1ms) SAVEPOINT active_record_1
4640
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:47:28.921999"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:28.921999"]]
4641
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4642
+  (0.0ms) SAVEPOINT active_record_1
4643
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:47:28.924055"], ["title", "test"], ["updated_at", "2014-11-18 14:47:28.924055"], ["user_id", 1]]
4644
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4645
+  (0.1ms) SAVEPOINT active_record_1
4646
+ SQL (0.1ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4647
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4648
+  (0.2ms) SELECT COUNT(*) FROM "user_notifications" WHERE "user_notifications"."user_id" = 1 AND "user_notifications"."template_name" = 'another_test'
4649
+  (0.1ms) SAVEPOINT active_record_1
4650
+ SQL (0.2ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "another_test"], ["user_id", 1]]
4651
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4652
+  (0.1ms) SELECT COUNT(*) FROM "user_notifications"
4653
+  (0.7ms) rollback transaction
4654
+  (0.1ms) begin transaction
4655
+  (0.1ms) SAVEPOINT active_record_1
4656
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:47:28.938138"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:28.938138"]]
4657
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4658
+  (0.1ms) SAVEPOINT active_record_1
4659
+ SQL (0.6ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:47:28.940539"], ["title", "test"], ["updated_at", "2014-11-18 14:47:28.940539"], ["user_id", 1]]
4660
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4661
+  (0.1ms) SAVEPOINT active_record_1
4662
+ SQL (0.7ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4663
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4664
+  (0.1ms) SELECT COUNT(*) FROM "user_notifications" WHERE "user_notifications"."user_id" = 1 AND "user_notifications"."template_name" = 'test'
4665
+  (0.1ms) SELECT COUNT(*) FROM "user_notifications"
4666
+  (0.7ms) rollback transaction
4667
+  (0.1ms) begin transaction
4668
+  (0.1ms) SAVEPOINT active_record_1
4669
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:47:28.950090"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:28.950090"]]
4670
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4671
+  (0.1ms) SAVEPOINT active_record_1
4672
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:47:28.952181"], ["title", "test"], ["updated_at", "2014-11-18 14:47:28.952181"], ["user_id", 1]]
4673
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4674
+  (0.1ms) SAVEPOINT active_record_1
4675
+ SQL (0.2ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4676
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4677
+ UserNotification Load (0.1ms) SELECT "user_notifications".* FROM "user_notifications" ORDER BY "user_notifications"."id" DESC LIMIT 1
4678
+  (0.9ms) rollback transaction
4679
+  (0.1ms) begin transaction
4680
+  (0.1ms) SAVEPOINT active_record_1
4681
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:47:28.960272"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:47:28.960272"]]
4682
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4683
+  (0.1ms) SAVEPOINT active_record_1
4684
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:47:28.962215"], ["title", "test"], ["updated_at", "2014-11-18 14:47:28.962215"], ["user_id", 1]]
4685
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4686
+  (0.1ms) SAVEPOINT active_record_1
4687
+ SQL (0.1ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4688
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4689
+  (0.8ms) rollback transaction
4690
+  (0.8ms) begin transaction
4691
+  (0.1ms) SAVEPOINT active_record_1
4692
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:10.492229"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:10.492229"]]
4693
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4694
+  (0.1ms) SAVEPOINT active_record_1
4695
+ SQL (0.6ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4696
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4697
+ Rendered user_notifier/mailer/test_subject.en.text.erb (1.7ms)
4698
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.4ms)
4699
+
4700
+ UserNotifier::Mailer#notify: processed outbound mail in 297.0ms
4701
+  (1.4ms) rollback transaction
4702
+  (0.1ms) begin transaction
4703
+  (0.1ms) SAVEPOINT active_record_1
4704
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:10.821253"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:10.821253"]]
4705
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4706
+  (0.1ms) SAVEPOINT active_record_1
4707
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4708
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4709
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
4710
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.0ms)
4711
+
4712
+ UserNotifier::Mailer#notify: processed outbound mail in 2.9ms
4713
+  (0.8ms) rollback transaction
4714
+  (0.1ms) begin transaction
4715
+  (0.1ms) SAVEPOINT active_record_1
4716
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:10.835692"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:10.835692"]]
4717
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4718
+  (0.1ms) SAVEPOINT active_record_1
4719
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4720
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4721
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
4722
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.0ms)
4723
+
4724
+ UserNotifier::Mailer#notify: processed outbound mail in 2.5ms
4725
+  (0.8ms) rollback transaction
4726
+  (0.1ms) begin transaction
4727
+  (0.1ms) SAVEPOINT active_record_1
4728
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:10.846443"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:10.846443"]]
4729
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4730
+  (0.1ms) SAVEPOINT active_record_1
4731
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4732
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4733
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
4734
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.0ms)
4735
+
4736
+ UserNotifier::Mailer#notify: processed outbound mail in 2.2ms
4737
+  (0.8ms) rollback transaction
4738
+  (0.1ms) begin transaction
4739
+  (0.1ms) SAVEPOINT active_record_1
4740
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:10.855988"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:10.855988"]]
4741
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4742
+  (0.1ms) SAVEPOINT active_record_1
4743
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4744
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4745
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
4746
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.1ms)
4747
+
4748
+ UserNotifier::Mailer#notify: processed outbound mail in 2.5ms
4749
+  (0.7ms) rollback transaction
4750
+  (0.1ms) begin transaction
4751
+  (0.1ms) SAVEPOINT active_record_1
4752
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:10.866271"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:10.866271"]]
4753
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4754
+  (0.1ms) SAVEPOINT active_record_1
4755
+ SQL (0.6ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
4756
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4757
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.5ms)
4758
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.4ms)
4759
+
4760
+ UserNotifier::Mailer#notify: processed outbound mail in 14.5ms
4761
+  (0.8ms) rollback transaction
4762
+  (0.1ms) begin transaction
4763
+  (0.1ms) SAVEPOINT active_record_1
4764
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:10.894646"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:10.894646"]]
4765
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4766
+  (0.1ms) SAVEPOINT active_record_1
4767
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
4768
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4769
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
4770
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.0ms)
4771
+
4772
+ UserNotifier::Mailer#notify: processed outbound mail in 2.2ms
4773
+  (1.0ms) rollback transaction
4774
+  (0.1ms) begin transaction
4775
+  (0.3ms) SAVEPOINT active_record_1
4776
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:10.913332"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:10.913332"]]
4777
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4778
+  (0.1ms) SAVEPOINT active_record_1
4779
+ SQL (0.6ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:48:10.920802"], ["title", "test"], ["updated_at", "2014-11-18 14:48:10.920802"], ["user_id", 1]]
4780
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4781
+  (0.1ms) SAVEPOINT active_record_1
4782
+ SQL (0.2ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4783
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4784
+  (0.9ms) rollback transaction
4785
+  (0.1ms) begin transaction
4786
+  (0.1ms) SAVEPOINT active_record_1
4787
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:10.939541"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:10.939541"]]
4788
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4789
+  (0.1ms) SAVEPOINT active_record_1
4790
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:48:10.941777"], ["title", "test"], ["updated_at", "2014-11-18 14:48:10.941777"], ["user_id", 1]]
4791
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4792
+  (0.1ms) SAVEPOINT active_record_1
4793
+ SQL (0.1ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4794
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4795
+  (0.8ms) rollback transaction
4796
+  (0.1ms) begin transaction
4797
+  (0.1ms) SAVEPOINT active_record_1
4798
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:10.948878"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:10.948878"]]
4799
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4800
+  (0.1ms) SAVEPOINT active_record_1
4801
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:48:10.950905"], ["title", "test"], ["updated_at", "2014-11-18 14:48:10.950905"], ["user_id", 1]]
4802
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4803
+  (0.1ms) SAVEPOINT active_record_1
4804
+ SQL (0.1ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4805
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4806
+  (0.2ms) SELECT COUNT(*) FROM "user_notifications" WHERE "user_notifications"."user_id" = 1 AND "user_notifications"."template_name" = 'another_test'
4807
+  (0.1ms) SAVEPOINT active_record_1
4808
+ SQL (0.2ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "another_test"], ["user_id", 1]]
4809
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4810
+  (0.1ms) SELECT COUNT(*) FROM "user_notifications"
4811
+  (1.0ms) rollback transaction
4812
+  (0.1ms) begin transaction
4813
+  (0.1ms) SAVEPOINT active_record_1
4814
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:10.965975"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:10.965975"]]
4815
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4816
+  (0.0ms) SAVEPOINT active_record_1
4817
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:48:10.967955"], ["title", "test"], ["updated_at", "2014-11-18 14:48:10.967955"], ["user_id", 1]]
4818
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4819
+  (0.1ms) SAVEPOINT active_record_1
4820
+ SQL (0.1ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4821
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4822
+  (0.1ms) SELECT COUNT(*) FROM "user_notifications" WHERE "user_notifications"."user_id" = 1 AND "user_notifications"."template_name" = 'test'
4823
+  (0.1ms) SELECT COUNT(*) FROM "user_notifications"
4824
+  (1.2ms) rollback transaction
4825
+  (0.1ms) begin transaction
4826
+  (0.1ms) SAVEPOINT active_record_1
4827
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:10.976363"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:10.976363"]]
4828
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4829
+  (0.1ms) SAVEPOINT active_record_1
4830
+ SQL (0.5ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:48:10.978706"], ["title", "test"], ["updated_at", "2014-11-18 14:48:10.978706"], ["user_id", 1]]
4831
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4832
+  (0.1ms) SAVEPOINT active_record_1
4833
+ SQL (0.2ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4834
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4835
+ UserNotification Load (0.2ms) SELECT "user_notifications".* FROM "user_notifications" ORDER BY "user_notifications"."id" DESC LIMIT 1
4836
+  (0.9ms) rollback transaction
4837
+  (0.1ms) begin transaction
4838
+  (0.1ms) SAVEPOINT active_record_1
4839
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:10.991717"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:10.991717"]]
4840
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4841
+  (0.1ms) SAVEPOINT active_record_1
4842
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:48:10.993802"], ["title", "test"], ["updated_at", "2014-11-18 14:48:10.993802"], ["user_id", 1]]
4843
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4844
+  (0.1ms) SAVEPOINT active_record_1
4845
+ SQL (0.1ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4846
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4847
+  (0.8ms) rollback transaction
4848
+  (0.1ms) begin transaction
4849
+  (0.1ms) SAVEPOINT active_record_1
4850
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:11.000135"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:11.000135"]]
4851
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4852
+  (0.0ms) SAVEPOINT active_record_1
4853
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:48:11.002066"], ["title", "test"], ["updated_at", "2014-11-18 14:48:11.002066"], ["user_id", 1]]
4854
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4855
+  (0.1ms) SAVEPOINT active_record_1
4856
+ SQL (0.3ms) INSERT INTO "order_notifications" ("from_email", "from_name", "locale", "order_id", "template_name", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["order_id", 1], ["template_name", "test"], ["user_id", 1]]
4857
+  (0.4ms) RELEASE SAVEPOINT active_record_1
4858
+  (1.1ms) rollback transaction
4859
+  (0.1ms) begin transaction
4860
+  (0.1ms) SAVEPOINT active_record_1
4861
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:11.020639"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:11.020639"]]
4862
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4863
+  (0.0ms) SAVEPOINT active_record_1
4864
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:48:11.022629"], ["title", "test"], ["updated_at", "2014-11-18 14:48:11.022629"], ["user_id", 1]]
4865
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4866
+  (0.1ms) SAVEPOINT active_record_1
4867
+ SQL (0.1ms) INSERT INTO "order_notifications" ("from_email", "from_name", "locale", "order_id", "template_name", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["order_id", 1], ["template_name", "test"], ["user_id", 1]]
4868
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4869
+  (0.9ms) rollback transaction
4870
+  (0.1ms) begin transaction
4871
+  (0.1ms) SAVEPOINT active_record_1
4872
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:11.028936"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:11.028936"]]
4873
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4874
+  (0.1ms) SAVEPOINT active_record_1
4875
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:48:11.030934"], ["title", "test"], ["updated_at", "2014-11-18 14:48:11.030934"], ["user_id", 1]]
4876
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4877
+  (0.1ms) SAVEPOINT active_record_1
4878
+ SQL (0.1ms) INSERT INTO "order_notifications" ("from_email", "from_name", "locale", "order_id", "template_name", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["order_id", 1], ["template_name", "test"], ["user_id", 1]]
4879
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4880
+  (0.9ms) rollback transaction
4881
+  (0.1ms) begin transaction
4882
+  (0.1ms) SAVEPOINT active_record_1
4883
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:11.037294"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:11.037294"]]
4884
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4885
+  (0.0ms) SAVEPOINT active_record_1
4886
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:48:11.039197"], ["title", "test"], ["updated_at", "2014-11-18 14:48:11.039197"], ["user_id", 1]]
4887
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4888
+  (0.9ms) rollback transaction
4889
+  (0.1ms) begin transaction
4890
+  (0.1ms) SAVEPOINT active_record_1
4891
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:11.044739"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:11.044739"]]
4892
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4893
+  (0.0ms) SAVEPOINT active_record_1
4894
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:48:11.046666"], ["title", "test"], ["updated_at", "2014-11-18 14:48:11.046666"], ["user_id", 1]]
4895
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4896
+  (0.1ms) SAVEPOINT active_record_1
4897
+ SQL (0.1ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4898
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4899
+ UserNotification Load (0.1ms) SELECT "user_notifications".* FROM "user_notifications" ORDER BY "user_notifications"."id" DESC LIMIT 1
4900
+  (0.9ms) rollback transaction
4901
+  (0.1ms) begin transaction
4902
+  (0.1ms) SAVEPOINT active_record_1
4903
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:11.054479"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:11.054479"]]
4904
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4905
+  (0.1ms) SAVEPOINT active_record_1
4906
+ SQL (0.5ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:48:11.056821"], ["title", "test"], ["updated_at", "2014-11-18 14:48:11.056821"], ["user_id", 1]]
4907
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4908
+  (0.1ms) SAVEPOINT active_record_1
4909
+ SQL (0.2ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4910
+  (0.2ms) RELEASE SAVEPOINT active_record_1
4911
+  (1.0ms) rollback transaction
4912
+  (0.1ms) begin transaction
4913
+  (0.1ms) rollback transaction
4914
+  (0.1ms) begin transaction
4915
+  (0.1ms) rollback transaction
4916
+  (0.1ms) begin transaction
4917
+  (0.0ms) rollback transaction
4918
+  (0.1ms) begin transaction
4919
+  (0.0ms) rollback transaction
4920
+  (0.1ms) begin transaction
4921
+  (0.1ms) rollback transaction
4922
+  (0.1ms) begin transaction
4923
+  (0.1ms) rollback transaction
4924
+  (0.1ms) begin transaction
4925
+  (0.1ms) rollback transaction
4926
+  (0.1ms) begin transaction
4927
+  (0.0ms) rollback transaction
4928
+  (0.1ms) begin transaction
4929
+  (0.1ms) rollback transaction
4930
+  (0.1ms) begin transaction
4931
+  (0.0ms) rollback transaction
4932
+  (0.1ms) begin transaction
4933
+  (0.0ms) rollback transaction
4934
+  (0.1ms) begin transaction
4935
+  (0.1ms) rollback transaction
4936
+  (0.7ms) begin transaction
4937
+  (0.1ms) SAVEPOINT active_record_1
4938
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:34.097580"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.097580"]]
4939
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4940
+  (0.1ms) SAVEPOINT active_record_1
4941
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4942
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4943
+ Rendered user_notifier/mailer/test_subject.en.text.erb (1.5ms)
4944
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.4ms)
4945
+
4946
+ UserNotifier::Mailer#notify: processed outbound mail in 295.4ms
4947
+  (1.4ms) rollback transaction
4948
+  (0.1ms) begin transaction
4949
+  (0.1ms) SAVEPOINT active_record_1
4950
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:34.422997"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.422997"]]
4951
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4952
+  (0.1ms) SAVEPOINT active_record_1
4953
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4954
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4955
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
4956
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.0ms)
4957
+
4958
+ UserNotifier::Mailer#notify: processed outbound mail in 2.4ms
4959
+  (0.9ms) rollback transaction
4960
+  (0.1ms) begin transaction
4961
+  (0.1ms) SAVEPOINT active_record_1
4962
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:34.435411"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.435411"]]
4963
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4964
+  (0.1ms) SAVEPOINT active_record_1
4965
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4966
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4967
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
4968
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.0ms)
4969
+
4970
+ UserNotifier::Mailer#notify: processed outbound mail in 2.6ms
4971
+  (0.8ms) rollback transaction
4972
+  (0.1ms) begin transaction
4973
+  (0.1ms) SAVEPOINT active_record_1
4974
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:34.446400"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.446400"]]
4975
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4976
+  (0.0ms) SAVEPOINT active_record_1
4977
+ SQL (0.4ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
4978
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4979
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.0ms)
4980
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.0ms)
4981
+
4982
+ UserNotifier::Mailer#notify: processed outbound mail in 2.1ms
4983
+  (0.9ms) rollback transaction
4984
+  (0.1ms) begin transaction
4985
+  (0.1ms) SAVEPOINT active_record_1
4986
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:34.457021"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.457021"]]
4987
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4988
+  (0.1ms) SAVEPOINT active_record_1
4989
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
4990
+  (0.3ms) RELEASE SAVEPOINT active_record_1
4991
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.6ms)
4992
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.4ms)
4993
+
4994
+ UserNotifier::Mailer#notify: processed outbound mail in 30.4ms
4995
+  (1.0ms) rollback transaction
4996
+  (0.2ms) begin transaction
4997
+  (0.1ms) SAVEPOINT active_record_1
4998
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:34.505154"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.505154"]]
4999
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5000
+  (0.1ms) SAVEPOINT active_record_1
5001
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "pt"], ["template_name", "test"], ["user_id", 1]]
5002
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5003
+ Rendered user_notifier/mailer/test_subject.pt.text.erb (0.1ms)
5004
+ Rendered user_notifier/mailer/test.pt.html.erb within layouts/email (0.1ms)
5005
+
5006
+ UserNotifier::Mailer#notify: processed outbound mail in 2.9ms
5007
+  (0.7ms) rollback transaction
5008
+  (0.1ms) begin transaction
5009
+  (0.1ms) SAVEPOINT active_record_1
5010
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:34.516376"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.516376"]]
5011
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5012
+  (0.1ms) SAVEPOINT active_record_1
5013
+ SQL (0.5ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
5014
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5015
+ Rendered user_notifier/mailer/test_subject.en.text.erb (0.1ms)
5016
+ Rendered user_notifier/mailer/test.en.html.erb within layouts/email (0.0ms)
5017
+
5018
+ UserNotifier::Mailer#notify: processed outbound mail in 2.2ms
5019
+  (0.8ms) rollback transaction
5020
+  (0.1ms) begin transaction
5021
+  (0.1ms) SAVEPOINT active_record_1
5022
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:34.533661"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.533661"]]
5023
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5024
+  (0.1ms) SAVEPOINT active_record_1
5025
+ SQL (0.6ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:48:34.540605"], ["title", "test"], ["updated_at", "2014-11-18 14:48:34.540605"], ["user_id", 1]]
5026
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5027
+  (0.1ms) SAVEPOINT active_record_1
5028
+ SQL (0.2ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
5029
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5030
+  (0.9ms) rollback transaction
5031
+  (0.1ms) begin transaction
5032
+  (0.1ms) SAVEPOINT active_record_1
5033
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:34.558382"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.558382"]]
5034
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5035
+  (0.1ms) SAVEPOINT active_record_1
5036
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:48:34.560431"], ["title", "test"], ["updated_at", "2014-11-18 14:48:34.560431"], ["user_id", 1]]
5037
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5038
+  (0.1ms) SAVEPOINT active_record_1
5039
+ SQL (0.1ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
5040
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5041
+  (0.9ms) rollback transaction
5042
+  (0.1ms) begin transaction
5043
+  (0.1ms) SAVEPOINT active_record_1
5044
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:34.567422"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.567422"]]
5045
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5046
+  (0.1ms) SAVEPOINT active_record_1
5047
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:48:34.569536"], ["title", "test"], ["updated_at", "2014-11-18 14:48:34.569536"], ["user_id", 1]]
5048
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5049
+  (0.1ms) SAVEPOINT active_record_1
5050
+ SQL (0.2ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
5051
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5052
+  (0.2ms) SELECT COUNT(*) FROM "user_notifications" WHERE "user_notifications"."user_id" = 1 AND "user_notifications"."template_name" = 'another_test'
5053
+  (0.2ms) SAVEPOINT active_record_1
5054
+ SQL (0.2ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "another_test"], ["user_id", 1]]
5055
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5056
+  (0.1ms) SELECT COUNT(*) FROM "user_notifications"
5057
+  (0.8ms) rollback transaction
5058
+  (0.1ms) begin transaction
5059
+  (0.1ms) SAVEPOINT active_record_1
5060
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:34.587157"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.587157"]]
5061
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5062
+  (0.1ms) SAVEPOINT active_record_1
5063
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:48:34.589326"], ["title", "test"], ["updated_at", "2014-11-18 14:48:34.589326"], ["user_id", 1]]
5064
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5065
+  (0.1ms) SAVEPOINT active_record_1
5066
+ SQL (0.1ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
5067
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5068
+  (0.1ms) SELECT COUNT(*) FROM "user_notifications" WHERE "user_notifications"."user_id" = 1 AND "user_notifications"."template_name" = 'test'
5069
+  (0.1ms) SELECT COUNT(*) FROM "user_notifications"
5070
+  (0.8ms) rollback transaction
5071
+  (0.1ms) begin transaction
5072
+  (0.1ms) SAVEPOINT active_record_1
5073
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:34.596665"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.596665"]]
5074
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5075
+  (0.1ms) SAVEPOINT active_record_1
5076
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:48:34.598653"], ["title", "test"], ["updated_at", "2014-11-18 14:48:34.598653"], ["user_id", 1]]
5077
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5078
+  (0.1ms) SAVEPOINT active_record_1
5079
+ SQL (0.2ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
5080
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5081
+ UserNotification Load (0.2ms) SELECT "user_notifications".* FROM "user_notifications" ORDER BY "user_notifications"."id" DESC LIMIT 1
5082
+  (0.8ms) rollback transaction
5083
+  (0.1ms) begin transaction
5084
+  (0.1ms) SAVEPOINT active_record_1
5085
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:34.610063"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.610063"]]
5086
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5087
+  (0.1ms) SAVEPOINT active_record_1
5088
+ SQL (0.5ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:48:34.612366"], ["title", "test"], ["updated_at", "2014-11-18 14:48:34.612366"], ["user_id", 1]]
5089
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5090
+  (0.1ms) SAVEPOINT active_record_1
5091
+ SQL (0.2ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
5092
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5093
+ UserNotification Load (0.2ms) SELECT "user_notifications".* FROM "user_notifications" ORDER BY "user_notifications"."id" DESC LIMIT 1
5094
+  (0.8ms) rollback transaction
5095
+  (0.1ms) begin transaction
5096
+  (0.1ms) SAVEPOINT active_record_1
5097
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:34.621507"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.621507"]]
5098
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5099
+  (0.1ms) SAVEPOINT active_record_1
5100
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:48:34.623725"], ["title", "test"], ["updated_at", "2014-11-18 14:48:34.623725"], ["user_id", 1]]
5101
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5102
+  (0.1ms) SAVEPOINT active_record_1
5103
+ SQL (0.1ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
5104
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5105
+  (0.8ms) rollback transaction
5106
+  (0.1ms) begin transaction
5107
+  (0.2ms) SAVEPOINT active_record_1
5108
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:34.629977"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.629977"]]
5109
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5110
+  (0.1ms) SAVEPOINT active_record_1
5111
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:48:34.631969"], ["title", "test"], ["updated_at", "2014-11-18 14:48:34.631969"], ["user_id", 1]]
5112
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5113
+  (0.1ms) SAVEPOINT active_record_1
5114
+ SQL (0.1ms) INSERT INTO "user_notifications" ("from_email", "from_name", "locale", "template_name", "user_id") VALUES (?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["template_name", "test"], ["user_id", 1]]
5115
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5116
+  (0.9ms) rollback transaction
5117
+  (0.1ms) begin transaction
5118
+  (0.1ms) SAVEPOINT active_record_1
5119
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:34.638491"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.638491"]]
5120
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5121
+  (0.1ms) SAVEPOINT active_record_1
5122
+ SQL (0.5ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:48:34.640874"], ["title", "test"], ["updated_at", "2014-11-18 14:48:34.640874"], ["user_id", 1]]
5123
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5124
+  (0.1ms) SAVEPOINT active_record_1
5125
+ SQL (0.3ms) INSERT INTO "order_notifications" ("from_email", "from_name", "locale", "order_id", "template_name", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["order_id", 1], ["template_name", "test"], ["user_id", 1]]
5126
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5127
+  (0.9ms) rollback transaction
5128
+  (0.1ms) begin transaction
5129
+  (0.1ms) SAVEPOINT active_record_1
5130
+ SQL (0.8ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:34.658674"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.658674"]]
5131
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5132
+  (0.1ms) SAVEPOINT active_record_1
5133
+ SQL (0.7ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:48:34.661963"], ["title", "test"], ["updated_at", "2014-11-18 14:48:34.661963"], ["user_id", 1]]
5134
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5135
+  (0.1ms) SAVEPOINT active_record_1
5136
+ SQL (0.2ms) INSERT INTO "order_notifications" ("from_email", "from_name", "locale", "order_id", "template_name", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["order_id", 1], ["template_name", "test"], ["user_id", 1]]
5137
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5138
+  (1.0ms) rollback transaction
5139
+  (0.1ms) begin transaction
5140
+  (0.1ms) SAVEPOINT active_record_1
5141
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:34.669488"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.669488"]]
5142
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5143
+  (0.0ms) SAVEPOINT active_record_1
5144
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:48:34.671420"], ["title", "test"], ["updated_at", "2014-11-18 14:48:34.671420"], ["user_id", 1]]
5145
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5146
+  (0.0ms) SAVEPOINT active_record_1
5147
+ SQL (0.2ms) INSERT INTO "order_notifications" ("from_email", "from_name", "locale", "order_id", "template_name", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["from_email", "no-reply@yourdomain"], ["from_name", "please configure a default from name"], ["locale", "en"], ["order_id", 1], ["template_name", "test"], ["user_id", 1]]
5148
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5149
+  (0.8ms) rollback transaction
5150
+  (0.1ms) begin transaction
5151
+  (0.1ms) SAVEPOINT active_record_1
5152
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-18 14:48:34.677766"], ["email", "foo@bar.com"], ["updated_at", "2014-11-18 14:48:34.677766"]]
5153
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5154
+  (0.1ms) SAVEPOINT active_record_1
5155
+ SQL (0.4ms) INSERT INTO "orders" ("created_at", "title", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", "2014-11-18 14:48:34.680153"], ["title", "test"], ["updated_at", "2014-11-18 14:48:34.680153"], ["user_id", 1]]
5156
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5157
+  (0.8ms) rollback transaction
5158
+  (0.1ms) begin transaction
5159
+  (0.1ms) rollback transaction
5160
+  (0.1ms) begin transaction
5161
+  (0.1ms) rollback transaction
5162
+  (0.1ms) begin transaction
5163
+  (0.1ms) rollback transaction
5164
+  (0.1ms) begin transaction
5165
+  (0.1ms) rollback transaction
5166
+  (0.1ms) begin transaction
5167
+  (0.0ms) rollback transaction
5168
+  (0.1ms) begin transaction
5169
+  (0.1ms) rollback transaction
5170
+  (0.1ms) begin transaction
5171
+  (0.1ms) rollback transaction
5172
+  (0.1ms) begin transaction
5173
+  (0.1ms) rollback transaction
5174
+  (0.1ms) begin transaction
5175
+  (0.1ms) rollback transaction
5176
+  (0.1ms) begin transaction
5177
+  (0.1ms) rollback transaction
5178
+  (0.1ms) begin transaction
5179
+  (0.1ms) rollback transaction
5180
+  (0.1ms) begin transaction
5181
+  (0.1ms) rollback transaction