pointless_feedback 1.0.2 → 1.0.3

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: 22c0743002d373401305b783af5a1eb1d5f894df
4
- data.tar.gz: de0bec8b6b7f0ad40472a8c60c793336d5aed801
3
+ metadata.gz: 46e5258181867ea69cc450bb999392f43ed9f930
4
+ data.tar.gz: 0cca5d58b61a86aa77814a6ae48a55a4f28d951a
5
5
  SHA512:
6
- metadata.gz: 46abc7c95c0aa00090624e45d8dd9e2ac134d92c2df9fb2976f1dc3a0d3bf06586bbc04dc9f0f2b10ea4780a84dfc558028f04118cd6496e869ded1df32570da
7
- data.tar.gz: 7ab344903b80b2f536078b80dca080ddfefcf47db19f9736798adc045c4fdff41511c51560acd67f6791029eacf0b3ea0b8fe279a621e61758f88d96555d8eed
6
+ metadata.gz: 99641b0afb3b217478ed87ffc248aa365ea8ae4b8b332aaacd19e58ca9ce3ca9deed61f1e2288c3b2de9277670ff98d1d12d7f87d754f838bed140248a80b9e9
7
+ data.tar.gz: b5ab459a0c8a4c869512d17a95fafcd596ed7aa0d441fd326bdb5f8d6358b67baefbddeb7c4910d36daddb52e7e7fed00d179521104b1950f8aff0dd5f54fab1
data/README.md CHANGED
@@ -13,10 +13,11 @@ under [Pointless Corp](http://www.pointlesscorp.com/).*
13
13
  ## Contents
14
14
 
15
15
  1. [Installation](#installation)
16
- 2. [Customization](#customization)
17
- 3. [Development](#development)
18
- 4. [Roadmap](#roadmap)
19
- 5. [Contributors](#contributors)
16
+ 2. [Configuration](#configuration)
17
+ 3. [Customization](#customization)
18
+ 4. [Development](#development)
19
+ 5. [Roadmap](#roadmap)
20
+ 6. [Contributors](#contributors)
20
21
 
21
22
  ## Installation
22
23
 
@@ -59,6 +60,25 @@ root :to => 'home#index'
59
60
  That's it! Start your Rails server and navigate to `/feedback` to see a basic
60
61
  feedback form that users can submit.
61
62
 
63
+ ## Configuration
64
+
65
+ There are a number of configuration variables you can set in the initializer generated by `rails generate pointless_feedback:install`
66
+
67
+ **message_topics:**
68
+ Defaults to `['Error on page', 'Other']`. Populates the "Topic" dropdown for feedback submissions.
69
+
70
+ **email_feedback:**
71
+ Defaults to `false`. If set to `true` will send feedback as an email.
72
+
73
+ **send_from_submitter:**
74
+ Defaults to `false`. If set to `true` will use the submitted email address as the from address for feedback emails.
75
+
76
+ **to_emails:**
77
+ Specifies to what addresses feedback email is sent to.
78
+
79
+ **from_email:**
80
+ Specifies what address the feedback email is sent from.
81
+
62
82
  ## Customization
63
83
 
64
84
  Pointless Feedback provides you with a simple setup that should cover most
@@ -1,14 +1,21 @@
1
1
  module PointlessFeedback
2
2
  class FeedbackMailer < ActionMailer::Base
3
- default :from => PointlessFeedback.from_email
4
-
5
3
  def feedback(message)
6
4
  @message = message
7
- mail(:to => to_emails, :subject => feedback_subject)
5
+
6
+ mail(:to => to_emails, :subject => feedback_subject, :from => from_address)
8
7
  end
9
8
 
10
9
  private
11
10
 
11
+ def from_address
12
+ if PointlessFeedback.send_from_submitter
13
+ @message.email_address
14
+ else
15
+ PointlessFeedback.from_email
16
+ end
17
+ end
18
+
12
19
  def to_emails
13
20
  Array(PointlessFeedback.to_emails)
14
21
  end
@@ -1,13 +1,13 @@
1
1
  PointlessFeedback.setup do |config|
2
- # ==> Message Configuration
2
+ # ==> Feedback Configuration
3
3
  # Configure the topics for the user to choose from on the feedback form
4
4
  # config.message_topics = ['Error on page', 'Other']
5
5
 
6
6
  # ==> Email Configuration
7
7
  # Configure feedback email properties (disabled by default)
8
8
  # Variables needed for emailing feedback
9
- config.email_feedback = false
10
- # config.from_email = 'feedback@pointlesscorp.com'
11
- # config.to_emails = ['first@example.com', 'second@example.com']
12
-
9
+ # config.email_feedback = false
10
+ # config.send_from_submitter = false
11
+ # config.from_email = 'feedback@pointlesscorp.com'
12
+ # config.to_emails = ['first@example.com', 'second@example.com']
13
13
  end
@@ -17,9 +17,14 @@ module PointlessFeedback
17
17
 
18
18
  # Variables needed for emailing feedback
19
19
  mattr_accessor :email_feedback
20
- @@send_emails = false
20
+ @@email_feedback = false
21
+
21
22
  mattr_accessor :from_email
22
23
  @@from_email = 'feedback@pointlesscorp.com'
24
+
25
+ mattr_accessor :send_from_submitter
26
+ @@send_from_submitter = false
27
+
23
28
  mattr_accessor :to_emails
24
29
  @@to_emails = ['first@example.com', 'second@example.com']
25
30
 
@@ -1,3 +1,3 @@
1
1
  module PointlessFeedback
2
- VERSION = "1.0.2"
2
+ VERSION = "1.0.3"
3
3
  end
@@ -13648,3 +13648,1968 @@ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
13648
13648
   (0.0ms) rollback transaction
13649
13649
   (0.0ms) begin transaction
13650
13650
   (0.0ms) rollback transaction
13651
+ Connecting to database specified by database.yml
13652
+  (0.3ms) begin transaction
13653
+  (0.0ms) rollback transaction
13654
+  (0.0ms) begin transaction
13655
+ Started GET "/pointless_feedback" for 127.0.0.1 at 2014-12-03 14:47:12 -0700
13656
+ Processing by PointlessFeedback::MessagesController#new as HTML
13657
+ Rendered /Users/efatsi/Desktop/Projects/Gems/pointless-feedback/app/views/pointless_feedback/messages/new.html.erb within layouts/application (8.3ms)
13658
+ Completed 200 OK in 32ms (Views: 15.9ms | ActiveRecord: 1.0ms)
13659
+  (0.1ms) rollback transaction
13660
+  (0.0ms) begin transaction
13661
+  (0.0ms) SAVEPOINT active_record_1
13662
+ SQL (3.6ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:47:12 UTC +00:00], ["description", "Site is broke"], ["email_address", "developer@pointlesscorp.com"], ["name", "A Developer"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:47:12 UTC +00:00]]
13663
+  (0.1ms) RELEASE SAVEPOINT active_record_1
13664
+  (1.0ms) rollback transaction
13665
+  (0.1ms) begin transaction
13666
+  (0.0ms) SAVEPOINT active_record_1
13667
+ SQL (0.4ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:47:12 UTC +00:00], ["description", "Site is broke"], ["email_address", "developer@pointlesscorp.com"], ["name", "A Developer"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:47:12 UTC +00:00]]
13668
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13669
+  (0.3ms) rollback transaction
13670
+  (0.0ms) begin transaction
13671
+  (0.0ms) SAVEPOINT active_record_1
13672
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:47:12 UTC +00:00], ["description", "Site is broke"], ["email_address", "developer@pointlesscorp.com"], ["name", "A Developer"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:47:12 UTC +00:00]]
13673
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13674
+  (0.3ms) rollback transaction
13675
+  (0.0ms) begin transaction
13676
+  (0.0ms) SAVEPOINT active_record_1
13677
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:47:12 UTC +00:00], ["description", "Site is broke"], ["email_address", "developer@pointlesscorp.com"], ["name", "A Developer"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:47:12 UTC +00:00]]
13678
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13679
+  (0.4ms) rollback transaction
13680
+  (0.0ms) begin transaction
13681
+  (0.0ms) SAVEPOINT active_record_1
13682
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
13683
+  (0.0ms) rollback transaction
13684
+  (0.0ms) begin transaction
13685
+  (0.0ms) SAVEPOINT active_record_1
13686
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
13687
+  (0.0ms) rollback transaction
13688
+  (0.0ms) begin transaction
13689
+  (0.0ms) SAVEPOINT active_record_1
13690
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
13691
+  (0.0ms) rollback transaction
13692
+  (0.0ms) begin transaction
13693
+  (0.0ms) SAVEPOINT active_record_1
13694
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
13695
+  (0.0ms) rollback transaction
13696
+  (0.0ms) begin transaction
13697
+  (0.0ms) rollback transaction
13698
+  (0.0ms) begin transaction
13699
+  (0.0ms) rollback transaction
13700
+  (0.1ms) begin transaction
13701
+  (0.0ms) SAVEPOINT active_record_1
13702
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:47:12 UTC +00:00], ["description", "Site is broke"], ["email_address", "developer@pointlesscorp.com"], ["name", "A Developer"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:47:12 UTC +00:00]]
13703
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13704
+  (0.3ms) rollback transaction
13705
+  (0.0ms) begin transaction
13706
+  (0.0ms) SAVEPOINT active_record_1
13707
+ SQL (0.2ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:47:12 UTC +00:00], ["description", "Site is broke"], ["email_address", "developer@pointlesscorp.com"], ["name", "A Developer"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:47:12 UTC +00:00]]
13708
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13709
+  (0.4ms) rollback transaction
13710
+  (0.0ms) begin transaction
13711
+  (0.0ms) SAVEPOINT active_record_1
13712
+ SQL (0.2ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:47:12 UTC +00:00], ["description", "Site is broke"], ["email_address", "developer@pointlesscorp.com"], ["name", "A Developer"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:47:12 UTC +00:00]]
13713
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13714
+  (0.2ms) rollback transaction
13715
+  (0.0ms) begin transaction
13716
+ Processing by PointlessFeedback::MessagesController#new as HTML
13717
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
13718
+  (0.0ms) rollback transaction
13719
+  (0.0ms) begin transaction
13720
+ Processing by PointlessFeedback::MessagesController#new as HTML
13721
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
13722
+  (0.0ms) rollback transaction
13723
+  (0.0ms) begin transaction
13724
+ Processing by PointlessFeedback::MessagesController#new as HTML
13725
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
13726
+  (0.0ms) rollback transaction
13727
+  (0.0ms) begin transaction
13728
+  (0.0ms) rollback transaction
13729
+  (0.0ms) begin transaction
13730
+  (0.0ms) rollback transaction
13731
+  (0.0ms) begin transaction
13732
+  (0.0ms) rollback transaction
13733
+  (0.0ms) begin transaction
13734
+ Processing by PointlessFeedback::MessagesController#create as HTML
13735
+ Parameters: {"message"=>{"name"=>""}}
13736
+  (0.0ms) SAVEPOINT active_record_1
13737
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
13738
+ Completed 200 OK in 7ms (Views: 4.5ms | ActiveRecord: 0.1ms)
13739
+  (0.0ms) rollback transaction
13740
+  (0.0ms) begin transaction
13741
+ Processing by PointlessFeedback::MessagesController#create as HTML
13742
+ Parameters: {"message"=>{"name"=>""}}
13743
+  (0.0ms) SAVEPOINT active_record_1
13744
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
13745
+ Completed 200 OK in 6ms (Views: 4.0ms | ActiveRecord: 0.1ms)
13746
+  (0.0ms) rollback transaction
13747
+  (0.0ms) begin transaction
13748
+ Processing by PointlessFeedback::MessagesController#create as HTML
13749
+ Parameters: {"message"=>{"name"=>""}}
13750
+  (0.0ms) SAVEPOINT active_record_1
13751
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
13752
+ Completed 200 OK in 6ms (Views: 4.1ms | ActiveRecord: 0.1ms)
13753
+  (0.0ms) rollback transaction
13754
+  (0.0ms) begin transaction
13755
+ Processing by PointlessFeedback::MessagesController#create as HTML
13756
+ Parameters: {"message"=>{"name"=>"Some Guy", "email_address"=>"some_guy@web.com", "topic"=>"Other", "description"=>"Yo website bork"}}
13757
+  (0.0ms) SAVEPOINT active_record_1
13758
+ SQL (0.4ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:47:12 UTC +00:00], ["description", "Yo website bork"], ["email_address", "some_guy@web.com"], ["name", "Some Guy"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:47:12 UTC +00:00]]
13759
+
13760
+ Sent mail to test1@example.com, test2@example.com (8ms)
13761
+ Date: Wed, 03 Dec 2014 14:47:12 -0700
13762
+ From: some_guy@web.com
13763
+ To: test1@example.com,
13764
+ test2@example.com
13765
+ Message-ID: <547f84e0d07db_bcc53ff185c2dbb44646d@Eliass-MacBook-Pro.local.mail>
13766
+ Subject: Feedback
13767
+ Mime-Version: 1.0
13768
+ Content-Type: text/html;
13769
+ charset=UTF-8
13770
+ Content-Transfer-Encoding: 7bit
13771
+
13772
+ You've got feedback!
13773
+
13774
+ <p>Name: Some Guy</p>
13775
+ <p>Email Address: some_guy@web.com</p>
13776
+ <p>Topic: Other</p>
13777
+ <p>Description: Yo website bork</p>
13778
+
13779
+  (0.1ms) RELEASE SAVEPOINT active_record_1
13780
+ Redirected to http://test.host/
13781
+ Completed 302 Found in 16ms (ActiveRecord: 0.5ms)
13782
+  (0.5ms) rollback transaction
13783
+  (0.0ms) begin transaction
13784
+ Processing by PointlessFeedback::MessagesController#create as HTML
13785
+ Parameters: {"message"=>{"name"=>"Some Guy", "email_address"=>"some_guy@web.com", "topic"=>"Other", "description"=>"Yo website bork"}}
13786
+  (0.0ms) SAVEPOINT active_record_1
13787
+ SQL (0.4ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:47:12 UTC +00:00], ["description", "Yo website bork"], ["email_address", "some_guy@web.com"], ["name", "Some Guy"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:47:12 UTC +00:00]]
13788
+
13789
+ Sent mail to test1@example.com, test2@example.com (5ms)
13790
+ Date: Wed, 03 Dec 2014 14:47:12 -0700
13791
+ From: some_guy@web.com
13792
+ To: test1@example.com,
13793
+ test2@example.com
13794
+ Message-ID: <547f84e0d5910_bcc53ff185c2dbb44657@Eliass-MacBook-Pro.local.mail>
13795
+ Subject: Feedback
13796
+ Mime-Version: 1.0
13797
+ Content-Type: text/html;
13798
+ charset=UTF-8
13799
+ Content-Transfer-Encoding: 7bit
13800
+
13801
+ You've got feedback!
13802
+
13803
+ <p>Name: Some Guy</p>
13804
+ <p>Email Address: some_guy@web.com</p>
13805
+ <p>Topic: Other</p>
13806
+ <p>Description: Yo website bork</p>
13807
+
13808
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13809
+ Redirected to http://test.host/
13810
+ Completed 302 Found in 14ms (ActiveRecord: 0.5ms)
13811
+  (0.4ms) rollback transaction
13812
+  (0.0ms) begin transaction
13813
+ Processing by PointlessFeedback::MessagesController#create as HTML
13814
+ Parameters: {"message"=>{"name"=>"Some Guy", "email_address"=>"some_guy@web.com", "topic"=>"Other", "description"=>"Yo website bork"}}
13815
+  (0.0ms) SAVEPOINT active_record_1
13816
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:47:12 UTC +00:00], ["description", "Yo website bork"], ["email_address", "some_guy@web.com"], ["name", "Some Guy"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:47:12 UTC +00:00]]
13817
+
13818
+ Sent mail to test1@example.com, test2@example.com (5ms)
13819
+ Date: Wed, 03 Dec 2014 14:47:12 -0700
13820
+ From: some_guy@web.com
13821
+ To: test1@example.com,
13822
+ test2@example.com
13823
+ Message-ID: <547f84e0d8fd6_bcc53ff185c2dbb446667@Eliass-MacBook-Pro.local.mail>
13824
+ Subject: Feedback
13825
+ Mime-Version: 1.0
13826
+ Content-Type: text/html;
13827
+ charset=UTF-8
13828
+ Content-Transfer-Encoding: 7bit
13829
+
13830
+ You've got feedback!
13831
+
13832
+ <p>Name: Some Guy</p>
13833
+ <p>Email Address: some_guy@web.com</p>
13834
+ <p>Topic: Other</p>
13835
+ <p>Description: Yo website bork</p>
13836
+
13837
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13838
+ Redirected to http://test.host/
13839
+ Completed 302 Found in 12ms (ActiveRecord: 0.4ms)
13840
+  (0.4ms) rollback transaction
13841
+  (0.0ms) begin transaction
13842
+ Processing by PointlessFeedback::MessagesController#create as HTML
13843
+ Parameters: {"message"=>{"name"=>"Some Guy", "email_address"=>"some_guy@web.com", "topic"=>"Other", "description"=>"Yo website bork"}}
13844
+  (0.0ms) SAVEPOINT active_record_1
13845
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:47:12 UTC +00:00], ["description", "Yo website bork"], ["email_address", "some_guy@web.com"], ["name", "Some Guy"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:47:12 UTC +00:00]]
13846
+
13847
+ Sent mail to test1@example.com, test2@example.com (14ms)
13848
+ Date: Wed, 03 Dec 2014 14:47:12 -0700
13849
+ From: some_guy@web.com
13850
+ To: test1@example.com,
13851
+ test2@example.com
13852
+ Message-ID: <547f84e0deef4_bcc53ff185c2dbb44677@Eliass-MacBook-Pro.local.mail>
13853
+ Subject: Feedback
13854
+ Mime-Version: 1.0
13855
+ Content-Type: text/html;
13856
+ charset=UTF-8
13857
+ Content-Transfer-Encoding: 7bit
13858
+
13859
+ You've got feedback!
13860
+
13861
+ <p>Name: Some Guy</p>
13862
+ <p>Email Address: some_guy@web.com</p>
13863
+ <p>Topic: Other</p>
13864
+ <p>Description: Yo website bork</p>
13865
+
13866
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13867
+ Redirected to http://test.host/dashboard
13868
+ Completed 302 Found in 21ms (ActiveRecord: 0.4ms)
13869
+  (0.4ms) rollback transaction
13870
+  (0.0ms) begin transaction
13871
+ Processing by PointlessFeedback::MessagesController#create as HTML
13872
+ Parameters: {"message"=>{"name"=>"Some Guy", "email_address"=>"some_guy@web.com", "topic"=>"Other", "description"=>"Yo website bork"}}
13873
+  (0.0ms) SAVEPOINT active_record_1
13874
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:47:12 UTC +00:00], ["description", "Yo website bork"], ["email_address", "some_guy@web.com"], ["name", "Some Guy"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:47:12 UTC +00:00]]
13875
+
13876
+ Sent mail to test1@example.com, test2@example.com (5ms)
13877
+ Date: Wed, 03 Dec 2014 14:47:12 -0700
13878
+ From: some_guy@web.com
13879
+ To: test1@example.com,
13880
+ test2@example.com
13881
+ Message-ID: <547f84e0e293d_bcc53ff185c2dbb44683b@Eliass-MacBook-Pro.local.mail>
13882
+ Subject: Feedback
13883
+ Mime-Version: 1.0
13884
+ Content-Type: text/html;
13885
+ charset=UTF-8
13886
+ Content-Transfer-Encoding: 7bit
13887
+
13888
+ You've got feedback!
13889
+
13890
+ <p>Name: Some Guy</p>
13891
+ <p>Email Address: some_guy@web.com</p>
13892
+ <p>Topic: Other</p>
13893
+ <p>Description: Yo website bork</p>
13894
+
13895
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13896
+ Redirected to http://test.host/dashboard
13897
+ Completed 302 Found in 12ms (ActiveRecord: 0.4ms)
13898
+  (0.3ms) rollback transaction
13899
+  (0.0ms) begin transaction
13900
+ Processing by PointlessFeedback::MessagesController#create as HTML
13901
+ Parameters: {"message"=>{"name"=>"Some Guy", "email_address"=>"some_guy@web.com", "topic"=>"Other", "description"=>"Yo website bork"}}
13902
+  (0.0ms) SAVEPOINT active_record_1
13903
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:47:12 UTC +00:00], ["description", "Yo website bork"], ["email_address", "some_guy@web.com"], ["name", "Some Guy"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:47:12 UTC +00:00]]
13904
+
13905
+ Sent mail to test1@example.com, test2@example.com (5ms)
13906
+ Date: Wed, 03 Dec 2014 14:47:12 -0700
13907
+ From: some_guy@web.com
13908
+ To: test1@example.com,
13909
+ test2@example.com
13910
+ Message-ID: <547f84e0e623d_bcc53ff185c2dbb44698a@Eliass-MacBook-Pro.local.mail>
13911
+ Subject: Feedback
13912
+ Mime-Version: 1.0
13913
+ Content-Type: text/html;
13914
+ charset=UTF-8
13915
+ Content-Transfer-Encoding: 7bit
13916
+
13917
+ You've got feedback!
13918
+
13919
+ <p>Name: Some Guy</p>
13920
+ <p>Email Address: some_guy@web.com</p>
13921
+ <p>Topic: Other</p>
13922
+ <p>Description: Yo website bork</p>
13923
+
13924
+  (0.1ms) RELEASE SAVEPOINT active_record_1
13925
+ Redirected to http://test.host/dashboard
13926
+ Completed 302 Found in 12ms (ActiveRecord: 0.4ms)
13927
+  (0.3ms) rollback transaction
13928
+  (0.0ms) begin transaction
13929
+ Started GET "/pointless_feedback" for 127.0.0.1 at 2014-12-03 14:47:12 -0700
13930
+ Processing by PointlessFeedback::MessagesController#new as HTML
13931
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
13932
+ Started POST "/pointless_feedback/messages" for 127.0.0.1 at 2014-12-03 14:47:12 -0700
13933
+ Processing by PointlessFeedback::MessagesController#create as HTML
13934
+ Parameters: {"utf8"=>"✓", "message"=>{"name"=>"Eli", "email_address"=>"eli@example.com", "topic"=>"Other", "description"=>"This site is awful", "contact_info"=>""}, "commit"=>"Submit"}
13935
+  (0.0ms) SAVEPOINT active_record_1
13936
+ SQL (0.4ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:47:12 UTC +00:00], ["description", "This site is awful"], ["email_address", "eli@example.com"], ["name", "Eli"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:47:12 UTC +00:00]]
13937
+
13938
+ Sent mail to test1@example.com, test2@example.com (5ms)
13939
+ Date: Wed, 03 Dec 2014 14:47:12 -0700
13940
+ From: eli@example.com
13941
+ To: test1@example.com,
13942
+ test2@example.com
13943
+ Message-ID: <547f84e0ede07_bcc53ff185c2dbb4470fc@Eliass-MacBook-Pro.local.mail>
13944
+ Subject: Feedback
13945
+ Mime-Version: 1.0
13946
+ Content-Type: text/html;
13947
+ charset=UTF-8
13948
+ Content-Transfer-Encoding: 7bit
13949
+
13950
+ You've got feedback!
13951
+
13952
+ <p>Name: Eli</p>
13953
+ <p>Email Address: eli@example.com</p>
13954
+ <p>Topic: Other</p>
13955
+ <p>Description: This site is awful</p>
13956
+
13957
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13958
+ Redirected to http://www.example.com/
13959
+ Completed 302 Found in 13ms (ActiveRecord: 0.5ms)
13960
+ Started GET "/" for 127.0.0.1 at 2014-12-03 14:47:12 -0700
13961
+ Processing by HomeController#index as HTML
13962
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
13963
+  (0.4ms) rollback transaction
13964
+  (0.0ms) begin transaction
13965
+ Started GET "/pointless_feedback" for 127.0.0.1 at 2014-12-03 14:47:12 -0700
13966
+ Processing by PointlessFeedback::MessagesController#new as HTML
13967
+ Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
13968
+ Started POST "/pointless_feedback/messages" for 127.0.0.1 at 2014-12-03 14:47:12 -0700
13969
+ Processing by PointlessFeedback::MessagesController#create as HTML
13970
+ Parameters: {"utf8"=>"✓", "message"=>{"name"=>"Eli", "email_address"=>"eli@example.com", "topic"=>"Other", "description"=>"This site is awful", "contact_info"=>""}, "commit"=>"Submit"}
13971
+  (0.0ms) SAVEPOINT active_record_1
13972
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:47:13 UTC +00:00], ["description", "This site is awful"], ["email_address", "eli@example.com"], ["name", "Eli"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:47:13 UTC +00:00]]
13973
+
13974
+ Sent mail to test1@example.com, test2@example.com (5ms)
13975
+ Date: Wed, 03 Dec 2014 14:47:13 -0700
13976
+ From: eli@example.com
13977
+ To: test1@example.com,
13978
+ test2@example.com
13979
+ Message-ID: <547f84e11d5c_bcc53ff185c2dbb4471a0@Eliass-MacBook-Pro.local.mail>
13980
+ Subject: Feedback
13981
+ Mime-Version: 1.0
13982
+ Content-Type: text/html;
13983
+ charset=UTF-8
13984
+ Content-Transfer-Encoding: 7bit
13985
+
13986
+ You've got feedback!
13987
+
13988
+ <p>Name: Eli</p>
13989
+ <p>Email Address: eli@example.com</p>
13990
+ <p>Topic: Other</p>
13991
+ <p>Description: This site is awful</p>
13992
+
13993
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13994
+ Redirected to http://www.example.com/
13995
+ Completed 302 Found in 12ms (ActiveRecord: 0.4ms)
13996
+ Started GET "/" for 127.0.0.1 at 2014-12-03 14:47:13 -0700
13997
+ Processing by HomeController#index as HTML
13998
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
13999
+  (0.4ms) rollback transaction
14000
+  (0.0ms) begin transaction
14001
+ Started GET "/pointless_feedback" for 127.0.0.1 at 2014-12-03 14:47:13 -0700
14002
+ Processing by PointlessFeedback::MessagesController#new as HTML
14003
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
14004
+ Started POST "/pointless_feedback/messages" for 127.0.0.1 at 2014-12-03 14:47:13 -0700
14005
+ Processing by PointlessFeedback::MessagesController#create as HTML
14006
+ Parameters: {"utf8"=>"✓", "message"=>{"name"=>"Eli", "email_address"=>"eli@example.com", "topic"=>"Other", "description"=>"This site is awful", "contact_info"=>"I'm a spam bot!"}, "commit"=>"Submit"}
14007
+  (0.0ms) SAVEPOINT active_record_1
14008
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:47:13 UTC +00:00], ["description", "This site is awful"], ["email_address", "eli@example.com"], ["name", "Eli"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:47:13 UTC +00:00]]
14009
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14010
+ Redirected to http://www.example.com/
14011
+ Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
14012
+ Started GET "/" for 127.0.0.1 at 2014-12-03 14:47:13 -0700
14013
+ Processing by HomeController#index as HTML
14014
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
14015
+  (0.4ms) rollback transaction
14016
+  (0.0ms) begin transaction
14017
+ Started GET "/pointless_feedback" for 127.0.0.1 at 2014-12-03 14:47:13 -0700
14018
+ Processing by PointlessFeedback::MessagesController#new as HTML
14019
+ Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
14020
+ Started POST "/pointless_feedback/messages" for 127.0.0.1 at 2014-12-03 14:47:13 -0700
14021
+ Processing by PointlessFeedback::MessagesController#create as HTML
14022
+ Parameters: {"utf8"=>"✓", "message"=>{"name"=>"Eli", "email_address"=>"eli@example.com", "topic"=>"Other", "description"=>"This site is awful", "contact_info"=>"I'm a spam bot!"}, "commit"=>"Submit"}
14023
+  (0.0ms) SAVEPOINT active_record_1
14024
+ SQL (0.4ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:47:13 UTC +00:00], ["description", "This site is awful"], ["email_address", "eli@example.com"], ["name", "Eli"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:47:13 UTC +00:00]]
14025
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14026
+ Redirected to http://www.example.com/
14027
+ Completed 302 Found in 2ms (ActiveRecord: 0.5ms)
14028
+ Started GET "/" for 127.0.0.1 at 2014-12-03 14:47:13 -0700
14029
+ Processing by HomeController#index as HTML
14030
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
14031
+  (0.4ms) rollback transaction
14032
+  (0.0ms) begin transaction
14033
+  (0.0ms) rollback transaction
14034
+  (0.0ms) begin transaction
14035
+  (0.0ms) rollback transaction
14036
+  (0.0ms) begin transaction
14037
+  (0.0ms) rollback transaction
14038
+  (0.0ms) begin transaction
14039
+  (0.0ms) rollback transaction
14040
+  (0.0ms) begin transaction
14041
+  (0.0ms) rollback transaction
14042
+  (0.0ms) begin transaction
14043
+  (0.0ms) rollback transaction
14044
+ Connecting to database specified by database.yml
14045
+  (0.2ms) begin transaction
14046
+  (0.0ms) rollback transaction
14047
+  (0.0ms) begin transaction
14048
+ Started GET "/pointless_feedback" for 127.0.0.1 at 2014-12-03 14:47:43 -0700
14049
+ Processing by PointlessFeedback::MessagesController#new as HTML
14050
+ Rendered /Users/efatsi/Desktop/Projects/Gems/pointless-feedback/app/views/pointless_feedback/messages/new.html.erb within layouts/application (7.7ms)
14051
+ Completed 200 OK in 30ms (Views: 15.0ms | ActiveRecord: 0.7ms)
14052
+  (0.1ms) rollback transaction
14053
+  (0.0ms) begin transaction
14054
+  (0.0ms) SAVEPOINT active_record_1
14055
+ SQL (2.8ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:47:43 UTC +00:00], ["description", "Site is broke"], ["email_address", "developer@pointlesscorp.com"], ["name", "A Developer"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:47:43 UTC +00:00]]
14056
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14057
+  (0.4ms) rollback transaction
14058
+  (0.0ms) begin transaction
14059
+  (0.0ms) SAVEPOINT active_record_1
14060
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:47:43 UTC +00:00], ["description", "Site is broke"], ["email_address", "developer@pointlesscorp.com"], ["name", "A Developer"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:47:43 UTC +00:00]]
14061
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14062
+  (0.3ms) rollback transaction
14063
+  (0.0ms) begin transaction
14064
+  (0.1ms) SAVEPOINT active_record_1
14065
+ SQL (0.2ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:47:43 UTC +00:00], ["description", "Site is broke"], ["email_address", "developer@pointlesscorp.com"], ["name", "A Developer"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:47:43 UTC +00:00]]
14066
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14067
+  (0.3ms) rollback transaction
14068
+  (0.0ms) begin transaction
14069
+  (0.0ms) SAVEPOINT active_record_1
14070
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:47:43 UTC +00:00], ["description", "Site is broke"], ["email_address", "developer@pointlesscorp.com"], ["name", "A Developer"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:47:43 UTC +00:00]]
14071
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14072
+  (0.4ms) rollback transaction
14073
+  (0.0ms) begin transaction
14074
+  (0.0ms) SAVEPOINT active_record_1
14075
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
14076
+  (0.0ms) rollback transaction
14077
+  (0.0ms) begin transaction
14078
+  (0.0ms) SAVEPOINT active_record_1
14079
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
14080
+  (0.0ms) rollback transaction
14081
+  (0.0ms) begin transaction
14082
+  (0.0ms) SAVEPOINT active_record_1
14083
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
14084
+  (0.0ms) rollback transaction
14085
+  (0.0ms) begin transaction
14086
+  (0.0ms) SAVEPOINT active_record_1
14087
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
14088
+  (0.0ms) rollback transaction
14089
+  (0.0ms) begin transaction
14090
+  (0.0ms) rollback transaction
14091
+  (0.0ms) begin transaction
14092
+  (0.0ms) rollback transaction
14093
+  (0.0ms) begin transaction
14094
+  (0.0ms) SAVEPOINT active_record_1
14095
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:47:43 UTC +00:00], ["description", "Site is broke"], ["email_address", "developer@pointlesscorp.com"], ["name", "A Developer"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:47:43 UTC +00:00]]
14096
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14097
+  (0.3ms) rollback transaction
14098
+  (0.0ms) begin transaction
14099
+  (0.0ms) SAVEPOINT active_record_1
14100
+ SQL (0.2ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:47:43 UTC +00:00], ["description", "Site is broke"], ["email_address", "developer@pointlesscorp.com"], ["name", "A Developer"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:47:43 UTC +00:00]]
14101
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14102
+  (0.3ms) rollback transaction
14103
+  (0.0ms) begin transaction
14104
+  (0.0ms) SAVEPOINT active_record_1
14105
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:47:43 UTC +00:00], ["description", "Site is broke"], ["email_address", "developer@pointlesscorp.com"], ["name", "A Developer"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:47:43 UTC +00:00]]
14106
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14107
+  (0.2ms) rollback transaction
14108
+  (0.0ms) begin transaction
14109
+ Processing by PointlessFeedback::MessagesController#new as HTML
14110
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
14111
+  (0.0ms) rollback transaction
14112
+  (0.0ms) begin transaction
14113
+ Processing by PointlessFeedback::MessagesController#new as HTML
14114
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
14115
+  (0.0ms) rollback transaction
14116
+  (0.0ms) begin transaction
14117
+ Processing by PointlessFeedback::MessagesController#new as HTML
14118
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
14119
+  (0.0ms) rollback transaction
14120
+  (0.0ms) begin transaction
14121
+  (0.0ms) rollback transaction
14122
+  (0.0ms) begin transaction
14123
+  (0.0ms) rollback transaction
14124
+  (0.0ms) begin transaction
14125
+  (0.0ms) rollback transaction
14126
+  (0.0ms) begin transaction
14127
+ Processing by PointlessFeedback::MessagesController#create as HTML
14128
+ Parameters: {"message"=>{"name"=>""}}
14129
+  (0.0ms) SAVEPOINT active_record_1
14130
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
14131
+ Completed 200 OK in 7ms (Views: 4.1ms | ActiveRecord: 0.1ms)
14132
+  (0.0ms) rollback transaction
14133
+  (0.0ms) begin transaction
14134
+ Processing by PointlessFeedback::MessagesController#create as HTML
14135
+ Parameters: {"message"=>{"name"=>""}}
14136
+  (0.0ms) SAVEPOINT active_record_1
14137
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
14138
+ Completed 200 OK in 7ms (Views: 4.0ms | ActiveRecord: 0.1ms)
14139
+  (0.0ms) rollback transaction
14140
+  (0.0ms) begin transaction
14141
+ Processing by PointlessFeedback::MessagesController#create as HTML
14142
+ Parameters: {"message"=>{"name"=>""}}
14143
+  (0.0ms) SAVEPOINT active_record_1
14144
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
14145
+ Completed 200 OK in 6ms (Views: 4.0ms | ActiveRecord: 0.1ms)
14146
+  (0.0ms) rollback transaction
14147
+  (0.0ms) begin transaction
14148
+ Processing by PointlessFeedback::MessagesController#create as HTML
14149
+ Parameters: {"message"=>{"name"=>"Some Guy", "email_address"=>"some_guy@web.com", "topic"=>"Other", "description"=>"Yo website bork"}}
14150
+  (0.0ms) SAVEPOINT active_record_1
14151
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:47:43 UTC +00:00], ["description", "Yo website bork"], ["email_address", "some_guy@web.com"], ["name", "Some Guy"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:47:43 UTC +00:00]]
14152
+
14153
+ Sent mail to test1@example.com, test2@example.com (6ms)
14154
+ Date: Wed, 03 Dec 2014 14:47:43 -0700
14155
+ From: some_guy@web.com
14156
+ To: test1@example.com,
14157
+ test2@example.com
14158
+ Message-ID: <547f84ffddd98_bcde3fc2bd82dbb473471@Eliass-MacBook-Pro.local.mail>
14159
+ Subject: Feedback
14160
+ Mime-Version: 1.0
14161
+ Content-Type: text/html;
14162
+ charset=UTF-8
14163
+ Content-Transfer-Encoding: 7bit
14164
+
14165
+ You've got feedback!
14166
+
14167
+ <p>Name: Some Guy</p>
14168
+ <p>Email Address: some_guy@web.com</p>
14169
+ <p>Topic: Other</p>
14170
+ <p>Description: Yo website bork</p>
14171
+
14172
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14173
+ Redirected to http://test.host/
14174
+ Completed 302 Found in 13ms (ActiveRecord: 0.4ms)
14175
+  (0.7ms) rollback transaction
14176
+  (0.0ms) begin transaction
14177
+ Processing by PointlessFeedback::MessagesController#create as HTML
14178
+ Parameters: {"message"=>{"name"=>"Some Guy", "email_address"=>"some_guy@web.com", "topic"=>"Other", "description"=>"Yo website bork"}}
14179
+  (0.0ms) SAVEPOINT active_record_1
14180
+ SQL (0.4ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:47:43 UTC +00:00], ["description", "Yo website bork"], ["email_address", "some_guy@web.com"], ["name", "Some Guy"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:47:43 UTC +00:00]]
14181
+
14182
+ Sent mail to test1@example.com, test2@example.com (5ms)
14183
+ Date: Wed, 03 Dec 2014 14:47:43 -0700
14184
+ From: some_guy@web.com
14185
+ To: test1@example.com,
14186
+ test2@example.com
14187
+ Message-ID: <547f84ffe1997_bcde3fc2bd82dbb47355f@Eliass-MacBook-Pro.local.mail>
14188
+ Subject: Feedback
14189
+ Mime-Version: 1.0
14190
+ Content-Type: text/html;
14191
+ charset=UTF-8
14192
+ Content-Transfer-Encoding: 7bit
14193
+
14194
+ You've got feedback!
14195
+
14196
+ <p>Name: Some Guy</p>
14197
+ <p>Email Address: some_guy@web.com</p>
14198
+ <p>Topic: Other</p>
14199
+ <p>Description: Yo website bork</p>
14200
+
14201
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14202
+ Redirected to http://test.host/
14203
+ Completed 302 Found in 12ms (ActiveRecord: 0.4ms)
14204
+  (0.4ms) rollback transaction
14205
+  (0.0ms) begin transaction
14206
+ Processing by PointlessFeedback::MessagesController#create as HTML
14207
+ Parameters: {"message"=>{"name"=>"Some Guy", "email_address"=>"some_guy@web.com", "topic"=>"Other", "description"=>"Yo website bork"}}
14208
+  (0.0ms) SAVEPOINT active_record_1
14209
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:47:43 UTC +00:00], ["description", "Yo website bork"], ["email_address", "some_guy@web.com"], ["name", "Some Guy"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:47:43 UTC +00:00]]
14210
+
14211
+ Sent mail to test1@example.com, test2@example.com (6ms)
14212
+ Date: Wed, 03 Dec 2014 14:47:43 -0700
14213
+ From: some_guy@web.com
14214
+ To: test1@example.com,
14215
+ test2@example.com
14216
+ Message-ID: <547f84ffe5099_bcde3fc2bd82dbb473646@Eliass-MacBook-Pro.local.mail>
14217
+ Subject: Feedback
14218
+ Mime-Version: 1.0
14219
+ Content-Type: text/html;
14220
+ charset=UTF-8
14221
+ Content-Transfer-Encoding: 7bit
14222
+
14223
+ You've got feedback!
14224
+
14225
+ <p>Name: Some Guy</p>
14226
+ <p>Email Address: some_guy@web.com</p>
14227
+ <p>Topic: Other</p>
14228
+ <p>Description: Yo website bork</p>
14229
+
14230
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14231
+ Redirected to http://test.host/
14232
+ Completed 302 Found in 13ms (ActiveRecord: 0.4ms)
14233
+  (0.3ms) rollback transaction
14234
+  (0.0ms) begin transaction
14235
+ Processing by PointlessFeedback::MessagesController#create as HTML
14236
+ Parameters: {"message"=>{"name"=>"Some Guy", "email_address"=>"some_guy@web.com", "topic"=>"Other", "description"=>"Yo website bork"}}
14237
+  (0.0ms) SAVEPOINT active_record_1
14238
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:47:43 UTC +00:00], ["description", "Yo website bork"], ["email_address", "some_guy@web.com"], ["name", "Some Guy"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:47:43 UTC +00:00]]
14239
+
14240
+ Sent mail to test1@example.com, test2@example.com (5ms)
14241
+ Date: Wed, 03 Dec 2014 14:47:43 -0700
14242
+ From: some_guy@web.com
14243
+ To: test1@example.com,
14244
+ test2@example.com
14245
+ Message-ID: <547f84ffeb270_bcde3fc2bd82dbb473763@Eliass-MacBook-Pro.local.mail>
14246
+ Subject: Feedback
14247
+ Mime-Version: 1.0
14248
+ Content-Type: text/html;
14249
+ charset=UTF-8
14250
+ Content-Transfer-Encoding: 7bit
14251
+
14252
+ You've got feedback!
14253
+
14254
+ <p>Name: Some Guy</p>
14255
+ <p>Email Address: some_guy@web.com</p>
14256
+ <p>Topic: Other</p>
14257
+ <p>Description: Yo website bork</p>
14258
+
14259
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14260
+ Redirected to http://test.host/dashboard
14261
+ Completed 302 Found in 21ms (ActiveRecord: 0.4ms)
14262
+  (0.3ms) rollback transaction
14263
+  (0.0ms) begin transaction
14264
+ Processing by PointlessFeedback::MessagesController#create as HTML
14265
+ Parameters: {"message"=>{"name"=>"Some Guy", "email_address"=>"some_guy@web.com", "topic"=>"Other", "description"=>"Yo website bork"}}
14266
+  (0.0ms) SAVEPOINT active_record_1
14267
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:47:43 UTC +00:00], ["description", "Yo website bork"], ["email_address", "some_guy@web.com"], ["name", "Some Guy"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:47:43 UTC +00:00]]
14268
+
14269
+ Sent mail to test1@example.com, test2@example.com (5ms)
14270
+ Date: Wed, 03 Dec 2014 14:47:43 -0700
14271
+ From: some_guy@web.com
14272
+ To: test1@example.com,
14273
+ test2@example.com
14274
+ Message-ID: <547f84ffeedea_bcde3fc2bd82dbb47389b@Eliass-MacBook-Pro.local.mail>
14275
+ Subject: Feedback
14276
+ Mime-Version: 1.0
14277
+ Content-Type: text/html;
14278
+ charset=UTF-8
14279
+ Content-Transfer-Encoding: 7bit
14280
+
14281
+ You've got feedback!
14282
+
14283
+ <p>Name: Some Guy</p>
14284
+ <p>Email Address: some_guy@web.com</p>
14285
+ <p>Topic: Other</p>
14286
+ <p>Description: Yo website bork</p>
14287
+
14288
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14289
+ Redirected to http://test.host/dashboard
14290
+ Completed 302 Found in 13ms (ActiveRecord: 0.4ms)
14291
+  (0.3ms) rollback transaction
14292
+  (0.0ms) begin transaction
14293
+ Processing by PointlessFeedback::MessagesController#create as HTML
14294
+ Parameters: {"message"=>{"name"=>"Some Guy", "email_address"=>"some_guy@web.com", "topic"=>"Other", "description"=>"Yo website bork"}}
14295
+  (0.0ms) SAVEPOINT active_record_1
14296
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:47:43 UTC +00:00], ["description", "Yo website bork"], ["email_address", "some_guy@web.com"], ["name", "Some Guy"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:47:43 UTC +00:00]]
14297
+
14298
+ Sent mail to test1@example.com, test2@example.com (5ms)
14299
+ Date: Wed, 03 Dec 2014 14:47:43 -0700
14300
+ From: some_guy@web.com
14301
+ To: test1@example.com,
14302
+ test2@example.com
14303
+ Message-ID: <547f84fff29c7_bcde3fc2bd82dbb473910@Eliass-MacBook-Pro.local.mail>
14304
+ Subject: Feedback
14305
+ Mime-Version: 1.0
14306
+ Content-Type: text/html;
14307
+ charset=UTF-8
14308
+ Content-Transfer-Encoding: 7bit
14309
+
14310
+ You've got feedback!
14311
+
14312
+ <p>Name: Some Guy</p>
14313
+ <p>Email Address: some_guy@web.com</p>
14314
+ <p>Topic: Other</p>
14315
+ <p>Description: Yo website bork</p>
14316
+
14317
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14318
+ Redirected to http://test.host/dashboard
14319
+ Completed 302 Found in 13ms (ActiveRecord: 0.4ms)
14320
+  (0.3ms) rollback transaction
14321
+  (0.0ms) begin transaction
14322
+ Started GET "/pointless_feedback" for 127.0.0.1 at 2014-12-03 14:47:44 -0700
14323
+ Processing by PointlessFeedback::MessagesController#new as HTML
14324
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
14325
+ Started POST "/pointless_feedback/messages" for 127.0.0.1 at 2014-12-03 14:47:44 -0700
14326
+ Processing by PointlessFeedback::MessagesController#create as HTML
14327
+ Parameters: {"utf8"=>"✓", "message"=>{"name"=>"Eli", "email_address"=>"eli@example.com", "topic"=>"Other", "description"=>"This site is awful", "contact_info"=>""}, "commit"=>"Submit"}
14328
+  (0.1ms) SAVEPOINT active_record_1
14329
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:47:44 UTC +00:00], ["description", "This site is awful"], ["email_address", "eli@example.com"], ["name", "Eli"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:47:44 UTC +00:00]]
14330
+
14331
+ Sent mail to test1@example.com, test2@example.com (5ms)
14332
+ Date: Wed, 03 Dec 2014 14:47:44 -0700
14333
+ From: eli@example.com
14334
+ To: test1@example.com,
14335
+ test2@example.com
14336
+ Message-ID: <547f85005a5c_bcde3fc2bd82dbb474043@Eliass-MacBook-Pro.local.mail>
14337
+ Subject: Feedback
14338
+ Mime-Version: 1.0
14339
+ Content-Type: text/html;
14340
+ charset=UTF-8
14341
+ Content-Transfer-Encoding: 7bit
14342
+
14343
+ You've got feedback!
14344
+
14345
+ <p>Name: Eli</p>
14346
+ <p>Email Address: eli@example.com</p>
14347
+ <p>Topic: Other</p>
14348
+ <p>Description: This site is awful</p>
14349
+
14350
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14351
+ Redirected to http://www.example.com/
14352
+ Completed 302 Found in 13ms (ActiveRecord: 0.4ms)
14353
+ Started GET "/" for 127.0.0.1 at 2014-12-03 14:47:44 -0700
14354
+ Processing by HomeController#index as HTML
14355
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
14356
+  (0.3ms) rollback transaction
14357
+  (0.0ms) begin transaction
14358
+ Started GET "/pointless_feedback" for 127.0.0.1 at 2014-12-03 14:47:44 -0700
14359
+ Processing by PointlessFeedback::MessagesController#new as HTML
14360
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
14361
+ Started POST "/pointless_feedback/messages" for 127.0.0.1 at 2014-12-03 14:47:44 -0700
14362
+ Processing by PointlessFeedback::MessagesController#create as HTML
14363
+ Parameters: {"utf8"=>"✓", "message"=>{"name"=>"Eli", "email_address"=>"eli@example.com", "topic"=>"Other", "description"=>"This site is awful", "contact_info"=>""}, "commit"=>"Submit"}
14364
+  (0.0ms) SAVEPOINT active_record_1
14365
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:47:44 UTC +00:00], ["description", "This site is awful"], ["email_address", "eli@example.com"], ["name", "Eli"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:47:44 UTC +00:00]]
14366
+
14367
+ Sent mail to test1@example.com, test2@example.com (5ms)
14368
+ Date: Wed, 03 Dec 2014 14:47:44 -0700
14369
+ From: eli@example.com
14370
+ To: test1@example.com,
14371
+ test2@example.com
14372
+ Message-ID: <547f8500de02_bcde3fc2bd82dbb4741de@Eliass-MacBook-Pro.local.mail>
14373
+ Subject: Feedback
14374
+ Mime-Version: 1.0
14375
+ Content-Type: text/html;
14376
+ charset=UTF-8
14377
+ Content-Transfer-Encoding: 7bit
14378
+
14379
+ You've got feedback!
14380
+
14381
+ <p>Name: Eli</p>
14382
+ <p>Email Address: eli@example.com</p>
14383
+ <p>Topic: Other</p>
14384
+ <p>Description: This site is awful</p>
14385
+
14386
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14387
+ Redirected to http://www.example.com/
14388
+ Completed 302 Found in 13ms (ActiveRecord: 0.4ms)
14389
+ Started GET "/" for 127.0.0.1 at 2014-12-03 14:47:44 -0700
14390
+ Processing by HomeController#index as HTML
14391
+ Completed 200 OK in 1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
14392
+  (0.4ms) rollback transaction
14393
+  (0.0ms) begin transaction
14394
+ Started GET "/pointless_feedback" for 127.0.0.1 at 2014-12-03 14:47:44 -0700
14395
+ Processing by PointlessFeedback::MessagesController#new as HTML
14396
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
14397
+ Started POST "/pointless_feedback/messages" for 127.0.0.1 at 2014-12-03 14:47:44 -0700
14398
+ Processing by PointlessFeedback::MessagesController#create as HTML
14399
+ Parameters: {"utf8"=>"✓", "message"=>{"name"=>"Eli", "email_address"=>"eli@example.com", "topic"=>"Other", "description"=>"This site is awful", "contact_info"=>"I'm a spam bot!"}, "commit"=>"Submit"}
14400
+  (0.0ms) SAVEPOINT active_record_1
14401
+ SQL (0.4ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:47:44 UTC +00:00], ["description", "This site is awful"], ["email_address", "eli@example.com"], ["name", "Eli"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:47:44 UTC +00:00]]
14402
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14403
+ Redirected to http://www.example.com/
14404
+ Completed 302 Found in 2ms (ActiveRecord: 0.5ms)
14405
+ Started GET "/" for 127.0.0.1 at 2014-12-03 14:47:44 -0700
14406
+ Processing by HomeController#index as HTML
14407
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
14408
+  (0.4ms) rollback transaction
14409
+  (0.0ms) begin transaction
14410
+ Started GET "/pointless_feedback" for 127.0.0.1 at 2014-12-03 14:47:44 -0700
14411
+ Processing by PointlessFeedback::MessagesController#new as HTML
14412
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
14413
+ Started POST "/pointless_feedback/messages" for 127.0.0.1 at 2014-12-03 14:47:44 -0700
14414
+ Processing by PointlessFeedback::MessagesController#create as HTML
14415
+ Parameters: {"utf8"=>"✓", "message"=>{"name"=>"Eli", "email_address"=>"eli@example.com", "topic"=>"Other", "description"=>"This site is awful", "contact_info"=>"I'm a spam bot!"}, "commit"=>"Submit"}
14416
+  (0.0ms) SAVEPOINT active_record_1
14417
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:47:44 UTC +00:00], ["description", "This site is awful"], ["email_address", "eli@example.com"], ["name", "Eli"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:47:44 UTC +00:00]]
14418
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14419
+ Redirected to http://www.example.com/
14420
+ Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
14421
+ Started GET "/" for 127.0.0.1 at 2014-12-03 14:47:44 -0700
14422
+ Processing by HomeController#index as HTML
14423
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
14424
+  (0.4ms) rollback transaction
14425
+  (0.0ms) begin transaction
14426
+  (0.0ms) rollback transaction
14427
+  (0.0ms) begin transaction
14428
+  (0.0ms) rollback transaction
14429
+  (0.0ms) begin transaction
14430
+  (0.0ms) rollback transaction
14431
+  (0.0ms) begin transaction
14432
+  (0.0ms) rollback transaction
14433
+  (0.0ms) begin transaction
14434
+  (0.0ms) rollback transaction
14435
+  (0.0ms) begin transaction
14436
+  (0.0ms) rollback transaction
14437
+ Connecting to database specified by database.yml
14438
+  (0.2ms) begin transaction
14439
+  (0.0ms) rollback transaction
14440
+  (0.0ms) begin transaction
14441
+ Started GET "/pointless_feedback" for 127.0.0.1 at 2014-12-03 14:48:01 -0700
14442
+ Processing by PointlessFeedback::MessagesController#new as HTML
14443
+ Rendered /Users/efatsi/Desktop/Projects/Gems/pointless-feedback/app/views/pointless_feedback/messages/new.html.erb within layouts/application (7.7ms)
14444
+ Completed 200 OK in 31ms (Views: 15.0ms | ActiveRecord: 0.7ms)
14445
+  (0.1ms) rollback transaction
14446
+  (0.0ms) begin transaction
14447
+  (0.0ms) SAVEPOINT active_record_1
14448
+ SQL (2.8ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:48:01 UTC +00:00], ["description", "Site is broke"], ["email_address", "developer@pointlesscorp.com"], ["name", "A Developer"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:48:01 UTC +00:00]]
14449
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14450
+  (0.4ms) rollback transaction
14451
+  (0.0ms) begin transaction
14452
+  (0.0ms) SAVEPOINT active_record_1
14453
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:48:01 UTC +00:00], ["description", "Site is broke"], ["email_address", "developer@pointlesscorp.com"], ["name", "A Developer"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:48:01 UTC +00:00]]
14454
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14455
+  (0.3ms) rollback transaction
14456
+  (0.0ms) begin transaction
14457
+  (0.1ms) SAVEPOINT active_record_1
14458
+ SQL (0.2ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:48:01 UTC +00:00], ["description", "Site is broke"], ["email_address", "developer@pointlesscorp.com"], ["name", "A Developer"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:48:01 UTC +00:00]]
14459
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14460
+  (0.3ms) rollback transaction
14461
+  (0.0ms) begin transaction
14462
+  (0.0ms) SAVEPOINT active_record_1
14463
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:48:01 UTC +00:00], ["description", "Site is broke"], ["email_address", "developer@pointlesscorp.com"], ["name", "A Developer"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:48:01 UTC +00:00]]
14464
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14465
+  (0.3ms) rollback transaction
14466
+  (0.0ms) begin transaction
14467
+  (0.0ms) SAVEPOINT active_record_1
14468
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
14469
+  (0.0ms) rollback transaction
14470
+  (0.0ms) begin transaction
14471
+  (0.0ms) SAVEPOINT active_record_1
14472
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
14473
+  (0.0ms) rollback transaction
14474
+  (0.0ms) begin transaction
14475
+  (0.0ms) SAVEPOINT active_record_1
14476
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
14477
+  (0.0ms) rollback transaction
14478
+  (0.0ms) begin transaction
14479
+  (0.0ms) SAVEPOINT active_record_1
14480
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
14481
+  (0.0ms) rollback transaction
14482
+  (0.0ms) begin transaction
14483
+  (0.0ms) rollback transaction
14484
+  (0.0ms) begin transaction
14485
+  (0.1ms) rollback transaction
14486
+  (0.0ms) begin transaction
14487
+  (0.0ms) SAVEPOINT active_record_1
14488
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:48:01 UTC +00:00], ["description", "Site is broke"], ["email_address", "developer@pointlesscorp.com"], ["name", "A Developer"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:48:01 UTC +00:00]]
14489
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14490
+  (0.3ms) rollback transaction
14491
+  (0.0ms) begin transaction
14492
+  (0.0ms) SAVEPOINT active_record_1
14493
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:48:01 UTC +00:00], ["description", "Site is broke"], ["email_address", "developer@pointlesscorp.com"], ["name", "A Developer"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:48:01 UTC +00:00]]
14494
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14495
+  (0.3ms) rollback transaction
14496
+  (0.0ms) begin transaction
14497
+  (0.0ms) SAVEPOINT active_record_1
14498
+ SQL (0.2ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:48:01 UTC +00:00], ["description", "Site is broke"], ["email_address", "developer@pointlesscorp.com"], ["name", "A Developer"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:48:01 UTC +00:00]]
14499
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14500
+  (0.3ms) rollback transaction
14501
+  (0.0ms) begin transaction
14502
+ Processing by PointlessFeedback::MessagesController#new as HTML
14503
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
14504
+  (0.0ms) rollback transaction
14505
+  (0.0ms) begin transaction
14506
+ Processing by PointlessFeedback::MessagesController#new as HTML
14507
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
14508
+  (0.0ms) rollback transaction
14509
+  (0.0ms) begin transaction
14510
+ Processing by PointlessFeedback::MessagesController#new as HTML
14511
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
14512
+  (0.0ms) rollback transaction
14513
+  (0.0ms) begin transaction
14514
+  (0.0ms) rollback transaction
14515
+  (0.0ms) begin transaction
14516
+  (0.0ms) rollback transaction
14517
+  (0.0ms) begin transaction
14518
+  (0.0ms) rollback transaction
14519
+  (0.0ms) begin transaction
14520
+ Processing by PointlessFeedback::MessagesController#create as HTML
14521
+ Parameters: {"message"=>{"name"=>""}}
14522
+  (0.0ms) SAVEPOINT active_record_1
14523
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
14524
+ Completed 200 OK in 7ms (Views: 4.3ms | ActiveRecord: 0.1ms)
14525
+  (0.0ms) rollback transaction
14526
+  (0.0ms) begin transaction
14527
+ Processing by PointlessFeedback::MessagesController#create as HTML
14528
+ Parameters: {"message"=>{"name"=>""}}
14529
+  (0.0ms) SAVEPOINT active_record_1
14530
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
14531
+ Completed 200 OK in 6ms (Views: 3.8ms | ActiveRecord: 0.1ms)
14532
+  (0.0ms) rollback transaction
14533
+  (0.0ms) begin transaction
14534
+ Processing by PointlessFeedback::MessagesController#create as HTML
14535
+ Parameters: {"message"=>{"name"=>""}}
14536
+  (0.0ms) SAVEPOINT active_record_1
14537
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
14538
+ Completed 200 OK in 6ms (Views: 4.0ms | ActiveRecord: 0.1ms)
14539
+  (0.0ms) rollback transaction
14540
+  (0.0ms) begin transaction
14541
+ Processing by PointlessFeedback::MessagesController#create as HTML
14542
+ Parameters: {"message"=>{"name"=>"Some Guy", "email_address"=>"some_guy@web.com", "topic"=>"Other", "description"=>"Yo website bork"}}
14543
+  (0.0ms) SAVEPOINT active_record_1
14544
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:48:01 UTC +00:00], ["description", "Yo website bork"], ["email_address", "some_guy@web.com"], ["name", "Some Guy"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:48:01 UTC +00:00]]
14545
+
14546
+ Sent mail to test1@example.com, test2@example.com (6ms)
14547
+ Date: Wed, 03 Dec 2014 14:48:01 -0700
14548
+ From: some_guy@web.com
14549
+ To: test1@example.com,
14550
+ test2@example.com
14551
+ Message-ID: <547f8511418dc_bcf63fe59102dbc0658bb@Eliass-MacBook-Pro.local.mail>
14552
+ Subject: Feedback
14553
+ Mime-Version: 1.0
14554
+ Content-Type: text/html;
14555
+ charset=UTF-8
14556
+ Content-Transfer-Encoding: 7bit
14557
+
14558
+ You've got feedback!
14559
+
14560
+ <p>Name: Some Guy</p>
14561
+ <p>Email Address: some_guy@web.com</p>
14562
+ <p>Topic: Other</p>
14563
+ <p>Description: Yo website bork</p>
14564
+
14565
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14566
+ Redirected to http://test.host/
14567
+ Completed 302 Found in 14ms (ActiveRecord: 0.4ms)
14568
+  (0.3ms) rollback transaction
14569
+  (0.0ms) begin transaction
14570
+ Processing by PointlessFeedback::MessagesController#create as HTML
14571
+ Parameters: {"message"=>{"name"=>"Some Guy", "email_address"=>"some_guy@web.com", "topic"=>"Other", "description"=>"Yo website bork"}}
14572
+  (0.0ms) SAVEPOINT active_record_1
14573
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:48:01 UTC +00:00], ["description", "Yo website bork"], ["email_address", "some_guy@web.com"], ["name", "Some Guy"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:48:01 UTC +00:00]]
14574
+
14575
+ Sent mail to test1@example.com, test2@example.com (4ms)
14576
+ Date: Wed, 03 Dec 2014 14:48:01 -0700
14577
+ From: some_guy@web.com
14578
+ To: test1@example.com,
14579
+ test2@example.com
14580
+ Message-ID: <547f851145528_bcf63fe59102dbc06598f@Eliass-MacBook-Pro.local.mail>
14581
+ Subject: Feedback
14582
+ Mime-Version: 1.0
14583
+ Content-Type: text/html;
14584
+ charset=UTF-8
14585
+ Content-Transfer-Encoding: 7bit
14586
+
14587
+ You've got feedback!
14588
+
14589
+ <p>Name: Some Guy</p>
14590
+ <p>Email Address: some_guy@web.com</p>
14591
+ <p>Topic: Other</p>
14592
+ <p>Description: Yo website bork</p>
14593
+
14594
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14595
+ Redirected to http://test.host/
14596
+ Completed 302 Found in 12ms (ActiveRecord: 0.4ms)
14597
+  (0.4ms) rollback transaction
14598
+  (0.0ms) begin transaction
14599
+ Processing by PointlessFeedback::MessagesController#create as HTML
14600
+ Parameters: {"message"=>{"name"=>"Some Guy", "email_address"=>"some_guy@web.com", "topic"=>"Other", "description"=>"Yo website bork"}}
14601
+  (0.0ms) SAVEPOINT active_record_1
14602
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:48:01 UTC +00:00], ["description", "Yo website bork"], ["email_address", "some_guy@web.com"], ["name", "Some Guy"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:48:01 UTC +00:00]]
14603
+
14604
+ Sent mail to test1@example.com, test2@example.com (5ms)
14605
+ Date: Wed, 03 Dec 2014 14:48:01 -0700
14606
+ From: some_guy@web.com
14607
+ To: test1@example.com,
14608
+ test2@example.com
14609
+ Message-ID: <547f85114895c_bcf63fe59102dbc066032@Eliass-MacBook-Pro.local.mail>
14610
+ Subject: Feedback
14611
+ Mime-Version: 1.0
14612
+ Content-Type: text/html;
14613
+ charset=UTF-8
14614
+ Content-Transfer-Encoding: 7bit
14615
+
14616
+ You've got feedback!
14617
+
14618
+ <p>Name: Some Guy</p>
14619
+ <p>Email Address: some_guy@web.com</p>
14620
+ <p>Topic: Other</p>
14621
+ <p>Description: Yo website bork</p>
14622
+
14623
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14624
+ Redirected to http://test.host/
14625
+ Completed 302 Found in 12ms (ActiveRecord: 0.4ms)
14626
+  (0.4ms) rollback transaction
14627
+  (0.0ms) begin transaction
14628
+ Processing by PointlessFeedback::MessagesController#create as HTML
14629
+ Parameters: {"message"=>{"name"=>"Some Guy", "email_address"=>"some_guy@web.com", "topic"=>"Other", "description"=>"Yo website bork"}}
14630
+  (0.0ms) SAVEPOINT active_record_1
14631
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:48:01 UTC +00:00], ["description", "Yo website bork"], ["email_address", "some_guy@web.com"], ["name", "Some Guy"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:48:01 UTC +00:00]]
14632
+
14633
+ Sent mail to test1@example.com, test2@example.com (5ms)
14634
+ Date: Wed, 03 Dec 2014 14:48:01 -0700
14635
+ From: some_guy@web.com
14636
+ To: test1@example.com,
14637
+ test2@example.com
14638
+ Message-ID: <547f85114e8d0_bcf63fe59102dbc066150@Eliass-MacBook-Pro.local.mail>
14639
+ Subject: Feedback
14640
+ Mime-Version: 1.0
14641
+ Content-Type: text/html;
14642
+ charset=UTF-8
14643
+ Content-Transfer-Encoding: 7bit
14644
+
14645
+ You've got feedback!
14646
+
14647
+ <p>Name: Some Guy</p>
14648
+ <p>Email Address: some_guy@web.com</p>
14649
+ <p>Topic: Other</p>
14650
+ <p>Description: Yo website bork</p>
14651
+
14652
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14653
+ Redirected to http://test.host/dashboard
14654
+ Completed 302 Found in 21ms (ActiveRecord: 0.4ms)
14655
+  (0.4ms) rollback transaction
14656
+  (0.0ms) begin transaction
14657
+ Processing by PointlessFeedback::MessagesController#create as HTML
14658
+ Parameters: {"message"=>{"name"=>"Some Guy", "email_address"=>"some_guy@web.com", "topic"=>"Other", "description"=>"Yo website bork"}}
14659
+  (0.0ms) SAVEPOINT active_record_1
14660
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:48:01 UTC +00:00], ["description", "Yo website bork"], ["email_address", "some_guy@web.com"], ["name", "Some Guy"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:48:01 UTC +00:00]]
14661
+
14662
+ Sent mail to test1@example.com, test2@example.com (5ms)
14663
+ Date: Wed, 03 Dec 2014 14:48:01 -0700
14664
+ From: some_guy@web.com
14665
+ To: test1@example.com,
14666
+ test2@example.com
14667
+ Message-ID: <547f8511520ae_bcf63fe59102dbc0662c1@Eliass-MacBook-Pro.local.mail>
14668
+ Subject: Feedback
14669
+ Mime-Version: 1.0
14670
+ Content-Type: text/html;
14671
+ charset=UTF-8
14672
+ Content-Transfer-Encoding: 7bit
14673
+
14674
+ You've got feedback!
14675
+
14676
+ <p>Name: Some Guy</p>
14677
+ <p>Email Address: some_guy@web.com</p>
14678
+ <p>Topic: Other</p>
14679
+ <p>Description: Yo website bork</p>
14680
+
14681
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14682
+ Redirected to http://test.host/dashboard
14683
+ Completed 302 Found in 13ms (ActiveRecord: 0.4ms)
14684
+  (0.3ms) rollback transaction
14685
+  (0.1ms) begin transaction
14686
+ Processing by PointlessFeedback::MessagesController#create as HTML
14687
+ Parameters: {"message"=>{"name"=>"Some Guy", "email_address"=>"some_guy@web.com", "topic"=>"Other", "description"=>"Yo website bork"}}
14688
+  (0.0ms) SAVEPOINT active_record_1
14689
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:48:01 UTC +00:00], ["description", "Yo website bork"], ["email_address", "some_guy@web.com"], ["name", "Some Guy"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:48:01 UTC +00:00]]
14690
+
14691
+ Sent mail to test1@example.com, test2@example.com (5ms)
14692
+ Date: Wed, 03 Dec 2014 14:48:01 -0700
14693
+ From: some_guy@web.com
14694
+ To: test1@example.com,
14695
+ test2@example.com
14696
+ Message-ID: <547f851155e3d_bcf63fe59102dbc06634c@Eliass-MacBook-Pro.local.mail>
14697
+ Subject: Feedback
14698
+ Mime-Version: 1.0
14699
+ Content-Type: text/html;
14700
+ charset=UTF-8
14701
+ Content-Transfer-Encoding: 7bit
14702
+
14703
+ You've got feedback!
14704
+
14705
+ <p>Name: Some Guy</p>
14706
+ <p>Email Address: some_guy@web.com</p>
14707
+ <p>Topic: Other</p>
14708
+ <p>Description: Yo website bork</p>
14709
+
14710
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14711
+ Redirected to http://test.host/dashboard
14712
+ Completed 302 Found in 13ms (ActiveRecord: 0.4ms)
14713
+  (0.4ms) rollback transaction
14714
+  (0.0ms) begin transaction
14715
+ Started GET "/pointless_feedback" for 127.0.0.1 at 2014-12-03 14:48:01 -0700
14716
+ Processing by PointlessFeedback::MessagesController#new as HTML
14717
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
14718
+ Started POST "/pointless_feedback/messages" for 127.0.0.1 at 2014-12-03 14:48:01 -0700
14719
+ Processing by PointlessFeedback::MessagesController#create as HTML
14720
+ Parameters: {"utf8"=>"✓", "message"=>{"name"=>"Eli", "email_address"=>"eli@example.com", "topic"=>"Other", "description"=>"This site is awful", "contact_info"=>""}, "commit"=>"Submit"}
14721
+  (0.0ms) SAVEPOINT active_record_1
14722
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:48:01 UTC +00:00], ["description", "This site is awful"], ["email_address", "eli@example.com"], ["name", "Eli"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:48:01 UTC +00:00]]
14723
+
14724
+ Sent mail to test1@example.com, test2@example.com (5ms)
14725
+ Date: Wed, 03 Dec 2014 14:48:01 -0700
14726
+ From: eli@example.com
14727
+ To: test1@example.com,
14728
+ test2@example.com
14729
+ Message-ID: <547f85115d765_bcf63fe59102dbc06649a@Eliass-MacBook-Pro.local.mail>
14730
+ Subject: Feedback
14731
+ Mime-Version: 1.0
14732
+ Content-Type: text/html;
14733
+ charset=UTF-8
14734
+ Content-Transfer-Encoding: 7bit
14735
+
14736
+ You've got feedback!
14737
+
14738
+ <p>Name: Eli</p>
14739
+ <p>Email Address: eli@example.com</p>
14740
+ <p>Topic: Other</p>
14741
+ <p>Description: This site is awful</p>
14742
+
14743
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14744
+ Redirected to http://www.example.com/
14745
+ Completed 302 Found in 15ms (ActiveRecord: 0.4ms)
14746
+ Started GET "/" for 127.0.0.1 at 2014-12-03 14:48:01 -0700
14747
+ Processing by HomeController#index as HTML
14748
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
14749
+  (0.4ms) rollback transaction
14750
+  (0.0ms) begin transaction
14751
+ Started GET "/pointless_feedback" for 127.0.0.1 at 2014-12-03 14:48:01 -0700
14752
+ Processing by PointlessFeedback::MessagesController#new as HTML
14753
+ Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
14754
+ Started POST "/pointless_feedback/messages" for 127.0.0.1 at 2014-12-03 14:48:01 -0700
14755
+ Processing by PointlessFeedback::MessagesController#create as HTML
14756
+ Parameters: {"utf8"=>"✓", "message"=>{"name"=>"Eli", "email_address"=>"eli@example.com", "topic"=>"Other", "description"=>"This site is awful", "contact_info"=>""}, "commit"=>"Submit"}
14757
+  (0.0ms) SAVEPOINT active_record_1
14758
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:48:01 UTC +00:00], ["description", "This site is awful"], ["email_address", "eli@example.com"], ["name", "Eli"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:48:01 UTC +00:00]]
14759
+
14760
+ Sent mail to test1@example.com, test2@example.com (5ms)
14761
+ Date: Wed, 03 Dec 2014 14:48:01 -0700
14762
+ From: eli@example.com
14763
+ To: test1@example.com,
14764
+ test2@example.com
14765
+ Message-ID: <547f8511661a9_bcf63fe59102dbc06652e@Eliass-MacBook-Pro.local.mail>
14766
+ Subject: Feedback
14767
+ Mime-Version: 1.0
14768
+ Content-Type: text/html;
14769
+ charset=UTF-8
14770
+ Content-Transfer-Encoding: 7bit
14771
+
14772
+ You've got feedback!
14773
+
14774
+ <p>Name: Eli</p>
14775
+ <p>Email Address: eli@example.com</p>
14776
+ <p>Topic: Other</p>
14777
+ <p>Description: This site is awful</p>
14778
+
14779
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14780
+ Redirected to http://www.example.com/
14781
+ Completed 302 Found in 13ms (ActiveRecord: 0.4ms)
14782
+ Started GET "/" for 127.0.0.1 at 2014-12-03 14:48:01 -0700
14783
+ Processing by HomeController#index as HTML
14784
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
14785
+  (0.3ms) rollback transaction
14786
+  (0.0ms) begin transaction
14787
+ Started GET "/pointless_feedback" for 127.0.0.1 at 2014-12-03 14:48:01 -0700
14788
+ Processing by PointlessFeedback::MessagesController#new as HTML
14789
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
14790
+ Started POST "/pointless_feedback/messages" for 127.0.0.1 at 2014-12-03 14:48:01 -0700
14791
+ Processing by PointlessFeedback::MessagesController#create as HTML
14792
+ Parameters: {"utf8"=>"✓", "message"=>{"name"=>"Eli", "email_address"=>"eli@example.com", "topic"=>"Other", "description"=>"This site is awful", "contact_info"=>"I'm a spam bot!"}, "commit"=>"Submit"}
14793
+  (0.0ms) SAVEPOINT active_record_1
14794
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:48:01 UTC +00:00], ["description", "This site is awful"], ["email_address", "eli@example.com"], ["name", "Eli"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:48:01 UTC +00:00]]
14795
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14796
+ Redirected to http://www.example.com/
14797
+ Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
14798
+ Started GET "/" for 127.0.0.1 at 2014-12-03 14:48:01 -0700
14799
+ Processing by HomeController#index as HTML
14800
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
14801
+  (0.4ms) rollback transaction
14802
+  (0.0ms) begin transaction
14803
+ Started GET "/pointless_feedback" for 127.0.0.1 at 2014-12-03 14:48:01 -0700
14804
+ Processing by PointlessFeedback::MessagesController#new as HTML
14805
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
14806
+ Started POST "/pointless_feedback/messages" for 127.0.0.1 at 2014-12-03 14:48:01 -0700
14807
+ Processing by PointlessFeedback::MessagesController#create as HTML
14808
+ Parameters: {"utf8"=>"✓", "message"=>{"name"=>"Eli", "email_address"=>"eli@example.com", "topic"=>"Other", "description"=>"This site is awful", "contact_info"=>"I'm a spam bot!"}, "commit"=>"Submit"}
14809
+  (0.0ms) SAVEPOINT active_record_1
14810
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:48:01 UTC +00:00], ["description", "This site is awful"], ["email_address", "eli@example.com"], ["name", "Eli"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:48:01 UTC +00:00]]
14811
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14812
+ Redirected to http://www.example.com/
14813
+ Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
14814
+ Started GET "/" for 127.0.0.1 at 2014-12-03 14:48:01 -0700
14815
+ Processing by HomeController#index as HTML
14816
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
14817
+  (0.3ms) rollback transaction
14818
+  (0.0ms) begin transaction
14819
+  (0.0ms) rollback transaction
14820
+  (0.0ms) begin transaction
14821
+  (0.0ms) rollback transaction
14822
+  (0.0ms) begin transaction
14823
+  (0.0ms) rollback transaction
14824
+  (0.0ms) begin transaction
14825
+  (0.0ms) rollback transaction
14826
+  (0.0ms) begin transaction
14827
+  (0.0ms) rollback transaction
14828
+  (0.0ms) begin transaction
14829
+  (0.0ms) rollback transaction
14830
+ Connecting to database specified by database.yml
14831
+  (0.2ms) begin transaction
14832
+  (0.0ms) rollback transaction
14833
+  (0.0ms) begin transaction
14834
+ Started GET "/pointless_feedback" for 127.0.0.1 at 2014-12-03 14:48:28 -0700
14835
+ Processing by PointlessFeedback::MessagesController#new as HTML
14836
+ Rendered /Users/efatsi/Desktop/Projects/Gems/pointless-feedback/app/views/pointless_feedback/messages/new.html.erb within layouts/application (8.0ms)
14837
+ Completed 200 OK in 32ms (Views: 15.7ms | ActiveRecord: 0.7ms)
14838
+  (0.1ms) rollback transaction
14839
+  (0.0ms) begin transaction
14840
+  (0.0ms) SAVEPOINT active_record_1
14841
+ SQL (2.9ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:48:28 UTC +00:00], ["description", "Site is broke"], ["email_address", "developer@pointlesscorp.com"], ["name", "A Developer"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:48:28 UTC +00:00]]
14842
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14843
+  (0.7ms) rollback transaction
14844
+  (0.0ms) begin transaction
14845
+  (0.0ms) SAVEPOINT active_record_1
14846
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:48:28 UTC +00:00], ["description", "Site is broke"], ["email_address", "developer@pointlesscorp.com"], ["name", "A Developer"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:48:28 UTC +00:00]]
14847
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14848
+  (0.4ms) rollback transaction
14849
+  (0.1ms) begin transaction
14850
+  (0.1ms) SAVEPOINT active_record_1
14851
+ SQL (0.4ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:48:28 UTC +00:00], ["description", "Site is broke"], ["email_address", "developer@pointlesscorp.com"], ["name", "A Developer"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:48:28 UTC +00:00]]
14852
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14853
+  (0.4ms) rollback transaction
14854
+  (0.0ms) begin transaction
14855
+  (0.0ms) SAVEPOINT active_record_1
14856
+ SQL (0.4ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:48:28 UTC +00:00], ["description", "Site is broke"], ["email_address", "developer@pointlesscorp.com"], ["name", "A Developer"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:48:28 UTC +00:00]]
14857
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14858
+  (0.4ms) rollback transaction
14859
+  (0.0ms) begin transaction
14860
+  (0.0ms) SAVEPOINT active_record_1
14861
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
14862
+  (0.0ms) rollback transaction
14863
+  (0.0ms) begin transaction
14864
+  (0.0ms) SAVEPOINT active_record_1
14865
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
14866
+  (0.0ms) rollback transaction
14867
+  (0.0ms) begin transaction
14868
+  (0.0ms) SAVEPOINT active_record_1
14869
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
14870
+  (0.0ms) rollback transaction
14871
+  (0.0ms) begin transaction
14872
+  (0.0ms) SAVEPOINT active_record_1
14873
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
14874
+  (0.0ms) rollback transaction
14875
+  (0.0ms) begin transaction
14876
+  (0.0ms) rollback transaction
14877
+  (0.0ms) begin transaction
14878
+  (0.0ms) rollback transaction
14879
+  (0.0ms) begin transaction
14880
+  (0.0ms) SAVEPOINT active_record_1
14881
+ SQL (0.5ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:48:28 UTC +00:00], ["description", "Site is broke"], ["email_address", "developer@pointlesscorp.com"], ["name", "A Developer"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:48:28 UTC +00:00]]
14882
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14883
+  (0.3ms) rollback transaction
14884
+  (0.0ms) begin transaction
14885
+  (0.0ms) SAVEPOINT active_record_1
14886
+ SQL (0.2ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:48:28 UTC +00:00], ["description", "Site is broke"], ["email_address", "developer@pointlesscorp.com"], ["name", "A Developer"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:48:28 UTC +00:00]]
14887
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14888
+  (0.4ms) rollback transaction
14889
+  (0.0ms) begin transaction
14890
+  (0.0ms) SAVEPOINT active_record_1
14891
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:48:28 UTC +00:00], ["description", "Site is broke"], ["email_address", "developer@pointlesscorp.com"], ["name", "A Developer"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:48:28 UTC +00:00]]
14892
+  (0.0ms) RELEASE SAVEPOINT active_record_1
14893
+  (0.2ms) rollback transaction
14894
+  (0.0ms) begin transaction
14895
+ Processing by PointlessFeedback::MessagesController#new as HTML
14896
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
14897
+  (0.0ms) rollback transaction
14898
+  (0.0ms) begin transaction
14899
+ Processing by PointlessFeedback::MessagesController#new as HTML
14900
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
14901
+  (0.0ms) rollback transaction
14902
+  (0.0ms) begin transaction
14903
+ Processing by PointlessFeedback::MessagesController#new as HTML
14904
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
14905
+  (0.0ms) rollback transaction
14906
+  (0.0ms) begin transaction
14907
+  (0.0ms) rollback transaction
14908
+  (0.0ms) begin transaction
14909
+  (0.0ms) rollback transaction
14910
+  (0.0ms) begin transaction
14911
+  (0.0ms) rollback transaction
14912
+  (0.0ms) begin transaction
14913
+ Processing by PointlessFeedback::MessagesController#create as HTML
14914
+ Parameters: {"message"=>{"name"=>""}}
14915
+  (0.0ms) SAVEPOINT active_record_1
14916
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
14917
+ Completed 200 OK in 7ms (Views: 4.2ms | ActiveRecord: 0.1ms)
14918
+  (0.0ms) rollback transaction
14919
+  (0.0ms) begin transaction
14920
+ Processing by PointlessFeedback::MessagesController#create as HTML
14921
+ Parameters: {"message"=>{"name"=>""}}
14922
+  (0.0ms) SAVEPOINT active_record_1
14923
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
14924
+ Completed 200 OK in 7ms (Views: 4.1ms | ActiveRecord: 0.1ms)
14925
+  (0.0ms) rollback transaction
14926
+  (0.0ms) begin transaction
14927
+ Processing by PointlessFeedback::MessagesController#create as HTML
14928
+ Parameters: {"message"=>{"name"=>""}}
14929
+  (0.0ms) SAVEPOINT active_record_1
14930
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
14931
+ Completed 200 OK in 6ms (Views: 4.0ms | ActiveRecord: 0.1ms)
14932
+  (0.0ms) rollback transaction
14933
+  (0.0ms) begin transaction
14934
+ Processing by PointlessFeedback::MessagesController#create as HTML
14935
+ Parameters: {"message"=>{"name"=>"Some Guy", "email_address"=>"some_guy@web.com", "topic"=>"Other", "description"=>"Yo website bork"}}
14936
+  (0.0ms) SAVEPOINT active_record_1
14937
+ SQL (0.4ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:48:28 UTC +00:00], ["description", "Yo website bork"], ["email_address", "some_guy@web.com"], ["name", "Some Guy"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:48:28 UTC +00:00]]
14938
+
14939
+ Sent mail to test1@example.com, test2@example.com (6ms)
14940
+ Date: Wed, 03 Dec 2014 14:48:28 -0700
14941
+ From: some_guy@web.com
14942
+ To: test1@example.com,
14943
+ test2@example.com
14944
+ Message-ID: <547f852ceeed0_bd1e3fff5982dbb8794e4@Eliass-MacBook-Pro.local.mail>
14945
+ Subject: Feedback
14946
+ Mime-Version: 1.0
14947
+ Content-Type: text/html;
14948
+ charset=UTF-8
14949
+ Content-Transfer-Encoding: 7bit
14950
+
14951
+ You've got feedback!
14952
+
14953
+ <p>Name: Some Guy</p>
14954
+ <p>Email Address: some_guy@web.com</p>
14955
+ <p>Topic: Other</p>
14956
+ <p>Description: Yo website bork</p>
14957
+
14958
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14959
+ Redirected to http://test.host/
14960
+ Completed 302 Found in 14ms (ActiveRecord: 0.4ms)
14961
+  (0.6ms) rollback transaction
14962
+  (0.1ms) begin transaction
14963
+ Processing by PointlessFeedback::MessagesController#create as HTML
14964
+ Parameters: {"message"=>{"name"=>"Some Guy", "email_address"=>"some_guy@web.com", "topic"=>"Other", "description"=>"Yo website bork"}}
14965
+  (0.1ms) SAVEPOINT active_record_1
14966
+ SQL (0.4ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:48:28 UTC +00:00], ["description", "Yo website bork"], ["email_address", "some_guy@web.com"], ["name", "Some Guy"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:48:28 UTC +00:00]]
14967
+
14968
+ Sent mail to test1@example.com, test2@example.com (5ms)
14969
+ Date: Wed, 03 Dec 2014 14:48:28 -0700
14970
+ From: some_guy@web.com
14971
+ To: test1@example.com,
14972
+ test2@example.com
14973
+ Message-ID: <547f852cf3611_bd1e3fff5982dbb8795a8@Eliass-MacBook-Pro.local.mail>
14974
+ Subject: Feedback
14975
+ Mime-Version: 1.0
14976
+ Content-Type: text/html;
14977
+ charset=UTF-8
14978
+ Content-Transfer-Encoding: 7bit
14979
+
14980
+ You've got feedback!
14981
+
14982
+ <p>Name: Some Guy</p>
14983
+ <p>Email Address: some_guy@web.com</p>
14984
+ <p>Topic: Other</p>
14985
+ <p>Description: Yo website bork</p>
14986
+
14987
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14988
+ Redirected to http://test.host/
14989
+ Completed 302 Found in 14ms (ActiveRecord: 0.5ms)
14990
+  (0.4ms) rollback transaction
14991
+  (0.0ms) begin transaction
14992
+ Processing by PointlessFeedback::MessagesController#create as HTML
14993
+ Parameters: {"message"=>{"name"=>"Some Guy", "email_address"=>"some_guy@web.com", "topic"=>"Other", "description"=>"Yo website bork"}}
14994
+  (0.0ms) SAVEPOINT active_record_1
14995
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:48:29 UTC +00:00], ["description", "Yo website bork"], ["email_address", "some_guy@web.com"], ["name", "Some Guy"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:48:29 UTC +00:00]]
14996
+
14997
+ Sent mail to test1@example.com, test2@example.com (4ms)
14998
+ Date: Wed, 03 Dec 2014 14:48:29 -0700
14999
+ From: some_guy@web.com
15000
+ To: test1@example.com,
15001
+ test2@example.com
15002
+ Message-ID: <547f852d2964_bd1e3fff5982dbb87961f@Eliass-MacBook-Pro.local.mail>
15003
+ Subject: Feedback
15004
+ Mime-Version: 1.0
15005
+ Content-Type: text/html;
15006
+ charset=UTF-8
15007
+ Content-Transfer-Encoding: 7bit
15008
+
15009
+ You've got feedback!
15010
+
15011
+ <p>Name: Some Guy</p>
15012
+ <p>Email Address: some_guy@web.com</p>
15013
+ <p>Topic: Other</p>
15014
+ <p>Description: Yo website bork</p>
15015
+
15016
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15017
+ Redirected to http://test.host/
15018
+ Completed 302 Found in 11ms (ActiveRecord: 0.4ms)
15019
+  (0.3ms) rollback transaction
15020
+  (0.0ms) begin transaction
15021
+ Processing by PointlessFeedback::MessagesController#create as HTML
15022
+ Parameters: {"message"=>{"name"=>"Some Guy", "email_address"=>"some_guy@web.com", "topic"=>"Other", "description"=>"Yo website bork"}}
15023
+  (0.0ms) SAVEPOINT active_record_1
15024
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:48:29 UTC +00:00], ["description", "Yo website bork"], ["email_address", "some_guy@web.com"], ["name", "Some Guy"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:48:29 UTC +00:00]]
15025
+
15026
+ Sent mail to test1@example.com, test2@example.com (5ms)
15027
+ Date: Wed, 03 Dec 2014 14:48:29 -0700
15028
+ From: some_guy@web.com
15029
+ To: test1@example.com,
15030
+ test2@example.com
15031
+ Message-ID: <547f852d86f9_bd1e3fff5982dbb8797f@Eliass-MacBook-Pro.local.mail>
15032
+ Subject: Feedback
15033
+ Mime-Version: 1.0
15034
+ Content-Type: text/html;
15035
+ charset=UTF-8
15036
+ Content-Transfer-Encoding: 7bit
15037
+
15038
+ You've got feedback!
15039
+
15040
+ <p>Name: Some Guy</p>
15041
+ <p>Email Address: some_guy@web.com</p>
15042
+ <p>Topic: Other</p>
15043
+ <p>Description: Yo website bork</p>
15044
+
15045
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15046
+ Redirected to http://test.host/dashboard
15047
+ Completed 302 Found in 21ms (ActiveRecord: 0.4ms)
15048
+  (0.4ms) rollback transaction
15049
+  (0.0ms) begin transaction
15050
+ Processing by PointlessFeedback::MessagesController#create as HTML
15051
+ Parameters: {"message"=>{"name"=>"Some Guy", "email_address"=>"some_guy@web.com", "topic"=>"Other", "description"=>"Yo website bork"}}
15052
+  (0.0ms) SAVEPOINT active_record_1
15053
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:48:29 UTC +00:00], ["description", "Yo website bork"], ["email_address", "some_guy@web.com"], ["name", "Some Guy"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:48:29 UTC +00:00]]
15054
+
15055
+ Sent mail to test1@example.com, test2@example.com (5ms)
15056
+ Date: Wed, 03 Dec 2014 14:48:29 -0700
15057
+ From: some_guy@web.com
15058
+ To: test1@example.com,
15059
+ test2@example.com
15060
+ Message-ID: <547f852dbf0a_bd1e3fff5982dbb8798bf@Eliass-MacBook-Pro.local.mail>
15061
+ Subject: Feedback
15062
+ Mime-Version: 1.0
15063
+ Content-Type: text/html;
15064
+ charset=UTF-8
15065
+ Content-Transfer-Encoding: 7bit
15066
+
15067
+ You've got feedback!
15068
+
15069
+ <p>Name: Some Guy</p>
15070
+ <p>Email Address: some_guy@web.com</p>
15071
+ <p>Topic: Other</p>
15072
+ <p>Description: Yo website bork</p>
15073
+
15074
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15075
+ Redirected to http://test.host/dashboard
15076
+ Completed 302 Found in 12ms (ActiveRecord: 0.4ms)
15077
+  (0.3ms) rollback transaction
15078
+  (0.0ms) begin transaction
15079
+ Processing by PointlessFeedback::MessagesController#create as HTML
15080
+ Parameters: {"message"=>{"name"=>"Some Guy", "email_address"=>"some_guy@web.com", "topic"=>"Other", "description"=>"Yo website bork"}}
15081
+  (0.0ms) SAVEPOINT active_record_1
15082
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:48:29 UTC +00:00], ["description", "Yo website bork"], ["email_address", "some_guy@web.com"], ["name", "Some Guy"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:48:29 UTC +00:00]]
15083
+
15084
+ Sent mail to test1@example.com, test2@example.com (5ms)
15085
+ Date: Wed, 03 Dec 2014 14:48:29 -0700
15086
+ From: some_guy@web.com
15087
+ To: test1@example.com,
15088
+ test2@example.com
15089
+ Message-ID: <547f852df767_bd1e3fff5982dbb87999c@Eliass-MacBook-Pro.local.mail>
15090
+ Subject: Feedback
15091
+ Mime-Version: 1.0
15092
+ Content-Type: text/html;
15093
+ charset=UTF-8
15094
+ Content-Transfer-Encoding: 7bit
15095
+
15096
+ You've got feedback!
15097
+
15098
+ <p>Name: Some Guy</p>
15099
+ <p>Email Address: some_guy@web.com</p>
15100
+ <p>Topic: Other</p>
15101
+ <p>Description: Yo website bork</p>
15102
+
15103
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15104
+ Redirected to http://test.host/dashboard
15105
+ Completed 302 Found in 12ms (ActiveRecord: 0.3ms)
15106
+  (0.4ms) rollback transaction
15107
+  (0.0ms) begin transaction
15108
+ Started GET "/pointless_feedback" for 127.0.0.1 at 2014-12-03 14:48:29 -0700
15109
+ Processing by PointlessFeedback::MessagesController#new as HTML
15110
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
15111
+ Started POST "/pointless_feedback/messages" for 127.0.0.1 at 2014-12-03 14:48:29 -0700
15112
+ Processing by PointlessFeedback::MessagesController#create as HTML
15113
+ Parameters: {"utf8"=>"✓", "message"=>{"name"=>"Eli", "email_address"=>"eli@example.com", "topic"=>"Other", "description"=>"This site is awful", "contact_info"=>""}, "commit"=>"Submit"}
15114
+  (0.1ms) SAVEPOINT active_record_1
15115
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:48:29 UTC +00:00], ["description", "This site is awful"], ["email_address", "eli@example.com"], ["name", "Eli"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:48:29 UTC +00:00]]
15116
+
15117
+ Sent mail to test1@example.com, test2@example.com (4ms)
15118
+ Date: Wed, 03 Dec 2014 14:48:29 -0700
15119
+ From: eli@example.com
15120
+ To: test1@example.com,
15121
+ test2@example.com
15122
+ Message-ID: <547f852d166e7_bd1e3fff5982dbb880028@Eliass-MacBook-Pro.local.mail>
15123
+ Subject: Feedback
15124
+ Mime-Version: 1.0
15125
+ Content-Type: text/html;
15126
+ charset=UTF-8
15127
+ Content-Transfer-Encoding: 7bit
15128
+
15129
+ You've got feedback!
15130
+
15131
+ <p>Name: Eli</p>
15132
+ <p>Email Address: eli@example.com</p>
15133
+ <p>Topic: Other</p>
15134
+ <p>Description: This site is awful</p>
15135
+
15136
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15137
+ Redirected to http://www.example.com/
15138
+ Completed 302 Found in 13ms (ActiveRecord: 0.4ms)
15139
+ Started GET "/" for 127.0.0.1 at 2014-12-03 14:48:29 -0700
15140
+ Processing by HomeController#index as HTML
15141
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
15142
+  (0.4ms) rollback transaction
15143
+  (0.0ms) begin transaction
15144
+ Started GET "/pointless_feedback" for 127.0.0.1 at 2014-12-03 14:48:29 -0700
15145
+ Processing by PointlessFeedback::MessagesController#new as HTML
15146
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
15147
+ Started POST "/pointless_feedback/messages" for 127.0.0.1 at 2014-12-03 14:48:29 -0700
15148
+ Processing by PointlessFeedback::MessagesController#create as HTML
15149
+ Parameters: {"utf8"=>"✓", "message"=>{"name"=>"Eli", "email_address"=>"eli@example.com", "topic"=>"Other", "description"=>"This site is awful", "contact_info"=>""}, "commit"=>"Submit"}
15150
+  (0.0ms) SAVEPOINT active_record_1
15151
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:48:29 UTC +00:00], ["description", "This site is awful"], ["email_address", "eli@example.com"], ["name", "Eli"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:48:29 UTC +00:00]]
15152
+
15153
+ Sent mail to test1@example.com, test2@example.com (5ms)
15154
+ Date: Wed, 03 Dec 2014 14:48:29 -0700
15155
+ From: eli@example.com
15156
+ To: test1@example.com,
15157
+ test2@example.com
15158
+ Message-ID: <547f852d1e454_bd1e3fff5982dbb88019c@Eliass-MacBook-Pro.local.mail>
15159
+ Subject: Feedback
15160
+ Mime-Version: 1.0
15161
+ Content-Type: text/html;
15162
+ charset=UTF-8
15163
+ Content-Transfer-Encoding: 7bit
15164
+
15165
+ You've got feedback!
15166
+
15167
+ <p>Name: Eli</p>
15168
+ <p>Email Address: eli@example.com</p>
15169
+ <p>Topic: Other</p>
15170
+ <p>Description: This site is awful</p>
15171
+
15172
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15173
+ Redirected to http://www.example.com/
15174
+ Completed 302 Found in 12ms (ActiveRecord: 0.4ms)
15175
+ Started GET "/" for 127.0.0.1 at 2014-12-03 14:48:29 -0700
15176
+ Processing by HomeController#index as HTML
15177
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
15178
+  (0.4ms) rollback transaction
15179
+  (0.0ms) begin transaction
15180
+ Started GET "/pointless_feedback" for 127.0.0.1 at 2014-12-03 14:48:29 -0700
15181
+ Processing by PointlessFeedback::MessagesController#new as HTML
15182
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
15183
+ Started POST "/pointless_feedback/messages" for 127.0.0.1 at 2014-12-03 14:48:29 -0700
15184
+ Processing by PointlessFeedback::MessagesController#create as HTML
15185
+ Parameters: {"utf8"=>"✓", "message"=>{"name"=>"Eli", "email_address"=>"eli@example.com", "topic"=>"Other", "description"=>"This site is awful", "contact_info"=>"I'm a spam bot!"}, "commit"=>"Submit"}
15186
+  (0.1ms) SAVEPOINT active_record_1
15187
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:48:29 UTC +00:00], ["description", "This site is awful"], ["email_address", "eli@example.com"], ["name", "Eli"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:48:29 UTC +00:00]]
15188
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15189
+ Redirected to http://www.example.com/
15190
+ Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
15191
+ Started GET "/" for 127.0.0.1 at 2014-12-03 14:48:29 -0700
15192
+ Processing by HomeController#index as HTML
15193
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
15194
+  (0.4ms) rollback transaction
15195
+  (0.0ms) begin transaction
15196
+ Started GET "/pointless_feedback" for 127.0.0.1 at 2014-12-03 14:48:29 -0700
15197
+ Processing by PointlessFeedback::MessagesController#new as HTML
15198
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
15199
+ Started POST "/pointless_feedback/messages" for 127.0.0.1 at 2014-12-03 14:48:29 -0700
15200
+ Processing by PointlessFeedback::MessagesController#create as HTML
15201
+ Parameters: {"utf8"=>"✓", "message"=>{"name"=>"Eli", "email_address"=>"eli@example.com", "topic"=>"Other", "description"=>"This site is awful", "contact_info"=>"I'm a spam bot!"}, "commit"=>"Submit"}
15202
+  (0.0ms) SAVEPOINT active_record_1
15203
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 21:48:29 UTC +00:00], ["description", "This site is awful"], ["email_address", "eli@example.com"], ["name", "Eli"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 21:48:29 UTC +00:00]]
15204
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15205
+ Redirected to http://www.example.com/
15206
+ Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
15207
+ Started GET "/" for 127.0.0.1 at 2014-12-03 14:48:29 -0700
15208
+ Processing by HomeController#index as HTML
15209
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
15210
+  (0.4ms) rollback transaction
15211
+  (0.0ms) begin transaction
15212
+  (0.0ms) rollback transaction
15213
+  (0.0ms) begin transaction
15214
+  (0.0ms) rollback transaction
15215
+  (0.0ms) begin transaction
15216
+  (0.0ms) rollback transaction
15217
+  (0.0ms) begin transaction
15218
+  (0.0ms) rollback transaction
15219
+  (0.0ms) begin transaction
15220
+  (0.0ms) rollback transaction
15221
+  (0.0ms) begin transaction
15222
+  (0.0ms) rollback transaction
15223
+ Connecting to database specified by database.yml
15224
+  (0.2ms) begin transaction
15225
+  (0.0ms) rollback transaction
15226
+  (0.0ms) begin transaction
15227
+ Started GET "/pointless_feedback" for 127.0.0.1 at 2014-12-03 15:12:23 -0700
15228
+ Processing by PointlessFeedback::MessagesController#new as HTML
15229
+ Rendered /Users/efatsi/Desktop/Projects/Gems/pointless-feedback/app/views/pointless_feedback/messages/new.html.erb within layouts/application (8.3ms)
15230
+ Completed 200 OK in 32ms (Views: 16.4ms | ActiveRecord: 0.7ms)
15231
+  (0.1ms) rollback transaction
15232
+  (0.0ms) begin transaction
15233
+  (0.0ms) SAVEPOINT active_record_1
15234
+ SQL (3.0ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 22:12:23 UTC +00:00], ["description", "Site is broke"], ["email_address", "developer@pointlesscorp.com"], ["name", "A Developer"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 22:12:23 UTC +00:00]]
15235
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15236
+  (0.8ms) rollback transaction
15237
+  (0.1ms) begin transaction
15238
+  (0.0ms) SAVEPOINT active_record_1
15239
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 22:12:23 UTC +00:00], ["description", "Site is broke"], ["email_address", "developer@pointlesscorp.com"], ["name", "A Developer"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 22:12:23 UTC +00:00]]
15240
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15241
+  (0.3ms) rollback transaction
15242
+  (0.0ms) begin transaction
15243
+  (0.1ms) SAVEPOINT active_record_1
15244
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 22:12:23 UTC +00:00], ["description", "Site is broke"], ["email_address", "developer@pointlesscorp.com"], ["name", "A Developer"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 22:12:23 UTC +00:00]]
15245
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15246
+  (0.4ms) rollback transaction
15247
+  (0.0ms) begin transaction
15248
+  (0.0ms) SAVEPOINT active_record_1
15249
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 22:12:23 UTC +00:00], ["description", "Site is broke"], ["email_address", "developer@pointlesscorp.com"], ["name", "A Developer"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 22:12:23 UTC +00:00]]
15250
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15251
+  (0.4ms) rollback transaction
15252
+  (0.0ms) begin transaction
15253
+  (0.0ms) SAVEPOINT active_record_1
15254
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
15255
+  (0.0ms) rollback transaction
15256
+  (0.0ms) begin transaction
15257
+  (0.0ms) SAVEPOINT active_record_1
15258
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
15259
+  (0.0ms) rollback transaction
15260
+  (0.0ms) begin transaction
15261
+  (0.0ms) SAVEPOINT active_record_1
15262
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
15263
+  (0.0ms) rollback transaction
15264
+  (0.0ms) begin transaction
15265
+  (0.0ms) SAVEPOINT active_record_1
15266
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
15267
+  (0.0ms) rollback transaction
15268
+  (0.0ms) begin transaction
15269
+  (0.0ms) rollback transaction
15270
+  (0.0ms) begin transaction
15271
+  (0.0ms) rollback transaction
15272
+  (0.0ms) begin transaction
15273
+  (0.0ms) SAVEPOINT active_record_1
15274
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 22:12:23 UTC +00:00], ["description", "Site is broke"], ["email_address", "developer@pointlesscorp.com"], ["name", "A Developer"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 22:12:23 UTC +00:00]]
15275
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15276
+  (0.3ms) rollback transaction
15277
+  (0.0ms) begin transaction
15278
+  (0.0ms) SAVEPOINT active_record_1
15279
+ SQL (0.2ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 22:12:23 UTC +00:00], ["description", "Site is broke"], ["email_address", "developer@pointlesscorp.com"], ["name", "A Developer"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 22:12:23 UTC +00:00]]
15280
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15281
+  (0.2ms) rollback transaction
15282
+  (0.0ms) begin transaction
15283
+  (0.0ms) SAVEPOINT active_record_1
15284
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 22:12:23 UTC +00:00], ["description", "Site is broke"], ["email_address", "developer@pointlesscorp.com"], ["name", "A Developer"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 22:12:23 UTC +00:00]]
15285
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15286
+  (0.3ms) rollback transaction
15287
+  (0.0ms) begin transaction
15288
+ Processing by PointlessFeedback::MessagesController#new as HTML
15289
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
15290
+  (0.0ms) rollback transaction
15291
+  (0.0ms) begin transaction
15292
+ Processing by PointlessFeedback::MessagesController#new as HTML
15293
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
15294
+  (0.0ms) rollback transaction
15295
+  (0.0ms) begin transaction
15296
+ Processing by PointlessFeedback::MessagesController#new as HTML
15297
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
15298
+  (0.0ms) rollback transaction
15299
+  (0.0ms) begin transaction
15300
+  (0.0ms) rollback transaction
15301
+  (0.0ms) begin transaction
15302
+  (0.0ms) rollback transaction
15303
+  (0.0ms) begin transaction
15304
+  (0.0ms) rollback transaction
15305
+  (0.0ms) begin transaction
15306
+ Processing by PointlessFeedback::MessagesController#create as HTML
15307
+ Parameters: {"message"=>{"name"=>""}}
15308
+  (0.0ms) SAVEPOINT active_record_1
15309
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
15310
+ Completed 200 OK in 7ms (Views: 4.5ms | ActiveRecord: 0.1ms)
15311
+  (0.0ms) rollback transaction
15312
+  (0.0ms) begin transaction
15313
+ Processing by PointlessFeedback::MessagesController#create as HTML
15314
+ Parameters: {"message"=>{"name"=>""}}
15315
+  (0.0ms) SAVEPOINT active_record_1
15316
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
15317
+ Completed 200 OK in 7ms (Views: 4.7ms | ActiveRecord: 0.1ms)
15318
+  (0.0ms) rollback transaction
15319
+  (0.0ms) begin transaction
15320
+ Processing by PointlessFeedback::MessagesController#create as HTML
15321
+ Parameters: {"message"=>{"name"=>""}}
15322
+  (0.0ms) SAVEPOINT active_record_1
15323
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
15324
+ Completed 200 OK in 7ms (Views: 4.2ms | ActiveRecord: 0.1ms)
15325
+  (0.0ms) rollback transaction
15326
+  (0.0ms) begin transaction
15327
+ Processing by PointlessFeedback::MessagesController#create as HTML
15328
+ Parameters: {"message"=>{"name"=>"Some Guy", "email_address"=>"some_guy@web.com", "topic"=>"Other", "description"=>"Yo website bork"}}
15329
+  (0.0ms) SAVEPOINT active_record_1
15330
+ SQL (0.4ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 22:12:23 UTC +00:00], ["description", "Yo website bork"], ["email_address", "some_guy@web.com"], ["name", "Some Guy"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 22:12:23 UTC +00:00]]
15331
+
15332
+ Sent mail to test1@example.com, test2@example.com (8ms)
15333
+ Date: Wed, 03 Dec 2014 15:12:23 -0700
15334
+ From: some_guy@web.com
15335
+ To: test1@example.com,
15336
+ test2@example.com
15337
+ Message-ID: <547f8ac7cd988_c6cd3ffede02dbb4347ef@Eliass-MacBook-Pro.local.mail>
15338
+ Subject: Feedback
15339
+ Mime-Version: 1.0
15340
+ Content-Type: text/html;
15341
+ charset=UTF-8
15342
+ Content-Transfer-Encoding: 7bit
15343
+
15344
+ You've got feedback!
15345
+
15346
+ <p>Name: Some Guy</p>
15347
+ <p>Email Address: some_guy@web.com</p>
15348
+ <p>Topic: Other</p>
15349
+ <p>Description: Yo website bork</p>
15350
+
15351
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15352
+ Redirected to http://test.host/
15353
+ Completed 302 Found in 16ms (ActiveRecord: 0.5ms)
15354
+  (0.4ms) rollback transaction
15355
+  (0.1ms) begin transaction
15356
+ Processing by PointlessFeedback::MessagesController#create as HTML
15357
+ Parameters: {"message"=>{"name"=>"Some Guy", "email_address"=>"some_guy@web.com", "topic"=>"Other", "description"=>"Yo website bork"}}
15358
+  (0.0ms) SAVEPOINT active_record_1
15359
+ SQL (0.4ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 22:12:23 UTC +00:00], ["description", "Yo website bork"], ["email_address", "some_guy@web.com"], ["name", "Some Guy"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 22:12:23 UTC +00:00]]
15360
+
15361
+ Sent mail to test1@example.com, test2@example.com (5ms)
15362
+ Date: Wed, 03 Dec 2014 15:12:23 -0700
15363
+ From: some_guy@web.com
15364
+ To: test1@example.com,
15365
+ test2@example.com
15366
+ Message-ID: <547f8ac7d23e1_c6cd3ffede02dbb434883@Eliass-MacBook-Pro.local.mail>
15367
+ Subject: Feedback
15368
+ Mime-Version: 1.0
15369
+ Content-Type: text/html;
15370
+ charset=UTF-8
15371
+ Content-Transfer-Encoding: 7bit
15372
+
15373
+ You've got feedback!
15374
+
15375
+ <p>Name: Some Guy</p>
15376
+ <p>Email Address: some_guy@web.com</p>
15377
+ <p>Topic: Other</p>
15378
+ <p>Description: Yo website bork</p>
15379
+
15380
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15381
+ Redirected to http://test.host/
15382
+ Completed 302 Found in 13ms (ActiveRecord: 0.5ms)
15383
+  (0.3ms) rollback transaction
15384
+  (0.0ms) begin transaction
15385
+ Processing by PointlessFeedback::MessagesController#create as HTML
15386
+ Parameters: {"message"=>{"name"=>"Some Guy", "email_address"=>"some_guy@web.com", "topic"=>"Other", "description"=>"Yo website bork"}}
15387
+  (0.0ms) SAVEPOINT active_record_1
15388
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 22:12:23 UTC +00:00], ["description", "Yo website bork"], ["email_address", "some_guy@web.com"], ["name", "Some Guy"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 22:12:23 UTC +00:00]]
15389
+
15390
+ Sent mail to test1@example.com, test2@example.com (5ms)
15391
+ Date: Wed, 03 Dec 2014 15:12:23 -0700
15392
+ From: some_guy@web.com
15393
+ To: test1@example.com,
15394
+ test2@example.com
15395
+ Message-ID: <547f8ac7d593e_c6cd3ffede02dbb43498e@Eliass-MacBook-Pro.local.mail>
15396
+ Subject: Feedback
15397
+ Mime-Version: 1.0
15398
+ Content-Type: text/html;
15399
+ charset=UTF-8
15400
+ Content-Transfer-Encoding: 7bit
15401
+
15402
+ You've got feedback!
15403
+
15404
+ <p>Name: Some Guy</p>
15405
+ <p>Email Address: some_guy@web.com</p>
15406
+ <p>Topic: Other</p>
15407
+ <p>Description: Yo website bork</p>
15408
+
15409
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15410
+ Redirected to http://test.host/
15411
+ Completed 302 Found in 12ms (ActiveRecord: 0.4ms)
15412
+  (0.4ms) rollback transaction
15413
+  (0.0ms) begin transaction
15414
+ Processing by PointlessFeedback::MessagesController#create as HTML
15415
+ Parameters: {"message"=>{"name"=>"Some Guy", "email_address"=>"some_guy@web.com", "topic"=>"Other", "description"=>"Yo website bork"}}
15416
+  (0.0ms) SAVEPOINT active_record_1
15417
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 22:12:23 UTC +00:00], ["description", "Yo website bork"], ["email_address", "some_guy@web.com"], ["name", "Some Guy"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 22:12:23 UTC +00:00]]
15418
+
15419
+ Sent mail to test1@example.com, test2@example.com (14ms)
15420
+ Date: Wed, 03 Dec 2014 15:12:23 -0700
15421
+ From: some_guy@web.com
15422
+ To: test1@example.com,
15423
+ test2@example.com
15424
+ Message-ID: <547f8ac7db7d5_c6cd3ffede02dbb435094@Eliass-MacBook-Pro.local.mail>
15425
+ Subject: Feedback
15426
+ Mime-Version: 1.0
15427
+ Content-Type: text/html;
15428
+ charset=UTF-8
15429
+ Content-Transfer-Encoding: 7bit
15430
+
15431
+ You've got feedback!
15432
+
15433
+ <p>Name: Some Guy</p>
15434
+ <p>Email Address: some_guy@web.com</p>
15435
+ <p>Topic: Other</p>
15436
+ <p>Description: Yo website bork</p>
15437
+
15438
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15439
+ Redirected to http://test.host/dashboard
15440
+ Completed 302 Found in 21ms (ActiveRecord: 0.5ms)
15441
+  (0.4ms) rollback transaction
15442
+  (0.0ms) begin transaction
15443
+ Processing by PointlessFeedback::MessagesController#create as HTML
15444
+ Parameters: {"message"=>{"name"=>"Some Guy", "email_address"=>"some_guy@web.com", "topic"=>"Other", "description"=>"Yo website bork"}}
15445
+  (0.0ms) SAVEPOINT active_record_1
15446
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 22:12:23 UTC +00:00], ["description", "Yo website bork"], ["email_address", "some_guy@web.com"], ["name", "Some Guy"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 22:12:23 UTC +00:00]]
15447
+
15448
+ Sent mail to test1@example.com, test2@example.com (5ms)
15449
+ Date: Wed, 03 Dec 2014 15:12:23 -0700
15450
+ From: some_guy@web.com
15451
+ To: test1@example.com,
15452
+ test2@example.com
15453
+ Message-ID: <547f8ac7df171_c6cd3ffede02dbb4351b3@Eliass-MacBook-Pro.local.mail>
15454
+ Subject: Feedback
15455
+ Mime-Version: 1.0
15456
+ Content-Type: text/html;
15457
+ charset=UTF-8
15458
+ Content-Transfer-Encoding: 7bit
15459
+
15460
+ You've got feedback!
15461
+
15462
+ <p>Name: Some Guy</p>
15463
+ <p>Email Address: some_guy@web.com</p>
15464
+ <p>Topic: Other</p>
15465
+ <p>Description: Yo website bork</p>
15466
+
15467
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15468
+ Redirected to http://test.host/dashboard
15469
+ Completed 302 Found in 12ms (ActiveRecord: 0.4ms)
15470
+  (0.4ms) rollback transaction
15471
+  (0.1ms) begin transaction
15472
+ Processing by PointlessFeedback::MessagesController#create as HTML
15473
+ Parameters: {"message"=>{"name"=>"Some Guy", "email_address"=>"some_guy@web.com", "topic"=>"Other", "description"=>"Yo website bork"}}
15474
+  (0.0ms) SAVEPOINT active_record_1
15475
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 22:12:23 UTC +00:00], ["description", "Yo website bork"], ["email_address", "some_guy@web.com"], ["name", "Some Guy"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 22:12:23 UTC +00:00]]
15476
+
15477
+ Sent mail to test1@example.com, test2@example.com (5ms)
15478
+ Date: Wed, 03 Dec 2014 15:12:23 -0700
15479
+ From: some_guy@web.com
15480
+ To: test1@example.com,
15481
+ test2@example.com
15482
+ Message-ID: <547f8ac7e2c12_c6cd3ffede02dbb435285@Eliass-MacBook-Pro.local.mail>
15483
+ Subject: Feedback
15484
+ Mime-Version: 1.0
15485
+ Content-Type: text/html;
15486
+ charset=UTF-8
15487
+ Content-Transfer-Encoding: 7bit
15488
+
15489
+ You've got feedback!
15490
+
15491
+ <p>Name: Some Guy</p>
15492
+ <p>Email Address: some_guy@web.com</p>
15493
+ <p>Topic: Other</p>
15494
+ <p>Description: Yo website bork</p>
15495
+
15496
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15497
+ Redirected to http://test.host/dashboard
15498
+ Completed 302 Found in 13ms (ActiveRecord: 0.4ms)
15499
+  (0.4ms) rollback transaction
15500
+  (0.0ms) begin transaction
15501
+ Started GET "/pointless_feedback" for 127.0.0.1 at 2014-12-03 15:12:23 -0700
15502
+ Processing by PointlessFeedback::MessagesController#new as HTML
15503
+ Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
15504
+ Started POST "/pointless_feedback/messages" for 127.0.0.1 at 2014-12-03 15:12:23 -0700
15505
+ Processing by PointlessFeedback::MessagesController#create as HTML
15506
+ Parameters: {"utf8"=>"✓", "message"=>{"name"=>"Eli", "email_address"=>"eli@example.com", "topic"=>"Other", "description"=>"This site is awful", "contact_info"=>""}, "commit"=>"Submit"}
15507
+  (0.1ms) SAVEPOINT active_record_1
15508
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 22:12:23 UTC +00:00], ["description", "This site is awful"], ["email_address", "eli@example.com"], ["name", "Eli"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 22:12:23 UTC +00:00]]
15509
+
15510
+ Sent mail to test1@example.com, test2@example.com (5ms)
15511
+ Date: Wed, 03 Dec 2014 15:12:23 -0700
15512
+ From: eli@example.com
15513
+ To: test1@example.com,
15514
+ test2@example.com
15515
+ Message-ID: <547f8ac7ea773_c6cd3ffede02dbb4353ea@Eliass-MacBook-Pro.local.mail>
15516
+ Subject: Feedback
15517
+ Mime-Version: 1.0
15518
+ Content-Type: text/html;
15519
+ charset=UTF-8
15520
+ Content-Transfer-Encoding: 7bit
15521
+
15522
+ You've got feedback!
15523
+
15524
+ <p>Name: Eli</p>
15525
+ <p>Email Address: eli@example.com</p>
15526
+ <p>Topic: Other</p>
15527
+ <p>Description: This site is awful</p>
15528
+
15529
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15530
+ Redirected to http://www.example.com/
15531
+ Completed 302 Found in 12ms (ActiveRecord: 0.4ms)
15532
+ Started GET "/" for 127.0.0.1 at 2014-12-03 15:12:23 -0700
15533
+ Processing by HomeController#index as HTML
15534
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
15535
+  (0.4ms) rollback transaction
15536
+  (0.0ms) begin transaction
15537
+ Started GET "/pointless_feedback" for 127.0.0.1 at 2014-12-03 15:12:23 -0700
15538
+ Processing by PointlessFeedback::MessagesController#new as HTML
15539
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
15540
+ Started POST "/pointless_feedback/messages" for 127.0.0.1 at 2014-12-03 15:12:23 -0700
15541
+ Processing by PointlessFeedback::MessagesController#create as HTML
15542
+ Parameters: {"utf8"=>"✓", "message"=>{"name"=>"Eli", "email_address"=>"eli@example.com", "topic"=>"Other", "description"=>"This site is awful", "contact_info"=>""}, "commit"=>"Submit"}
15543
+  (0.1ms) SAVEPOINT active_record_1
15544
+ SQL (0.4ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 22:12:23 UTC +00:00], ["description", "This site is awful"], ["email_address", "eli@example.com"], ["name", "Eli"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 22:12:23 UTC +00:00]]
15545
+
15546
+ Sent mail to test1@example.com, test2@example.com (6ms)
15547
+ Date: Wed, 03 Dec 2014 15:12:23 -0700
15548
+ From: eli@example.com
15549
+ To: test1@example.com,
15550
+ test2@example.com
15551
+ Message-ID: <547f8ac7f370d_c6cd3ffede02dbb43549f@Eliass-MacBook-Pro.local.mail>
15552
+ Subject: Feedback
15553
+ Mime-Version: 1.0
15554
+ Content-Type: text/html;
15555
+ charset=UTF-8
15556
+ Content-Transfer-Encoding: 7bit
15557
+
15558
+ You've got feedback!
15559
+
15560
+ <p>Name: Eli</p>
15561
+ <p>Email Address: eli@example.com</p>
15562
+ <p>Topic: Other</p>
15563
+ <p>Description: This site is awful</p>
15564
+
15565
+  (0.1ms) RELEASE SAVEPOINT active_record_1
15566
+ Redirected to http://www.example.com/
15567
+ Completed 302 Found in 15ms (ActiveRecord: 0.5ms)
15568
+ Started GET "/" for 127.0.0.1 at 2014-12-03 15:12:24 -0700
15569
+ Processing by HomeController#index as HTML
15570
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
15571
+  (0.4ms) rollback transaction
15572
+  (0.0ms) begin transaction
15573
+ Started GET "/pointless_feedback" for 127.0.0.1 at 2014-12-03 15:12:24 -0700
15574
+ Processing by PointlessFeedback::MessagesController#new as HTML
15575
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
15576
+ Started POST "/pointless_feedback/messages" for 127.0.0.1 at 2014-12-03 15:12:24 -0700
15577
+ Processing by PointlessFeedback::MessagesController#create as HTML
15578
+ Parameters: {"utf8"=>"✓", "message"=>{"name"=>"Eli", "email_address"=>"eli@example.com", "topic"=>"Other", "description"=>"This site is awful", "contact_info"=>"I'm a spam bot!"}, "commit"=>"Submit"}
15579
+  (0.0ms) SAVEPOINT active_record_1
15580
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 22:12:24 UTC +00:00], ["description", "This site is awful"], ["email_address", "eli@example.com"], ["name", "Eli"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 22:12:24 UTC +00:00]]
15581
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15582
+ Redirected to http://www.example.com/
15583
+ Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
15584
+ Started GET "/" for 127.0.0.1 at 2014-12-03 15:12:24 -0700
15585
+ Processing by HomeController#index as HTML
15586
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
15587
+  (0.4ms) rollback transaction
15588
+  (0.0ms) begin transaction
15589
+ Started GET "/pointless_feedback" for 127.0.0.1 at 2014-12-03 15:12:24 -0700
15590
+ Processing by PointlessFeedback::MessagesController#new as HTML
15591
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
15592
+ Started POST "/pointless_feedback/messages" for 127.0.0.1 at 2014-12-03 15:12:24 -0700
15593
+ Processing by PointlessFeedback::MessagesController#create as HTML
15594
+ Parameters: {"utf8"=>"✓", "message"=>{"name"=>"Eli", "email_address"=>"eli@example.com", "topic"=>"Other", "description"=>"This site is awful", "contact_info"=>"I'm a spam bot!"}, "commit"=>"Submit"}
15595
+  (0.0ms) SAVEPOINT active_record_1
15596
+ SQL (0.3ms) INSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Dec 2014 22:12:24 UTC +00:00], ["description", "This site is awful"], ["email_address", "eli@example.com"], ["name", "Eli"], ["topic", "Other"], ["updated_at", Wed, 03 Dec 2014 22:12:24 UTC +00:00]]
15597
+  (0.0ms) RELEASE SAVEPOINT active_record_1
15598
+ Redirected to http://www.example.com/
15599
+ Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
15600
+ Started GET "/" for 127.0.0.1 at 2014-12-03 15:12:24 -0700
15601
+ Processing by HomeController#index as HTML
15602
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
15603
+  (0.5ms) rollback transaction
15604
+  (0.0ms) begin transaction
15605
+  (0.0ms) rollback transaction
15606
+  (0.0ms) begin transaction
15607
+  (0.0ms) rollback transaction
15608
+  (0.0ms) begin transaction
15609
+  (0.0ms) rollback transaction
15610
+  (0.0ms) begin transaction
15611
+  (0.1ms) rollback transaction
15612
+  (0.0ms) begin transaction
15613
+  (0.0ms) rollback transaction
15614
+  (0.0ms) begin transaction
15615
+  (0.0ms) rollback transaction