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 +4 -4
- data/README.md +24 -4
- data/app/mailers/pointless_feedback/feedback_mailer.rb +10 -3
- data/lib/generators/templates/pointless_feedback.rb +5 -5
- data/lib/pointless_feedback.rb +6 -1
- data/lib/pointless_feedback/version.rb +1 -1
- data/test/dummy/log/test.log +1965 -0
- data/test/functional/pointless_feedback/feedback_mailer_test.rb +15 -1
- data/test/unit/pointless_feedback/message_test.rb +2 -2
- metadata +15 -15
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 46e5258181867ea69cc450bb999392f43ed9f930
|
4
|
+
data.tar.gz: 0cca5d58b61a86aa77814a6ae48a55a4f28d951a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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. [
|
17
|
-
3. [
|
18
|
-
4. [
|
19
|
-
5. [
|
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
|
-
|
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
|
-
# ==>
|
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
|
10
|
-
# config.
|
11
|
-
# config.
|
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
|
data/lib/pointless_feedback.rb
CHANGED
@@ -17,9 +17,14 @@ module PointlessFeedback
|
|
17
17
|
|
18
18
|
# Variables needed for emailing feedback
|
19
19
|
mattr_accessor :email_feedback
|
20
|
-
@@
|
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
|
|
data/test/dummy/log/test.log
CHANGED
@@ -13648,3 +13648,1968 @@ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
|
13648
13648
|
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13649
13649
|
[1m[35m (0.0ms)[0m begin transaction
|
13650
13650
|
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13651
|
+
Connecting to database specified by database.yml
|
13652
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
13653
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
13654
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
13660
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13661
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
13662
|
+
[1m[36mSQL (3.6ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
13664
|
+
[1m[36m (1.0ms)[0m [1mrollback transaction[0m
|
13665
|
+
[1m[35m (0.1ms)[0m begin transaction
|
13666
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
13667
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
13669
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
13670
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13671
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
13672
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
13674
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
13675
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13676
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
13677
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
13679
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
13680
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13681
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
13682
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
13683
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
13684
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13685
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
13686
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
13687
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
13688
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13689
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
13690
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
13691
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
13692
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13693
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
13694
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
13695
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
13696
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13697
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
13698
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13699
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
13700
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
13701
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
13702
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
13704
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
13705
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13706
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
13707
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
13709
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
13710
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13711
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
13712
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
13714
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
13715
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13716
|
+
Processing by PointlessFeedback::MessagesController#new as HTML
|
13717
|
+
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
13718
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13719
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13720
|
+
Processing by PointlessFeedback::MessagesController#new as HTML
|
13721
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
13722
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13723
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13724
|
+
Processing by PointlessFeedback::MessagesController#new as HTML
|
13725
|
+
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
13726
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13727
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13728
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13729
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13730
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13731
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13732
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13733
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13734
|
+
Processing by PointlessFeedback::MessagesController#create as HTML
|
13735
|
+
Parameters: {"message"=>{"name"=>""}}
|
13736
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
13737
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
13738
|
+
Completed 200 OK in 7ms (Views: 4.5ms | ActiveRecord: 0.1ms)
|
13739
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13740
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13741
|
+
Processing by PointlessFeedback::MessagesController#create as HTML
|
13742
|
+
Parameters: {"message"=>{"name"=>""}}
|
13743
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
13744
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
13745
|
+
Completed 200 OK in 6ms (Views: 4.0ms | ActiveRecord: 0.1ms)
|
13746
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13747
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13748
|
+
Processing by PointlessFeedback::MessagesController#create as HTML
|
13749
|
+
Parameters: {"message"=>{"name"=>""}}
|
13750
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
13751
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
13752
|
+
Completed 200 OK in 6ms (Views: 4.1ms | ActiveRecord: 0.1ms)
|
13753
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13754
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
13758
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
13780
|
+
Redirected to http://test.host/
|
13781
|
+
Completed 302 Found in 16ms (ActiveRecord: 0.5ms)
|
13782
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
13783
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
13787
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
13809
|
+
Redirected to http://test.host/
|
13810
|
+
Completed 302 Found in 14ms (ActiveRecord: 0.5ms)
|
13811
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
13812
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
13816
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
13838
|
+
Redirected to http://test.host/
|
13839
|
+
Completed 302 Found in 12ms (ActiveRecord: 0.4ms)
|
13840
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
13841
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
13845
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
13867
|
+
Redirected to http://test.host/dashboard
|
13868
|
+
Completed 302 Found in 21ms (ActiveRecord: 0.4ms)
|
13869
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
13870
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
13874
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
13896
|
+
Redirected to http://test.host/dashboard
|
13897
|
+
Completed 302 Found in 12ms (ActiveRecord: 0.4ms)
|
13898
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
13899
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
13903
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
13925
|
+
Redirected to http://test.host/dashboard
|
13926
|
+
Completed 302 Found in 12ms (ActiveRecord: 0.4ms)
|
13927
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
13928
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
13936
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
13964
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
13972
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
14000
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
14008
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
14016
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
14024
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
14032
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14033
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14034
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14035
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14036
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14037
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14038
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14039
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14040
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14041
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14042
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14043
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14044
|
+
Connecting to database specified by database.yml
|
14045
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
14046
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
14047
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
14053
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
14054
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
14055
|
+
[1m[36mSQL (2.8ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
14057
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
14058
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14059
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
14060
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
14062
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
14063
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
14064
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
14065
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
14067
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
14068
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14069
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
14070
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
14072
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
14073
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
14074
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
14075
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
14076
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
14077
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
14078
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
14079
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
14080
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
14081
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
14082
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
14083
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
14084
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
14085
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
14086
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
14087
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
14088
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
14089
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
14090
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
14091
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
14092
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
14093
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
14094
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
14095
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
14097
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
14098
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14099
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
14100
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
14102
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
14103
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
14104
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
14105
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
14107
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
14108
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14109
|
+
Processing by PointlessFeedback::MessagesController#new as HTML
|
14110
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
14111
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14112
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14113
|
+
Processing by PointlessFeedback::MessagesController#new as HTML
|
14114
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
14115
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14116
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14117
|
+
Processing by PointlessFeedback::MessagesController#new as HTML
|
14118
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
14119
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14120
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14121
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14122
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14123
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14124
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14125
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14126
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14127
|
+
Processing by PointlessFeedback::MessagesController#create as HTML
|
14128
|
+
Parameters: {"message"=>{"name"=>""}}
|
14129
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
14130
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
14131
|
+
Completed 200 OK in 7ms (Views: 4.1ms | ActiveRecord: 0.1ms)
|
14132
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14133
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14134
|
+
Processing by PointlessFeedback::MessagesController#create as HTML
|
14135
|
+
Parameters: {"message"=>{"name"=>""}}
|
14136
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
14137
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
14138
|
+
Completed 200 OK in 7ms (Views: 4.0ms | ActiveRecord: 0.1ms)
|
14139
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14140
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14141
|
+
Processing by PointlessFeedback::MessagesController#create as HTML
|
14142
|
+
Parameters: {"message"=>{"name"=>""}}
|
14143
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
14144
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
14145
|
+
Completed 200 OK in 6ms (Views: 4.0ms | ActiveRecord: 0.1ms)
|
14146
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14147
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
14151
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
14173
|
+
Redirected to http://test.host/
|
14174
|
+
Completed 302 Found in 13ms (ActiveRecord: 0.4ms)
|
14175
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
14176
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
14180
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
14202
|
+
Redirected to http://test.host/
|
14203
|
+
Completed 302 Found in 12ms (ActiveRecord: 0.4ms)
|
14204
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
14205
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
14209
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
14231
|
+
Redirected to http://test.host/
|
14232
|
+
Completed 302 Found in 13ms (ActiveRecord: 0.4ms)
|
14233
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
14234
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
14238
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
14260
|
+
Redirected to http://test.host/dashboard
|
14261
|
+
Completed 302 Found in 21ms (ActiveRecord: 0.4ms)
|
14262
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
14263
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
14267
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
14289
|
+
Redirected to http://test.host/dashboard
|
14290
|
+
Completed 302 Found in 13ms (ActiveRecord: 0.4ms)
|
14291
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
14292
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
14296
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
14318
|
+
Redirected to http://test.host/dashboard
|
14319
|
+
Completed 302 Found in 13ms (ActiveRecord: 0.4ms)
|
14320
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
14321
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
14329
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
14357
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
14365
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
14393
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
14401
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
14409
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
14417
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
14425
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14426
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14427
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14428
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14429
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14430
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14431
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14432
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14433
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14434
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14435
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14436
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14437
|
+
Connecting to database specified by database.yml
|
14438
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
14439
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
14440
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
14446
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
14447
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
14448
|
+
[1m[36mSQL (2.8ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
14450
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
14451
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14452
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
14453
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
14455
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
14456
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
14457
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
14458
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
14460
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
14461
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14462
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
14463
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
14465
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
14466
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
14467
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
14468
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
14469
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
14470
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
14471
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
14472
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
14473
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
14474
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
14475
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
14476
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
14477
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
14478
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
14479
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
14480
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
14481
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
14482
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
14483
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
14484
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
14485
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
14486
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
14487
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
14488
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
14490
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
14491
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14492
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
14493
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
14495
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
14496
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
14497
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
14498
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
14500
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
14501
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14502
|
+
Processing by PointlessFeedback::MessagesController#new as HTML
|
14503
|
+
Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
14504
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14505
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14506
|
+
Processing by PointlessFeedback::MessagesController#new as HTML
|
14507
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
14508
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14509
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14510
|
+
Processing by PointlessFeedback::MessagesController#new as HTML
|
14511
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
14512
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14513
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14514
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14515
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14516
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14517
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14518
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14519
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14520
|
+
Processing by PointlessFeedback::MessagesController#create as HTML
|
14521
|
+
Parameters: {"message"=>{"name"=>""}}
|
14522
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
14523
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
14524
|
+
Completed 200 OK in 7ms (Views: 4.3ms | ActiveRecord: 0.1ms)
|
14525
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14526
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14527
|
+
Processing by PointlessFeedback::MessagesController#create as HTML
|
14528
|
+
Parameters: {"message"=>{"name"=>""}}
|
14529
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
14530
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
14531
|
+
Completed 200 OK in 6ms (Views: 3.8ms | ActiveRecord: 0.1ms)
|
14532
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14533
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14534
|
+
Processing by PointlessFeedback::MessagesController#create as HTML
|
14535
|
+
Parameters: {"message"=>{"name"=>""}}
|
14536
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
14537
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
14538
|
+
Completed 200 OK in 6ms (Views: 4.0ms | ActiveRecord: 0.1ms)
|
14539
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14540
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
14544
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
14566
|
+
Redirected to http://test.host/
|
14567
|
+
Completed 302 Found in 14ms (ActiveRecord: 0.4ms)
|
14568
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
14569
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
14573
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
14595
|
+
Redirected to http://test.host/
|
14596
|
+
Completed 302 Found in 12ms (ActiveRecord: 0.4ms)
|
14597
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
14598
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
14602
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
14624
|
+
Redirected to http://test.host/
|
14625
|
+
Completed 302 Found in 12ms (ActiveRecord: 0.4ms)
|
14626
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
14627
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
14631
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
14653
|
+
Redirected to http://test.host/dashboard
|
14654
|
+
Completed 302 Found in 21ms (ActiveRecord: 0.4ms)
|
14655
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
14656
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
14660
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
14682
|
+
Redirected to http://test.host/dashboard
|
14683
|
+
Completed 302 Found in 13ms (ActiveRecord: 0.4ms)
|
14684
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
14685
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
14689
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
14711
|
+
Redirected to http://test.host/dashboard
|
14712
|
+
Completed 302 Found in 13ms (ActiveRecord: 0.4ms)
|
14713
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
14714
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
14722
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
14750
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
14758
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
14786
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
14794
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
14802
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
14810
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
14818
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14819
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14820
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14821
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14822
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14823
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14824
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14825
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14826
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14827
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14828
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14829
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14830
|
+
Connecting to database specified by database.yml
|
14831
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
14832
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
14833
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
14839
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
14840
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
14841
|
+
[1m[36mSQL (2.9ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
14843
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
14844
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14845
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
14846
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
14848
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
14849
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
14850
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
14851
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
14853
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
14854
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14855
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
14856
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
14858
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
14859
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
14860
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
14861
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
14862
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
14863
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
14864
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
14865
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
14866
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
14867
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
14868
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
14869
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
14870
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
14871
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
14872
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
14873
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
14874
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
14875
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
14876
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
14877
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
14878
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
14879
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
14880
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
14881
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
14883
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
14884
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14885
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
14886
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
14888
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
14889
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
14890
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
14891
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
14893
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
14894
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14895
|
+
Processing by PointlessFeedback::MessagesController#new as HTML
|
14896
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
14897
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14898
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14899
|
+
Processing by PointlessFeedback::MessagesController#new as HTML
|
14900
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
14901
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14902
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14903
|
+
Processing by PointlessFeedback::MessagesController#new as HTML
|
14904
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
14905
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14906
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14907
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14908
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14909
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14910
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14911
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14912
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14913
|
+
Processing by PointlessFeedback::MessagesController#create as HTML
|
14914
|
+
Parameters: {"message"=>{"name"=>""}}
|
14915
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
14916
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
14917
|
+
Completed 200 OK in 7ms (Views: 4.2ms | ActiveRecord: 0.1ms)
|
14918
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14919
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14920
|
+
Processing by PointlessFeedback::MessagesController#create as HTML
|
14921
|
+
Parameters: {"message"=>{"name"=>""}}
|
14922
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
14923
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
14924
|
+
Completed 200 OK in 7ms (Views: 4.1ms | ActiveRecord: 0.1ms)
|
14925
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14926
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14927
|
+
Processing by PointlessFeedback::MessagesController#create as HTML
|
14928
|
+
Parameters: {"message"=>{"name"=>""}}
|
14929
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
14930
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
14931
|
+
Completed 200 OK in 6ms (Views: 4.0ms | ActiveRecord: 0.1ms)
|
14932
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
14933
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
14937
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
14959
|
+
Redirected to http://test.host/
|
14960
|
+
Completed 302 Found in 14ms (ActiveRecord: 0.4ms)
|
14961
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
14962
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
14966
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
14988
|
+
Redirected to http://test.host/
|
14989
|
+
Completed 302 Found in 14ms (ActiveRecord: 0.5ms)
|
14990
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
14991
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
14995
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15017
|
+
Redirected to http://test.host/
|
15018
|
+
Completed 302 Found in 11ms (ActiveRecord: 0.4ms)
|
15019
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
15020
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15024
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
15046
|
+
Redirected to http://test.host/dashboard
|
15047
|
+
Completed 302 Found in 21ms (ActiveRecord: 0.4ms)
|
15048
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
15049
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15053
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15075
|
+
Redirected to http://test.host/dashboard
|
15076
|
+
Completed 302 Found in 12ms (ActiveRecord: 0.4ms)
|
15077
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
15078
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15082
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15104
|
+
Redirected to http://test.host/dashboard
|
15105
|
+
Completed 302 Found in 12ms (ActiveRecord: 0.3ms)
|
15106
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
15107
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
15115
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
15143
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15151
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
15179
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
15187
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
15195
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15203
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
15211
|
+
[1m[35m (0.0ms)[0m begin transaction
|
15212
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
15213
|
+
[1m[35m (0.0ms)[0m begin transaction
|
15214
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
15215
|
+
[1m[35m (0.0ms)[0m begin transaction
|
15216
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
15217
|
+
[1m[35m (0.0ms)[0m begin transaction
|
15218
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
15219
|
+
[1m[35m (0.0ms)[0m begin transaction
|
15220
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
15221
|
+
[1m[35m (0.0ms)[0m begin transaction
|
15222
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
15223
|
+
Connecting to database specified by database.yml
|
15224
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
15225
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
15226
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
15232
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
15233
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15234
|
+
[1m[36mSQL (3.0ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15236
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
15237
|
+
[1m[35m (0.1ms)[0m begin transaction
|
15238
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15239
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15241
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
15242
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
15243
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
15244
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15246
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
15247
|
+
[1m[35m (0.0ms)[0m begin transaction
|
15248
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15249
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15251
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
15252
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
15253
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15254
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
15255
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
15256
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
15257
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15258
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
15259
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
15260
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
15261
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15262
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
15263
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
15264
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
15265
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15266
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
15267
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
15268
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
15269
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
15270
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
15271
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
15272
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
15273
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15274
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15276
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
15277
|
+
[1m[35m (0.0ms)[0m begin transaction
|
15278
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15279
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15281
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
15282
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
15283
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15284
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
15286
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
15287
|
+
[1m[35m (0.0ms)[0m begin transaction
|
15288
|
+
Processing by PointlessFeedback::MessagesController#new as HTML
|
15289
|
+
Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
15290
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
15291
|
+
[1m[35m (0.0ms)[0m begin transaction
|
15292
|
+
Processing by PointlessFeedback::MessagesController#new as HTML
|
15293
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
15294
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
15295
|
+
[1m[35m (0.0ms)[0m begin transaction
|
15296
|
+
Processing by PointlessFeedback::MessagesController#new as HTML
|
15297
|
+
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
15298
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
15299
|
+
[1m[35m (0.0ms)[0m begin transaction
|
15300
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
15301
|
+
[1m[35m (0.0ms)[0m begin transaction
|
15302
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
15303
|
+
[1m[35m (0.0ms)[0m begin transaction
|
15304
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
15305
|
+
[1m[35m (0.0ms)[0m begin transaction
|
15306
|
+
Processing by PointlessFeedback::MessagesController#create as HTML
|
15307
|
+
Parameters: {"message"=>{"name"=>""}}
|
15308
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15309
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
15310
|
+
Completed 200 OK in 7ms (Views: 4.5ms | ActiveRecord: 0.1ms)
|
15311
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
15312
|
+
[1m[35m (0.0ms)[0m begin transaction
|
15313
|
+
Processing by PointlessFeedback::MessagesController#create as HTML
|
15314
|
+
Parameters: {"message"=>{"name"=>""}}
|
15315
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15316
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
15317
|
+
Completed 200 OK in 7ms (Views: 4.7ms | ActiveRecord: 0.1ms)
|
15318
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
15319
|
+
[1m[35m (0.0ms)[0m begin transaction
|
15320
|
+
Processing by PointlessFeedback::MessagesController#create as HTML
|
15321
|
+
Parameters: {"message"=>{"name"=>""}}
|
15322
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15323
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
15324
|
+
Completed 200 OK in 7ms (Views: 4.2ms | ActiveRecord: 0.1ms)
|
15325
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
15326
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15330
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15352
|
+
Redirected to http://test.host/
|
15353
|
+
Completed 302 Found in 16ms (ActiveRecord: 0.5ms)
|
15354
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
15355
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15359
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
15381
|
+
Redirected to http://test.host/
|
15382
|
+
Completed 302 Found in 13ms (ActiveRecord: 0.5ms)
|
15383
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
15384
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15388
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15410
|
+
Redirected to http://test.host/
|
15411
|
+
Completed 302 Found in 12ms (ActiveRecord: 0.4ms)
|
15412
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
15413
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15417
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
15439
|
+
Redirected to http://test.host/dashboard
|
15440
|
+
Completed 302 Found in 21ms (ActiveRecord: 0.5ms)
|
15441
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
15442
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15446
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
15468
|
+
Redirected to http://test.host/dashboard
|
15469
|
+
Completed 302 Found in 12ms (ActiveRecord: 0.4ms)
|
15470
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
15471
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15475
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
15497
|
+
Redirected to http://test.host/dashboard
|
15498
|
+
Completed 302 Found in 13ms (ActiveRecord: 0.4ms)
|
15499
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
15500
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
15508
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
15536
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
15544
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
15572
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
15580
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
15588
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
15596
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "pointless_feedback_messages" ("created_at", "description", "email_address", "name", "topic", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
15604
|
+
[1m[35m (0.0ms)[0m begin transaction
|
15605
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
15606
|
+
[1m[35m (0.0ms)[0m begin transaction
|
15607
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
15608
|
+
[1m[35m (0.0ms)[0m begin transaction
|
15609
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
15610
|
+
[1m[35m (0.0ms)[0m begin transaction
|
15611
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
15612
|
+
[1m[35m (0.0ms)[0m begin transaction
|
15613
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
15614
|
+
[1m[35m (0.0ms)[0m begin transaction
|
15615
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|