dripper_mail 0.0.17 → 0.0.18

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: 7a1d9fb74ff056d99ab0b03381f94c03ad6aaa29
4
- data.tar.gz: dc3bc2051217da625687ba92bf2327816eb937a0
3
+ metadata.gz: 81216f333d09bb6d5baec1c56a80e2ac8a1e4a90
4
+ data.tar.gz: a6958f4ee5a79154e35f3177c58f839f174464f3
5
5
  SHA512:
6
- metadata.gz: 58439dfd26531c22b7a98a346f3ce9f94dd557981c0a2272e8fe53db796da643cc2e03eacfda9ef284e4b2e01453037ac139a84fdec312259fa8534a024909b3
7
- data.tar.gz: 64b026e06e89a03a6a362e4b5080ccebb9532227399cfc7ff54edd8c92f1975cfa7d7eaf3c0d3f25e58dfd6de589995915160e3ee43c3910c6857693c6828c35
6
+ metadata.gz: 808f68e2eaeb57f5a0b9ed193d2e327543dad8e67be5477a3bc97546895ec83d4c001b930c677ab9e17869fd1a731b73a2ba288ff6558e4e3485363d5f7717a4
7
+ data.tar.gz: 5e0f58d2588e1f83fac1db66df6ed3872b25474f361502a08a4dff53910bdeec657b785a95d170357e876e7dbdb81ce58cd003a33f883b03dd8d8eaf885a5419
@@ -1,3 +1,3 @@
1
1
  module Dripper
2
- VERSION = "0.0.17"
2
+ VERSION = "0.0.18"
3
3
  end
data/lib/dripper_mail.rb CHANGED
@@ -3,6 +3,7 @@ require "dripper/drippable"
3
3
  require "dripper/dripper_job"
4
4
 
5
5
  module Dripper
6
+ # this file is called dripper_mail because the gem needs to be named the same as the default file
6
7
  @registry = []
7
8
  mattr_accessor :job_queue
8
9
 
@@ -36,6 +37,7 @@ class DripperProxy
36
37
  attr_accessor :wait_until
37
38
 
38
39
  def initialize(opts={}, &block)
40
+ @scopes = []
39
41
  # if there's a parent, initialize all values to the parent values first
40
42
  # then override with children
41
43
  [:model, :mailer, :action, :wait, :wait_until].each do |method|
@@ -47,17 +49,10 @@ class DripperProxy
47
49
 
48
50
  #overwrite any defined options
49
51
  opts.each { |k,v| instance_variable_set("@#{k}", v) }
50
-
51
- # merge the parent scopes if they exist
52
- if self.parent && self.parent.scope
53
- if opts[:scope]
54
- instance_variable_set "@scope", self.parent.scope.merge(opts[:scope])
55
- else
56
- instance_variable_set "@scope", self.parent.scope
57
- end
52
+ if opts[:scope]
53
+ @scopes << opts[:scope]
58
54
  end
59
55
 
60
-
61
56
  @children = []
62
57
  instance_eval(&block) if block
63
58
  # only include complete ones in the registry
@@ -90,10 +85,14 @@ class DripperProxy
90
85
  .select(:drippable_id)
91
86
 
92
87
  final_scope = all_recs
93
- .merge(self.scope)
94
88
  .where.not(id: already_sent)
95
89
  .where("#{self.model.to_s.classify.constantize.table_name}.created_at >= ?", dripper_action.created_at.change(usec: 0))
96
90
 
91
+ # merge all the scopes
92
+ @scopes.each do |s|
93
+ final_scope = final_scope.merge s
94
+ end
95
+
97
96
  if item
98
97
  final_scope = final_scope.where(id: item.id)
99
98
  end
@@ -1,3 +1,4 @@
1
1
  class User < ActiveRecord::Base
2
2
  scope :has_username, -> { where.not(username: nil) }
3
+ scope :week_old, -> { where("users.created_at <= ?", DateTime.now - 1.weeks) }
3
4
  end
@@ -25454,3 +25454,2285 @@ Dripper::ConcernTest: test_Concern_Test
25454
25454
  [ActiveJob] Enqueued DripperJob (Job ID: 76fb3d5a-5936-4eab-a5ea-9673a6cd7642) to Inline(default) with arguments: gid://dummy/Newsletter/1
25455
25455
   (0.0ms) RELEASE SAVEPOINT active_record_1
25456
25456
   (0.5ms) rollback transaction
25457
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
25458
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
25459
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
25460
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
25461
+  (0.1ms) begin transaction
25462
+ ---------------------------------
25463
+ Dripper::MessageTest: test_Config
25464
+ ---------------------------------
25465
+  (0.0ms) SAVEPOINT active_record_1
25466
+ SQL (0.7ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "foo@bar.com"], ["username", "foo"], ["created_at", "2016-04-15 17:39:06.552839"], ["updated_at", "2016-04-15 17:39:06.552839"]]
25467
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25468
+  (0.0ms) SAVEPOINT active_record_1
25469
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo2@bar.com"], ["created_at", "2016-04-15 17:39:06.556003"], ["updated_at", "2016-04-15 17:39:06.556003"]]
25470
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25471
+  (0.0ms) SAVEPOINT active_record_1
25472
+ SQL (0.0ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo3@bar.com"], ["created_at", "2016-04-15 17:39:06.556953"], ["updated_at", "2016-04-15 17:39:06.556953"]]
25473
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25474
+  (0.6ms) rollback transaction
25475
+  (0.1ms) begin transaction
25476
+ --------------------------------------
25477
+ Dripper::MessageTest: test_Integration
25478
+ --------------------------------------
25479
+  (0.0ms) SAVEPOINT active_record_1
25480
+ SQL (0.2ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "foo@bar.com"], ["username", "foo"], ["created_at", "2016-04-15 17:39:06.559033"], ["updated_at", "2016-04-15 17:39:06.559033"]]
25481
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25482
+  (0.0ms) SAVEPOINT active_record_1
25483
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo2@bar.com"], ["created_at", "2016-04-15 17:39:06.560040"], ["updated_at", "2016-04-15 17:39:06.560040"]]
25484
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25485
+  (0.0ms) SAVEPOINT active_record_1
25486
+ SQL (0.0ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo3@bar.com"], ["created_at", "2016-04-15 17:39:06.560905"], ["updated_at", "2016-04-15 17:39:06.560905"]]
25487
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25488
+  (0.4ms) rollback transaction
25489
+  (0.0ms) begin transaction
25490
+ -----------------------------------
25491
+ Dripper::RunTwiceTest: test_2nd_Run
25492
+ -----------------------------------
25493
+ Dripper::Action Load (0.3ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
25494
+  (0.0ms) SAVEPOINT active_record_1
25495
+ SQL (0.3ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "welcome"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:39:06.574038"], ["updated_at", "2016-04-15 17:39:06.574038"]]
25496
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25497
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
25498
+  (0.0ms) SAVEPOINT active_record_1
25499
+ SQL (0.2ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "newsletter"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:39:06.575777"], ["updated_at", "2016-04-15 17:39:06.575777"]]
25500
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25501
+  (0.0ms) SAVEPOINT active_record_1
25502
+ SQL (0.0ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "foo@bar.com"], ["username", "foo"], ["created_at", "2016-04-15 17:39:06.576740"], ["updated_at", "2016-04-15 17:39:06.576740"]]
25503
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25504
+  (0.0ms) SAVEPOINT active_record_1
25505
+ SQL (0.0ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo2@bar.com"], ["created_at", "2016-04-15 17:39:06.577465"], ["updated_at", "2016-04-15 17:39:06.577465"]]
25506
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25507
+  (0.0ms) SAVEPOINT active_record_1
25508
+ SQL (0.0ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo3@bar.com"], ["created_at", "2016-04-15 17:39:06.578094"], ["updated_at", "2016-04-15 17:39:06.578094"]]
25509
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25510
+ Dripper::Action Load (0.1ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
25511
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
25512
+ User Load (0.5ms) SELECT "users".* FROM "users" WHERE ("users"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (users.created_at >= '2016-04-15 17:39:06.000000') [["drippable_type", "User"], ["dripper_action_id", 1]]
25513
+ Rendered user_mailer/welcome.html.erb within layouts/mailer (0.7ms)
25514
+ Rendered user_mailer/welcome.text.erb within layouts/mailer (0.2ms)
25515
+
25516
+ UserMailer#welcome: processed outbound mail in 99.3ms
25517
+
25518
+ Sent mail to to@example.org (4.3ms)
25519
+ Date: Fri, 15 Apr 2016 10:39:06 -0700
25520
+ From: from@example.com
25521
+ To: to@example.org
25522
+ Message-ID: <5711273aaac6e_7c213fd05e05e204407e1@Douglass-MacBook-Pro.local.mail>
25523
+ Subject: Welcome
25524
+ Mime-Version: 1.0
25525
+ Content-Type: multipart/alternative;
25526
+ boundary="--==_mimepart_5711273aaa048_7c213fd05e05e204406d7";
25527
+ charset=UTF-8
25528
+ Content-Transfer-Encoding: 7bit
25529
+
25530
+
25531
+ ----==_mimepart_5711273aaa048_7c213fd05e05e204406d7
25532
+ Content-Type: text/plain;
25533
+ charset=UTF-8
25534
+ Content-Transfer-Encoding: 7bit
25535
+
25536
+ UserMailer#welcome
25537
+
25538
+ Hi, find me in app/views/user_mailer/welcome.text.erb
25539
+
25540
+
25541
+ ----==_mimepart_5711273aaa048_7c213fd05e05e204406d7
25542
+ Content-Type: text/html;
25543
+ charset=UTF-8
25544
+ Content-Transfer-Encoding: 7bit
25545
+
25546
+ <html>
25547
+ <body>
25548
+ <h1>UserMailer#welcome</h1>
25549
+
25550
+ <p>
25551
+ Hi, find me in app/views/user_mailer/welcome.html.erb
25552
+ </p>
25553
+
25554
+ </body>
25555
+ </html>
25556
+
25557
+ ----==_mimepart_5711273aaa048_7c213fd05e05e204406d7--
25558
+
25559
+  (0.0ms) SAVEPOINT active_record_1
25560
+ SQL (2.6ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 1], ["drippable_type", "User"], ["created_at", "2016-04-15 17:39:06.706897"], ["updated_at", "2016-04-15 17:39:06.706897"]]
25561
+  (0.2ms) RELEASE SAVEPOINT active_record_1
25562
+ Rendered user_mailer/welcome.html.erb within layouts/mailer (0.1ms)
25563
+ Rendered user_mailer/welcome.text.erb within layouts/mailer (0.0ms)
25564
+
25565
+ UserMailer#welcome: processed outbound mail in 2.9ms
25566
+
25567
+ Sent mail to to@example.org (3.1ms)
25568
+ Date: Fri, 15 Apr 2016 10:39:06 -0700
25569
+ From: from@example.com
25570
+ To: to@example.org
25571
+ Message-ID: <5711273aaea21_7c213fd05e05e204409cf@Douglass-MacBook-Pro.local.mail>
25572
+ Subject: Welcome
25573
+ Mime-Version: 1.0
25574
+ Content-Type: multipart/alternative;
25575
+ boundary="--==_mimepart_5711273aae19a_7c213fd05e05e204408ea";
25576
+ charset=UTF-8
25577
+ Content-Transfer-Encoding: 7bit
25578
+
25579
+
25580
+ ----==_mimepart_5711273aae19a_7c213fd05e05e204408ea
25581
+ Content-Type: text/plain;
25582
+ charset=UTF-8
25583
+ Content-Transfer-Encoding: 7bit
25584
+
25585
+ UserMailer#welcome
25586
+
25587
+ Hi, find me in app/views/user_mailer/welcome.text.erb
25588
+
25589
+
25590
+ ----==_mimepart_5711273aae19a_7c213fd05e05e204408ea
25591
+ Content-Type: text/html;
25592
+ charset=UTF-8
25593
+ Content-Transfer-Encoding: 7bit
25594
+
25595
+ <html>
25596
+ <body>
25597
+ <h1>UserMailer#welcome</h1>
25598
+
25599
+ <p>
25600
+ Hi, find me in app/views/user_mailer/welcome.html.erb
25601
+ </p>
25602
+
25603
+ </body>
25604
+ </html>
25605
+
25606
+ ----==_mimepart_5711273aae19a_7c213fd05e05e204408ea--
25607
+
25608
+  (0.0ms) SAVEPOINT active_record_1
25609
+ SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 2], ["drippable_type", "User"], ["created_at", "2016-04-15 17:39:06.717797"], ["updated_at", "2016-04-15 17:39:06.717797"]]
25610
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25611
+ Rendered user_mailer/welcome.html.erb within layouts/mailer (0.0ms)
25612
+ Rendered user_mailer/welcome.text.erb within layouts/mailer (0.0ms)
25613
+
25614
+ UserMailer#welcome: processed outbound mail in 1.5ms
25615
+
25616
+ Sent mail to to@example.org (2.5ms)
25617
+ Date: Fri, 15 Apr 2016 10:39:06 -0700
25618
+ From: from@example.com
25619
+ To: to@example.org
25620
+ Message-ID: <5711273ab01a5_7c213fd05e05e20441139@Douglass-MacBook-Pro.local.mail>
25621
+ Subject: Welcome
25622
+ Mime-Version: 1.0
25623
+ Content-Type: multipart/alternative;
25624
+ boundary="--==_mimepart_5711273aafb57_7c213fd05e05e20441046";
25625
+ charset=UTF-8
25626
+ Content-Transfer-Encoding: 7bit
25627
+
25628
+
25629
+ ----==_mimepart_5711273aafb57_7c213fd05e05e20441046
25630
+ Content-Type: text/plain;
25631
+ charset=UTF-8
25632
+ Content-Transfer-Encoding: 7bit
25633
+
25634
+ UserMailer#welcome
25635
+
25636
+ Hi, find me in app/views/user_mailer/welcome.text.erb
25637
+
25638
+
25639
+ ----==_mimepart_5711273aafb57_7c213fd05e05e20441046
25640
+ Content-Type: text/html;
25641
+ charset=UTF-8
25642
+ Content-Transfer-Encoding: 7bit
25643
+
25644
+ <html>
25645
+ <body>
25646
+ <h1>UserMailer#welcome</h1>
25647
+
25648
+ <p>
25649
+ Hi, find me in app/views/user_mailer/welcome.html.erb
25650
+ </p>
25651
+
25652
+ </body>
25653
+ </html>
25654
+
25655
+ ----==_mimepart_5711273aafb57_7c213fd05e05e20441046--
25656
+
25657
+  (0.0ms) SAVEPOINT active_record_1
25658
+ SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 3], ["drippable_type", "User"], ["created_at", "2016-04-15 17:39:06.723255"], ["updated_at", "2016-04-15 17:39:06.723255"]]
25659
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25660
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
25661
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
25662
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE ("users"."username" IS NOT NULL) AND ("users"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (users.created_at >= '2016-04-15 17:39:06.000000') [["drippable_type", "User"], ["dripper_action_id", 2]]
25663
+ Rendered user_mailer/newsletter.html.erb within layouts/mailer (0.3ms)
25664
+ Rendered user_mailer/newsletter.text.erb within layouts/mailer (0.1ms)
25665
+
25666
+ UserMailer#newsletter: processed outbound mail in 8.0ms
25667
+
25668
+ Sent mail to to@example.org (2.4ms)
25669
+ Date: Fri, 15 Apr 2016 10:39:06 -0700
25670
+ From: from@example.com
25671
+ To: to@example.org
25672
+ Message-ID: <5711273ab3688_7c213fd05e05e2044132b@Douglass-MacBook-Pro.local.mail>
25673
+ Subject: Newsletter
25674
+ Mime-Version: 1.0
25675
+ Content-Type: multipart/alternative;
25676
+ boundary="--==_mimepart_5711273ab309a_7c213fd05e05e2044123d";
25677
+ charset=UTF-8
25678
+ Content-Transfer-Encoding: 7bit
25679
+
25680
+
25681
+ ----==_mimepart_5711273ab309a_7c213fd05e05e2044123d
25682
+ Content-Type: text/plain;
25683
+ charset=UTF-8
25684
+ Content-Transfer-Encoding: 7bit
25685
+
25686
+ UserMailer#newsletter
25687
+
25688
+ Hi, find me in app/views/user_mailer/newsletter.text.erb
25689
+
25690
+
25691
+ ----==_mimepart_5711273ab309a_7c213fd05e05e2044123d
25692
+ Content-Type: text/html;
25693
+ charset=UTF-8
25694
+ Content-Transfer-Encoding: 7bit
25695
+
25696
+ <html>
25697
+ <body>
25698
+ <h1>UserMailer#newsletter</h1>
25699
+
25700
+ <p>
25701
+ Hi, find me in app/views/user_mailer/newsletter.html.erb
25702
+ </p>
25703
+
25704
+ </body>
25705
+ </html>
25706
+
25707
+ ----==_mimepart_5711273ab309a_7c213fd05e05e2044123d--
25708
+
25709
+  (0.0ms) SAVEPOINT active_record_1
25710
+ SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 2], ["drippable_id", 1], ["drippable_type", "User"], ["created_at", "2016-04-15 17:39:06.736861"], ["updated_at", "2016-04-15 17:39:06.736861"]]
25711
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25712
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
25713
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
25714
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE ("users"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (users.created_at >= '2016-04-15 17:39:06.000000') [["drippable_type", "User"], ["dripper_action_id", 1]]
25715
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
25716
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
25717
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE ("users"."username" IS NOT NULL) AND ("users"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (users.created_at >= '2016-04-15 17:39:06.000000') [["drippable_type", "User"], ["dripper_action_id", 2]]
25718
+  (0.4ms) rollback transaction
25719
+  (0.0ms) begin transaction
25720
+ -----------------------
25721
+ DripperTest: test_truth
25722
+ -----------------------
25723
+  (0.0ms) rollback transaction
25724
+  (0.0ms) begin transaction
25725
+ ---------------------------------------
25726
+ Dripper::ConcernTest: test_Concern_Test
25727
+ ---------------------------------------
25728
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
25729
+  (0.0ms) SAVEPOINT active_record_1
25730
+ SQL (0.1ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "newsletter"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:39:06.743770"], ["updated_at", "2016-04-15 17:39:06.743770"]]
25731
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25732
+  (0.0ms) SAVEPOINT active_record_1
25733
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo@bar.com"], ["created_at", "2016-04-15 17:39:06.746523"], ["updated_at", "2016-04-15 17:39:06.746523"]]
25734
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25735
+  (0.0ms) SAVEPOINT active_record_1
25736
+ SQL (0.4ms) INSERT INTO "newsletters" ("user_id", "title", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["user_id", 1], ["title", "test"], ["created_at", "2016-04-15 17:39:06.750935"], ["updated_at", "2016-04-15 17:39:06.750935"]]
25737
+ [ActiveJob] Newsletter Load (0.1ms) SELECT "newsletters".* FROM "newsletters" WHERE "newsletters"."id" = ? LIMIT 1 [["id", 1]]
25738
+ [ActiveJob] [DripperJob] [e8bb5d87-2b3b-4d22-a69b-88a9efba9de8] Performing DripperJob from Inline(default) with arguments: gid://dummy/Newsletter/1
25739
+ [ActiveJob] [DripperJob] [e8bb5d87-2b3b-4d22-a69b-88a9efba9de8] Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
25740
+ [ActiveJob] [DripperJob] [e8bb5d87-2b3b-4d22-a69b-88a9efba9de8] Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
25741
+ [ActiveJob] [DripperJob] [e8bb5d87-2b3b-4d22-a69b-88a9efba9de8] Newsletter Load (0.1ms) SELECT "newsletters".* FROM "newsletters" WHERE ("newsletters"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (newsletters.created_at >= '2016-04-15 17:39:06.000000') AND "newsletters"."id" = ? [["drippable_type", "Newsletter"], ["dripper_action_id", 1], ["id", 1]]
25742
+ [ActiveJob] [DripperJob] [e8bb5d87-2b3b-4d22-a69b-88a9efba9de8] SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 1], ["drippable_type", "Newsletter"], ["created_at", "2016-04-15 17:39:06.756677"], ["updated_at", "2016-04-15 17:39:06.756677"]]
25743
+ [ActiveJob] [DripperJob] [e8bb5d87-2b3b-4d22-a69b-88a9efba9de8] Performed DripperJob from Inline(default) in 2.45ms
25744
+ [ActiveJob] Enqueued DripperJob (Job ID: e8bb5d87-2b3b-4d22-a69b-88a9efba9de8) to Inline(default) with arguments: gid://dummy/Newsletter/1
25745
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25746
+  (0.3ms) rollback transaction
25747
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
25748
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
25749
+  (0.1ms) begin transaction
25750
+ ---------------------------------------
25751
+ Dripper::ConcernTest: test_Concern_Test
25752
+ ---------------------------------------
25753
+ Dripper::Action Load (0.1ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
25754
+  (0.0ms) SAVEPOINT active_record_1
25755
+ SQL (0.3ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "newsletter"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:39:34.569710"], ["updated_at", "2016-04-15 17:39:34.569710"]]
25756
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25757
+  (0.0ms) SAVEPOINT active_record_1
25758
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo@bar.com"], ["created_at", "2016-04-15 17:39:34.579122"], ["updated_at", "2016-04-15 17:39:34.579122"]]
25759
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25760
+  (0.0ms) SAVEPOINT active_record_1
25761
+ SQL (0.1ms) INSERT INTO "newsletters" ("user_id", "title", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["user_id", 1], ["title", "test"], ["created_at", "2016-04-15 17:39:34.584585"], ["updated_at", "2016-04-15 17:39:34.584585"]]
25762
+ [ActiveJob] Newsletter Load (0.1ms) SELECT "newsletters".* FROM "newsletters" WHERE "newsletters"."id" = ? LIMIT 1 [["id", 1]]
25763
+ [ActiveJob] [DripperJob] [9f330a27-86ff-438b-8569-62d9798714df] Performing DripperJob from Inline(default) with arguments: gid://dummy/Newsletter/1
25764
+ [ActiveJob] [DripperJob] [9f330a27-86ff-438b-8569-62d9798714df] Dripper::Action Load (0.1ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
25765
+ [ActiveJob] [DripperJob] [9f330a27-86ff-438b-8569-62d9798714df] Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
25766
+ [ActiveJob] [DripperJob] [9f330a27-86ff-438b-8569-62d9798714df] Newsletter Load (0.1ms) SELECT "newsletters".* FROM "newsletters" WHERE ("newsletters"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (newsletters.created_at >= '2016-04-15 17:39:34.000000') AND "newsletters"."id" = ? [["drippable_type", "Newsletter"], ["dripper_action_id", 1], ["id", 1]]
25767
+ [ActiveJob] [DripperJob] [9f330a27-86ff-438b-8569-62d9798714df] SQL (0.2ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 1], ["drippable_type", "Newsletter"], ["created_at", "2016-04-15 17:39:34.596465"], ["updated_at", "2016-04-15 17:39:34.596465"]]
25768
+ [ActiveJob] [DripperJob] [9f330a27-86ff-438b-8569-62d9798714df] Performed DripperJob from Inline(default) in 10.42ms
25769
+ [ActiveJob] Enqueued DripperJob (Job ID: 9f330a27-86ff-438b-8569-62d9798714df) to Inline(default) with arguments: gid://dummy/Newsletter/1
25770
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25771
+  (2.0ms) rollback transaction
25772
+  (0.0ms) begin transaction
25773
+ -----------------------
25774
+ DripperTest: test_truth
25775
+ -----------------------
25776
+  (0.0ms) rollback transaction
25777
+  (0.0ms) begin transaction
25778
+ ---------------------------------
25779
+ Dripper::MessageTest: test_Config
25780
+ ---------------------------------
25781
+  (0.0ms) SAVEPOINT active_record_1
25782
+ SQL (0.2ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "foo@bar.com"], ["username", "foo"], ["created_at", "2016-04-15 17:39:34.601407"], ["updated_at", "2016-04-15 17:39:34.601407"]]
25783
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25784
+  (0.0ms) SAVEPOINT active_record_1
25785
+ SQL (1.1ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo2@bar.com"], ["created_at", "2016-04-15 17:39:34.602288"], ["updated_at", "2016-04-15 17:39:34.602288"]]
25786
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25787
+  (0.0ms) SAVEPOINT active_record_1
25788
+ SQL (0.0ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo3@bar.com"], ["created_at", "2016-04-15 17:39:34.603972"], ["updated_at", "2016-04-15 17:39:34.603972"]]
25789
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25790
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
25791
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
25792
+  (0.1ms) begin transaction
25793
+ ---------------------------------------
25794
+ Dripper::ConcernTest: test_Concern_Test
25795
+ ---------------------------------------
25796
+ Dripper::Action Load (0.1ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
25797
+  (0.0ms) SAVEPOINT active_record_1
25798
+ SQL (0.1ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "newsletter"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:43:57.039958"], ["updated_at", "2016-04-15 17:43:57.039958"]]
25799
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25800
+  (0.0ms) SAVEPOINT active_record_1
25801
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo@bar.com"], ["created_at", "2016-04-15 17:43:57.049872"], ["updated_at", "2016-04-15 17:43:57.049872"]]
25802
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25803
+  (0.0ms) SAVEPOINT active_record_1
25804
+ SQL (0.1ms) INSERT INTO "newsletters" ("user_id", "title", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["user_id", 1], ["title", "test"], ["created_at", "2016-04-15 17:43:57.060018"], ["updated_at", "2016-04-15 17:43:57.060018"]]
25805
+ [ActiveJob] Newsletter Load (0.2ms) SELECT "newsletters".* FROM "newsletters" WHERE "newsletters"."id" = ? LIMIT 1 [["id", 1]]
25806
+ [ActiveJob] [DripperJob] [7cd65c62-bce4-433d-8c6d-dfd8a8b27d88] Performing DripperJob from Inline(default) with arguments: gid://dummy/Newsletter/1
25807
+ [ActiveJob] [DripperJob] [7cd65c62-bce4-433d-8c6d-dfd8a8b27d88] Dripper::Action Load (0.1ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
25808
+ [ActiveJob] [DripperJob] [7cd65c62-bce4-433d-8c6d-dfd8a8b27d88] Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
25809
+ [ActiveJob] [DripperJob] [7cd65c62-bce4-433d-8c6d-dfd8a8b27d88] Newsletter Load (0.1ms) SELECT "newsletters".* FROM "newsletters" WHERE ("newsletters"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (newsletters.created_at >= '2016-04-15 17:43:57.000000') AND "newsletters"."id" = ? [["drippable_type", "Newsletter"], ["dripper_action_id", 1], ["id", 1]]
25810
+ [ActiveJob] [DripperJob] [7cd65c62-bce4-433d-8c6d-dfd8a8b27d88] SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 1], ["drippable_type", "Newsletter"], ["created_at", "2016-04-15 17:43:57.073441"], ["updated_at", "2016-04-15 17:43:57.073441"]]
25811
+ [ActiveJob] [DripperJob] [7cd65c62-bce4-433d-8c6d-dfd8a8b27d88] Performed DripperJob from Inline(default) in 10.89ms
25812
+ [ActiveJob] Enqueued DripperJob (Job ID: 7cd65c62-bce4-433d-8c6d-dfd8a8b27d88) to Inline(default) with arguments: gid://dummy/Newsletter/1
25813
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25814
+  (1.9ms) rollback transaction
25815
+  (0.0ms) begin transaction
25816
+ -----------------------
25817
+ DripperTest: test_truth
25818
+ -----------------------
25819
+  (0.0ms) rollback transaction
25820
+  (0.0ms) begin transaction
25821
+ -----------------------------------
25822
+ Dripper::RunTwiceTest: test_2nd_Run
25823
+ -----------------------------------
25824
+  (0.0ms) rollback transaction
25825
+  (0.0ms) begin transaction
25826
+ ---------------------------------
25827
+ Dripper::MessageTest: test_Config
25828
+ ---------------------------------
25829
+  (0.0ms) SAVEPOINT active_record_1
25830
+ SQL (0.2ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "foo@bar.com"], ["username", "foo"], ["created_at", "2016-04-15 17:43:57.078941"], ["updated_at", "2016-04-15 17:43:57.078941"]]
25831
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25832
+  (0.0ms) SAVEPOINT active_record_1
25833
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo2@bar.com"], ["created_at", "2016-04-15 17:43:57.079933"], ["updated_at", "2016-04-15 17:43:57.079933"]]
25834
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25835
+  (0.0ms) SAVEPOINT active_record_1
25836
+ SQL (0.0ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo3@bar.com"], ["created_at", "2016-04-15 17:43:57.080704"], ["updated_at", "2016-04-15 17:43:57.080704"]]
25837
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25838
+  (0.2ms) rollback transaction
25839
+  (0.0ms) begin transaction
25840
+ --------------------------------------
25841
+ Dripper::MessageTest: test_Integration
25842
+ --------------------------------------
25843
+  (0.0ms) SAVEPOINT active_record_1
25844
+ SQL (0.1ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "foo@bar.com"], ["username", "foo"], ["created_at", "2016-04-15 17:43:57.081881"], ["updated_at", "2016-04-15 17:43:57.081881"]]
25845
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25846
+  (0.0ms) SAVEPOINT active_record_1
25847
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo2@bar.com"], ["created_at", "2016-04-15 17:43:57.082625"], ["updated_at", "2016-04-15 17:43:57.082625"]]
25848
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25849
+  (0.0ms) SAVEPOINT active_record_1
25850
+ SQL (0.0ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo3@bar.com"], ["created_at", "2016-04-15 17:43:57.083388"], ["updated_at", "2016-04-15 17:43:57.083388"]]
25851
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25852
+  (0.2ms) rollback transaction
25853
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
25854
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
25855
+  (0.1ms) begin transaction
25856
+ -----------------------------------
25857
+ Dripper::RunTwiceTest: test_2nd_Run
25858
+ -----------------------------------
25859
+  (0.1ms) rollback transaction
25860
+  (0.0ms) begin transaction
25861
+ ---------------------------------------
25862
+ Dripper::ConcernTest: test_Concern_Test
25863
+ ---------------------------------------
25864
+ Dripper::Action Load (0.1ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
25865
+  (0.0ms) SAVEPOINT active_record_1
25866
+ SQL (0.3ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "newsletter"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:44:29.248045"], ["updated_at", "2016-04-15 17:44:29.248045"]]
25867
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25868
+  (0.0ms) SAVEPOINT active_record_1
25869
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo@bar.com"], ["created_at", "2016-04-15 17:44:29.258661"], ["updated_at", "2016-04-15 17:44:29.258661"]]
25870
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25871
+  (0.0ms) SAVEPOINT active_record_1
25872
+ SQL (0.3ms) INSERT INTO "newsletters" ("user_id", "title", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["user_id", 1], ["title", "test"], ["created_at", "2016-04-15 17:44:29.269182"], ["updated_at", "2016-04-15 17:44:29.269182"]]
25873
+ [ActiveJob] Newsletter Load (0.2ms) SELECT "newsletters".* FROM "newsletters" WHERE "newsletters"."id" = ? LIMIT 1 [["id", 1]]
25874
+ [ActiveJob] [DripperJob] [224d8a66-cd34-465a-9af9-9edd63344921] Performing DripperJob from Inline(default) with arguments: gid://dummy/Newsletter/1
25875
+ [ActiveJob] [DripperJob] [224d8a66-cd34-465a-9af9-9edd63344921] Dripper::Action Load (0.1ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
25876
+ [ActiveJob] [DripperJob] [224d8a66-cd34-465a-9af9-9edd63344921] Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
25877
+ [ActiveJob] [DripperJob] [224d8a66-cd34-465a-9af9-9edd63344921] Newsletter Load (0.1ms) SELECT "newsletters".* FROM "newsletters" WHERE ("newsletters"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (newsletters.created_at >= '2016-04-15 17:44:29.000000') AND "newsletters"."id" = ? [["drippable_type", "Newsletter"], ["dripper_action_id", 1], ["id", 1]]
25878
+ [ActiveJob] [DripperJob] [224d8a66-cd34-465a-9af9-9edd63344921] SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 1], ["drippable_type", "Newsletter"], ["created_at", "2016-04-15 17:44:29.284446"], ["updated_at", "2016-04-15 17:44:29.284446"]]
25879
+ [ActiveJob] [DripperJob] [224d8a66-cd34-465a-9af9-9edd63344921] Performed DripperJob from Inline(default) in 11.9ms
25880
+ [ActiveJob] Enqueued DripperJob (Job ID: 224d8a66-cd34-465a-9af9-9edd63344921) to Inline(default) with arguments: gid://dummy/Newsletter/1
25881
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25882
+  (2.0ms) rollback transaction
25883
+  (0.0ms) begin transaction
25884
+ ---------------------------------
25885
+ Dripper::MessageTest: test_Config
25886
+ ---------------------------------
25887
+  (0.0ms) SAVEPOINT active_record_1
25888
+ SQL (0.2ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "foo@bar.com"], ["username", "foo"], ["created_at", "2016-04-15 17:44:29.288693"], ["updated_at", "2016-04-15 17:44:29.288693"]]
25889
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25890
+  (0.0ms) SAVEPOINT active_record_1
25891
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo2@bar.com"], ["created_at", "2016-04-15 17:44:29.289634"], ["updated_at", "2016-04-15 17:44:29.289634"]]
25892
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25893
+  (0.1ms) SAVEPOINT active_record_1
25894
+ SQL (0.0ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo3@bar.com"], ["created_at", "2016-04-15 17:44:29.290469"], ["updated_at", "2016-04-15 17:44:29.290469"]]
25895
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25896
+  (0.3ms) rollback transaction
25897
+  (0.0ms) begin transaction
25898
+ --------------------------------------
25899
+ Dripper::MessageTest: test_Integration
25900
+ --------------------------------------
25901
+  (0.0ms) SAVEPOINT active_record_1
25902
+ SQL (0.1ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "foo@bar.com"], ["username", "foo"], ["created_at", "2016-04-15 17:44:29.291778"], ["updated_at", "2016-04-15 17:44:29.291778"]]
25903
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25904
+  (0.0ms) SAVEPOINT active_record_1
25905
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo2@bar.com"], ["created_at", "2016-04-15 17:44:29.292579"], ["updated_at", "2016-04-15 17:44:29.292579"]]
25906
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25907
+  (0.0ms) SAVEPOINT active_record_1
25908
+ SQL (0.0ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo3@bar.com"], ["created_at", "2016-04-15 17:44:29.293387"], ["updated_at", "2016-04-15 17:44:29.293387"]]
25909
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25910
+  (0.2ms) rollback transaction
25911
+  (0.0ms) begin transaction
25912
+ -----------------------
25913
+ DripperTest: test_truth
25914
+ -----------------------
25915
+  (0.0ms) rollback transaction
25916
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
25917
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
25918
+  (0.1ms) begin transaction
25919
+ -----------------------------------
25920
+ Dripper::RunTwiceTest: test_2nd_Run
25921
+ -----------------------------------
25922
+  (0.0ms) rollback transaction
25923
+  (0.0ms) begin transaction
25924
+ ---------------------------------------
25925
+ Dripper::ConcernTest: test_Concern_Test
25926
+ ---------------------------------------
25927
+ Dripper::Action Load (0.1ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
25928
+  (0.0ms) SAVEPOINT active_record_1
25929
+ SQL (0.3ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "newsletter"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:44:37.838124"], ["updated_at", "2016-04-15 17:44:37.838124"]]
25930
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25931
+  (0.0ms) SAVEPOINT active_record_1
25932
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo@bar.com"], ["created_at", "2016-04-15 17:44:37.848203"], ["updated_at", "2016-04-15 17:44:37.848203"]]
25933
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25934
+  (0.1ms) SAVEPOINT active_record_1
25935
+ SQL (0.2ms) INSERT INTO "newsletters" ("user_id", "title", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["user_id", 1], ["title", "test"], ["created_at", "2016-04-15 17:44:37.856416"], ["updated_at", "2016-04-15 17:44:37.856416"]]
25936
+ [ActiveJob] Newsletter Load (0.1ms) SELECT "newsletters".* FROM "newsletters" WHERE "newsletters"."id" = ? LIMIT 1 [["id", 1]]
25937
+ [ActiveJob] [DripperJob] [85694a3c-ca06-4084-8b78-207941f86d2f] Performing DripperJob from Inline(default) with arguments: gid://dummy/Newsletter/1
25938
+ [ActiveJob] [DripperJob] [85694a3c-ca06-4084-8b78-207941f86d2f] Dripper::Action Load (0.1ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
25939
+ [ActiveJob] [DripperJob] [85694a3c-ca06-4084-8b78-207941f86d2f] Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
25940
+ [ActiveJob] [DripperJob] [85694a3c-ca06-4084-8b78-207941f86d2f] Newsletter Load (0.1ms) SELECT "newsletters".* FROM "newsletters" WHERE ("newsletters"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (newsletters.created_at >= '2016-04-15 17:44:37.000000') AND "newsletters"."id" = ? [["drippable_type", "Newsletter"], ["dripper_action_id", 1], ["id", 1]]
25941
+ [ActiveJob] [DripperJob] [85694a3c-ca06-4084-8b78-207941f86d2f] SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 1], ["drippable_type", "Newsletter"], ["created_at", "2016-04-15 17:44:37.869956"], ["updated_at", "2016-04-15 17:44:37.869956"]]
25942
+ [ActiveJob] [DripperJob] [85694a3c-ca06-4084-8b78-207941f86d2f] Performed DripperJob from Inline(default) in 10.66ms
25943
+ [ActiveJob] Enqueued DripperJob (Job ID: 85694a3c-ca06-4084-8b78-207941f86d2f) to Inline(default) with arguments: gid://dummy/Newsletter/1
25944
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25945
+  (2.0ms) rollback transaction
25946
+  (0.0ms) begin transaction
25947
+ -----------------------
25948
+ DripperTest: test_truth
25949
+ -----------------------
25950
+  (0.0ms) rollback transaction
25951
+  (0.0ms) begin transaction
25952
+ ---------------------------------
25953
+ Dripper::MessageTest: test_Config
25954
+ ---------------------------------
25955
+  (0.0ms) SAVEPOINT active_record_1
25956
+ SQL (0.2ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "foo@bar.com"], ["username", "foo"], ["created_at", "2016-04-15 17:44:37.874905"], ["updated_at", "2016-04-15 17:44:37.874905"]]
25957
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25958
+  (0.0ms) SAVEPOINT active_record_1
25959
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo2@bar.com"], ["created_at", "2016-04-15 17:44:37.875946"], ["updated_at", "2016-04-15 17:44:37.875946"]]
25960
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25961
+  (0.0ms) SAVEPOINT active_record_1
25962
+ SQL (0.0ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo3@bar.com"], ["created_at", "2016-04-15 17:44:37.876753"], ["updated_at", "2016-04-15 17:44:37.876753"]]
25963
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25964
+  (0.2ms) rollback transaction
25965
+  (0.0ms) begin transaction
25966
+ --------------------------------------
25967
+ Dripper::MessageTest: test_Integration
25968
+ --------------------------------------
25969
+  (0.0ms) SAVEPOINT active_record_1
25970
+ SQL (0.1ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "foo@bar.com"], ["username", "foo"], ["created_at", "2016-04-15 17:44:37.878031"], ["updated_at", "2016-04-15 17:44:37.878031"]]
25971
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25972
+  (0.0ms) SAVEPOINT active_record_1
25973
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo2@bar.com"], ["created_at", "2016-04-15 17:44:37.878822"], ["updated_at", "2016-04-15 17:44:37.878822"]]
25974
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25975
+  (0.0ms) SAVEPOINT active_record_1
25976
+ SQL (0.0ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo3@bar.com"], ["created_at", "2016-04-15 17:44:37.879601"], ["updated_at", "2016-04-15 17:44:37.879601"]]
25977
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25978
+  (0.2ms) rollback transaction
25979
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
25980
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
25981
+  (0.1ms) begin transaction
25982
+ --------------------------------------
25983
+ Dripper::MessageTest: test_Integration
25984
+ --------------------------------------
25985
+  (0.0ms) SAVEPOINT active_record_1
25986
+ SQL (0.3ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "foo@bar.com"], ["username", "foo"], ["created_at", "2016-04-15 17:44:50.509747"], ["updated_at", "2016-04-15 17:44:50.509747"]]
25987
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25988
+  (0.0ms) SAVEPOINT active_record_1
25989
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo2@bar.com"], ["created_at", "2016-04-15 17:44:50.512006"], ["updated_at", "2016-04-15 17:44:50.512006"]]
25990
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25991
+  (0.0ms) SAVEPOINT active_record_1
25992
+ SQL (0.0ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo3@bar.com"], ["created_at", "2016-04-15 17:44:50.512811"], ["updated_at", "2016-04-15 17:44:50.512811"]]
25993
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25994
+  (0.4ms) rollback transaction
25995
+  (0.2ms) begin transaction
25996
+ ---------------------------------
25997
+ Dripper::MessageTest: test_Config
25998
+ ---------------------------------
25999
+  (0.2ms) SAVEPOINT active_record_1
26000
+ SQL (0.5ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "foo@bar.com"], ["username", "foo"], ["created_at", "2016-04-15 17:45:13.843947"], ["updated_at", "2016-04-15 17:45:13.843947"]]
26001
+  (0.2ms) RELEASE SAVEPOINT active_record_1
26002
+  (0.2ms) SAVEPOINT active_record_1
26003
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo2@bar.com"], ["created_at", "2016-04-15 17:45:13.856748"], ["updated_at", "2016-04-15 17:45:13.856748"]]
26004
+  (0.1ms) RELEASE SAVEPOINT active_record_1
26005
+  (0.1ms) SAVEPOINT active_record_1
26006
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo3@bar.com"], ["created_at", "2016-04-15 17:45:13.863417"], ["updated_at", "2016-04-15 17:45:13.863417"]]
26007
+  (0.1ms) RELEASE SAVEPOINT active_record_1
26008
+  (0.5ms) rollback transaction
26009
+  (0.2ms) begin transaction
26010
+ -----------------------
26011
+ DripperTest: test_truth
26012
+ -----------------------
26013
+  (0.2ms) rollback transaction
26014
+  (0.2ms) begin transaction
26015
+ ---------------------------------------
26016
+ Dripper::ConcernTest: test_Concern_Test
26017
+ ---------------------------------------
26018
+  (0.2ms) rollback transaction
26019
+  (0.2ms) begin transaction
26020
+ -----------------------------------
26021
+ Dripper::RunTwiceTest: test_2nd_Run
26022
+ -----------------------------------
26023
+  (0.2ms) rollback transaction
26024
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
26025
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
26026
+  (0.1ms) begin transaction
26027
+ -----------------------
26028
+ DripperTest: test_truth
26029
+ -----------------------
26030
+  (0.0ms) rollback transaction
26031
+  (0.0ms) begin transaction
26032
+ ---------------------------------------
26033
+ Dripper::ConcernTest: test_Concern_Test
26034
+ ---------------------------------------
26035
+ Dripper::Action Load (0.1ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
26036
+  (0.0ms) SAVEPOINT active_record_1
26037
+ SQL (0.3ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "newsletter"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:45:43.952169"], ["updated_at", "2016-04-15 17:45:43.952169"]]
26038
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26039
+  (0.0ms) SAVEPOINT active_record_1
26040
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo@bar.com"], ["created_at", "2016-04-15 17:45:43.961408"], ["updated_at", "2016-04-15 17:45:43.961408"]]
26041
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26042
+  (0.0ms) SAVEPOINT active_record_1
26043
+ SQL (0.2ms) INSERT INTO "newsletters" ("user_id", "title", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["user_id", 1], ["title", "test"], ["created_at", "2016-04-15 17:45:43.969427"], ["updated_at", "2016-04-15 17:45:43.969427"]]
26044
+ [ActiveJob] Newsletter Load (0.1ms) SELECT "newsletters".* FROM "newsletters" WHERE "newsletters"."id" = ? LIMIT 1 [["id", 1]]
26045
+ [ActiveJob] [DripperJob] [dc37e96a-c293-4936-8f49-b08357cad44e] Performing DripperJob from Inline(default) with arguments: gid://dummy/Newsletter/1
26046
+ [ActiveJob] [DripperJob] [dc37e96a-c293-4936-8f49-b08357cad44e] Dripper::Action Load (0.1ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
26047
+ [ActiveJob] [DripperJob] [dc37e96a-c293-4936-8f49-b08357cad44e] Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
26048
+ [ActiveJob] [DripperJob] [dc37e96a-c293-4936-8f49-b08357cad44e] Newsletter Load (0.2ms) SELECT "newsletters".* FROM "newsletters" WHERE ("newsletters"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (newsletters.created_at >= '2016-04-15 17:45:43.000000') AND "newsletters"."id" = ? [["drippable_type", "Newsletter"], ["dripper_action_id", 1], ["id", 1]]
26049
+ [ActiveJob] [DripperJob] [dc37e96a-c293-4936-8f49-b08357cad44e] SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 1], ["drippable_type", "Newsletter"], ["created_at", "2016-04-15 17:45:43.983334"], ["updated_at", "2016-04-15 17:45:43.983334"]]
26050
+ [ActiveJob] [DripperJob] [dc37e96a-c293-4936-8f49-b08357cad44e] Performed DripperJob from Inline(default) in 11.64ms
26051
+ [ActiveJob] Enqueued DripperJob (Job ID: dc37e96a-c293-4936-8f49-b08357cad44e) to Inline(default) with arguments: gid://dummy/Newsletter/1
26052
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26053
+  (2.4ms) rollback transaction
26054
+  (0.1ms) begin transaction
26055
+ ---------------------------------
26056
+ Dripper::MessageTest: test_Config
26057
+ ---------------------------------
26058
+  (0.1ms) SAVEPOINT active_record_1
26059
+ SQL (0.3ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "foo@bar.com"], ["username", "foo"], ["created_at", "2016-04-15 17:45:43.989488"], ["updated_at", "2016-04-15 17:45:43.989488"]]
26060
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26061
+  (0.0ms) SAVEPOINT active_record_1
26062
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo2@bar.com"], ["created_at", "2016-04-15 17:45:43.991053"], ["updated_at", "2016-04-15 17:45:43.991053"]]
26063
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26064
+  (0.0ms) SAVEPOINT active_record_1
26065
+ SQL (0.0ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo3@bar.com"], ["created_at", "2016-04-15 17:45:43.992126"], ["updated_at", "2016-04-15 17:45:43.992126"]]
26066
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26067
+  (0.5ms) rollback transaction
26068
+  (0.0ms) begin transaction
26069
+ --------------------------------------
26070
+ Dripper::MessageTest: test_Integration
26071
+ --------------------------------------
26072
+  (0.0ms) SAVEPOINT active_record_1
26073
+ SQL (0.2ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "foo@bar.com"], ["username", "foo"], ["created_at", "2016-04-15 17:45:43.993896"], ["updated_at", "2016-04-15 17:45:43.993896"]]
26074
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26075
+  (0.1ms) SAVEPOINT active_record_1
26076
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo2@bar.com"], ["created_at", "2016-04-15 17:45:43.995036"], ["updated_at", "2016-04-15 17:45:43.995036"]]
26077
+  (0.1ms) RELEASE SAVEPOINT active_record_1
26078
+  (0.0ms) SAVEPOINT active_record_1
26079
+ SQL (0.0ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo3@bar.com"], ["created_at", "2016-04-15 17:45:43.996477"], ["updated_at", "2016-04-15 17:45:43.996477"]]
26080
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26081
+  (0.5ms) rollback transaction
26082
+  (0.0ms) begin transaction
26083
+ -----------------------------------
26084
+ Dripper::RunTwiceTest: test_2nd_Run
26085
+ -----------------------------------
26086
+  (0.1ms) rollback transaction
26087
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
26088
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
26089
+  (0.1ms) begin transaction
26090
+ -----------------------------------
26091
+ Dripper::RunTwiceTest: test_2nd_Run
26092
+ -----------------------------------
26093
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
26094
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
26095
+  (0.1ms) begin transaction
26096
+ --------------------------------------
26097
+ Dripper::MessageTest: test_Integration
26098
+ --------------------------------------
26099
+  (0.0ms) SAVEPOINT active_record_1
26100
+ SQL (0.3ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "foo@bar.com"], ["username", "foo"], ["created_at", "2016-04-15 17:46:51.227843"], ["updated_at", "2016-04-15 17:46:51.227843"]]
26101
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26102
+  (0.0ms) SAVEPOINT active_record_1
26103
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo2@bar.com"], ["created_at", "2016-04-15 17:46:51.230177"], ["updated_at", "2016-04-15 17:46:51.230177"]]
26104
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26105
+  (0.0ms) SAVEPOINT active_record_1
26106
+ SQL (0.0ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo3@bar.com"], ["created_at", "2016-04-15 17:46:51.230985"], ["updated_at", "2016-04-15 17:46:51.230985"]]
26107
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26108
+  (0.6ms) rollback transaction
26109
+  (0.2ms) begin transaction
26110
+ ---------------------------------
26111
+ Dripper::MessageTest: test_Config
26112
+ ---------------------------------
26113
+  (0.2ms) SAVEPOINT active_record_1
26114
+ SQL (0.5ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "foo@bar.com"], ["username", "foo"], ["created_at", "2016-04-15 17:47:26.251245"], ["updated_at", "2016-04-15 17:47:26.251245"]]
26115
+  (0.2ms) RELEASE SAVEPOINT active_record_1
26116
+  (0.2ms) SAVEPOINT active_record_1
26117
+ SQL (0.4ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo2@bar.com"], ["created_at", "2016-04-15 17:47:26.261554"], ["updated_at", "2016-04-15 17:47:26.261554"]]
26118
+  (0.1ms) RELEASE SAVEPOINT active_record_1
26119
+  (0.2ms) SAVEPOINT active_record_1
26120
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo3@bar.com"], ["created_at", "2016-04-15 17:47:26.271419"], ["updated_at", "2016-04-15 17:47:26.271419"]]
26121
+  (0.1ms) RELEASE SAVEPOINT active_record_1
26122
+  (0.5ms) rollback transaction
26123
+  (0.1ms) begin transaction
26124
+ -----------------------------------
26125
+ Dripper::RunTwiceTest: test_2nd_Run
26126
+ -----------------------------------
26127
+  (0.2ms) rollback transaction
26128
+  (0.2ms) begin transaction
26129
+ -----------------------
26130
+ DripperTest: test_truth
26131
+ -----------------------
26132
+  (0.2ms) rollback transaction
26133
+  (0.2ms) begin transaction
26134
+ ---------------------------------------
26135
+ Dripper::ConcernTest: test_Concern_Test
26136
+ ---------------------------------------
26137
+ Dripper::Action Load (0.3ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
26138
+  (0.2ms) SAVEPOINT active_record_1
26139
+ SQL (0.5ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "newsletter"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:47:26.317287"], ["updated_at", "2016-04-15 17:47:26.317287"]]
26140
+  (0.3ms) RELEASE SAVEPOINT active_record_1
26141
+  (0.2ms) SAVEPOINT active_record_1
26142
+ SQL (0.5ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo@bar.com"], ["created_at", "2016-04-15 17:47:26.340421"], ["updated_at", "2016-04-15 17:47:26.340421"]]
26143
+  (0.1ms) RELEASE SAVEPOINT active_record_1
26144
+  (2.5ms) SAVEPOINT active_record_1
26145
+ SQL (0.3ms) INSERT INTO "newsletters" ("user_id", "title", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["user_id", 1], ["title", "test"], ["created_at", "2016-04-15 17:47:26.364786"], ["updated_at", "2016-04-15 17:47:26.364786"]]
26146
+ [ActiveJob] Newsletter Load (0.3ms) SELECT "newsletters".* FROM "newsletters" WHERE "newsletters"."id" = ? LIMIT 1 [["id", 1]]
26147
+ [ActiveJob] [DripperJob] [e17ca1ad-9d31-4b3a-998a-81f69f183bf8] Performing DripperJob from Inline(default) with arguments: gid://dummy/Newsletter/1
26148
+ [ActiveJob] [DripperJob] [e17ca1ad-9d31-4b3a-998a-81f69f183bf8] Dripper::Action Load (0.3ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
26149
+ [ActiveJob] [DripperJob] [e17ca1ad-9d31-4b3a-998a-81f69f183bf8] Dripper::Action Load (0.2ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
26150
+ [ActiveJob] [DripperJob] [e17ca1ad-9d31-4b3a-998a-81f69f183bf8] Newsletter Load (0.4ms) SELECT "newsletters".* FROM "newsletters" WHERE ("newsletters"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (newsletters.created_at >= '2016-04-15 17:47:26.000000') AND "newsletters"."id" = ? [["drippable_type", "Newsletter"], ["dripper_action_id", 1], ["id", 1]]
26151
+ [ActiveJob] [DripperJob] [e17ca1ad-9d31-4b3a-998a-81f69f183bf8] SQL (0.4ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 1], ["drippable_type", "Newsletter"], ["created_at", "2016-04-15 17:47:26.411020"], ["updated_at", "2016-04-15 17:47:26.411020"]]
26152
+ [ActiveJob] [DripperJob] [e17ca1ad-9d31-4b3a-998a-81f69f183bf8] Performed DripperJob from Inline(default) in 39.99ms
26153
+ [ActiveJob] Enqueued DripperJob (Job ID: e17ca1ad-9d31-4b3a-998a-81f69f183bf8) to Inline(default) with arguments: gid://dummy/Newsletter/1
26154
+  (0.2ms) RELEASE SAVEPOINT active_record_1
26155
+  (2.6ms) rollback transaction
26156
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
26157
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
26158
+  (0.1ms) begin transaction
26159
+ -----------------------------------
26160
+ Dripper::RunTwiceTest: test_2nd_Run
26161
+ -----------------------------------
26162
+ Dripper::Action Load (0.1ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
26163
+  (0.0ms) SAVEPOINT active_record_1
26164
+ SQL (0.9ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "welcome"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:51:01.193570"], ["updated_at", "2016-04-15 17:51:01.193570"]]
26165
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26166
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
26167
+  (0.0ms) SAVEPOINT active_record_1
26168
+ SQL (0.2ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "newsletter"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:51:01.195949"], ["updated_at", "2016-04-15 17:51:01.195949"]]
26169
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26170
+  (0.0ms) SAVEPOINT active_record_1
26171
+ SQL (0.1ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "foo@bar.com"], ["username", "foo"], ["created_at", "2016-04-15 17:51:01.199482"], ["updated_at", "2016-04-15 17:51:01.199482"]]
26172
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26173
+  (0.0ms) SAVEPOINT active_record_1
26174
+ SQL (0.1ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo2@bar.com"], ["created_at", "2016-04-15 17:51:01.200230"], ["updated_at", "2016-04-15 17:51:01.200230"]]
26175
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26176
+  (0.0ms) SAVEPOINT active_record_1
26177
+ SQL (0.0ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo3@bar.com"], ["created_at", "2016-04-15 17:51:01.200940"], ["updated_at", "2016-04-15 17:51:01.200940"]]
26178
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26179
+ Dripper::Action Load (0.1ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
26180
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
26181
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (users.created_at >= '2016-04-15 17:51:01.000000') [["drippable_type", "User"], ["dripper_action_id", 1]]
26182
+ Rendered user_mailer/welcome.html.erb within layouts/mailer (0.7ms)
26183
+ Rendered user_mailer/welcome.text.erb within layouts/mailer (0.2ms)
26184
+
26185
+ UserMailer#welcome: processed outbound mail in 104.1ms
26186
+
26187
+ Sent mail to to@example.org (4.7ms)
26188
+ Date: Fri, 15 Apr 2016 10:51:01 -0700
26189
+ From: from@example.com
26190
+ To: to@example.org
26191
+ Message-ID: <57112a054dae0_81503fdf5985e1fc70677@Douglass-MacBook-Pro.local.mail>
26192
+ Subject: Welcome
26193
+ Mime-Version: 1.0
26194
+ Content-Type: multipart/alternative;
26195
+ boundary="--==_mimepart_57112a054cec8_81503fdf5985e1fc70550";
26196
+ charset=UTF-8
26197
+ Content-Transfer-Encoding: 7bit
26198
+
26199
+
26200
+ ----==_mimepart_57112a054cec8_81503fdf5985e1fc70550
26201
+ Content-Type: text/plain;
26202
+ charset=UTF-8
26203
+ Content-Transfer-Encoding: 7bit
26204
+
26205
+ UserMailer#welcome
26206
+
26207
+ Hi, find me in app/views/user_mailer/welcome.text.erb
26208
+
26209
+
26210
+ ----==_mimepart_57112a054cec8_81503fdf5985e1fc70550
26211
+ Content-Type: text/html;
26212
+ charset=UTF-8
26213
+ Content-Transfer-Encoding: 7bit
26214
+
26215
+ <html>
26216
+ <body>
26217
+ <h1>UserMailer#welcome</h1>
26218
+
26219
+ <p>
26220
+ Hi, find me in app/views/user_mailer/welcome.html.erb
26221
+ </p>
26222
+
26223
+ </body>
26224
+ </html>
26225
+
26226
+ ----==_mimepart_57112a054cec8_81503fdf5985e1fc70550--
26227
+
26228
+  (0.0ms) SAVEPOINT active_record_1
26229
+ SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 1], ["drippable_type", "User"], ["created_at", "2016-04-15 17:51:01.325485"], ["updated_at", "2016-04-15 17:51:01.325485"]]
26230
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26231
+ Rendered user_mailer/welcome.html.erb within layouts/mailer (0.0ms)
26232
+ Rendered user_mailer/welcome.text.erb within layouts/mailer (0.0ms)
26233
+
26234
+ UserMailer#welcome: processed outbound mail in 1.5ms
26235
+
26236
+ Sent mail to to@example.org (2.4ms)
26237
+ Date: Fri, 15 Apr 2016 10:51:01 -0700
26238
+ From: from@example.com
26239
+ To: to@example.org
26240
+ Message-ID: <57112a055051c_81503fdf5985e1fc70812@Douglass-MacBook-Pro.local.mail>
26241
+ Subject: Welcome
26242
+ Mime-Version: 1.0
26243
+ Content-Type: multipart/alternative;
26244
+ boundary="--==_mimepart_57112a054ff2b_81503fdf5985e1fc70727";
26245
+ charset=UTF-8
26246
+ Content-Transfer-Encoding: 7bit
26247
+
26248
+
26249
+ ----==_mimepart_57112a054ff2b_81503fdf5985e1fc70727
26250
+ Content-Type: text/plain;
26251
+ charset=UTF-8
26252
+ Content-Transfer-Encoding: 7bit
26253
+
26254
+ UserMailer#welcome
26255
+
26256
+ Hi, find me in app/views/user_mailer/welcome.text.erb
26257
+
26258
+
26259
+ ----==_mimepart_57112a054ff2b_81503fdf5985e1fc70727
26260
+ Content-Type: text/html;
26261
+ charset=UTF-8
26262
+ Content-Transfer-Encoding: 7bit
26263
+
26264
+ <html>
26265
+ <body>
26266
+ <h1>UserMailer#welcome</h1>
26267
+
26268
+ <p>
26269
+ Hi, find me in app/views/user_mailer/welcome.html.erb
26270
+ </p>
26271
+
26272
+ </body>
26273
+ </html>
26274
+
26275
+ ----==_mimepart_57112a054ff2b_81503fdf5985e1fc70727--
26276
+
26277
+  (0.0ms) SAVEPOINT active_record_1
26278
+ SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 2], ["drippable_type", "User"], ["created_at", "2016-04-15 17:51:01.330962"], ["updated_at", "2016-04-15 17:51:01.330962"]]
26279
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26280
+ Rendered user_mailer/welcome.html.erb within layouts/mailer (0.0ms)
26281
+ Rendered user_mailer/welcome.text.erb within layouts/mailer (0.0ms)
26282
+
26283
+ UserMailer#welcome: processed outbound mail in 1.3ms
26284
+
26285
+ Sent mail to to@example.org (2.2ms)
26286
+ Date: Fri, 15 Apr 2016 10:51:01 -0700
26287
+ From: from@example.com
26288
+ To: to@example.org
26289
+ Message-ID: <57112a0551883_81503fdf5985e1fc71028@Douglass-MacBook-Pro.local.mail>
26290
+ Subject: Welcome
26291
+ Mime-Version: 1.0
26292
+ Content-Type: multipart/alternative;
26293
+ boundary="--==_mimepart_57112a05512ae_81503fdf5985e1fc7092a";
26294
+ charset=UTF-8
26295
+ Content-Transfer-Encoding: 7bit
26296
+
26297
+
26298
+ ----==_mimepart_57112a05512ae_81503fdf5985e1fc7092a
26299
+ Content-Type: text/plain;
26300
+ charset=UTF-8
26301
+ Content-Transfer-Encoding: 7bit
26302
+
26303
+ UserMailer#welcome
26304
+
26305
+ Hi, find me in app/views/user_mailer/welcome.text.erb
26306
+
26307
+
26308
+ ----==_mimepart_57112a05512ae_81503fdf5985e1fc7092a
26309
+ Content-Type: text/html;
26310
+ charset=UTF-8
26311
+ Content-Transfer-Encoding: 7bit
26312
+
26313
+ <html>
26314
+ <body>
26315
+ <h1>UserMailer#welcome</h1>
26316
+
26317
+ <p>
26318
+ Hi, find me in app/views/user_mailer/welcome.html.erb
26319
+ </p>
26320
+
26321
+ </body>
26322
+ </html>
26323
+
26324
+ ----==_mimepart_57112a05512ae_81503fdf5985e1fc7092a--
26325
+
26326
+  (0.0ms) SAVEPOINT active_record_1
26327
+ SQL (0.0ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 3], ["drippable_type", "User"], ["created_at", "2016-04-15 17:51:01.335671"], ["updated_at", "2016-04-15 17:51:01.335671"]]
26328
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26329
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
26330
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
26331
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE ("users"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (users.created_at >= '2016-04-15 17:51:01.000000') AND ("users"."username" IS NOT NULL) [["drippable_type", "User"], ["dripper_action_id", 2]]
26332
+ Rendered user_mailer/newsletter.html.erb within layouts/mailer (0.3ms)
26333
+ Rendered user_mailer/newsletter.text.erb within layouts/mailer (0.2ms)
26334
+
26335
+ UserMailer#newsletter: processed outbound mail in 7.2ms
26336
+
26337
+ Sent mail to to@example.org (2.4ms)
26338
+ Date: Fri, 15 Apr 2016 10:51:01 -0700
26339
+ From: from@example.com
26340
+ To: to@example.org
26341
+ Message-ID: <57112a055499c_81503fdf5985e1fc71275@Douglass-MacBook-Pro.local.mail>
26342
+ Subject: Newsletter
26343
+ Mime-Version: 1.0
26344
+ Content-Type: multipart/alternative;
26345
+ boundary="--==_mimepart_57112a0554359_81503fdf5985e1fc71121";
26346
+ charset=UTF-8
26347
+ Content-Transfer-Encoding: 7bit
26348
+
26349
+
26350
+ ----==_mimepart_57112a0554359_81503fdf5985e1fc71121
26351
+ Content-Type: text/plain;
26352
+ charset=UTF-8
26353
+ Content-Transfer-Encoding: 7bit
26354
+
26355
+ UserMailer#newsletter
26356
+
26357
+ Hi, find me in app/views/user_mailer/newsletter.text.erb
26358
+
26359
+
26360
+ ----==_mimepart_57112a0554359_81503fdf5985e1fc71121
26361
+ Content-Type: text/html;
26362
+ charset=UTF-8
26363
+ Content-Transfer-Encoding: 7bit
26364
+
26365
+ <html>
26366
+ <body>
26367
+ <h1>UserMailer#newsletter</h1>
26368
+
26369
+ <p>
26370
+ Hi, find me in app/views/user_mailer/newsletter.html.erb
26371
+ </p>
26372
+
26373
+ </body>
26374
+ </html>
26375
+
26376
+ ----==_mimepart_57112a0554359_81503fdf5985e1fc71121--
26377
+
26378
+  (0.0ms) SAVEPOINT active_record_1
26379
+ SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 2], ["drippable_id", 1], ["drippable_type", "User"], ["created_at", "2016-04-15 17:51:01.348525"], ["updated_at", "2016-04-15 17:51:01.348525"]]
26380
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26381
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
26382
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
26383
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE ("users"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (users.created_at >= '2016-04-15 17:51:01.000000') [["drippable_type", "User"], ["dripper_action_id", 1]]
26384
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
26385
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
26386
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE ("users"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (users.created_at >= '2016-04-15 17:51:01.000000') AND ("users"."username" IS NOT NULL) [["drippable_type", "User"], ["dripper_action_id", 2]]
26387
+  (2.4ms) rollback transaction
26388
+  (0.1ms) begin transaction
26389
+ ---------------------------------
26390
+ Dripper::MessageTest: test_Config
26391
+ ---------------------------------
26392
+  (0.0ms) SAVEPOINT active_record_1
26393
+ SQL (0.2ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "foo@bar.com"], ["username", "foo"], ["created_at", "2016-04-15 17:51:01.356145"], ["updated_at", "2016-04-15 17:51:01.356145"]]
26394
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26395
+  (0.0ms) SAVEPOINT active_record_1
26396
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo2@bar.com"], ["created_at", "2016-04-15 17:51:01.357278"], ["updated_at", "2016-04-15 17:51:01.357278"]]
26397
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26398
+  (0.0ms) SAVEPOINT active_record_1
26399
+ SQL (0.0ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo3@bar.com"], ["created_at", "2016-04-15 17:51:01.358289"], ["updated_at", "2016-04-15 17:51:01.358289"]]
26400
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26401
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
26402
+  (0.0ms) SAVEPOINT active_record_1
26403
+ SQL (0.1ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "welcome"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:51:01.360079"], ["updated_at", "2016-04-15 17:51:01.360079"]]
26404
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26405
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "newsletter_2"], ["mailer", "user_mailer"]]
26406
+  (0.0ms) SAVEPOINT active_record_1
26407
+ SQL (0.0ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "newsletter_2"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:51:01.361507"], ["updated_at", "2016-04-15 17:51:01.361507"]]
26408
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26409
+ Dripper::Action Load (0.1ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
26410
+  (0.0ms) SAVEPOINT active_record_1
26411
+ SQL (0.0ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "newsletter"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:51:01.362768"], ["updated_at", "2016-04-15 17:51:01.362768"]]
26412
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26413
+  (0.4ms) rollback transaction
26414
+  (0.1ms) begin transaction
26415
+ --------------------------------------
26416
+ Dripper::MessageTest: test_Integration
26417
+ --------------------------------------
26418
+  (0.0ms) SAVEPOINT active_record_1
26419
+ SQL (0.2ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "foo@bar.com"], ["username", "foo"], ["created_at", "2016-04-15 17:51:01.364468"], ["updated_at", "2016-04-15 17:51:01.364468"]]
26420
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26421
+  (0.0ms) SAVEPOINT active_record_1
26422
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo2@bar.com"], ["created_at", "2016-04-15 17:51:01.365433"], ["updated_at", "2016-04-15 17:51:01.365433"]]
26423
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26424
+  (0.0ms) SAVEPOINT active_record_1
26425
+ SQL (0.0ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo3@bar.com"], ["created_at", "2016-04-15 17:51:01.366422"], ["updated_at", "2016-04-15 17:51:01.366422"]]
26426
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26427
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
26428
+  (0.0ms) SAVEPOINT active_record_1
26429
+ SQL (0.1ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "welcome"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:51:01.367780"], ["updated_at", "2016-04-15 17:51:01.367780"]]
26430
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26431
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "newsletter_2"], ["mailer", "user_mailer"]]
26432
+  (0.0ms) SAVEPOINT active_record_1
26433
+ SQL (0.0ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "newsletter_2"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:51:01.368971"], ["updated_at", "2016-04-15 17:51:01.368971"]]
26434
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26435
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
26436
+  (0.0ms) SAVEPOINT active_record_1
26437
+ SQL (0.0ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "newsletter"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:51:01.370046"], ["updated_at", "2016-04-15 17:51:01.370046"]]
26438
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26439
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
26440
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
26441
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE ("users"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (users.created_at >= '2016-04-15 17:51:01.000000') [["drippable_type", "User"], ["dripper_action_id", 1]]
26442
+  (0.0ms) SAVEPOINT active_record_1
26443
+ SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 1], ["drippable_type", "User"], ["created_at", "2016-04-15 17:51:01.372705"], ["updated_at", "2016-04-15 17:51:01.372705"]]
26444
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26445
+  (0.1ms) SAVEPOINT active_record_1
26446
+ SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 2], ["drippable_type", "User"], ["created_at", "2016-04-15 17:51:01.373851"], ["updated_at", "2016-04-15 17:51:01.373851"]]
26447
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26448
+  (0.1ms) SAVEPOINT active_record_1
26449
+ SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 3], ["drippable_type", "User"], ["created_at", "2016-04-15 17:51:01.374828"], ["updated_at", "2016-04-15 17:51:01.374828"]]
26450
+  (0.1ms) RELEASE SAVEPOINT active_record_1
26451
+ Dripper::Action Load (0.1ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter_2"], ["mailer", "user_mailer"]]
26452
+ Dripper::Action Load (0.1ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter_2"], ["mailer", "user_mailer"]]
26453
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (users.created_at >= '2016-04-15 17:51:01.000000') AND (user.created_at <= '2016-04-08 17:51:01.377598') [["drippable_type", "User"], ["dripper_action_id", 2]]
26454
+  (0.6ms) rollback transaction
26455
+  (0.0ms) begin transaction
26456
+ -----------------------
26457
+ DripperTest: test_truth
26458
+ -----------------------
26459
+  (0.0ms) rollback transaction
26460
+  (0.0ms) begin transaction
26461
+ ---------------------------------------
26462
+ Dripper::ConcernTest: test_Concern_Test
26463
+ ---------------------------------------
26464
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
26465
+  (0.0ms) SAVEPOINT active_record_1
26466
+ SQL (0.2ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "newsletter"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:51:01.381838"], ["updated_at", "2016-04-15 17:51:01.381838"]]
26467
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26468
+  (0.0ms) SAVEPOINT active_record_1
26469
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo@bar.com"], ["created_at", "2016-04-15 17:51:01.384450"], ["updated_at", "2016-04-15 17:51:01.384450"]]
26470
+  (0.1ms) RELEASE SAVEPOINT active_record_1
26471
+  (0.1ms) SAVEPOINT active_record_1
26472
+ SQL (0.1ms) INSERT INTO "newsletters" ("user_id", "title", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["user_id", 1], ["title", "test"], ["created_at", "2016-04-15 17:51:01.388505"], ["updated_at", "2016-04-15 17:51:01.388505"]]
26473
+ [ActiveJob] Newsletter Load (0.1ms) SELECT "newsletters".* FROM "newsletters" WHERE "newsletters"."id" = ? LIMIT 1 [["id", 1]]
26474
+ [ActiveJob] [DripperJob] [7399f749-c6a5-4fa7-b5af-584612f06ea2] Performing DripperJob from Inline(default) with arguments: gid://dummy/Newsletter/1
26475
+ [ActiveJob] [DripperJob] [7399f749-c6a5-4fa7-b5af-584612f06ea2] Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
26476
+ [ActiveJob] [DripperJob] [7399f749-c6a5-4fa7-b5af-584612f06ea2] Dripper::Action Load (0.1ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
26477
+ [ActiveJob] [DripperJob] [7399f749-c6a5-4fa7-b5af-584612f06ea2] Newsletter Load (0.1ms) SELECT "newsletters".* FROM "newsletters" WHERE ("newsletters"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (newsletters.created_at >= '2016-04-15 17:51:01.000000') AND "newsletters"."id" = ? [["drippable_type", "Newsletter"], ["dripper_action_id", 1], ["id", 1]]
26478
+ [ActiveJob] [DripperJob] [7399f749-c6a5-4fa7-b5af-584612f06ea2] SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 1], ["drippable_type", "Newsletter"], ["created_at", "2016-04-15 17:51:01.393485"], ["updated_at", "2016-04-15 17:51:01.393485"]]
26479
+ [ActiveJob] [DripperJob] [7399f749-c6a5-4fa7-b5af-584612f06ea2] Performed DripperJob from Inline(default) in 2.43ms
26480
+ [ActiveJob] Enqueued DripperJob (Job ID: 7399f749-c6a5-4fa7-b5af-584612f06ea2) to Inline(default) with arguments: gid://dummy/Newsletter/1
26481
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26482
+  (0.5ms) rollback transaction
26483
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
26484
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
26485
+  (0.1ms) begin transaction
26486
+ -----------------------
26487
+ DripperTest: test_truth
26488
+ -----------------------
26489
+  (0.0ms) rollback transaction
26490
+  (0.0ms) begin transaction
26491
+ -----------------------------------
26492
+ Dripper::RunTwiceTest: test_2nd_Run
26493
+ -----------------------------------
26494
+ Dripper::Action Load (0.1ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
26495
+  (0.0ms) SAVEPOINT active_record_1
26496
+ SQL (0.3ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "welcome"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:51:46.547091"], ["updated_at", "2016-04-15 17:51:46.547091"]]
26497
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26498
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
26499
+  (0.0ms) SAVEPOINT active_record_1
26500
+ SQL (0.2ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "newsletter"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:51:46.548872"], ["updated_at", "2016-04-15 17:51:46.548872"]]
26501
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26502
+  (0.0ms) SAVEPOINT active_record_1
26503
+ SQL (0.1ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "foo@bar.com"], ["username", "foo"], ["created_at", "2016-04-15 17:51:46.552741"], ["updated_at", "2016-04-15 17:51:46.552741"]]
26504
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26505
+  (0.0ms) SAVEPOINT active_record_1
26506
+ SQL (0.1ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo2@bar.com"], ["created_at", "2016-04-15 17:51:46.553678"], ["updated_at", "2016-04-15 17:51:46.553678"]]
26507
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26508
+  (0.0ms) SAVEPOINT active_record_1
26509
+ SQL (0.0ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo3@bar.com"], ["created_at", "2016-04-15 17:51:46.554366"], ["updated_at", "2016-04-15 17:51:46.554366"]]
26510
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26511
+ Dripper::Action Load (0.1ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
26512
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
26513
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE ("users"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (users.created_at >= '2016-04-15 17:51:46.000000') [["drippable_type", "User"], ["dripper_action_id", 1]]
26514
+ Rendered user_mailer/welcome.html.erb within layouts/mailer (0.8ms)
26515
+ Rendered user_mailer/welcome.text.erb within layouts/mailer (0.2ms)
26516
+
26517
+ UserMailer#welcome: processed outbound mail in 105.5ms
26518
+
26519
+ Sent mail to to@example.org (4.2ms)
26520
+ Date: Fri, 15 Apr 2016 10:51:46 -0700
26521
+ From: from@example.com
26522
+ To: to@example.org
26523
+ Message-ID: <57112a32a42b4_81983ff69d85e20048979@Douglass-MacBook-Pro.local.mail>
26524
+ Subject: Welcome
26525
+ Mime-Version: 1.0
26526
+ Content-Type: multipart/alternative;
26527
+ boundary="--==_mimepart_57112a32a3726_81983ff69d85e2004884a";
26528
+ charset=UTF-8
26529
+ Content-Transfer-Encoding: 7bit
26530
+
26531
+
26532
+ ----==_mimepart_57112a32a3726_81983ff69d85e2004884a
26533
+ Content-Type: text/plain;
26534
+ charset=UTF-8
26535
+ Content-Transfer-Encoding: 7bit
26536
+
26537
+ UserMailer#welcome
26538
+
26539
+ Hi, find me in app/views/user_mailer/welcome.text.erb
26540
+
26541
+
26542
+ ----==_mimepart_57112a32a3726_81983ff69d85e2004884a
26543
+ Content-Type: text/html;
26544
+ charset=UTF-8
26545
+ Content-Transfer-Encoding: 7bit
26546
+
26547
+ <html>
26548
+ <body>
26549
+ <h1>UserMailer#welcome</h1>
26550
+
26551
+ <p>
26552
+ Hi, find me in app/views/user_mailer/welcome.html.erb
26553
+ </p>
26554
+
26555
+ </body>
26556
+ </html>
26557
+
26558
+ ----==_mimepart_57112a32a3726_81983ff69d85e2004884a--
26559
+
26560
+  (0.0ms) SAVEPOINT active_record_1
26561
+ SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 1], ["drippable_type", "User"], ["created_at", "2016-04-15 17:51:46.679409"], ["updated_at", "2016-04-15 17:51:46.679409"]]
26562
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26563
+ Rendered user_mailer/welcome.html.erb within layouts/mailer (0.0ms)
26564
+ Rendered user_mailer/welcome.text.erb within layouts/mailer (0.1ms)
26565
+
26566
+ UserMailer#welcome: processed outbound mail in 1.6ms
26567
+
26568
+ Sent mail to to@example.org (2.2ms)
26569
+ Date: Fri, 15 Apr 2016 10:51:46 -0700
26570
+ From: from@example.com
26571
+ To: to@example.org
26572
+ Message-ID: <57112a32a6bf5_81983ff69d85e200491f6@Douglass-MacBook-Pro.local.mail>
26573
+ Subject: Welcome
26574
+ Mime-Version: 1.0
26575
+ Content-Type: multipart/alternative;
26576
+ boundary="--==_mimepart_57112a32a6654_81983ff69d85e200490cf";
26577
+ charset=UTF-8
26578
+ Content-Transfer-Encoding: 7bit
26579
+
26580
+
26581
+ ----==_mimepart_57112a32a6654_81983ff69d85e200490cf
26582
+ Content-Type: text/plain;
26583
+ charset=UTF-8
26584
+ Content-Transfer-Encoding: 7bit
26585
+
26586
+ UserMailer#welcome
26587
+
26588
+ Hi, find me in app/views/user_mailer/welcome.text.erb
26589
+
26590
+
26591
+ ----==_mimepart_57112a32a6654_81983ff69d85e200490cf
26592
+ Content-Type: text/html;
26593
+ charset=UTF-8
26594
+ Content-Transfer-Encoding: 7bit
26595
+
26596
+ <html>
26597
+ <body>
26598
+ <h1>UserMailer#welcome</h1>
26599
+
26600
+ <p>
26601
+ Hi, find me in app/views/user_mailer/welcome.html.erb
26602
+ </p>
26603
+
26604
+ </body>
26605
+ </html>
26606
+
26607
+ ----==_mimepart_57112a32a6654_81983ff69d85e200490cf--
26608
+
26609
+  (0.0ms) SAVEPOINT active_record_1
26610
+ SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 2], ["drippable_type", "User"], ["created_at", "2016-04-15 17:51:46.684813"], ["updated_at", "2016-04-15 17:51:46.684813"]]
26611
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26612
+ Rendered user_mailer/welcome.html.erb within layouts/mailer (0.0ms)
26613
+ Rendered user_mailer/welcome.text.erb within layouts/mailer (0.0ms)
26614
+
26615
+ UserMailer#welcome: processed outbound mail in 1.3ms
26616
+
26617
+ Sent mail to to@example.org (2.1ms)
26618
+ Date: Fri, 15 Apr 2016 10:51:46 -0700
26619
+ From: from@example.com
26620
+ To: to@example.org
26621
+ Message-ID: <57112a32a7e00_81983ff69d85e2004935d@Douglass-MacBook-Pro.local.mail>
26622
+ Subject: Welcome
26623
+ Mime-Version: 1.0
26624
+ Content-Type: multipart/alternative;
26625
+ boundary="--==_mimepart_57112a32a78c3_81983ff69d85e2004925e";
26626
+ charset=UTF-8
26627
+ Content-Transfer-Encoding: 7bit
26628
+
26629
+
26630
+ ----==_mimepart_57112a32a78c3_81983ff69d85e2004925e
26631
+ Content-Type: text/plain;
26632
+ charset=UTF-8
26633
+ Content-Transfer-Encoding: 7bit
26634
+
26635
+ UserMailer#welcome
26636
+
26637
+ Hi, find me in app/views/user_mailer/welcome.text.erb
26638
+
26639
+
26640
+ ----==_mimepart_57112a32a78c3_81983ff69d85e2004925e
26641
+ Content-Type: text/html;
26642
+ charset=UTF-8
26643
+ Content-Transfer-Encoding: 7bit
26644
+
26645
+ <html>
26646
+ <body>
26647
+ <h1>UserMailer#welcome</h1>
26648
+
26649
+ <p>
26650
+ Hi, find me in app/views/user_mailer/welcome.html.erb
26651
+ </p>
26652
+
26653
+ </body>
26654
+ </html>
26655
+
26656
+ ----==_mimepart_57112a32a78c3_81983ff69d85e2004925e--
26657
+
26658
+  (0.0ms) SAVEPOINT active_record_1
26659
+ SQL (0.0ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 3], ["drippable_type", "User"], ["created_at", "2016-04-15 17:51:46.689285"], ["updated_at", "2016-04-15 17:51:46.689285"]]
26660
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26661
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
26662
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
26663
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE ("users"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (users.created_at >= '2016-04-15 17:51:46.000000') AND ("users"."username" IS NOT NULL) [["drippable_type", "User"], ["dripper_action_id", 2]]
26664
+ Rendered user_mailer/newsletter.html.erb within layouts/mailer (0.3ms)
26665
+ Rendered user_mailer/newsletter.text.erb within layouts/mailer (0.2ms)
26666
+
26667
+ UserMailer#newsletter: processed outbound mail in 6.5ms
26668
+
26669
+ Sent mail to to@example.org (2.2ms)
26670
+ Date: Fri, 15 Apr 2016 10:51:46 -0700
26671
+ From: from@example.com
26672
+ To: to@example.org
26673
+ Message-ID: <57112a32aab42_81983ff69d85e20049581@Douglass-MacBook-Pro.local.mail>
26674
+ Subject: Newsletter
26675
+ Mime-Version: 1.0
26676
+ Content-Type: multipart/alternative;
26677
+ boundary="--==_mimepart_57112a32aa5af_81983ff69d85e2004948d";
26678
+ charset=UTF-8
26679
+ Content-Transfer-Encoding: 7bit
26680
+
26681
+
26682
+ ----==_mimepart_57112a32aa5af_81983ff69d85e2004948d
26683
+ Content-Type: text/plain;
26684
+ charset=UTF-8
26685
+ Content-Transfer-Encoding: 7bit
26686
+
26687
+ UserMailer#newsletter
26688
+
26689
+ Hi, find me in app/views/user_mailer/newsletter.text.erb
26690
+
26691
+
26692
+ ----==_mimepart_57112a32aa5af_81983ff69d85e2004948d
26693
+ Content-Type: text/html;
26694
+ charset=UTF-8
26695
+ Content-Transfer-Encoding: 7bit
26696
+
26697
+ <html>
26698
+ <body>
26699
+ <h1>UserMailer#newsletter</h1>
26700
+
26701
+ <p>
26702
+ Hi, find me in app/views/user_mailer/newsletter.html.erb
26703
+ </p>
26704
+
26705
+ </body>
26706
+ </html>
26707
+
26708
+ ----==_mimepart_57112a32aa5af_81983ff69d85e2004948d--
26709
+
26710
+  (0.0ms) SAVEPOINT active_record_1
26711
+ SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 2], ["drippable_id", 1], ["drippable_type", "User"], ["created_at", "2016-04-15 17:51:46.701020"], ["updated_at", "2016-04-15 17:51:46.701020"]]
26712
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26713
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
26714
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
26715
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE ("users"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (users.created_at >= '2016-04-15 17:51:46.000000') [["drippable_type", "User"], ["dripper_action_id", 1]]
26716
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
26717
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
26718
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE ("users"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (users.created_at >= '2016-04-15 17:51:46.000000') AND ("users"."username" IS NOT NULL) [["drippable_type", "User"], ["dripper_action_id", 2]]
26719
+  (2.3ms) rollback transaction
26720
+  (0.1ms) begin transaction
26721
+ ---------------------------------------
26722
+ Dripper::ConcernTest: test_Concern_Test
26723
+ ---------------------------------------
26724
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
26725
+  (0.0ms) SAVEPOINT active_record_1
26726
+ SQL (0.2ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "newsletter"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:51:46.709817"], ["updated_at", "2016-04-15 17:51:46.709817"]]
26727
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26728
+  (0.0ms) SAVEPOINT active_record_1
26729
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo@bar.com"], ["created_at", "2016-04-15 17:51:46.712687"], ["updated_at", "2016-04-15 17:51:46.712687"]]
26730
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26731
+  (0.0ms) SAVEPOINT active_record_1
26732
+ SQL (0.1ms) INSERT INTO "newsletters" ("user_id", "title", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["user_id", 1], ["title", "test"], ["created_at", "2016-04-15 17:51:46.717066"], ["updated_at", "2016-04-15 17:51:46.717066"]]
26733
+ [ActiveJob] Newsletter Load (0.1ms) SELECT "newsletters".* FROM "newsletters" WHERE "newsletters"."id" = ? LIMIT 1 [["id", 1]]
26734
+ [ActiveJob] [DripperJob] [1e91d2a6-c11b-44c4-994c-7c9f8dd14474] Performing DripperJob from Inline(default) with arguments: gid://dummy/Newsletter/1
26735
+ [ActiveJob] [DripperJob] [1e91d2a6-c11b-44c4-994c-7c9f8dd14474] Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
26736
+ [ActiveJob] [DripperJob] [1e91d2a6-c11b-44c4-994c-7c9f8dd14474] Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
26737
+ [ActiveJob] [DripperJob] [1e91d2a6-c11b-44c4-994c-7c9f8dd14474] Newsletter Load (0.1ms) SELECT "newsletters".* FROM "newsletters" WHERE ("newsletters"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (newsletters.created_at >= '2016-04-15 17:51:46.000000') AND "newsletters"."id" = ? [["drippable_type", "Newsletter"], ["dripper_action_id", 1], ["id", 1]]
26738
+ [ActiveJob] [DripperJob] [1e91d2a6-c11b-44c4-994c-7c9f8dd14474] SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 1], ["drippable_type", "Newsletter"], ["created_at", "2016-04-15 17:51:46.721599"], ["updated_at", "2016-04-15 17:51:46.721599"]]
26739
+ [ActiveJob] [DripperJob] [1e91d2a6-c11b-44c4-994c-7c9f8dd14474] Performed DripperJob from Inline(default) in 2.35ms
26740
+ [ActiveJob] Enqueued DripperJob (Job ID: 1e91d2a6-c11b-44c4-994c-7c9f8dd14474) to Inline(default) with arguments: gid://dummy/Newsletter/1
26741
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26742
+  (0.7ms) rollback transaction
26743
+  (0.0ms) begin transaction
26744
+ ---------------------------------
26745
+ Dripper::MessageTest: test_Config
26746
+ ---------------------------------
26747
+  (0.0ms) SAVEPOINT active_record_1
26748
+ SQL (0.1ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "foo@bar.com"], ["username", "foo"], ["created_at", "2016-04-15 17:51:46.724614"], ["updated_at", "2016-04-15 17:51:46.724614"]]
26749
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26750
+  (0.0ms) SAVEPOINT active_record_1
26751
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo2@bar.com"], ["created_at", "2016-04-15 17:51:46.725449"], ["updated_at", "2016-04-15 17:51:46.725449"]]
26752
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26753
+  (0.0ms) SAVEPOINT active_record_1
26754
+ SQL (0.0ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo3@bar.com"], ["created_at", "2016-04-15 17:51:46.726192"], ["updated_at", "2016-04-15 17:51:46.726192"]]
26755
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26756
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
26757
+  (0.0ms) SAVEPOINT active_record_1
26758
+ SQL (0.0ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "welcome"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:51:46.727424"], ["updated_at", "2016-04-15 17:51:46.727424"]]
26759
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26760
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "newsletter_2"], ["mailer", "user_mailer"]]
26761
+  (0.0ms) SAVEPOINT active_record_1
26762
+ SQL (0.0ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "newsletter_2"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:51:46.728388"], ["updated_at", "2016-04-15 17:51:46.728388"]]
26763
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26764
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
26765
+  (0.0ms) SAVEPOINT active_record_1
26766
+ SQL (0.0ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "newsletter"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:51:46.729334"], ["updated_at", "2016-04-15 17:51:46.729334"]]
26767
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26768
+  (0.5ms) rollback transaction
26769
+  (0.0ms) begin transaction
26770
+ --------------------------------------
26771
+ Dripper::MessageTest: test_Integration
26772
+ --------------------------------------
26773
+  (0.0ms) SAVEPOINT active_record_1
26774
+ SQL (0.1ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "foo@bar.com"], ["username", "foo"], ["created_at", "2016-04-15 17:51:46.730968"], ["updated_at", "2016-04-15 17:51:46.730968"]]
26775
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26776
+  (0.0ms) SAVEPOINT active_record_1
26777
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo2@bar.com"], ["created_at", "2016-04-15 17:51:46.731789"], ["updated_at", "2016-04-15 17:51:46.731789"]]
26778
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26779
+  (0.0ms) SAVEPOINT active_record_1
26780
+ SQL (0.1ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo3@bar.com"], ["created_at", "2016-04-15 17:51:46.732715"], ["updated_at", "2016-04-15 17:51:46.732715"]]
26781
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26782
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
26783
+  (0.0ms) SAVEPOINT active_record_1
26784
+ SQL (0.1ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "welcome"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:51:46.734387"], ["updated_at", "2016-04-15 17:51:46.734387"]]
26785
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26786
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "newsletter_2"], ["mailer", "user_mailer"]]
26787
+  (0.0ms) SAVEPOINT active_record_1
26788
+ SQL (0.0ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "newsletter_2"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:51:46.735648"], ["updated_at", "2016-04-15 17:51:46.735648"]]
26789
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26790
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
26791
+  (0.0ms) SAVEPOINT active_record_1
26792
+ SQL (0.0ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "newsletter"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:51:46.736861"], ["updated_at", "2016-04-15 17:51:46.736861"]]
26793
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26794
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
26795
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
26796
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE ("users"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (users.created_at >= '2016-04-15 17:51:46.000000') [["drippable_type", "User"], ["dripper_action_id", 1]]
26797
+  (0.0ms) SAVEPOINT active_record_1
26798
+ SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 1], ["drippable_type", "User"], ["created_at", "2016-04-15 17:51:46.739469"], ["updated_at", "2016-04-15 17:51:46.739469"]]
26799
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26800
+  (0.0ms) SAVEPOINT active_record_1
26801
+ SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 2], ["drippable_type", "User"], ["created_at", "2016-04-15 17:51:46.740491"], ["updated_at", "2016-04-15 17:51:46.740491"]]
26802
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26803
+  (0.0ms) SAVEPOINT active_record_1
26804
+ SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 3], ["drippable_type", "User"], ["created_at", "2016-04-15 17:51:46.741446"], ["updated_at", "2016-04-15 17:51:46.741446"]]
26805
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26806
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter_2"], ["mailer", "user_mailer"]]
26807
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter_2"], ["mailer", "user_mailer"]]
26808
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE ("users"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (users.created_at >= '2016-04-15 17:51:46.000000') AND (users.created_at <= '2016-04-08 17:51:46.742855') [["drippable_type", "User"], ["dripper_action_id", 2]]
26809
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
26810
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
26811
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE ("users"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (users.created_at >= '2016-04-15 17:51:46.000000') AND ("users"."username" IS NOT NULL) [["drippable_type", "User"], ["dripper_action_id", 3]]
26812
+  (0.0ms) SAVEPOINT active_record_1
26813
+ SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 3], ["drippable_id", 1], ["drippable_type", "User"], ["created_at", "2016-04-15 17:51:46.746135"], ["updated_at", "2016-04-15 17:51:46.746135"]]
26814
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26815
+  (0.5ms) rollback transaction
26816
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
26817
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
26818
+  (0.1ms) begin transaction
26819
+ ---------------------------------------
26820
+ Dripper::ConcernTest: test_Concern_Test
26821
+ ---------------------------------------
26822
+ Dripper::Action Load (0.1ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
26823
+  (0.0ms) SAVEPOINT active_record_1
26824
+ SQL (0.2ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "newsletter"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:52:08.496376"], ["updated_at", "2016-04-15 17:52:08.496376"]]
26825
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26826
+  (0.0ms) SAVEPOINT active_record_1
26827
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo@bar.com"], ["created_at", "2016-04-15 17:52:08.506054"], ["updated_at", "2016-04-15 17:52:08.506054"]]
26828
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26829
+  (0.0ms) SAVEPOINT active_record_1
26830
+ SQL (0.1ms) INSERT INTO "newsletters" ("user_id", "title", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["user_id", 1], ["title", "test"], ["created_at", "2016-04-15 17:52:08.512403"], ["updated_at", "2016-04-15 17:52:08.512403"]]
26831
+ [ActiveJob] Newsletter Load (0.1ms) SELECT "newsletters".* FROM "newsletters" WHERE "newsletters"."id" = ? LIMIT 1 [["id", 1]]
26832
+ [ActiveJob] [DripperJob] [c810fcc2-d7c6-4835-9d5b-c7db77340580] Performing DripperJob from Inline(default) with arguments: gid://dummy/Newsletter/1
26833
+ [ActiveJob] [DripperJob] [c810fcc2-d7c6-4835-9d5b-c7db77340580] Dripper::Action Load (0.1ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
26834
+ [ActiveJob] [DripperJob] [c810fcc2-d7c6-4835-9d5b-c7db77340580] Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
26835
+ [ActiveJob] [DripperJob] [c810fcc2-d7c6-4835-9d5b-c7db77340580] Newsletter Load (0.1ms) SELECT "newsletters".* FROM "newsletters" WHERE ("newsletters"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (newsletters.created_at >= '2016-04-15 17:52:08.000000') AND "newsletters"."id" = ? [["drippable_type", "Newsletter"], ["dripper_action_id", 1], ["id", 1]]
26836
+ [ActiveJob] [DripperJob] [c810fcc2-d7c6-4835-9d5b-c7db77340580] SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 1], ["drippable_type", "Newsletter"], ["created_at", "2016-04-15 17:52:08.531312"], ["updated_at", "2016-04-15 17:52:08.531312"]]
26837
+ [ActiveJob] [DripperJob] [c810fcc2-d7c6-4835-9d5b-c7db77340580] Performed DripperJob from Inline(default) in 11.24ms
26838
+ [ActiveJob] Enqueued DripperJob (Job ID: c810fcc2-d7c6-4835-9d5b-c7db77340580) to Inline(default) with arguments: gid://dummy/Newsletter/1
26839
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26840
+  (1.9ms) rollback transaction
26841
+  (0.0ms) begin transaction
26842
+ -----------------------------------
26843
+ Dripper::RunTwiceTest: test_2nd_Run
26844
+ -----------------------------------
26845
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
26846
+  (0.0ms) SAVEPOINT active_record_1
26847
+ SQL (0.1ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "welcome"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:52:08.535971"], ["updated_at", "2016-04-15 17:52:08.535971"]]
26848
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26849
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
26850
+  (0.0ms) SAVEPOINT active_record_1
26851
+ SQL (0.2ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "newsletter"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:52:08.537190"], ["updated_at", "2016-04-15 17:52:08.537190"]]
26852
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26853
+  (0.0ms) SAVEPOINT active_record_1
26854
+ SQL (0.1ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "foo@bar.com"], ["username", "foo"], ["created_at", "2016-04-15 17:52:08.538138"], ["updated_at", "2016-04-15 17:52:08.538138"]]
26855
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26856
+  (0.0ms) SAVEPOINT active_record_1
26857
+ SQL (0.0ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo2@bar.com"], ["created_at", "2016-04-15 17:52:08.538848"], ["updated_at", "2016-04-15 17:52:08.538848"]]
26858
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26859
+  (0.0ms) SAVEPOINT active_record_1
26860
+ SQL (0.0ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo3@bar.com"], ["created_at", "2016-04-15 17:52:08.539528"], ["updated_at", "2016-04-15 17:52:08.539528"]]
26861
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26862
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
26863
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
26864
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE ("users"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (users.created_at >= '2016-04-15 17:52:08.000000') [["drippable_type", "User"], ["dripper_action_id", 1]]
26865
+ Rendered user_mailer/welcome.html.erb within layouts/mailer (0.7ms)
26866
+ Rendered user_mailer/welcome.text.erb within layouts/mailer (0.2ms)
26867
+
26868
+ UserMailer#welcome: processed outbound mail in 104.2ms
26869
+
26870
+ Sent mail to to@example.org (4.3ms)
26871
+ Date: Fri, 15 Apr 2016 10:52:08 -0700
26872
+ From: from@example.com
26873
+ To: to@example.org
26874
+ Message-ID: <57112a489e75c_81b63fe35e05e200714bb@Douglass-MacBook-Pro.local.mail>
26875
+ Subject: Welcome
26876
+ Mime-Version: 1.0
26877
+ Content-Type: multipart/alternative;
26878
+ boundary="--==_mimepart_57112a489db9d_81b63fe35e05e200713ed";
26879
+ charset=UTF-8
26880
+ Content-Transfer-Encoding: 7bit
26881
+
26882
+
26883
+ ----==_mimepart_57112a489db9d_81b63fe35e05e200713ed
26884
+ Content-Type: text/plain;
26885
+ charset=UTF-8
26886
+ Content-Transfer-Encoding: 7bit
26887
+
26888
+ UserMailer#welcome
26889
+
26890
+ Hi, find me in app/views/user_mailer/welcome.text.erb
26891
+
26892
+
26893
+ ----==_mimepart_57112a489db9d_81b63fe35e05e200713ed
26894
+ Content-Type: text/html;
26895
+ charset=UTF-8
26896
+ Content-Transfer-Encoding: 7bit
26897
+
26898
+ <html>
26899
+ <body>
26900
+ <h1>UserMailer#welcome</h1>
26901
+
26902
+ <p>
26903
+ Hi, find me in app/views/user_mailer/welcome.html.erb
26904
+ </p>
26905
+
26906
+ </body>
26907
+ </html>
26908
+
26909
+ ----==_mimepart_57112a489db9d_81b63fe35e05e200713ed--
26910
+
26911
+  (0.0ms) SAVEPOINT active_record_1
26912
+ SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 1], ["drippable_type", "User"], ["created_at", "2016-04-15 17:52:08.651779"], ["updated_at", "2016-04-15 17:52:08.651779"]]
26913
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26914
+ Rendered user_mailer/welcome.html.erb within layouts/mailer (0.0ms)
26915
+ Rendered user_mailer/welcome.text.erb within layouts/mailer (0.0ms)
26916
+
26917
+ UserMailer#welcome: processed outbound mail in 1.4ms
26918
+
26919
+ Sent mail to to@example.org (2.3ms)
26920
+ Date: Fri, 15 Apr 2016 10:52:08 -0700
26921
+ From: from@example.com
26922
+ To: to@example.org
26923
+ Message-ID: <57112a489feb0_81b63fe35e05e200716a3@Douglass-MacBook-Pro.local.mail>
26924
+ Subject: Welcome
26925
+ Mime-Version: 1.0
26926
+ Content-Type: multipart/alternative;
26927
+ boundary="--==_mimepart_57112a489f96b_81b63fe35e05e20071563";
26928
+ charset=UTF-8
26929
+ Content-Transfer-Encoding: 7bit
26930
+
26931
+
26932
+ ----==_mimepart_57112a489f96b_81b63fe35e05e20071563
26933
+ Content-Type: text/plain;
26934
+ charset=UTF-8
26935
+ Content-Transfer-Encoding: 7bit
26936
+
26937
+ UserMailer#welcome
26938
+
26939
+ Hi, find me in app/views/user_mailer/welcome.text.erb
26940
+
26941
+
26942
+ ----==_mimepart_57112a489f96b_81b63fe35e05e20071563
26943
+ Content-Type: text/html;
26944
+ charset=UTF-8
26945
+ Content-Transfer-Encoding: 7bit
26946
+
26947
+ <html>
26948
+ <body>
26949
+ <h1>UserMailer#welcome</h1>
26950
+
26951
+ <p>
26952
+ Hi, find me in app/views/user_mailer/welcome.html.erb
26953
+ </p>
26954
+
26955
+ </body>
26956
+ </html>
26957
+
26958
+ ----==_mimepart_57112a489f96b_81b63fe35e05e20071563--
26959
+
26960
+  (0.0ms) SAVEPOINT active_record_1
26961
+ SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 2], ["drippable_type", "User"], ["created_at", "2016-04-15 17:52:08.656938"], ["updated_at", "2016-04-15 17:52:08.656938"]]
26962
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26963
+ Rendered user_mailer/welcome.html.erb within layouts/mailer (0.0ms)
26964
+ Rendered user_mailer/welcome.text.erb within layouts/mailer (0.0ms)
26965
+
26966
+ UserMailer#welcome: processed outbound mail in 1.3ms
26967
+
26968
+ Sent mail to to@example.org (2.2ms)
26969
+ Date: Fri, 15 Apr 2016 10:52:08 -0700
26970
+ From: from@example.com
26971
+ To: to@example.org
26972
+ Message-ID: <57112a48a11d4_81b63fe35e05e20071878@Douglass-MacBook-Pro.local.mail>
26973
+ Subject: Welcome
26974
+ Mime-Version: 1.0
26975
+ Content-Type: multipart/alternative;
26976
+ boundary="--==_mimepart_57112a48a0c5b_81b63fe35e05e2007173a";
26977
+ charset=UTF-8
26978
+ Content-Transfer-Encoding: 7bit
26979
+
26980
+
26981
+ ----==_mimepart_57112a48a0c5b_81b63fe35e05e2007173a
26982
+ Content-Type: text/plain;
26983
+ charset=UTF-8
26984
+ Content-Transfer-Encoding: 7bit
26985
+
26986
+ UserMailer#welcome
26987
+
26988
+ Hi, find me in app/views/user_mailer/welcome.text.erb
26989
+
26990
+
26991
+ ----==_mimepart_57112a48a0c5b_81b63fe35e05e2007173a
26992
+ Content-Type: text/html;
26993
+ charset=UTF-8
26994
+ Content-Transfer-Encoding: 7bit
26995
+
26996
+ <html>
26997
+ <body>
26998
+ <h1>UserMailer#welcome</h1>
26999
+
27000
+ <p>
27001
+ Hi, find me in app/views/user_mailer/welcome.html.erb
27002
+ </p>
27003
+
27004
+ </body>
27005
+ </html>
27006
+
27007
+ ----==_mimepart_57112a48a0c5b_81b63fe35e05e2007173a--
27008
+
27009
+  (0.0ms) SAVEPOINT active_record_1
27010
+ SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 3], ["drippable_type", "User"], ["created_at", "2016-04-15 17:52:08.661706"], ["updated_at", "2016-04-15 17:52:08.661706"]]
27011
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27012
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
27013
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
27014
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE ("users"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (users.created_at >= '2016-04-15 17:52:08.000000') AND ("users"."username" IS NOT NULL) [["drippable_type", "User"], ["dripper_action_id", 2]]
27015
+ Rendered user_mailer/newsletter.html.erb within layouts/mailer (0.2ms)
27016
+ Rendered user_mailer/newsletter.text.erb within layouts/mailer (0.1ms)
27017
+
27018
+ UserMailer#newsletter: processed outbound mail in 6.7ms
27019
+
27020
+ Sent mail to to@example.org (2.3ms)
27021
+ Date: Fri, 15 Apr 2016 10:52:08 -0700
27022
+ From: from@example.com
27023
+ To: to@example.org
27024
+ Message-ID: <57112a48a4071_81b63fe35e05e20072025@Douglass-MacBook-Pro.local.mail>
27025
+ Subject: Newsletter
27026
+ Mime-Version: 1.0
27027
+ Content-Type: multipart/alternative;
27028
+ boundary="--==_mimepart_57112a48a3aef_81b63fe35e05e200719ee";
27029
+ charset=UTF-8
27030
+ Content-Transfer-Encoding: 7bit
27031
+
27032
+
27033
+ ----==_mimepart_57112a48a3aef_81b63fe35e05e200719ee
27034
+ Content-Type: text/plain;
27035
+ charset=UTF-8
27036
+ Content-Transfer-Encoding: 7bit
27037
+
27038
+ UserMailer#newsletter
27039
+
27040
+ Hi, find me in app/views/user_mailer/newsletter.text.erb
27041
+
27042
+
27043
+ ----==_mimepart_57112a48a3aef_81b63fe35e05e200719ee
27044
+ Content-Type: text/html;
27045
+ charset=UTF-8
27046
+ Content-Transfer-Encoding: 7bit
27047
+
27048
+ <html>
27049
+ <body>
27050
+ <h1>UserMailer#newsletter</h1>
27051
+
27052
+ <p>
27053
+ Hi, find me in app/views/user_mailer/newsletter.html.erb
27054
+ </p>
27055
+
27056
+ </body>
27057
+ </html>
27058
+
27059
+ ----==_mimepart_57112a48a3aef_81b63fe35e05e200719ee--
27060
+
27061
+  (0.0ms) SAVEPOINT active_record_1
27062
+ SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 2], ["drippable_id", 1], ["drippable_type", "User"], ["created_at", "2016-04-15 17:52:08.673750"], ["updated_at", "2016-04-15 17:52:08.673750"]]
27063
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27064
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
27065
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
27066
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE ("users"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (users.created_at >= '2016-04-15 17:52:08.000000') [["drippable_type", "User"], ["dripper_action_id", 1]]
27067
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
27068
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
27069
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE ("users"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (users.created_at >= '2016-04-15 17:52:08.000000') AND ("users"."username" IS NOT NULL) [["drippable_type", "User"], ["dripper_action_id", 2]]
27070
+  (2.6ms) rollback transaction
27071
+  (0.1ms) begin transaction
27072
+ -----------------------
27073
+ DripperTest: test_truth
27074
+ -----------------------
27075
+  (0.1ms) rollback transaction
27076
+  (0.0ms) begin transaction
27077
+ ---------------------------------
27078
+ Dripper::MessageTest: test_Config
27079
+ ---------------------------------
27080
+  (0.0ms) SAVEPOINT active_record_1
27081
+ SQL (0.2ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "foo@bar.com"], ["username", "foo"], ["created_at", "2016-04-15 17:52:08.684511"], ["updated_at", "2016-04-15 17:52:08.684511"]]
27082
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27083
+  (0.0ms) SAVEPOINT active_record_1
27084
+ SQL (0.3ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo2@bar.com"], ["created_at", "2016-04-15 17:52:08.685782"], ["updated_at", "2016-04-15 17:52:08.685782"]]
27085
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27086
+  (0.0ms) SAVEPOINT active_record_1
27087
+ SQL (0.0ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo3@bar.com"], ["created_at", "2016-04-15 17:52:08.686786"], ["updated_at", "2016-04-15 17:52:08.686786"]]
27088
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27089
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
27090
+  (0.0ms) SAVEPOINT active_record_1
27091
+ SQL (0.1ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "welcome"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:52:08.688459"], ["updated_at", "2016-04-15 17:52:08.688459"]]
27092
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27093
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "newsletter_2"], ["mailer", "user_mailer"]]
27094
+  (0.0ms) SAVEPOINT active_record_1
27095
+ SQL (0.0ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "newsletter_2"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:52:08.689799"], ["updated_at", "2016-04-15 17:52:08.689799"]]
27096
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27097
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
27098
+  (0.0ms) SAVEPOINT active_record_1
27099
+ SQL (0.0ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "newsletter"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:52:08.690944"], ["updated_at", "2016-04-15 17:52:08.690944"]]
27100
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27101
+  (0.5ms) rollback transaction
27102
+  (0.1ms) begin transaction
27103
+ --------------------------------------
27104
+ Dripper::MessageTest: test_Integration
27105
+ --------------------------------------
27106
+  (0.0ms) SAVEPOINT active_record_1
27107
+ SQL (0.1ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "foo@bar.com"], ["username", "foo"], ["created_at", "2016-04-15 17:52:08.692551"], ["updated_at", "2016-04-15 17:52:08.692551"]]
27108
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27109
+  (0.0ms) SAVEPOINT active_record_1
27110
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo2@bar.com"], ["created_at", "2016-04-15 17:52:08.693448"], ["updated_at", "2016-04-15 17:52:08.693448"]]
27111
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27112
+  (0.0ms) SAVEPOINT active_record_1
27113
+ SQL (0.0ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo3@bar.com"], ["created_at", "2016-04-15 17:52:08.694308"], ["updated_at", "2016-04-15 17:52:08.694308"]]
27114
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27115
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
27116
+  (0.0ms) SAVEPOINT active_record_1
27117
+ SQL (0.0ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "welcome"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:52:08.695469"], ["updated_at", "2016-04-15 17:52:08.695469"]]
27118
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27119
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "newsletter_2"], ["mailer", "user_mailer"]]
27120
+  (0.0ms) SAVEPOINT active_record_1
27121
+ SQL (0.0ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "newsletter_2"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:52:08.696472"], ["updated_at", "2016-04-15 17:52:08.696472"]]
27122
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27123
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
27124
+  (0.0ms) SAVEPOINT active_record_1
27125
+ SQL (0.0ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "newsletter"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:52:08.697479"], ["updated_at", "2016-04-15 17:52:08.697479"]]
27126
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27127
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
27128
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
27129
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE ("users"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (users.created_at >= '2016-04-15 17:52:08.000000') [["drippable_type", "User"], ["dripper_action_id", 1]]
27130
+  (0.0ms) SAVEPOINT active_record_1
27131
+ SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 1], ["drippable_type", "User"], ["created_at", "2016-04-15 17:52:08.699769"], ["updated_at", "2016-04-15 17:52:08.699769"]]
27132
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27133
+  (0.0ms) SAVEPOINT active_record_1
27134
+ SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 2], ["drippable_type", "User"], ["created_at", "2016-04-15 17:52:08.700764"], ["updated_at", "2016-04-15 17:52:08.700764"]]
27135
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27136
+  (0.0ms) SAVEPOINT active_record_1
27137
+ SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 3], ["drippable_type", "User"], ["created_at", "2016-04-15 17:52:08.701619"], ["updated_at", "2016-04-15 17:52:08.701619"]]
27138
+  (0.1ms) RELEASE SAVEPOINT active_record_1
27139
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter_2"], ["mailer", "user_mailer"]]
27140
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter_2"], ["mailer", "user_mailer"]]
27141
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE ("users"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (users.created_at >= '2016-04-15 17:52:08.000000') AND (users.created_at <= '2016-04-08 17:52:08.703190') [["drippable_type", "User"], ["dripper_action_id", 2]]
27142
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
27143
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
27144
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE ("users"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (users.created_at >= '2016-04-15 17:52:08.000000') AND ("users"."username" IS NOT NULL) [["drippable_type", "User"], ["dripper_action_id", 3]]
27145
+  (0.0ms) SAVEPOINT active_record_1
27146
+ SQL (0.0ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 3], ["drippable_id", 1], ["drippable_type", "User"], ["created_at", "2016-04-15 17:52:08.705027"], ["updated_at", "2016-04-15 17:52:08.705027"]]
27147
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27148
+  (0.5ms) rollback transaction
27149
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
27150
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
27151
+  (0.1ms) begin transaction
27152
+ -----------------------------------
27153
+ Dripper::RunTwiceTest: test_2nd_Run
27154
+ -----------------------------------
27155
+ Dripper::Action Load (0.1ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
27156
+  (0.0ms) SAVEPOINT active_record_1
27157
+ SQL (0.3ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "welcome"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:54:22.705091"], ["updated_at", "2016-04-15 17:54:22.705091"]]
27158
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27159
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
27160
+  (0.0ms) SAVEPOINT active_record_1
27161
+ SQL (0.2ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "newsletter"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:54:22.706693"], ["updated_at", "2016-04-15 17:54:22.706693"]]
27162
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27163
+  (0.0ms) SAVEPOINT active_record_1
27164
+ SQL (0.1ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "foo@bar.com"], ["username", "foo"], ["created_at", "2016-04-15 17:54:22.710050"], ["updated_at", "2016-04-15 17:54:22.710050"]]
27165
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27166
+  (0.0ms) SAVEPOINT active_record_1
27167
+ SQL (0.1ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo2@bar.com"], ["created_at", "2016-04-15 17:54:22.710778"], ["updated_at", "2016-04-15 17:54:22.710778"]]
27168
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27169
+  (0.0ms) SAVEPOINT active_record_1
27170
+ SQL (0.0ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo3@bar.com"], ["created_at", "2016-04-15 17:54:22.711370"], ["updated_at", "2016-04-15 17:54:22.711370"]]
27171
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27172
+ Dripper::Action Load (0.1ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
27173
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
27174
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (users.created_at >= '2016-04-15 17:54:22.000000') [["drippable_type", "User"], ["dripper_action_id", 1]]
27175
+ Rendered user_mailer/welcome.html.erb within layouts/mailer (0.7ms)
27176
+ Rendered user_mailer/welcome.text.erb within layouts/mailer (0.2ms)
27177
+
27178
+ UserMailer#welcome: processed outbound mail in 110.8ms
27179
+
27180
+ Sent mail to to@example.org (4.3ms)
27181
+ Date: Fri, 15 Apr 2016 10:54:22 -0700
27182
+ From: from@example.com
27183
+ To: to@example.org
27184
+ Message-ID: <57112acecbe46_82283ff4a845e2004276b@Douglass-MacBook-Pro.local.mail>
27185
+ Subject: Welcome
27186
+ Mime-Version: 1.0
27187
+ Content-Type: multipart/alternative;
27188
+ boundary="--==_mimepart_57112acecb28a_82283ff4a845e2004262e";
27189
+ charset=UTF-8
27190
+ Content-Transfer-Encoding: 7bit
27191
+
27192
+
27193
+ ----==_mimepart_57112acecb28a_82283ff4a845e2004262e
27194
+ Content-Type: text/plain;
27195
+ charset=UTF-8
27196
+ Content-Transfer-Encoding: 7bit
27197
+
27198
+ UserMailer#welcome
27199
+
27200
+ Hi, find me in app/views/user_mailer/welcome.text.erb
27201
+
27202
+
27203
+ ----==_mimepart_57112acecb28a_82283ff4a845e2004262e
27204
+ Content-Type: text/html;
27205
+ charset=UTF-8
27206
+ Content-Transfer-Encoding: 7bit
27207
+
27208
+ <html>
27209
+ <body>
27210
+ <h1>UserMailer#welcome</h1>
27211
+
27212
+ <p>
27213
+ Hi, find me in app/views/user_mailer/welcome.html.erb
27214
+ </p>
27215
+
27216
+ </body>
27217
+ </html>
27218
+
27219
+ ----==_mimepart_57112acecb28a_82283ff4a845e2004262e--
27220
+
27221
+  (0.0ms) SAVEPOINT active_record_1
27222
+ SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 1], ["drippable_type", "User"], ["created_at", "2016-04-15 17:54:22.842057"], ["updated_at", "2016-04-15 17:54:22.842057"]]
27223
+  (0.1ms) RELEASE SAVEPOINT active_record_1
27224
+ Rendered user_mailer/welcome.html.erb within layouts/mailer (0.0ms)
27225
+ Rendered user_mailer/welcome.text.erb within layouts/mailer (0.0ms)
27226
+
27227
+ UserMailer#welcome: processed outbound mail in 1.5ms
27228
+
27229
+ Sent mail to to@example.org (2.2ms)
27230
+ Date: Fri, 15 Apr 2016 10:54:22 -0700
27231
+ From: from@example.com
27232
+ To: to@example.org
27233
+ Message-ID: <57112acece6ef_82283ff4a845e200429d8@Douglass-MacBook-Pro.local.mail>
27234
+ Subject: Welcome
27235
+ Mime-Version: 1.0
27236
+ Content-Type: multipart/alternative;
27237
+ boundary="--==_mimepart_57112acece149_82283ff4a845e200428c3";
27238
+ charset=UTF-8
27239
+ Content-Transfer-Encoding: 7bit
27240
+
27241
+
27242
+ ----==_mimepart_57112acece149_82283ff4a845e200428c3
27243
+ Content-Type: text/plain;
27244
+ charset=UTF-8
27245
+ Content-Transfer-Encoding: 7bit
27246
+
27247
+ UserMailer#welcome
27248
+
27249
+ Hi, find me in app/views/user_mailer/welcome.text.erb
27250
+
27251
+
27252
+ ----==_mimepart_57112acece149_82283ff4a845e200428c3
27253
+ Content-Type: text/html;
27254
+ charset=UTF-8
27255
+ Content-Transfer-Encoding: 7bit
27256
+
27257
+ <html>
27258
+ <body>
27259
+ <h1>UserMailer#welcome</h1>
27260
+
27261
+ <p>
27262
+ Hi, find me in app/views/user_mailer/welcome.html.erb
27263
+ </p>
27264
+
27265
+ </body>
27266
+ </html>
27267
+
27268
+ ----==_mimepart_57112acece149_82283ff4a845e200428c3--
27269
+
27270
+  (0.0ms) SAVEPOINT active_record_1
27271
+ SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 2], ["drippable_type", "User"], ["created_at", "2016-04-15 17:54:22.847294"], ["updated_at", "2016-04-15 17:54:22.847294"]]
27272
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27273
+ Rendered user_mailer/welcome.html.erb within layouts/mailer (0.0ms)
27274
+ Rendered user_mailer/welcome.text.erb within layouts/mailer (0.0ms)
27275
+
27276
+ UserMailer#welcome: processed outbound mail in 1.2ms
27277
+
27278
+ Sent mail to to@example.org (2.2ms)
27279
+ Date: Fri, 15 Apr 2016 10:54:22 -0700
27280
+ From: from@example.com
27281
+ To: to@example.org
27282
+ Message-ID: <57112acecf8d2_82283ff4a845e2004318d@Douglass-MacBook-Pro.local.mail>
27283
+ Subject: Welcome
27284
+ Mime-Version: 1.0
27285
+ Content-Type: multipart/alternative;
27286
+ boundary="--==_mimepart_57112acecf373_82283ff4a845e2004308e";
27287
+ charset=UTF-8
27288
+ Content-Transfer-Encoding: 7bit
27289
+
27290
+
27291
+ ----==_mimepart_57112acecf373_82283ff4a845e2004308e
27292
+ Content-Type: text/plain;
27293
+ charset=UTF-8
27294
+ Content-Transfer-Encoding: 7bit
27295
+
27296
+ UserMailer#welcome
27297
+
27298
+ Hi, find me in app/views/user_mailer/welcome.text.erb
27299
+
27300
+
27301
+ ----==_mimepart_57112acecf373_82283ff4a845e2004308e
27302
+ Content-Type: text/html;
27303
+ charset=UTF-8
27304
+ Content-Transfer-Encoding: 7bit
27305
+
27306
+ <html>
27307
+ <body>
27308
+ <h1>UserMailer#welcome</h1>
27309
+
27310
+ <p>
27311
+ Hi, find me in app/views/user_mailer/welcome.html.erb
27312
+ </p>
27313
+
27314
+ </body>
27315
+ </html>
27316
+
27317
+ ----==_mimepart_57112acecf373_82283ff4a845e2004308e--
27318
+
27319
+  (0.0ms) SAVEPOINT active_record_1
27320
+ SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 3], ["drippable_type", "User"], ["created_at", "2016-04-15 17:54:22.851986"], ["updated_at", "2016-04-15 17:54:22.851986"]]
27321
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27322
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
27323
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
27324
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE ("users"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (users.created_at >= '2016-04-15 17:54:22.000000') AND ("users"."username" IS NOT NULL) [["drippable_type", "User"], ["dripper_action_id", 2]]
27325
+ Rendered user_mailer/newsletter.html.erb within layouts/mailer (0.2ms)
27326
+ Rendered user_mailer/newsletter.text.erb within layouts/mailer (0.1ms)
27327
+
27328
+ UserMailer#newsletter: processed outbound mail in 6.6ms
27329
+
27330
+ Sent mail to to@example.org (2.2ms)
27331
+ Date: Fri, 15 Apr 2016 10:54:22 -0700
27332
+ From: from@example.com
27333
+ To: to@example.org
27334
+ Message-ID: <57112aced2789_82283ff4a845e200433de@Douglass-MacBook-Pro.local.mail>
27335
+ Subject: Newsletter
27336
+ Mime-Version: 1.0
27337
+ Content-Type: multipart/alternative;
27338
+ boundary="--==_mimepart_57112aced21e9_82283ff4a845e2004321b";
27339
+ charset=UTF-8
27340
+ Content-Transfer-Encoding: 7bit
27341
+
27342
+
27343
+ ----==_mimepart_57112aced21e9_82283ff4a845e2004321b
27344
+ Content-Type: text/plain;
27345
+ charset=UTF-8
27346
+ Content-Transfer-Encoding: 7bit
27347
+
27348
+ UserMailer#newsletter
27349
+
27350
+ Hi, find me in app/views/user_mailer/newsletter.text.erb
27351
+
27352
+
27353
+ ----==_mimepart_57112aced21e9_82283ff4a845e2004321b
27354
+ Content-Type: text/html;
27355
+ charset=UTF-8
27356
+ Content-Transfer-Encoding: 7bit
27357
+
27358
+ <html>
27359
+ <body>
27360
+ <h1>UserMailer#newsletter</h1>
27361
+
27362
+ <p>
27363
+ Hi, find me in app/views/user_mailer/newsletter.html.erb
27364
+ </p>
27365
+
27366
+ </body>
27367
+ </html>
27368
+
27369
+ ----==_mimepart_57112aced21e9_82283ff4a845e2004321b--
27370
+
27371
+  (0.0ms) SAVEPOINT active_record_1
27372
+ SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 2], ["drippable_id", 1], ["drippable_type", "User"], ["created_at", "2016-04-15 17:54:22.863947"], ["updated_at", "2016-04-15 17:54:22.863947"]]
27373
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27374
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
27375
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
27376
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE ("users"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (users.created_at >= '2016-04-15 17:54:22.000000') [["drippable_type", "User"], ["dripper_action_id", 1]]
27377
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
27378
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
27379
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE ("users"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (users.created_at >= '2016-04-15 17:54:22.000000') AND ("users"."username" IS NOT NULL) [["drippable_type", "User"], ["dripper_action_id", 2]]
27380
+  (2.2ms) rollback transaction
27381
+  (0.0ms) begin transaction
27382
+ ---------------------------------
27383
+ Dripper::MessageTest: test_Config
27384
+ ---------------------------------
27385
+  (0.0ms) SAVEPOINT active_record_1
27386
+ SQL (0.2ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "foo@bar.com"], ["username", "foo"], ["created_at", "2016-04-15 17:54:22.870785"], ["updated_at", "2016-04-15 17:54:22.870785"]]
27387
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27388
+  (0.0ms) SAVEPOINT active_record_1
27389
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo2@bar.com"], ["created_at", "2016-04-15 17:54:22.871917"], ["updated_at", "2016-04-15 17:54:22.871917"]]
27390
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27391
+  (0.0ms) SAVEPOINT active_record_1
27392
+ SQL (0.0ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo3@bar.com"], ["created_at", "2016-04-15 17:54:22.872685"], ["updated_at", "2016-04-15 17:54:22.872685"]]
27393
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27394
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
27395
+  (0.0ms) SAVEPOINT active_record_1
27396
+ SQL (0.0ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "welcome"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:54:22.874067"], ["updated_at", "2016-04-15 17:54:22.874067"]]
27397
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27398
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "newsletter_2"], ["mailer", "user_mailer"]]
27399
+  (0.0ms) SAVEPOINT active_record_1
27400
+ SQL (0.0ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "newsletter_2"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:54:22.875104"], ["updated_at", "2016-04-15 17:54:22.875104"]]
27401
+  (0.1ms) RELEASE SAVEPOINT active_record_1
27402
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
27403
+  (0.0ms) SAVEPOINT active_record_1
27404
+ SQL (0.0ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "newsletter"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:54:22.876109"], ["updated_at", "2016-04-15 17:54:22.876109"]]
27405
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27406
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
27407
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
27408
+  (0.1ms) begin transaction
27409
+ -----------------------
27410
+ DripperTest: test_truth
27411
+ -----------------------
27412
+  (0.0ms) rollback transaction
27413
+  (0.0ms) begin transaction
27414
+ -----------------------------------
27415
+ Dripper::RunTwiceTest: test_2nd_Run
27416
+ -----------------------------------
27417
+ Dripper::Action Load (0.1ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
27418
+  (0.0ms) SAVEPOINT active_record_1
27419
+ SQL (0.1ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "welcome"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:54:44.877377"], ["updated_at", "2016-04-15 17:54:44.877377"]]
27420
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27421
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
27422
+  (0.0ms) SAVEPOINT active_record_1
27423
+ SQL (0.2ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "newsletter"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:54:44.878990"], ["updated_at", "2016-04-15 17:54:44.878990"]]
27424
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27425
+  (0.0ms) SAVEPOINT active_record_1
27426
+ SQL (0.1ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "foo@bar.com"], ["username", "foo"], ["created_at", "2016-04-15 17:54:44.882648"], ["updated_at", "2016-04-15 17:54:44.882648"]]
27427
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27428
+  (0.1ms) SAVEPOINT active_record_1
27429
+ SQL (0.1ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo2@bar.com"], ["created_at", "2016-04-15 17:54:44.883693"], ["updated_at", "2016-04-15 17:54:44.883693"]]
27430
+  (0.1ms) RELEASE SAVEPOINT active_record_1
27431
+  (0.0ms) SAVEPOINT active_record_1
27432
+ SQL (0.1ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo3@bar.com"], ["created_at", "2016-04-15 17:54:44.885123"], ["updated_at", "2016-04-15 17:54:44.885123"]]
27433
+  (0.1ms) RELEASE SAVEPOINT active_record_1
27434
+ Dripper::Action Load (0.1ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
27435
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
27436
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (users.created_at >= '2016-04-15 17:54:44.000000') [["drippable_type", "User"], ["dripper_action_id", 1]]
27437
+ Rendered user_mailer/welcome.html.erb within layouts/mailer (0.7ms)
27438
+ Rendered user_mailer/welcome.text.erb within layouts/mailer (0.2ms)
27439
+
27440
+ UserMailer#welcome: processed outbound mail in 114.2ms
27441
+
27442
+ Sent mail to to@example.org (4.4ms)
27443
+ Date: Fri, 15 Apr 2016 10:54:45 -0700
27444
+ From: from@example.com
27445
+ To: to@example.org
27446
+ Message-ID: <57112ae53e88_82813fdf8845e20897ba@Douglass-MacBook-Pro.local.mail>
27447
+ Subject: Welcome
27448
+ Mime-Version: 1.0
27449
+ Content-Type: multipart/alternative;
27450
+ boundary="--==_mimepart_57112ae53257_82813fdf8845e208969f";
27451
+ charset=UTF-8
27452
+ Content-Transfer-Encoding: 7bit
27453
+
27454
+
27455
+ ----==_mimepart_57112ae53257_82813fdf8845e208969f
27456
+ Content-Type: text/plain;
27457
+ charset=UTF-8
27458
+ Content-Transfer-Encoding: 7bit
27459
+
27460
+ UserMailer#welcome
27461
+
27462
+ Hi, find me in app/views/user_mailer/welcome.text.erb
27463
+
27464
+
27465
+ ----==_mimepart_57112ae53257_82813fdf8845e208969f
27466
+ Content-Type: text/html;
27467
+ charset=UTF-8
27468
+ Content-Transfer-Encoding: 7bit
27469
+
27470
+ <html>
27471
+ <body>
27472
+ <h1>UserMailer#welcome</h1>
27473
+
27474
+ <p>
27475
+ Hi, find me in app/views/user_mailer/welcome.html.erb
27476
+ </p>
27477
+
27478
+ </body>
27479
+ </html>
27480
+
27481
+ ----==_mimepart_57112ae53257_82813fdf8845e208969f--
27482
+
27483
+  (0.0ms) SAVEPOINT active_record_1
27484
+ SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 1], ["drippable_type", "User"], ["created_at", "2016-04-15 17:54:45.023122"], ["updated_at", "2016-04-15 17:54:45.023122"]]
27485
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27486
+ Rendered user_mailer/welcome.html.erb within layouts/mailer (0.1ms)
27487
+ Rendered user_mailer/welcome.text.erb within layouts/mailer (0.0ms)
27488
+
27489
+ UserMailer#welcome: processed outbound mail in 1.6ms
27490
+
27491
+ Sent mail to to@example.org (2.3ms)
27492
+ Date: Fri, 15 Apr 2016 10:54:45 -0700
27493
+ From: from@example.com
27494
+ To: to@example.org
27495
+ Message-ID: <57112ae56850_82813fdf8845e20899c3@Douglass-MacBook-Pro.local.mail>
27496
+ Subject: Welcome
27497
+ Mime-Version: 1.0
27498
+ Content-Type: multipart/alternative;
27499
+ boundary="--==_mimepart_57112ae562c1_82813fdf8845e20898e2";
27500
+ charset=UTF-8
27501
+ Content-Transfer-Encoding: 7bit
27502
+
27503
+
27504
+ ----==_mimepart_57112ae562c1_82813fdf8845e20898e2
27505
+ Content-Type: text/plain;
27506
+ charset=UTF-8
27507
+ Content-Transfer-Encoding: 7bit
27508
+
27509
+ UserMailer#welcome
27510
+
27511
+ Hi, find me in app/views/user_mailer/welcome.text.erb
27512
+
27513
+
27514
+ ----==_mimepart_57112ae562c1_82813fdf8845e20898e2
27515
+ Content-Type: text/html;
27516
+ charset=UTF-8
27517
+ Content-Transfer-Encoding: 7bit
27518
+
27519
+ <html>
27520
+ <body>
27521
+ <h1>UserMailer#welcome</h1>
27522
+
27523
+ <p>
27524
+ Hi, find me in app/views/user_mailer/welcome.html.erb
27525
+ </p>
27526
+
27527
+ </body>
27528
+ </html>
27529
+
27530
+ ----==_mimepart_57112ae562c1_82813fdf8845e20898e2--
27531
+
27532
+  (0.0ms) SAVEPOINT active_record_1
27533
+ SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 2], ["drippable_type", "User"], ["created_at", "2016-04-15 17:54:45.028566"], ["updated_at", "2016-04-15 17:54:45.028566"]]
27534
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27535
+ Rendered user_mailer/welcome.html.erb within layouts/mailer (0.1ms)
27536
+ Rendered user_mailer/welcome.text.erb within layouts/mailer (0.0ms)
27537
+
27538
+ UserMailer#welcome: processed outbound mail in 1.4ms
27539
+
27540
+ Sent mail to to@example.org (2.3ms)
27541
+ Date: Fri, 15 Apr 2016 10:54:45 -0700
27542
+ From: from@example.com
27543
+ To: to@example.org
27544
+ Message-ID: <57112ae57c54_82813fdf8845e20810128@Douglass-MacBook-Pro.local.mail>
27545
+ Subject: Welcome
27546
+ Mime-Version: 1.0
27547
+ Content-Type: multipart/alternative;
27548
+ boundary="--==_mimepart_57112ae57644_82813fdf8845e2081003b";
27549
+ charset=UTF-8
27550
+ Content-Transfer-Encoding: 7bit
27551
+
27552
+
27553
+ ----==_mimepart_57112ae57644_82813fdf8845e2081003b
27554
+ Content-Type: text/plain;
27555
+ charset=UTF-8
27556
+ Content-Transfer-Encoding: 7bit
27557
+
27558
+ UserMailer#welcome
27559
+
27560
+ Hi, find me in app/views/user_mailer/welcome.text.erb
27561
+
27562
+
27563
+ ----==_mimepart_57112ae57644_82813fdf8845e2081003b
27564
+ Content-Type: text/html;
27565
+ charset=UTF-8
27566
+ Content-Transfer-Encoding: 7bit
27567
+
27568
+ <html>
27569
+ <body>
27570
+ <h1>UserMailer#welcome</h1>
27571
+
27572
+ <p>
27573
+ Hi, find me in app/views/user_mailer/welcome.html.erb
27574
+ </p>
27575
+
27576
+ </body>
27577
+ </html>
27578
+
27579
+ ----==_mimepart_57112ae57644_82813fdf8845e2081003b--
27580
+
27581
+  (0.0ms) SAVEPOINT active_record_1
27582
+ SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 3], ["drippable_type", "User"], ["created_at", "2016-04-15 17:54:45.033671"], ["updated_at", "2016-04-15 17:54:45.033671"]]
27583
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27584
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
27585
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
27586
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE ("users"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (users.created_at >= '2016-04-15 17:54:44.000000') AND ("users"."username" IS NOT NULL) [["drippable_type", "User"], ["dripper_action_id", 2]]
27587
+ Rendered user_mailer/newsletter.html.erb within layouts/mailer (0.2ms)
27588
+ Rendered user_mailer/newsletter.text.erb within layouts/mailer (0.2ms)
27589
+
27590
+ UserMailer#newsletter: processed outbound mail in 6.7ms
27591
+
27592
+ Sent mail to to@example.org (2.3ms)
27593
+ Date: Fri, 15 Apr 2016 10:54:45 -0700
27594
+ From: from@example.com
27595
+ To: to@example.org
27596
+ Message-ID: <57112ae5ac14_82813fdf8845e208103a4@Douglass-MacBook-Pro.local.mail>
27597
+ Subject: Newsletter
27598
+ Mime-Version: 1.0
27599
+ Content-Type: multipart/alternative;
27600
+ boundary="--==_mimepart_57112ae5a658_82813fdf8845e208102b7";
27601
+ charset=UTF-8
27602
+ Content-Transfer-Encoding: 7bit
27603
+
27604
+
27605
+ ----==_mimepart_57112ae5a658_82813fdf8845e208102b7
27606
+ Content-Type: text/plain;
27607
+ charset=UTF-8
27608
+ Content-Transfer-Encoding: 7bit
27609
+
27610
+ UserMailer#newsletter
27611
+
27612
+ Hi, find me in app/views/user_mailer/newsletter.text.erb
27613
+
27614
+
27615
+ ----==_mimepart_57112ae5a658_82813fdf8845e208102b7
27616
+ Content-Type: text/html;
27617
+ charset=UTF-8
27618
+ Content-Transfer-Encoding: 7bit
27619
+
27620
+ <html>
27621
+ <body>
27622
+ <h1>UserMailer#newsletter</h1>
27623
+
27624
+ <p>
27625
+ Hi, find me in app/views/user_mailer/newsletter.html.erb
27626
+ </p>
27627
+
27628
+ </body>
27629
+ </html>
27630
+
27631
+ ----==_mimepart_57112ae5a658_82813fdf8845e208102b7--
27632
+
27633
+  (0.0ms) SAVEPOINT active_record_1
27634
+ SQL (0.0ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 2], ["drippable_id", 1], ["drippable_type", "User"], ["created_at", "2016-04-15 17:54:45.045917"], ["updated_at", "2016-04-15 17:54:45.045917"]]
27635
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27636
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
27637
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
27638
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE ("users"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (users.created_at >= '2016-04-15 17:54:44.000000') [["drippable_type", "User"], ["dripper_action_id", 1]]
27639
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
27640
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
27641
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE ("users"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (users.created_at >= '2016-04-15 17:54:44.000000') AND ("users"."username" IS NOT NULL) [["drippable_type", "User"], ["dripper_action_id", 2]]
27642
+  (2.1ms) rollback transaction
27643
+  (0.1ms) begin transaction
27644
+ ---------------------------------------
27645
+ Dripper::ConcernTest: test_Concern_Test
27646
+ ---------------------------------------
27647
+ Dripper::Action Load (0.1ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
27648
+  (0.1ms) SAVEPOINT active_record_1
27649
+ SQL (0.2ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "newsletter"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:54:45.054273"], ["updated_at", "2016-04-15 17:54:45.054273"]]
27650
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27651
+  (0.0ms) SAVEPOINT active_record_1
27652
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo@bar.com"], ["created_at", "2016-04-15 17:54:45.057186"], ["updated_at", "2016-04-15 17:54:45.057186"]]
27653
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27654
+  (0.0ms) SAVEPOINT active_record_1
27655
+ SQL (0.1ms) INSERT INTO "newsletters" ("user_id", "title", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["user_id", 1], ["title", "test"], ["created_at", "2016-04-15 17:54:45.061634"], ["updated_at", "2016-04-15 17:54:45.061634"]]
27656
+ [ActiveJob] Newsletter Load (0.1ms) SELECT "newsletters".* FROM "newsletters" WHERE "newsletters"."id" = ? LIMIT 1 [["id", 1]]
27657
+ [ActiveJob] [DripperJob] [8439dd7c-bfc4-42bd-966f-53392dfcc7f4] Performing DripperJob from Inline(default) with arguments: gid://dummy/Newsletter/1
27658
+ [ActiveJob] [DripperJob] [8439dd7c-bfc4-42bd-966f-53392dfcc7f4] Dripper::Action Load (0.1ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
27659
+ [ActiveJob] [DripperJob] [8439dd7c-bfc4-42bd-966f-53392dfcc7f4] Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
27660
+ [ActiveJob] [DripperJob] [8439dd7c-bfc4-42bd-966f-53392dfcc7f4] Newsletter Load (0.1ms) SELECT "newsletters".* FROM "newsletters" WHERE ("newsletters"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (newsletters.created_at >= '2016-04-15 17:54:45.000000') AND "newsletters"."id" = ? [["drippable_type", "Newsletter"], ["dripper_action_id", 1], ["id", 1]]
27661
+ [ActiveJob] [DripperJob] [8439dd7c-bfc4-42bd-966f-53392dfcc7f4] SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 1], ["drippable_type", "Newsletter"], ["created_at", "2016-04-15 17:54:45.066367"], ["updated_at", "2016-04-15 17:54:45.066367"]]
27662
+ [ActiveJob] [DripperJob] [8439dd7c-bfc4-42bd-966f-53392dfcc7f4] Performed DripperJob from Inline(default) in 2.52ms
27663
+ [ActiveJob] Enqueued DripperJob (Job ID: 8439dd7c-bfc4-42bd-966f-53392dfcc7f4) to Inline(default) with arguments: gid://dummy/Newsletter/1
27664
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27665
+  (0.6ms) rollback transaction
27666
+  (0.0ms) begin transaction
27667
+ ---------------------------------
27668
+ Dripper::MessageTest: test_Config
27669
+ ---------------------------------
27670
+  (0.0ms) SAVEPOINT active_record_1
27671
+ SQL (0.1ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "foo@bar.com"], ["username", "foo"], ["created_at", "2016-04-15 17:54:45.068868"], ["updated_at", "2016-04-15 17:54:45.068868"]]
27672
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27673
+  (0.0ms) SAVEPOINT active_record_1
27674
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo2@bar.com"], ["created_at", "2016-04-15 17:54:45.069686"], ["updated_at", "2016-04-15 17:54:45.069686"]]
27675
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27676
+  (0.0ms) SAVEPOINT active_record_1
27677
+ SQL (0.0ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo3@bar.com"], ["created_at", "2016-04-15 17:54:45.070478"], ["updated_at", "2016-04-15 17:54:45.070478"]]
27678
+  (0.1ms) RELEASE SAVEPOINT active_record_1
27679
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
27680
+  (0.0ms) SAVEPOINT active_record_1
27681
+ SQL (0.0ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "welcome"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:54:45.071689"], ["updated_at", "2016-04-15 17:54:45.071689"]]
27682
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27683
+ Dripper::Action Load (0.1ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "newsletter_2"], ["mailer", "user_mailer"]]
27684
+  (0.0ms) SAVEPOINT active_record_1
27685
+ SQL (0.0ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "newsletter_2"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:54:45.072726"], ["updated_at", "2016-04-15 17:54:45.072726"]]
27686
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27687
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
27688
+  (0.0ms) SAVEPOINT active_record_1
27689
+ SQL (0.0ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "newsletter"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:54:45.073648"], ["updated_at", "2016-04-15 17:54:45.073648"]]
27690
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27691
+  (0.5ms) rollback transaction
27692
+  (0.0ms) begin transaction
27693
+ --------------------------------------
27694
+ Dripper::MessageTest: test_Integration
27695
+ --------------------------------------
27696
+  (0.0ms) SAVEPOINT active_record_1
27697
+ SQL (0.2ms) INSERT INTO "users" ("email", "username", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "foo@bar.com"], ["username", "foo"], ["created_at", "2016-04-15 17:54:45.075130"], ["updated_at", "2016-04-15 17:54:45.075130"]]
27698
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27699
+  (0.0ms) SAVEPOINT active_record_1
27700
+ SQL (0.2ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo2@bar.com"], ["created_at", "2016-04-15 17:54:45.075952"], ["updated_at", "2016-04-15 17:54:45.075952"]]
27701
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27702
+  (0.0ms) SAVEPOINT active_record_1
27703
+ SQL (0.0ms) INSERT INTO "users" ("email", "created_at", "updated_at") VALUES (?, ?, ?) [["email", "foo3@bar.com"], ["created_at", "2016-04-15 17:54:45.076737"], ["updated_at", "2016-04-15 17:54:45.076737"]]
27704
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27705
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
27706
+  (0.0ms) SAVEPOINT active_record_1
27707
+ SQL (0.0ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "welcome"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:54:45.077733"], ["updated_at", "2016-04-15 17:54:45.077733"]]
27708
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27709
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "newsletter_2"], ["mailer", "user_mailer"]]
27710
+  (0.0ms) SAVEPOINT active_record_1
27711
+ SQL (0.0ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "newsletter_2"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:54:45.078833"], ["updated_at", "2016-04-15 17:54:45.078833"]]
27712
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27713
+ Dripper::Action Load (0.1ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? ORDER BY "dripper_actions"."id" ASC LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
27714
+  (0.0ms) SAVEPOINT active_record_1
27715
+ SQL (0.0ms) INSERT INTO "dripper_actions" ("action", "mailer", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["action", "newsletter"], ["mailer", "user_mailer"], ["created_at", "2016-04-15 17:54:45.079872"], ["updated_at", "2016-04-15 17:54:45.079872"]]
27716
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27717
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
27718
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "welcome"], ["mailer", "user_mailer"]]
27719
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE ("users"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (users.created_at >= '2016-04-15 17:54:45.000000') [["drippable_type", "User"], ["dripper_action_id", 1]]
27720
+  (0.0ms) SAVEPOINT active_record_1
27721
+ SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 1], ["drippable_type", "User"], ["created_at", "2016-04-15 17:54:45.082206"], ["updated_at", "2016-04-15 17:54:45.082206"]]
27722
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27723
+  (0.0ms) SAVEPOINT active_record_1
27724
+ SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 2], ["drippable_type", "User"], ["created_at", "2016-04-15 17:54:45.083146"], ["updated_at", "2016-04-15 17:54:45.083146"]]
27725
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27726
+  (0.0ms) SAVEPOINT active_record_1
27727
+ SQL (0.0ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 1], ["drippable_id", 3], ["drippable_type", "User"], ["created_at", "2016-04-15 17:54:45.084048"], ["updated_at", "2016-04-15 17:54:45.084048"]]
27728
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27729
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter_2"], ["mailer", "user_mailer"]]
27730
+ Dripper::Action Load (0.0ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter_2"], ["mailer", "user_mailer"]]
27731
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (users.created_at >= '2016-04-15 17:54:45.000000') AND (users.created_at <= '2016-04-08 17:54:45.085493') [["drippable_type", "User"], ["dripper_action_id", 2]]
27732
+ Dripper::Action Load (0.1ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
27733
+ Dripper::Action Load (0.1ms) SELECT "dripper_actions".* FROM "dripper_actions" WHERE "dripper_actions"."action" = ? AND "dripper_actions"."mailer" = ? LIMIT 1 [["action", "newsletter"], ["mailer", "user_mailer"]]
27734
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."id" NOT IN (SELECT "dripper_messages"."drippable_id" FROM "dripper_messages" WHERE "dripper_messages"."drippable_type" = ? AND "dripper_messages"."dripper_action_id" = ?)) AND (users.created_at >= '2016-04-15 17:54:45.000000') AND ("users"."username" IS NOT NULL) [["drippable_type", "User"], ["dripper_action_id", 3]]
27735
+  (0.0ms) SAVEPOINT active_record_1
27736
+ SQL (0.1ms) INSERT INTO "dripper_messages" ("dripper_action_id", "drippable_id", "drippable_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["dripper_action_id", 3], ["drippable_id", 1], ["drippable_type", "User"], ["created_at", "2016-04-15 17:54:45.089568"], ["updated_at", "2016-04-15 17:54:45.089568"]]
27737
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27738
+  (0.5ms) rollback transaction