flyover-contact 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/controllers/contact/messages_controller.rb +3 -7
- data/app/views/contact/messages/_fields.html.erb +7 -0
- data/app/views/contact/messages/_form.html.erb +6 -0
- data/app/views/contact/messages/create.js.erb +7 -0
- data/app/views/contact/messages/new.html.erb +1 -7
- data/lib/contact/version.rb +1 -1
- data/test/controllers/contact/messages_controller_test.rb +1 -1
- data/test/dummy/app/assets/javascripts/application.js +2 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/views/application/index.html.erb +7 -0
- data/test/dummy/config/routes.rb +3 -3
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/log/development.log +2159 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/0816a9bf776c5b5f2209bef350a45116 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/432d60b30ff81001e8e2f50ab2f42ae0 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/94ea6a7bf0130efe64476981e0b428d4 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b0e91600095ead48beaf6fbde4f1b2ae +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/deea1d8fe83fd97e0f77a9d751afb1cb +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/e086f524984db5030dcd5e2197de5141 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/pids/server.pid +1 -0
- metadata +78 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 60fac52ba364a7716ab9c4984973cb9967392b01
|
4
|
+
data.tar.gz: 36ac824c530fd43fe66fcfa350e12dd4c5384976
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ab061d1af0b241ae3586e0d943ecf3b5a0415b866b1e0bf25bff1b3d8c90225c5491ab465ea1a691110fa307a8d69f4857881edea67d33305f8fa08164fa2b3e
|
7
|
+
data.tar.gz: 576e9559f4a6b7bd659a9d7abf1883902340261dc1b0a2b6b073b882429f96f9bd250f0151030639b617b3cb9f7c5545e1eb9fee8d8b91aa01054befd334ad05
|
@@ -3,6 +3,7 @@ require_dependency "contact/application_controller"
|
|
3
3
|
module Contact
|
4
4
|
class MessagesController < ApplicationController
|
5
5
|
layout "application"
|
6
|
+
respond_to :js, only: :create
|
6
7
|
|
7
8
|
def new
|
8
9
|
@message = Message.new
|
@@ -10,13 +11,8 @@ module Contact
|
|
10
11
|
|
11
12
|
def create
|
12
13
|
@message = Message.new(params[:message])
|
13
|
-
if @message.valid?
|
14
|
-
|
15
|
-
flash[:notice] = "Message sent! Thank you for contacting us."
|
16
|
-
redirect_to contact_url
|
17
|
-
else
|
18
|
-
render :action => 'new'
|
19
|
-
end
|
14
|
+
MessageMailer.new_message(@message).deliver if @message.valid?
|
15
|
+
respond_with json: @message
|
20
16
|
end
|
21
17
|
end
|
22
18
|
end
|
@@ -0,0 +1,7 @@
|
|
1
|
+
<%= simple_form_for (@message || Contact::Message.new), html: { novalidate: true }, url: contact.messages_path, remote: true do |f| %>
|
2
|
+
<%= f.error_notification %>
|
3
|
+
<%= f.input :name, label: "Your name" %>
|
4
|
+
<%= f.input :email, label: "Your email" %>
|
5
|
+
<%= f.input :content, as: :text, label: "Message" %>
|
6
|
+
<%= f.submit "Send Message", class: "btn btn-outline btn-outline-teal inverse" %>
|
7
|
+
<% end %>
|
@@ -0,0 +1,7 @@
|
|
1
|
+
<% if @message.errors.any? %>
|
2
|
+
$("#contact-form-container").html("<%= j render 'contact/messages/fields' %>");
|
3
|
+
<% else %>
|
4
|
+
$("#contact-form-success").show().delay(5000).fadeOut();
|
5
|
+
<% @message = Contact::Message.new %>
|
6
|
+
$("#contact-form-container").html("<%= j render 'contact/messages/fields' %>");
|
7
|
+
<% end %>
|
@@ -1,9 +1,3 @@
|
|
1
1
|
<div class="container">
|
2
|
-
<%=
|
3
|
-
<%= f.error_notification %>
|
4
|
-
<%= f.input :name, label: "Your name" %>
|
5
|
-
<%= f.input :email, label: "Your email" %>
|
6
|
-
<%= f.input :content, as: :text, label: "Message" %>
|
7
|
-
<%= f.submit "Send Message", class: "btn btn-outline btn-outline-teal inverse" %>
|
8
|
-
<% end %>
|
2
|
+
<%= render "form" %>
|
9
3
|
</div>
|
data/lib/contact/version.rb
CHANGED
data/test/dummy/config/routes.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
1
|
Rails.application.routes.draw do
|
2
|
-
|
3
|
-
mount Contact::Engine => "/
|
4
|
-
end
|
2
|
+
root to: "application#index"
|
3
|
+
mount Contact::Engine => "/"
|
4
|
+
end
|
File without changes
|
@@ -0,0 +1,2159 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
Started GET "/" for 127.0.0.1 at 2015-01-21 10:43:46 -0600
|
4
|
+
Processing by Rails::WelcomeController#index as HTML
|
5
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/railties-4.1.8/lib/rails/templates/rails/welcome/index.html.erb (2.2ms)
|
6
|
+
Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms)
|
7
|
+
|
8
|
+
|
9
|
+
Started GET "/contact" for 127.0.0.1 at 2015-01-21 10:43:49 -0600
|
10
|
+
|
11
|
+
ActionController::RoutingError (No route matches [GET] "/contact"):
|
12
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
13
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
14
|
+
railties (4.1.8) lib/rails/rack/logger.rb:38:in `call_app'
|
15
|
+
railties (4.1.8) lib/rails/rack/logger.rb:20:in `block in call'
|
16
|
+
activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
17
|
+
activesupport (4.1.8) lib/active_support/tagged_logging.rb:26:in `tagged'
|
18
|
+
activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `tagged'
|
19
|
+
railties (4.1.8) lib/rails/rack/logger.rb:20:in `call'
|
20
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
21
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
22
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
23
|
+
activesupport (4.1.8) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
|
24
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
25
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/static.rb:84:in `call'
|
26
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
27
|
+
railties (4.1.8) lib/rails/engine.rb:514:in `call'
|
28
|
+
railties (4.1.8) lib/rails/application.rb:144:in `call'
|
29
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
30
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
31
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
32
|
+
/Users/earlynovrock/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
33
|
+
/Users/earlynovrock/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
34
|
+
/Users/earlynovrock/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
35
|
+
|
36
|
+
|
37
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
|
38
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
|
39
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
|
40
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/routes/_table.html.erb (9.5ms)
|
41
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (35.5ms)
|
42
|
+
|
43
|
+
|
44
|
+
Started GET "/contact" for 127.0.0.1 at 2015-01-21 10:44:11 -0600
|
45
|
+
Processing by Contact::MessagesController#new as HTML
|
46
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/new.html.erb within layouts/application (77.5ms)
|
47
|
+
Completed 200 OK in 108ms (Views: 105.5ms | ActiveRecord: 0.0ms)
|
48
|
+
|
49
|
+
|
50
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-21 10:44:12 -0600
|
51
|
+
|
52
|
+
|
53
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 10:44:12 -0600
|
54
|
+
|
55
|
+
|
56
|
+
Started POST "/messages/create" for 127.0.0.1 at 2015-01-21 10:44:23 -0600
|
57
|
+
Processing by Contact::MessagesController#create as HTML
|
58
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"tAe+02gRmvT+HDxvC7U7H89vyRdlxmLxNzhZIZIUD40=", "message"=>{"name"=>"David", "email"=>"earlynovrock@gmail.com", "content"=>"test 123"}, "commit"=>"Send Message"}
|
59
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/message_mailer/new_message.html.erb (0.6ms)
|
60
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/message_mailer/new_message.text.erb (0.4ms)
|
61
|
+
|
62
|
+
Contact::MessageMailer#new_message: processed outbound mail in 186.3ms
|
63
|
+
|
64
|
+
Sent mail to to@example.com (13.2ms)
|
65
|
+
Date: Wed, 21 Jan 2015 10:44:24 -0600
|
66
|
+
From: from@example.com
|
67
|
+
To: to@example.com
|
68
|
+
Message-ID: <54bfd768caba_22c13fc5decaed408694a@Davids-MacBook-Air-3.local.mail>
|
69
|
+
Subject: New Contact Form Submission
|
70
|
+
Mime-Version: 1.0
|
71
|
+
Content-Type: multipart/alternative;
|
72
|
+
boundary="--==_mimepart_54bfd768a9cd_22c13fc5decaed408683b";
|
73
|
+
charset=UTF-8
|
74
|
+
Content-Transfer-Encoding: 7bit
|
75
|
+
|
76
|
+
|
77
|
+
----==_mimepart_54bfd768a9cd_22c13fc5decaed408683b
|
78
|
+
Content-Type: text/plain;
|
79
|
+
charset=UTF-8
|
80
|
+
Content-Transfer-Encoding: 7bit
|
81
|
+
|
82
|
+
Name: David
|
83
|
+
Email: earlynovrock@gmail.com
|
84
|
+
Message: test 123
|
85
|
+
----==_mimepart_54bfd768a9cd_22c13fc5decaed408683b
|
86
|
+
Content-Type: text/html;
|
87
|
+
charset=UTF-8
|
88
|
+
Content-Transfer-Encoding: 7bit
|
89
|
+
|
90
|
+
<p>Name: David</p>
|
91
|
+
<p>Email: earlynovrock@gmail.com</p>
|
92
|
+
<p>Message: test 123</p>
|
93
|
+
----==_mimepart_54bfd768a9cd_22c13fc5decaed408683b--
|
94
|
+
|
95
|
+
Redirected to http://localhost:3000/contact
|
96
|
+
Completed 302 Found in 208ms (ActiveRecord: 0.0ms)
|
97
|
+
|
98
|
+
|
99
|
+
Started GET "/contact" for 127.0.0.1 at 2015-01-21 10:44:24 -0600
|
100
|
+
Processing by Contact::MessagesController#new as HTML
|
101
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/new.html.erb within layouts/application (9.9ms)
|
102
|
+
Completed 200 OK in 25ms (Views: 24.9ms | ActiveRecord: 0.0ms)
|
103
|
+
|
104
|
+
|
105
|
+
Started GET "/" for 127.0.0.1 at 2015-01-21 11:05:32 -0600
|
106
|
+
Processing by Rails::WelcomeController#index as HTML
|
107
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/railties-4.1.8/lib/rails/templates/rails/welcome/index.html.erb (2.0ms)
|
108
|
+
Completed 200 OK in 12ms (Views: 12.2ms | ActiveRecord: 0.0ms)
|
109
|
+
|
110
|
+
|
111
|
+
Started GET "/contact" for 127.0.0.1 at 2015-01-21 11:05:36 -0600
|
112
|
+
Processing by Contact::MessagesController#new as HTML
|
113
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/new.html.erb within layouts/application (78.7ms)
|
114
|
+
Completed 200 OK in 103ms (Views: 101.2ms | ActiveRecord: 0.0ms)
|
115
|
+
|
116
|
+
|
117
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-21 11:05:36 -0600
|
118
|
+
|
119
|
+
|
120
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 11:05:36 -0600
|
121
|
+
|
122
|
+
|
123
|
+
Started GET "/contact" for 127.0.0.1 at 2015-01-21 11:06:24 -0600
|
124
|
+
Processing by Contact::MessagesController#new as HTML
|
125
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/new.html.erb within layouts/application (9.8ms)
|
126
|
+
Completed 200 OK in 22ms (Views: 22.3ms | ActiveRecord: 0.0ms)
|
127
|
+
|
128
|
+
|
129
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 11:06:24 -0600
|
130
|
+
|
131
|
+
|
132
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-21 11:06:24 -0600
|
133
|
+
|
134
|
+
|
135
|
+
Started GET "/" for 127.0.0.1 at 2015-01-21 11:17:27 -0600
|
136
|
+
Processing by Rails::WelcomeController#index as HTML
|
137
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/railties-4.1.8/lib/rails/templates/rails/welcome/index.html.erb (0.1ms)
|
138
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
139
|
+
|
140
|
+
|
141
|
+
Started GET "/contact" for 127.0.0.1 at 2015-01-21 11:17:30 -0600
|
142
|
+
Processing by Contact::MessagesController#new as HTML
|
143
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (10.7ms)
|
144
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/new.html.erb within layouts/application (14.8ms)
|
145
|
+
Completed 200 OK in 31ms (Views: 30.4ms | ActiveRecord: 0.0ms)
|
146
|
+
|
147
|
+
|
148
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-21 11:17:30 -0600
|
149
|
+
|
150
|
+
|
151
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 11:17:30 -0600
|
152
|
+
|
153
|
+
|
154
|
+
Started GET "/contact" for 127.0.0.1 at 2015-01-21 11:19:19 -0600
|
155
|
+
Processing by Contact::MessagesController#new as HTML
|
156
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (8.7ms)
|
157
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/new.html.erb within layouts/application (9.9ms)
|
158
|
+
Completed 200 OK in 26ms (Views: 24.5ms | ActiveRecord: 0.0ms)
|
159
|
+
|
160
|
+
|
161
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 11:19:19 -0600
|
162
|
+
|
163
|
+
|
164
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-21 11:19:19 -0600
|
165
|
+
|
166
|
+
|
167
|
+
Started GET "/" for 127.0.0.1 at 2015-01-21 11:19:22 -0600
|
168
|
+
Processing by Rails::WelcomeController#index as HTML
|
169
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/railties-4.1.8/lib/rails/templates/rails/welcome/index.html.erb (0.1ms)
|
170
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
171
|
+
|
172
|
+
|
173
|
+
Started GET "/" for 127.0.0.1 at 2015-01-21 11:19:35 -0600
|
174
|
+
Processing by ApplicationController#index as HTML
|
175
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (4.8ms)
|
176
|
+
Rendered application/index.html.erb within layouts/application (6.2ms)
|
177
|
+
Completed 500 Internal Server Error in 9ms
|
178
|
+
|
179
|
+
ActionView::Template::Error (undefined method `model_name' for NilClass:Class):
|
180
|
+
1: <%= simple_form_for @message do |f| %>
|
181
|
+
2: <%= f.error_notification %>
|
182
|
+
3: <%= f.input :name, label: "Your name" %>
|
183
|
+
4: <%= f.input :email, label: "Your email" %>
|
184
|
+
app/views/application/index.html.erb:3:in `_app_views_application_index_html_erb__3018770693658561554_70176242532640'
|
185
|
+
|
186
|
+
|
187
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
|
188
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
|
189
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.0ms)
|
190
|
+
|
191
|
+
|
192
|
+
Started GET "/" for 127.0.0.1 at 2015-01-21 11:19:49 -0600
|
193
|
+
Processing by ApplicationController#index as HTML
|
194
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (3.3ms)
|
195
|
+
Rendered application/index.html.erb within layouts/application (4.1ms)
|
196
|
+
Completed 500 Internal Server Error in 6ms
|
197
|
+
|
198
|
+
ActionView::Template::Error (uninitialized constant ActionView::CompiledTemplates::Message):
|
199
|
+
1: <%= simple_form_for @message || Message.new do |f| %>
|
200
|
+
2: <%= f.error_notification %>
|
201
|
+
3: <%= f.input :name, label: "Your name" %>
|
202
|
+
4: <%= f.input :email, label: "Your email" %>
|
203
|
+
app/views/application/index.html.erb:3:in `_app_views_application_index_html_erb__3018770693658561554_70176242532640'
|
204
|
+
|
205
|
+
|
206
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
|
207
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms)
|
208
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (11.7ms)
|
209
|
+
|
210
|
+
|
211
|
+
Started GET "/" for 127.0.0.1 at 2015-01-21 11:19:56 -0600
|
212
|
+
Processing by ApplicationController#index as HTML
|
213
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (10.0ms)
|
214
|
+
Rendered application/index.html.erb within layouts/application (10.9ms)
|
215
|
+
Completed 500 Internal Server Error in 12ms
|
216
|
+
|
217
|
+
ActionView::Template::Error (undefined method `messages_path' for #<#<Class:0x007fa65c042b80>:0x007fa65bd80280>):
|
218
|
+
1: <%= simple_form_for @message || Contact::Message.new do |f| %>
|
219
|
+
2: <%= f.error_notification %>
|
220
|
+
3: <%= f.input :name, label: "Your name" %>
|
221
|
+
4: <%= f.input :email, label: "Your email" %>
|
222
|
+
app/views/application/index.html.erb:3:in `_app_views_application_index_html_erb__3018770693658561554_70176242532640'
|
223
|
+
|
224
|
+
|
225
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
|
226
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
|
227
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (12.6ms)
|
228
|
+
|
229
|
+
|
230
|
+
Started GET "/" for 127.0.0.1 at 2015-01-21 11:20:11 -0600
|
231
|
+
Processing by ApplicationController#index as HTML
|
232
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (8.9ms)
|
233
|
+
Rendered application/index.html.erb within layouts/application (10.2ms)
|
234
|
+
Completed 500 Internal Server Error in 12ms
|
235
|
+
|
236
|
+
ActionView::Template::Error (undefined method `messages_path' for #<#<Class:0x007fa65c042b80>:0x007fa65c1c59f8>):
|
237
|
+
1: <%= simple_form_for(@message || Contact::Message.new) do |f| %>
|
238
|
+
2: <%= f.error_notification %>
|
239
|
+
3: <%= f.input :name, label: "Your name" %>
|
240
|
+
4: <%= f.input :email, label: "Your email" %>
|
241
|
+
app/views/application/index.html.erb:3:in `_app_views_application_index_html_erb__3018770693658561554_70176242532640'
|
242
|
+
|
243
|
+
|
244
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
|
245
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms)
|
246
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (12.2ms)
|
247
|
+
|
248
|
+
|
249
|
+
Started GET "/" for 127.0.0.1 at 2015-01-21 11:20:43 -0600
|
250
|
+
Processing by ApplicationController#index as HTML
|
251
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (8.6ms)
|
252
|
+
Rendered application/index.html.erb within layouts/application (9.5ms)
|
253
|
+
Completed 500 Internal Server Error in 13ms
|
254
|
+
|
255
|
+
ActionView::Template::Error (undefined method `messages_path' for #<#<Class:0x007fa65f033178>:0x007fa65f032340>):
|
256
|
+
1: <%= simple_form_for @message do |f| %>
|
257
|
+
2: <%= f.error_notification %>
|
258
|
+
3: <%= f.input :name, label: "Your name" %>
|
259
|
+
4: <%= f.input :email, label: "Your email" %>
|
260
|
+
app/views/application/index.html.erb:3:in `_app_views_application_index_html_erb__3018770693658561554_70176242532640'
|
261
|
+
|
262
|
+
|
263
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
|
264
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms)
|
265
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (12.8ms)
|
266
|
+
|
267
|
+
|
268
|
+
Started GET "/" for 127.0.0.1 at 2015-01-21 11:20:47 -0600
|
269
|
+
Processing by ApplicationController#index as HTML
|
270
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (8.5ms)
|
271
|
+
Rendered application/index.html.erb within layouts/application (9.4ms)
|
272
|
+
Completed 500 Internal Server Error in 11ms
|
273
|
+
|
274
|
+
ActionView::Template::Error (undefined method `messages_path' for #<#<Class:0x007fa65f033178>:0x007fa65c0a1c70>):
|
275
|
+
1: <%= simple_form_for @message do |f| %>
|
276
|
+
2: <%= f.error_notification %>
|
277
|
+
3: <%= f.input :name, label: "Your name" %>
|
278
|
+
4: <%= f.input :email, label: "Your email" %>
|
279
|
+
app/views/application/index.html.erb:3:in `_app_views_application_index_html_erb__3018770693658561554_70176242532640'
|
280
|
+
|
281
|
+
|
282
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
|
283
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
|
284
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (12.5ms)
|
285
|
+
|
286
|
+
|
287
|
+
Started GET "/" for 127.0.0.1 at 2015-01-21 11:21:11 -0600
|
288
|
+
Processing by ApplicationController#index as HTML
|
289
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (10.7ms)
|
290
|
+
Rendered application/index.html.erb within layouts/application (11.5ms)
|
291
|
+
Completed 200 OK in 23ms (Views: 22.8ms | ActiveRecord: 0.0ms)
|
292
|
+
|
293
|
+
|
294
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 11:21:11 -0600
|
295
|
+
|
296
|
+
|
297
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-21 11:21:11 -0600
|
298
|
+
|
299
|
+
|
300
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 11:21:15 -0600
|
301
|
+
|
302
|
+
|
303
|
+
Started POST "/messages/create" for 127.0.0.1 at 2015-01-21 11:21:29 -0600
|
304
|
+
Processing by Contact::MessagesController#create as HTML
|
305
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"tAe+02gRmvT+HDxvC7U7H89vyRdlxmLxNzhZIZIUD40=", "message"=>{"name"=>"asdf", "email"=>"asdf@gmail.com", "content"=>"asdf"}, "commit"=>"Send Message"}
|
306
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/message_mailer/new_message.html.erb (0.6ms)
|
307
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/message_mailer/new_message.text.erb (0.4ms)
|
308
|
+
|
309
|
+
Contact::MessageMailer#new_message: processed outbound mail in 177.7ms
|
310
|
+
|
311
|
+
Sent mail to to@example.com (14.4ms)
|
312
|
+
Date: Wed, 21 Jan 2015 11:21:29 -0600
|
313
|
+
From: from@example.com
|
314
|
+
To: to@example.com
|
315
|
+
Message-ID: <54bfe019c18cd_26203fd32df349b4455ea@Davids-MacBook-Air-3.local.mail>
|
316
|
+
Subject: New Contact Form Submission
|
317
|
+
Mime-Version: 1.0
|
318
|
+
Content-Type: multipart/alternative;
|
319
|
+
boundary="--==_mimepart_54bfe019bfa88_26203fd32df349b445456";
|
320
|
+
charset=UTF-8
|
321
|
+
Content-Transfer-Encoding: 7bit
|
322
|
+
|
323
|
+
|
324
|
+
----==_mimepart_54bfe019bfa88_26203fd32df349b445456
|
325
|
+
Content-Type: text/plain;
|
326
|
+
charset=UTF-8
|
327
|
+
Content-Transfer-Encoding: 7bit
|
328
|
+
|
329
|
+
Name: asdf
|
330
|
+
Email: asdf@gmail.com
|
331
|
+
Message: asdf
|
332
|
+
----==_mimepart_54bfe019bfa88_26203fd32df349b445456
|
333
|
+
Content-Type: text/html;
|
334
|
+
charset=UTF-8
|
335
|
+
Content-Transfer-Encoding: 7bit
|
336
|
+
|
337
|
+
<p>Name: asdf</p>
|
338
|
+
<p>Email: asdf@gmail.com</p>
|
339
|
+
<p>Message: asdf</p>
|
340
|
+
----==_mimepart_54bfe019bfa88_26203fd32df349b445456--
|
341
|
+
|
342
|
+
Redirected to http://localhost:3000/contact
|
343
|
+
Completed 302 Found in 200ms (ActiveRecord: 0.0ms)
|
344
|
+
|
345
|
+
|
346
|
+
Started GET "/contact" for 127.0.0.1 at 2015-01-21 11:21:29 -0600
|
347
|
+
Processing by Contact::MessagesController#new as HTML
|
348
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (9.3ms)
|
349
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/new.html.erb within layouts/application (10.1ms)
|
350
|
+
Completed 200 OK in 25ms (Views: 24.1ms | ActiveRecord: 0.0ms)
|
351
|
+
|
352
|
+
|
353
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 11:21:29 -0600
|
354
|
+
|
355
|
+
|
356
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-21 11:21:29 -0600
|
357
|
+
|
358
|
+
|
359
|
+
Started GET "/contact" for 127.0.0.1 at 2015-01-21 11:21:54 -0600
|
360
|
+
Processing by Contact::MessagesController#new as HTML
|
361
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (6.4ms)
|
362
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/new.html.erb within layouts/application (7.1ms)
|
363
|
+
Completed 200 OK in 19ms (Views: 18.7ms | ActiveRecord: 0.0ms)
|
364
|
+
|
365
|
+
|
366
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-21 11:21:54 -0600
|
367
|
+
|
368
|
+
|
369
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 11:21:54 -0600
|
370
|
+
|
371
|
+
|
372
|
+
Started POST "/messages/create" for 127.0.0.1 at 2015-01-21 11:21:58 -0600
|
373
|
+
Processing by Contact::MessagesController#create as HTML
|
374
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"tAe+02gRmvT+HDxvC7U7H89vyRdlxmLxNzhZIZIUD40=", "message"=>{"name"=>"asdf", "email"=>"asdf@gmail.com", "content"=>"asdf"}, "commit"=>"Send Message"}
|
375
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/message_mailer/new_message.html.erb (0.1ms)
|
376
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/message_mailer/new_message.text.erb (0.1ms)
|
377
|
+
|
378
|
+
Contact::MessageMailer#new_message: processed outbound mail in 11.2ms
|
379
|
+
|
380
|
+
Sent mail to to@example.com (6.2ms)
|
381
|
+
Date: Wed, 21 Jan 2015 11:21:58 -0600
|
382
|
+
From: from@example.com
|
383
|
+
To: to@example.com
|
384
|
+
Message-ID: <54bfe036d7a18_26203fd32f13415045723@Davids-MacBook-Air-3.local.mail>
|
385
|
+
Subject: New Contact Form Submission
|
386
|
+
Mime-Version: 1.0
|
387
|
+
Content-Type: multipart/alternative;
|
388
|
+
boundary="--==_mimepart_54bfe036d69a5_26203fd32f13415045627";
|
389
|
+
charset=UTF-8
|
390
|
+
Content-Transfer-Encoding: 7bit
|
391
|
+
|
392
|
+
|
393
|
+
----==_mimepart_54bfe036d69a5_26203fd32f13415045627
|
394
|
+
Content-Type: text/plain;
|
395
|
+
charset=UTF-8
|
396
|
+
Content-Transfer-Encoding: 7bit
|
397
|
+
|
398
|
+
Name: asdf
|
399
|
+
Email: asdf@gmail.com
|
400
|
+
Message: asdf
|
401
|
+
----==_mimepart_54bfe036d69a5_26203fd32f13415045627
|
402
|
+
Content-Type: text/html;
|
403
|
+
charset=UTF-8
|
404
|
+
Content-Transfer-Encoding: 7bit
|
405
|
+
|
406
|
+
<p>Name: asdf</p>
|
407
|
+
<p>Email: asdf@gmail.com</p>
|
408
|
+
<p>Message: asdf</p>
|
409
|
+
----==_mimepart_54bfe036d69a5_26203fd32f13415045627--
|
410
|
+
|
411
|
+
Redirected to http://localhost:3000/contact
|
412
|
+
Completed 302 Found in 20ms (ActiveRecord: 0.0ms)
|
413
|
+
|
414
|
+
|
415
|
+
Started GET "/contact" for 127.0.0.1 at 2015-01-21 11:21:58 -0600
|
416
|
+
Processing by Contact::MessagesController#new as HTML
|
417
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (7.0ms)
|
418
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/new.html.erb within layouts/application (7.7ms)
|
419
|
+
Completed 200 OK in 18ms (Views: 18.3ms | ActiveRecord: 0.0ms)
|
420
|
+
|
421
|
+
|
422
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 11:21:58 -0600
|
423
|
+
|
424
|
+
|
425
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-21 11:21:58 -0600
|
426
|
+
|
427
|
+
|
428
|
+
Started GET "/" for 127.0.0.1 at 2015-01-21 11:22:02 -0600
|
429
|
+
Processing by ApplicationController#index as HTML
|
430
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (7.3ms)
|
431
|
+
Rendered application/index.html.erb within layouts/application (9.0ms)
|
432
|
+
Completed 200 OK in 21ms (Views: 21.1ms | ActiveRecord: 0.0ms)
|
433
|
+
|
434
|
+
|
435
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 11:22:02 -0600
|
436
|
+
|
437
|
+
|
438
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-21 11:22:02 -0600
|
439
|
+
|
440
|
+
|
441
|
+
Started POST "/messages/create" for 127.0.0.1 at 2015-01-21 11:22:07 -0600
|
442
|
+
Processing by Contact::MessagesController#create as HTML
|
443
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"tAe+02gRmvT+HDxvC7U7H89vyRdlxmLxNzhZIZIUD40=", "message"=>{"name"=>"asdf", "email"=>"asdf@gmail.com", "content"=>"asdf"}, "commit"=>"Send Message"}
|
444
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/message_mailer/new_message.html.erb (0.1ms)
|
445
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/message_mailer/new_message.text.erb (0.1ms)
|
446
|
+
|
447
|
+
Contact::MessageMailer#new_message: processed outbound mail in 10.8ms
|
448
|
+
|
449
|
+
Sent mail to to@example.com (6.4ms)
|
450
|
+
Date: Wed, 21 Jan 2015 11:22:07 -0600
|
451
|
+
From: from@example.com
|
452
|
+
To: to@example.com
|
453
|
+
Message-ID: <54bfe03fa8a74_26203fd32f134150459dd@Davids-MacBook-Air-3.local.mail>
|
454
|
+
Subject: New Contact Form Submission
|
455
|
+
Mime-Version: 1.0
|
456
|
+
Content-Type: multipart/alternative;
|
457
|
+
boundary="--==_mimepart_54bfe03fa7e33_26203fd32f1341504584f";
|
458
|
+
charset=UTF-8
|
459
|
+
Content-Transfer-Encoding: 7bit
|
460
|
+
|
461
|
+
|
462
|
+
----==_mimepart_54bfe03fa7e33_26203fd32f1341504584f
|
463
|
+
Content-Type: text/plain;
|
464
|
+
charset=UTF-8
|
465
|
+
Content-Transfer-Encoding: 7bit
|
466
|
+
|
467
|
+
Name: asdf
|
468
|
+
Email: asdf@gmail.com
|
469
|
+
Message: asdf
|
470
|
+
----==_mimepart_54bfe03fa7e33_26203fd32f1341504584f
|
471
|
+
Content-Type: text/html;
|
472
|
+
charset=UTF-8
|
473
|
+
Content-Transfer-Encoding: 7bit
|
474
|
+
|
475
|
+
<p>Name: asdf</p>
|
476
|
+
<p>Email: asdf@gmail.com</p>
|
477
|
+
<p>Message: asdf</p>
|
478
|
+
----==_mimepart_54bfe03fa7e33_26203fd32f1341504584f--
|
479
|
+
|
480
|
+
Redirected to http://localhost:3000/contact
|
481
|
+
Completed 302 Found in 19ms (ActiveRecord: 0.0ms)
|
482
|
+
|
483
|
+
|
484
|
+
Started GET "/contact" for 127.0.0.1 at 2015-01-21 11:22:07 -0600
|
485
|
+
Processing by Contact::MessagesController#new as HTML
|
486
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (8.8ms)
|
487
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/new.html.erb within layouts/application (9.6ms)
|
488
|
+
Completed 200 OK in 19ms (Views: 19.1ms | ActiveRecord: 0.0ms)
|
489
|
+
|
490
|
+
|
491
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 11:22:07 -0600
|
492
|
+
|
493
|
+
|
494
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-21 11:22:07 -0600
|
495
|
+
|
496
|
+
|
497
|
+
Started GET "/" for 127.0.0.1 at 2015-01-21 11:22:20 -0600
|
498
|
+
Processing by ApplicationController#index as HTML
|
499
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (9.3ms)
|
500
|
+
Rendered application/index.html.erb within layouts/application (10.8ms)
|
501
|
+
Completed 200 OK in 22ms (Views: 20.7ms | ActiveRecord: 0.0ms)
|
502
|
+
|
503
|
+
|
504
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 11:22:20 -0600
|
505
|
+
|
506
|
+
|
507
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-21 11:22:20 -0600
|
508
|
+
|
509
|
+
|
510
|
+
Started POST "/messages/create" for 127.0.0.1 at 2015-01-21 11:22:25 -0600
|
511
|
+
Processing by Contact::MessagesController#create as HTML
|
512
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"tAe+02gRmvT+HDxvC7U7H89vyRdlxmLxNzhZIZIUD40=", "message"=>{"name"=>"asdf", "email"=>"asdf@gmail.com", "content"=>"asdf"}, "commit"=>"Send Message"}
|
513
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/message_mailer/new_message.html.erb (0.1ms)
|
514
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/message_mailer/new_message.text.erb (0.1ms)
|
515
|
+
|
516
|
+
Contact::MessageMailer#new_message: processed outbound mail in 12.1ms
|
517
|
+
|
518
|
+
Sent mail to to@example.com (4.3ms)
|
519
|
+
Date: Wed, 21 Jan 2015 11:22:25 -0600
|
520
|
+
From: from@example.com
|
521
|
+
To: to@example.com
|
522
|
+
Message-ID: <54bfe0513d96b_26203fd32f13415046158@Davids-MacBook-Air-3.local.mail>
|
523
|
+
Subject: New Contact Form Submission
|
524
|
+
Mime-Version: 1.0
|
525
|
+
Content-Type: multipart/alternative;
|
526
|
+
boundary="--==_mimepart_54bfe0513d156_26203fd32f13415046079";
|
527
|
+
charset=UTF-8
|
528
|
+
Content-Transfer-Encoding: 7bit
|
529
|
+
|
530
|
+
|
531
|
+
----==_mimepart_54bfe0513d156_26203fd32f13415046079
|
532
|
+
Content-Type: text/plain;
|
533
|
+
charset=UTF-8
|
534
|
+
Content-Transfer-Encoding: 7bit
|
535
|
+
|
536
|
+
Name: asdf
|
537
|
+
Email: asdf@gmail.com
|
538
|
+
Message: asdf
|
539
|
+
----==_mimepart_54bfe0513d156_26203fd32f13415046079
|
540
|
+
Content-Type: text/html;
|
541
|
+
charset=UTF-8
|
542
|
+
Content-Transfer-Encoding: 7bit
|
543
|
+
|
544
|
+
<p>Name: asdf</p>
|
545
|
+
<p>Email: asdf@gmail.com</p>
|
546
|
+
<p>Message: asdf</p>
|
547
|
+
----==_mimepart_54bfe0513d156_26203fd32f13415046079--
|
548
|
+
|
549
|
+
Redirected to http://localhost:3000/
|
550
|
+
Completed 302 Found in 22ms (ActiveRecord: 0.0ms)
|
551
|
+
|
552
|
+
|
553
|
+
Started GET "/" for 127.0.0.1 at 2015-01-21 11:22:25 -0600
|
554
|
+
Processing by ApplicationController#index as HTML
|
555
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (6.2ms)
|
556
|
+
Rendered application/index.html.erb within layouts/application (7.3ms)
|
557
|
+
Completed 200 OK in 17ms (Views: 17.2ms | ActiveRecord: 0.0ms)
|
558
|
+
|
559
|
+
|
560
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 11:22:25 -0600
|
561
|
+
|
562
|
+
|
563
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-21 11:22:25 -0600
|
564
|
+
|
565
|
+
|
566
|
+
Started GET "/" for 127.0.0.1 at 2015-01-21 11:22:39 -0600
|
567
|
+
Processing by ApplicationController#index as HTML
|
568
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (10.3ms)
|
569
|
+
Rendered application/index.html.erb within layouts/application (11.9ms)
|
570
|
+
Completed 200 OK in 22ms (Views: 22.1ms | ActiveRecord: 0.0ms)
|
571
|
+
|
572
|
+
|
573
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 11:22:39 -0600
|
574
|
+
|
575
|
+
|
576
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-21 11:22:39 -0600
|
577
|
+
|
578
|
+
|
579
|
+
Started POST "/messages/create" for 127.0.0.1 at 2015-01-21 11:22:43 -0600
|
580
|
+
Processing by Contact::MessagesController#create as HTML
|
581
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"tAe+02gRmvT+HDxvC7U7H89vyRdlxmLxNzhZIZIUD40=", "message"=>{"name"=>"asdf", "email"=>"asdf@gmail.com", "content"=>"asdf"}, "commit"=>"Send Message"}
|
582
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/message_mailer/new_message.html.erb (0.1ms)
|
583
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/message_mailer/new_message.text.erb (0.1ms)
|
584
|
+
|
585
|
+
Contact::MessageMailer#new_message: processed outbound mail in 10.9ms
|
586
|
+
|
587
|
+
Sent mail to to@example.com (5.7ms)
|
588
|
+
Date: Wed, 21 Jan 2015 11:22:43 -0600
|
589
|
+
From: from@example.com
|
590
|
+
To: to@example.com
|
591
|
+
Message-ID: <54bfe06398506_26203fd32f1341504637a@Davids-MacBook-Air-3.local.mail>
|
592
|
+
Subject: New Contact Form Submission
|
593
|
+
Mime-Version: 1.0
|
594
|
+
Content-Type: multipart/alternative;
|
595
|
+
boundary="--==_mimepart_54bfe06397860_26203fd32f13415046267";
|
596
|
+
charset=UTF-8
|
597
|
+
Content-Transfer-Encoding: 7bit
|
598
|
+
|
599
|
+
|
600
|
+
----==_mimepart_54bfe06397860_26203fd32f13415046267
|
601
|
+
Content-Type: text/plain;
|
602
|
+
charset=UTF-8
|
603
|
+
Content-Transfer-Encoding: 7bit
|
604
|
+
|
605
|
+
Name: asdf
|
606
|
+
Email: asdf@gmail.com
|
607
|
+
Message: asdf
|
608
|
+
----==_mimepart_54bfe06397860_26203fd32f13415046267
|
609
|
+
Content-Type: text/html;
|
610
|
+
charset=UTF-8
|
611
|
+
Content-Transfer-Encoding: 7bit
|
612
|
+
|
613
|
+
<p>Name: asdf</p>
|
614
|
+
<p>Email: asdf@gmail.com</p>
|
615
|
+
<p>Message: asdf</p>
|
616
|
+
----==_mimepart_54bfe06397860_26203fd32f13415046267--
|
617
|
+
|
618
|
+
Redirected to http://localhost:3000/
|
619
|
+
Completed 302 Found in 18ms (ActiveRecord: 0.0ms)
|
620
|
+
|
621
|
+
|
622
|
+
Started GET "/" for 127.0.0.1 at 2015-01-21 11:22:43 -0600
|
623
|
+
Processing by ApplicationController#index as HTML
|
624
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (8.5ms)
|
625
|
+
Rendered application/index.html.erb within layouts/application (9.7ms)
|
626
|
+
Completed 200 OK in 21ms (Views: 20.5ms | ActiveRecord: 0.0ms)
|
627
|
+
|
628
|
+
|
629
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 11:22:43 -0600
|
630
|
+
|
631
|
+
|
632
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-21 11:22:43 -0600
|
633
|
+
|
634
|
+
|
635
|
+
Started GET "/" for 127.0.0.1 at 2015-01-21 11:24:01 -0600
|
636
|
+
Processing by ApplicationController#index as HTML
|
637
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (7.2ms)
|
638
|
+
Rendered application/index.html.erb within layouts/application (9.6ms)
|
639
|
+
Completed 200 OK in 21ms (Views: 21.2ms | ActiveRecord: 0.0ms)
|
640
|
+
|
641
|
+
|
642
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 11:24:01 -0600
|
643
|
+
|
644
|
+
|
645
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-21 11:24:01 -0600
|
646
|
+
|
647
|
+
|
648
|
+
Started POST "/messages/create" for 127.0.0.1 at 2015-01-21 11:24:05 -0600
|
649
|
+
Processing by Contact::MessagesController#create as HTML
|
650
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"tAe+02gRmvT+HDxvC7U7H89vyRdlxmLxNzhZIZIUD40=", "message"=>{"name"=>"asdf", "email"=>"asdf@gmail.com", "content"=>"asdf"}, "commit"=>"Send Message"}
|
651
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/message_mailer/new_message.html.erb (0.1ms)
|
652
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/message_mailer/new_message.text.erb (0.1ms)
|
653
|
+
|
654
|
+
Contact::MessageMailer#new_message: processed outbound mail in 12.3ms
|
655
|
+
|
656
|
+
Sent mail to to@example.com (4.7ms)
|
657
|
+
Date: Wed, 21 Jan 2015 11:24:05 -0600
|
658
|
+
From: from@example.com
|
659
|
+
To: to@example.com
|
660
|
+
Message-ID: <54bfe0b5cb760_26203fd3305e969046560@Davids-MacBook-Air-3.local.mail>
|
661
|
+
Subject: New Contact Form Submission
|
662
|
+
Mime-Version: 1.0
|
663
|
+
Content-Type: multipart/alternative;
|
664
|
+
boundary="--==_mimepart_54bfe0b5ca992_26203fd3305e969046466";
|
665
|
+
charset=UTF-8
|
666
|
+
Content-Transfer-Encoding: 7bit
|
667
|
+
|
668
|
+
|
669
|
+
----==_mimepart_54bfe0b5ca992_26203fd3305e969046466
|
670
|
+
Content-Type: text/plain;
|
671
|
+
charset=UTF-8
|
672
|
+
Content-Transfer-Encoding: 7bit
|
673
|
+
|
674
|
+
Name: asdf
|
675
|
+
Email: asdf@gmail.com
|
676
|
+
Message: asdf
|
677
|
+
----==_mimepart_54bfe0b5ca992_26203fd3305e969046466
|
678
|
+
Content-Type: text/html;
|
679
|
+
charset=UTF-8
|
680
|
+
Content-Transfer-Encoding: 7bit
|
681
|
+
|
682
|
+
<p>Name: asdf</p>
|
683
|
+
<p>Email: asdf@gmail.com</p>
|
684
|
+
<p>Message: asdf</p>
|
685
|
+
----==_mimepart_54bfe0b5ca992_26203fd3305e969046466--
|
686
|
+
|
687
|
+
Redirected to http://localhost:3000/
|
688
|
+
Completed 302 Found in 19ms (ActiveRecord: 0.0ms)
|
689
|
+
|
690
|
+
|
691
|
+
Started GET "/" for 127.0.0.1 at 2015-01-21 11:24:05 -0600
|
692
|
+
Processing by ApplicationController#index as HTML
|
693
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (7.4ms)
|
694
|
+
Rendered application/index.html.erb within layouts/application (9.1ms)
|
695
|
+
Completed 200 OK in 20ms (Views: 19.7ms | ActiveRecord: 0.0ms)
|
696
|
+
|
697
|
+
|
698
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 11:24:05 -0600
|
699
|
+
|
700
|
+
|
701
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-21 11:24:05 -0600
|
702
|
+
|
703
|
+
|
704
|
+
Started POST "/messages/create" for 127.0.0.1 at 2015-01-21 11:24:41 -0600
|
705
|
+
Processing by Contact::MessagesController#create as HTML
|
706
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"tAe+02gRmvT+HDxvC7U7H89vyRdlxmLxNzhZIZIUD40=", "message"=>{"name"=>"asd", "email"=>"asdf@gmail.com", "content"=>"asdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfa"}, "commit"=>"Send Message"}
|
707
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/message_mailer/new_message.html.erb (0.1ms)
|
708
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/message_mailer/new_message.text.erb (0.0ms)
|
709
|
+
|
710
|
+
Contact::MessageMailer#new_message: processed outbound mail in 8.0ms
|
711
|
+
|
712
|
+
Sent mail to to@example.com (4.3ms)
|
713
|
+
Date: Wed, 21 Jan 2015 11:24:41 -0600
|
714
|
+
From: from@example.com
|
715
|
+
To: to@example.com
|
716
|
+
Message-ID: <54bfe0d95e88f_26203fd3306c57d046725@Davids-MacBook-Air-3.local.mail>
|
717
|
+
Subject: New Contact Form Submission
|
718
|
+
Mime-Version: 1.0
|
719
|
+
Content-Type: multipart/alternative;
|
720
|
+
boundary="--==_mimepart_54bfe0d95dfab_26203fd3306c57d0466b1";
|
721
|
+
charset=UTF-8
|
722
|
+
Content-Transfer-Encoding: 7bit
|
723
|
+
|
724
|
+
|
725
|
+
----==_mimepart_54bfe0d95dfab_26203fd3306c57d0466b1
|
726
|
+
Content-Type: text/plain;
|
727
|
+
charset=UTF-8
|
728
|
+
Content-Transfer-Encoding: 7bit
|
729
|
+
|
730
|
+
Name: asd
|
731
|
+
Email: asdf@gmail.com
|
732
|
+
Message: asdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfa
|
733
|
+
----==_mimepart_54bfe0d95dfab_26203fd3306c57d0466b1
|
734
|
+
Content-Type: text/html;
|
735
|
+
charset=UTF-8
|
736
|
+
Content-Transfer-Encoding: 7bit
|
737
|
+
|
738
|
+
<p>Name: asd</p>
|
739
|
+
<p>Email: asdf@gmail.com</p>
|
740
|
+
<p>Message: asdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfadsfadsasdfa</p>
|
741
|
+
----==_mimepart_54bfe0d95dfab_26203fd3306c57d0466b1--
|
742
|
+
|
743
|
+
Redirected to http://localhost:3000/
|
744
|
+
Completed 302 Found in 15ms (ActiveRecord: 0.0ms)
|
745
|
+
|
746
|
+
|
747
|
+
Started GET "/" for 127.0.0.1 at 2015-01-21 11:24:41 -0600
|
748
|
+
Processing by ApplicationController#index as HTML
|
749
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (8.5ms)
|
750
|
+
Rendered application/index.html.erb within layouts/application (9.6ms)
|
751
|
+
Completed 200 OK in 19ms (Views: 18.5ms | ActiveRecord: 0.0ms)
|
752
|
+
|
753
|
+
|
754
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 11:24:41 -0600
|
755
|
+
|
756
|
+
|
757
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-21 11:24:41 -0600
|
758
|
+
|
759
|
+
|
760
|
+
Started GET "/" for 127.0.0.1 at 2015-01-21 11:25:08 -0600
|
761
|
+
Processing by ApplicationController#index as HTML
|
762
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (2.5ms)
|
763
|
+
Rendered application/index.html.erb within layouts/application (3.9ms)
|
764
|
+
Completed 500 Internal Server Error in 6ms
|
765
|
+
|
766
|
+
ActionView::Template::Error (uninitialized constant ActionView::CompiledTemplates::Message):
|
767
|
+
1: <%= simple_form_for (@message || Message.new), url: contact.messages_path do |f| %>
|
768
|
+
2: <%= f.error_notification %>
|
769
|
+
3: <%= f.input :name, label: "Your name" %>
|
770
|
+
4: <%= f.input :email, label: "Your email" %>
|
771
|
+
app/views/application/index.html.erb:7:in `_app_views_application_index_html_erb__3018770693658561554_70176262222540'
|
772
|
+
|
773
|
+
|
774
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
|
775
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms)
|
776
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (12.0ms)
|
777
|
+
|
778
|
+
|
779
|
+
Started GET "/" for 127.0.0.1 at 2015-01-21 11:25:18 -0600
|
780
|
+
Processing by ApplicationController#index as HTML
|
781
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (11.4ms)
|
782
|
+
Rendered application/index.html.erb within layouts/application (12.6ms)
|
783
|
+
Completed 200 OK in 25ms (Views: 25.1ms | ActiveRecord: 0.0ms)
|
784
|
+
|
785
|
+
|
786
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 11:25:18 -0600
|
787
|
+
|
788
|
+
|
789
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-21 11:25:18 -0600
|
790
|
+
|
791
|
+
|
792
|
+
Started POST "/messages/create" for 127.0.0.1 at 2015-01-21 11:25:26 -0600
|
793
|
+
Processing by Contact::MessagesController#create as HTML
|
794
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"tAe+02gRmvT+HDxvC7U7H89vyRdlxmLxNzhZIZIUD40=", "message"=>{"name"=>"asdf", "email"=>"earlynovrock@gmail.com", "content"=>"asdf"}, "commit"=>"Send Message"}
|
795
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/message_mailer/new_message.html.erb (0.1ms)
|
796
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/message_mailer/new_message.text.erb (0.0ms)
|
797
|
+
|
798
|
+
Contact::MessageMailer#new_message: processed outbound mail in 10.4ms
|
799
|
+
|
800
|
+
Sent mail to to@example.com (6.1ms)
|
801
|
+
Date: Wed, 21 Jan 2015 11:25:26 -0600
|
802
|
+
From: from@example.com
|
803
|
+
To: to@example.com
|
804
|
+
Message-ID: <54bfe106803ed_26203fd33081f00446973@Davids-MacBook-Air-3.local.mail>
|
805
|
+
Subject: New Contact Form Submission
|
806
|
+
Mime-Version: 1.0
|
807
|
+
Content-Type: multipart/alternative;
|
808
|
+
boundary="--==_mimepart_54bfe1067fafd_26203fd33081f00446847";
|
809
|
+
charset=UTF-8
|
810
|
+
Content-Transfer-Encoding: 7bit
|
811
|
+
|
812
|
+
|
813
|
+
----==_mimepart_54bfe1067fafd_26203fd33081f00446847
|
814
|
+
Content-Type: text/plain;
|
815
|
+
charset=UTF-8
|
816
|
+
Content-Transfer-Encoding: 7bit
|
817
|
+
|
818
|
+
Name: asdf
|
819
|
+
Email: earlynovrock@gmail.com
|
820
|
+
Message: asdf
|
821
|
+
----==_mimepart_54bfe1067fafd_26203fd33081f00446847
|
822
|
+
Content-Type: text/html;
|
823
|
+
charset=UTF-8
|
824
|
+
Content-Transfer-Encoding: 7bit
|
825
|
+
|
826
|
+
<p>Name: asdf</p>
|
827
|
+
<p>Email: earlynovrock@gmail.com</p>
|
828
|
+
<p>Message: asdf</p>
|
829
|
+
----==_mimepart_54bfe1067fafd_26203fd33081f00446847--
|
830
|
+
|
831
|
+
Redirected to http://localhost:3000/
|
832
|
+
Completed 302 Found in 24ms (ActiveRecord: 0.0ms)
|
833
|
+
|
834
|
+
|
835
|
+
Started GET "/" for 127.0.0.1 at 2015-01-21 11:25:26 -0600
|
836
|
+
Processing by ApplicationController#index as HTML
|
837
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (7.0ms)
|
838
|
+
Rendered application/index.html.erb within layouts/application (8.4ms)
|
839
|
+
Completed 200 OK in 39ms (Views: 38.8ms | ActiveRecord: 0.0ms)
|
840
|
+
|
841
|
+
|
842
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 11:25:26 -0600
|
843
|
+
|
844
|
+
|
845
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-21 11:25:26 -0600
|
846
|
+
|
847
|
+
|
848
|
+
Started GET "/" for 127.0.0.1 at 2015-01-21 11:25:54 -0600
|
849
|
+
Processing by ApplicationController#index as HTML
|
850
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (0.8ms)
|
851
|
+
Rendered application/index.html.erb within layouts/application (1.9ms)
|
852
|
+
Completed 500 Internal Server Error in 4ms
|
853
|
+
|
854
|
+
SyntaxError (/Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb:1: syntax error, unexpected tSTRING_BEG, expecting keyword_end
|
855
|
+
...h, html: { novalidate: true } " do |f| @output_buffer.safe_a...
|
856
|
+
... ^
|
857
|
+
/Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb:3: syntax error, unexpected tCONSTANT, expecting keyword_end
|
858
|
+
...d=( f.input :name, label: "Your name" );@output_buffer.safe_...
|
859
|
+
... ^
|
860
|
+
/Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb:4: syntax error, unexpected tCONSTANT, expecting keyword_end
|
861
|
+
...=( f.input :email, label: "Your email" );@output_buffer.safe...
|
862
|
+
... ^
|
863
|
+
/Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb:5: syntax error, unexpected tCONSTANT, expecting keyword_end
|
864
|
+
...ent, as: :text, label: "Message" );@output_buffer.safe_appen...
|
865
|
+
... ^
|
866
|
+
/Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb:6: syntax error, unexpected tCONSTANT, expecting keyword_end
|
867
|
+
..._buffer.append=( f.submit "Send Message", class: "btn btn-ou...
|
868
|
+
... ^
|
869
|
+
/Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb:6: syntax error, unexpected tIDENTIFIER, expecting keyword_end
|
870
|
+
...mit "Send Message", class: "btn btn-outline btn-outline-teal...
|
871
|
+
... ^
|
872
|
+
/Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb:6: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '('
|
873
|
+
...e", class: "btn btn-outline btn-outline-teal inverse" );@out...
|
874
|
+
... ^
|
875
|
+
/Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb:6: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '('
|
876
|
+
...utline btn-outline-teal inverse" );@output_buffer.safe_appen...
|
877
|
+
... ^
|
878
|
+
/Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb:6: unterminated string meets end of file
|
879
|
+
/Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb:6: syntax error, unexpected end-of-input, expecting keyword_end):
|
880
|
+
app/views/application/index.html.erb:7:in `_app_views_application_index_html_erb__3018770693658561554_70176262222540'
|
881
|
+
|
882
|
+
|
883
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.4ms)
|
884
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
|
885
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
|
886
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.2ms)
|
887
|
+
|
888
|
+
|
889
|
+
Started GET "/" for 127.0.0.1 at 2015-01-21 11:26:40 -0600
|
890
|
+
Processing by ApplicationController#index as HTML
|
891
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (0.8ms)
|
892
|
+
Rendered application/index.html.erb within layouts/application (2.2ms)
|
893
|
+
Completed 500 Internal Server Error in 4ms
|
894
|
+
|
895
|
+
SyntaxError (/Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb:1: syntax error, unexpected ',', expecting ')'
|
896
|
+
...essage || Contact::Message.new, html: { novalidate: true }),...
|
897
|
+
... ^
|
898
|
+
/Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb:1: syntax error, unexpected ')', expecting keyword_end
|
899
|
+
...ew, html: { novalidate: true }), url: contact.messages_path ...
|
900
|
+
... ^
|
901
|
+
/Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb:1: syntax error, unexpected keyword_do_block, expecting keyword_end
|
902
|
+
..., url: contact.messages_path do |f| @output_buffer.safe_appe...
|
903
|
+
... ^
|
904
|
+
/Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb:8: syntax error, unexpected keyword_ensure, expecting end-of-input):
|
905
|
+
app/views/application/index.html.erb:7:in `_app_views_application_index_html_erb__3018770693658561554_70176262222540'
|
906
|
+
|
907
|
+
|
908
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
|
909
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
|
910
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
|
911
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.5ms)
|
912
|
+
|
913
|
+
|
914
|
+
Started GET "/" for 127.0.0.1 at 2015-01-21 11:26:54 -0600
|
915
|
+
Processing by ApplicationController#index as HTML
|
916
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (8.4ms)
|
917
|
+
Rendered application/index.html.erb within layouts/application (10.0ms)
|
918
|
+
Completed 200 OK in 22ms (Views: 21.9ms | ActiveRecord: 0.0ms)
|
919
|
+
|
920
|
+
|
921
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 11:26:54 -0600
|
922
|
+
|
923
|
+
|
924
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-21 11:26:54 -0600
|
925
|
+
|
926
|
+
|
927
|
+
Started POST "/messages/create" for 127.0.0.1 at 2015-01-21 11:26:57 -0600
|
928
|
+
Processing by Contact::MessagesController#create as HTML
|
929
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"tAe+02gRmvT+HDxvC7U7H89vyRdlxmLxNzhZIZIUD40=", "message"=>{"name"=>"", "email"=>"", "content"=>""}, "commit"=>"Send Message"}
|
930
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (11.0ms)
|
931
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/new.html.erb within layouts/application (12.2ms)
|
932
|
+
Completed 200 OK in 30ms (Views: 26.3ms | ActiveRecord: 0.0ms)
|
933
|
+
|
934
|
+
|
935
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 11:26:57 -0600
|
936
|
+
|
937
|
+
|
938
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-21 11:26:57 -0600
|
939
|
+
|
940
|
+
|
941
|
+
Started POST "/messages/create" for 127.0.0.1 at 2015-01-21 11:28:22 -0600
|
942
|
+
Processing by Contact::MessagesController#create as HTML
|
943
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"tAe+02gRmvT+HDxvC7U7H89vyRdlxmLxNzhZIZIUD40=", "message"=>{"name"=>"", "email"=>"", "content"=>""}, "commit"=>"Send Message"}
|
944
|
+
Completed 406 Not Acceptable in 5ms
|
945
|
+
|
946
|
+
ActionController::UnknownFormat (ActionController::UnknownFormat):
|
947
|
+
actionpack (4.1.8) lib/action_controller/metal/mime_responds.rb:440:in `retrieve_collector_from_mimes'
|
948
|
+
actionpack (4.1.8) lib/action_controller/metal/mime_responds.rb:396:in `respond_with'
|
949
|
+
/Users/earlynovrock/Web/contact/app/controllers/contact/messages_controller.rb:15:in `create'
|
950
|
+
actionpack (4.1.8) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
951
|
+
actionpack (4.1.8) lib/abstract_controller/base.rb:189:in `process_action'
|
952
|
+
actionpack (4.1.8) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
953
|
+
actionpack (4.1.8) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
954
|
+
activesupport (4.1.8) lib/active_support/callbacks.rb:113:in `call'
|
955
|
+
activesupport (4.1.8) lib/active_support/callbacks.rb:113:in `call'
|
956
|
+
activesupport (4.1.8) lib/active_support/callbacks.rb:229:in `block in halting'
|
957
|
+
activesupport (4.1.8) lib/active_support/callbacks.rb:166:in `call'
|
958
|
+
activesupport (4.1.8) lib/active_support/callbacks.rb:166:in `block in halting'
|
959
|
+
activesupport (4.1.8) lib/active_support/callbacks.rb:86:in `call'
|
960
|
+
activesupport (4.1.8) lib/active_support/callbacks.rb:86:in `run_callbacks'
|
961
|
+
actionpack (4.1.8) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
962
|
+
actionpack (4.1.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
963
|
+
actionpack (4.1.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
964
|
+
activesupport (4.1.8) lib/active_support/notifications.rb:159:in `block in instrument'
|
965
|
+
activesupport (4.1.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
966
|
+
activesupport (4.1.8) lib/active_support/notifications.rb:159:in `instrument'
|
967
|
+
actionpack (4.1.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
968
|
+
actionpack (4.1.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
969
|
+
activerecord (4.1.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
970
|
+
actionpack (4.1.8) lib/abstract_controller/base.rb:136:in `process'
|
971
|
+
actionview (4.1.8) lib/action_view/rendering.rb:30:in `process'
|
972
|
+
actionpack (4.1.8) lib/action_controller/metal.rb:196:in `dispatch'
|
973
|
+
actionpack (4.1.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
974
|
+
actionpack (4.1.8) lib/action_controller/metal.rb:232:in `block in action'
|
975
|
+
actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:82:in `call'
|
976
|
+
actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
|
977
|
+
actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:50:in `call'
|
978
|
+
actionpack (4.1.8) lib/action_dispatch/journey/router.rb:73:in `block in call'
|
979
|
+
actionpack (4.1.8) lib/action_dispatch/journey/router.rb:59:in `each'
|
980
|
+
actionpack (4.1.8) lib/action_dispatch/journey/router.rb:59:in `call'
|
981
|
+
actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:678:in `call'
|
982
|
+
railties (4.1.8) lib/rails/engine.rb:514:in `call'
|
983
|
+
railties (4.1.8) lib/rails/railtie.rb:194:in `public_send'
|
984
|
+
railties (4.1.8) lib/rails/railtie.rb:194:in `method_missing'
|
985
|
+
actionpack (4.1.8) lib/action_dispatch/journey/router.rb:73:in `block in call'
|
986
|
+
actionpack (4.1.8) lib/action_dispatch/journey/router.rb:59:in `each'
|
987
|
+
actionpack (4.1.8) lib/action_dispatch/journey/router.rb:59:in `call'
|
988
|
+
actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:678:in `call'
|
989
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
990
|
+
rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
|
991
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
992
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
993
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/flash.rb:254:in `call'
|
994
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
995
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
996
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
997
|
+
activerecord (4.1.8) lib/active_record/query_cache.rb:36:in `call'
|
998
|
+
activerecord (4.1.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
|
999
|
+
activerecord (4.1.8) lib/active_record/migration.rb:380:in `call'
|
1000
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
1001
|
+
activesupport (4.1.8) lib/active_support/callbacks.rb:82:in `run_callbacks'
|
1002
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
1003
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
1004
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
1005
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
1006
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1007
|
+
railties (4.1.8) lib/rails/rack/logger.rb:38:in `call_app'
|
1008
|
+
railties (4.1.8) lib/rails/rack/logger.rb:20:in `block in call'
|
1009
|
+
activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
1010
|
+
activesupport (4.1.8) lib/active_support/tagged_logging.rb:26:in `tagged'
|
1011
|
+
activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `tagged'
|
1012
|
+
railties (4.1.8) lib/rails/rack/logger.rb:20:in `call'
|
1013
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1014
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
1015
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
1016
|
+
activesupport (4.1.8) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
|
1017
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
1018
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/static.rb:84:in `call'
|
1019
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
1020
|
+
railties (4.1.8) lib/rails/engine.rb:514:in `call'
|
1021
|
+
railties (4.1.8) lib/rails/application.rb:144:in `call'
|
1022
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
1023
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
1024
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
1025
|
+
/Users/earlynovrock/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
1026
|
+
/Users/earlynovrock/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
1027
|
+
/Users/earlynovrock/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
1028
|
+
|
1029
|
+
|
1030
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
|
1031
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
|
1032
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
|
1033
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.6ms)
|
1034
|
+
|
1035
|
+
|
1036
|
+
Started GET "/" for 127.0.0.1 at 2015-01-21 11:28:25 -0600
|
1037
|
+
Processing by ApplicationController#index as HTML
|
1038
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (10.8ms)
|
1039
|
+
Rendered application/index.html.erb within layouts/application (12.0ms)
|
1040
|
+
Completed 200 OK in 24ms (Views: 23.7ms | ActiveRecord: 0.0ms)
|
1041
|
+
|
1042
|
+
|
1043
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 11:28:25 -0600
|
1044
|
+
|
1045
|
+
|
1046
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-21 11:28:25 -0600
|
1047
|
+
|
1048
|
+
|
1049
|
+
Started GET "/" for 127.0.0.1 at 2015-01-21 11:28:42 -0600
|
1050
|
+
Processing by ApplicationController#index as HTML
|
1051
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (14.2ms)
|
1052
|
+
Rendered application/index.html.erb within layouts/application (16.3ms)
|
1053
|
+
Completed 200 OK in 27ms (Views: 27.0ms | ActiveRecord: 0.0ms)
|
1054
|
+
|
1055
|
+
|
1056
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 11:28:42 -0600
|
1057
|
+
|
1058
|
+
|
1059
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-21 11:28:42 -0600
|
1060
|
+
|
1061
|
+
|
1062
|
+
Started POST "/messages/create" for 127.0.0.1 at 2015-01-21 11:28:45 -0600
|
1063
|
+
Processing by Contact::MessagesController#create as HTML
|
1064
|
+
Parameters: {"utf8"=>"✓", "message"=>{"name"=>"ear", "email"=>"", "content"=>""}, "commit"=>"Send Message"}
|
1065
|
+
Can't verify CSRF token authenticity
|
1066
|
+
Completed 422 Unprocessable Entity in 1ms
|
1067
|
+
|
1068
|
+
ActionController::InvalidAuthenticityToken (ActionController::InvalidAuthenticityToken):
|
1069
|
+
actionpack (4.1.8) lib/action_controller/metal/request_forgery_protection.rb:176:in `handle_unverified_request'
|
1070
|
+
actionpack (4.1.8) lib/action_controller/metal/request_forgery_protection.rb:202:in `handle_unverified_request'
|
1071
|
+
actionpack (4.1.8) lib/action_controller/metal/request_forgery_protection.rb:197:in `verify_authenticity_token'
|
1072
|
+
activesupport (4.1.8) lib/active_support/callbacks.rb:424:in `block in make_lambda'
|
1073
|
+
activesupport (4.1.8) lib/active_support/callbacks.rb:160:in `call'
|
1074
|
+
activesupport (4.1.8) lib/active_support/callbacks.rb:160:in `block in halting'
|
1075
|
+
activesupport (4.1.8) lib/active_support/callbacks.rb:86:in `call'
|
1076
|
+
activesupport (4.1.8) lib/active_support/callbacks.rb:86:in `run_callbacks'
|
1077
|
+
actionpack (4.1.8) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
1078
|
+
actionpack (4.1.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
1079
|
+
actionpack (4.1.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
1080
|
+
activesupport (4.1.8) lib/active_support/notifications.rb:159:in `block in instrument'
|
1081
|
+
activesupport (4.1.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1082
|
+
activesupport (4.1.8) lib/active_support/notifications.rb:159:in `instrument'
|
1083
|
+
actionpack (4.1.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
1084
|
+
actionpack (4.1.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
1085
|
+
activerecord (4.1.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
1086
|
+
actionpack (4.1.8) lib/abstract_controller/base.rb:136:in `process'
|
1087
|
+
actionview (4.1.8) lib/action_view/rendering.rb:30:in `process'
|
1088
|
+
actionpack (4.1.8) lib/action_controller/metal.rb:196:in `dispatch'
|
1089
|
+
actionpack (4.1.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
1090
|
+
actionpack (4.1.8) lib/action_controller/metal.rb:232:in `block in action'
|
1091
|
+
actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:82:in `call'
|
1092
|
+
actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
|
1093
|
+
actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:50:in `call'
|
1094
|
+
actionpack (4.1.8) lib/action_dispatch/journey/router.rb:73:in `block in call'
|
1095
|
+
actionpack (4.1.8) lib/action_dispatch/journey/router.rb:59:in `each'
|
1096
|
+
actionpack (4.1.8) lib/action_dispatch/journey/router.rb:59:in `call'
|
1097
|
+
actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:678:in `call'
|
1098
|
+
railties (4.1.8) lib/rails/engine.rb:514:in `call'
|
1099
|
+
railties (4.1.8) lib/rails/railtie.rb:194:in `public_send'
|
1100
|
+
railties (4.1.8) lib/rails/railtie.rb:194:in `method_missing'
|
1101
|
+
actionpack (4.1.8) lib/action_dispatch/journey/router.rb:73:in `block in call'
|
1102
|
+
actionpack (4.1.8) lib/action_dispatch/journey/router.rb:59:in `each'
|
1103
|
+
actionpack (4.1.8) lib/action_dispatch/journey/router.rb:59:in `call'
|
1104
|
+
actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:678:in `call'
|
1105
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
1106
|
+
rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
|
1107
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
1108
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
1109
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/flash.rb:254:in `call'
|
1110
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
1111
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
1112
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
1113
|
+
activerecord (4.1.8) lib/active_record/query_cache.rb:36:in `call'
|
1114
|
+
activerecord (4.1.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
|
1115
|
+
activerecord (4.1.8) lib/active_record/migration.rb:380:in `call'
|
1116
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
1117
|
+
activesupport (4.1.8) lib/active_support/callbacks.rb:82:in `run_callbacks'
|
1118
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
1119
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
1120
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
1121
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
1122
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1123
|
+
railties (4.1.8) lib/rails/rack/logger.rb:38:in `call_app'
|
1124
|
+
railties (4.1.8) lib/rails/rack/logger.rb:20:in `block in call'
|
1125
|
+
activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
1126
|
+
activesupport (4.1.8) lib/active_support/tagged_logging.rb:26:in `tagged'
|
1127
|
+
activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `tagged'
|
1128
|
+
railties (4.1.8) lib/rails/rack/logger.rb:20:in `call'
|
1129
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1130
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
1131
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
1132
|
+
activesupport (4.1.8) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
|
1133
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
1134
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/static.rb:84:in `call'
|
1135
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
1136
|
+
railties (4.1.8) lib/rails/engine.rb:514:in `call'
|
1137
|
+
railties (4.1.8) lib/rails/application.rb:144:in `call'
|
1138
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
1139
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
1140
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
1141
|
+
/Users/earlynovrock/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
1142
|
+
/Users/earlynovrock/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
1143
|
+
/Users/earlynovrock/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
1144
|
+
|
1145
|
+
|
1146
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
|
1147
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
|
1148
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
|
1149
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.4ms)
|
1150
|
+
|
1151
|
+
|
1152
|
+
Started GET "/" for 127.0.0.1 at 2015-01-21 11:30:01 -0600
|
1153
|
+
Processing by ApplicationController#index as HTML
|
1154
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (9.6ms)
|
1155
|
+
Rendered application/index.html.erb within layouts/application (11.0ms)
|
1156
|
+
Completed 200 OK in 22ms (Views: 22.1ms | ActiveRecord: 0.0ms)
|
1157
|
+
|
1158
|
+
|
1159
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 11:30:01 -0600
|
1160
|
+
|
1161
|
+
|
1162
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-21 11:30:01 -0600
|
1163
|
+
|
1164
|
+
|
1165
|
+
Started POST "/messages/create" for 127.0.0.1 at 2015-01-21 11:30:03 -0600
|
1166
|
+
Processing by Contact::MessagesController#create as HTML
|
1167
|
+
Parameters: {"utf8"=>"✓", "message"=>{"name"=>"", "email"=>"", "content"=>""}, "commit"=>"Send Message"}
|
1168
|
+
Can't verify CSRF token authenticity
|
1169
|
+
Completed 422 Unprocessable Entity in 1ms
|
1170
|
+
|
1171
|
+
ActionController::InvalidAuthenticityToken (ActionController::InvalidAuthenticityToken):
|
1172
|
+
actionpack (4.1.8) lib/action_controller/metal/request_forgery_protection.rb:176:in `handle_unverified_request'
|
1173
|
+
actionpack (4.1.8) lib/action_controller/metal/request_forgery_protection.rb:202:in `handle_unverified_request'
|
1174
|
+
actionpack (4.1.8) lib/action_controller/metal/request_forgery_protection.rb:197:in `verify_authenticity_token'
|
1175
|
+
activesupport (4.1.8) lib/active_support/callbacks.rb:424:in `block in make_lambda'
|
1176
|
+
activesupport (4.1.8) lib/active_support/callbacks.rb:160:in `call'
|
1177
|
+
activesupport (4.1.8) lib/active_support/callbacks.rb:160:in `block in halting'
|
1178
|
+
activesupport (4.1.8) lib/active_support/callbacks.rb:86:in `call'
|
1179
|
+
activesupport (4.1.8) lib/active_support/callbacks.rb:86:in `run_callbacks'
|
1180
|
+
actionpack (4.1.8) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
1181
|
+
actionpack (4.1.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
1182
|
+
actionpack (4.1.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
1183
|
+
activesupport (4.1.8) lib/active_support/notifications.rb:159:in `block in instrument'
|
1184
|
+
activesupport (4.1.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1185
|
+
activesupport (4.1.8) lib/active_support/notifications.rb:159:in `instrument'
|
1186
|
+
actionpack (4.1.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
1187
|
+
actionpack (4.1.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
1188
|
+
activerecord (4.1.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
1189
|
+
actionpack (4.1.8) lib/abstract_controller/base.rb:136:in `process'
|
1190
|
+
actionview (4.1.8) lib/action_view/rendering.rb:30:in `process'
|
1191
|
+
actionpack (4.1.8) lib/action_controller/metal.rb:196:in `dispatch'
|
1192
|
+
actionpack (4.1.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
1193
|
+
actionpack (4.1.8) lib/action_controller/metal.rb:232:in `block in action'
|
1194
|
+
actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:82:in `call'
|
1195
|
+
actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
|
1196
|
+
actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:50:in `call'
|
1197
|
+
actionpack (4.1.8) lib/action_dispatch/journey/router.rb:73:in `block in call'
|
1198
|
+
actionpack (4.1.8) lib/action_dispatch/journey/router.rb:59:in `each'
|
1199
|
+
actionpack (4.1.8) lib/action_dispatch/journey/router.rb:59:in `call'
|
1200
|
+
actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:678:in `call'
|
1201
|
+
railties (4.1.8) lib/rails/engine.rb:514:in `call'
|
1202
|
+
railties (4.1.8) lib/rails/railtie.rb:194:in `public_send'
|
1203
|
+
railties (4.1.8) lib/rails/railtie.rb:194:in `method_missing'
|
1204
|
+
actionpack (4.1.8) lib/action_dispatch/journey/router.rb:73:in `block in call'
|
1205
|
+
actionpack (4.1.8) lib/action_dispatch/journey/router.rb:59:in `each'
|
1206
|
+
actionpack (4.1.8) lib/action_dispatch/journey/router.rb:59:in `call'
|
1207
|
+
actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:678:in `call'
|
1208
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
1209
|
+
rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
|
1210
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
1211
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
1212
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/flash.rb:254:in `call'
|
1213
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
1214
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
1215
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
1216
|
+
activerecord (4.1.8) lib/active_record/query_cache.rb:36:in `call'
|
1217
|
+
activerecord (4.1.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
|
1218
|
+
activerecord (4.1.8) lib/active_record/migration.rb:380:in `call'
|
1219
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
1220
|
+
activesupport (4.1.8) lib/active_support/callbacks.rb:82:in `run_callbacks'
|
1221
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
1222
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
1223
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
1224
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
1225
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1226
|
+
railties (4.1.8) lib/rails/rack/logger.rb:38:in `call_app'
|
1227
|
+
railties (4.1.8) lib/rails/rack/logger.rb:20:in `block in call'
|
1228
|
+
activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
1229
|
+
activesupport (4.1.8) lib/active_support/tagged_logging.rb:26:in `tagged'
|
1230
|
+
activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `tagged'
|
1231
|
+
railties (4.1.8) lib/rails/rack/logger.rb:20:in `call'
|
1232
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1233
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
1234
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
1235
|
+
activesupport (4.1.8) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
|
1236
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
1237
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/static.rb:84:in `call'
|
1238
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
1239
|
+
railties (4.1.8) lib/rails/engine.rb:514:in `call'
|
1240
|
+
railties (4.1.8) lib/rails/application.rb:144:in `call'
|
1241
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
1242
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
1243
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
1244
|
+
/Users/earlynovrock/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
1245
|
+
/Users/earlynovrock/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
1246
|
+
/Users/earlynovrock/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
1247
|
+
|
1248
|
+
|
1249
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.9ms)
|
1250
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
|
1251
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
|
1252
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (17.0ms)
|
1253
|
+
|
1254
|
+
|
1255
|
+
Started GET "/" for 127.0.0.1 at 2015-01-21 11:31:29 -0600
|
1256
|
+
Processing by ApplicationController#index as HTML
|
1257
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (72.6ms)
|
1258
|
+
Rendered application/index.html.erb within layouts/application (87.6ms)
|
1259
|
+
Completed 200 OK in 113ms (Views: 113.1ms | ActiveRecord: 0.0ms)
|
1260
|
+
|
1261
|
+
|
1262
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 11:31:29 -0600
|
1263
|
+
|
1264
|
+
|
1265
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-21 11:31:29 -0600
|
1266
|
+
|
1267
|
+
|
1268
|
+
Started POST "/messages/create" for 127.0.0.1 at 2015-01-21 11:31:30 -0600
|
1269
|
+
Processing by Contact::MessagesController#create as HTML
|
1270
|
+
Parameters: {"utf8"=>"✓", "message"=>{"name"=>"", "email"=>"", "content"=>""}, "commit"=>"Send Message"}
|
1271
|
+
Can't verify CSRF token authenticity
|
1272
|
+
Completed 422 Unprocessable Entity in 2ms
|
1273
|
+
|
1274
|
+
ActionController::InvalidAuthenticityToken (ActionController::InvalidAuthenticityToken):
|
1275
|
+
actionpack (4.1.8) lib/action_controller/metal/request_forgery_protection.rb:176:in `handle_unverified_request'
|
1276
|
+
actionpack (4.1.8) lib/action_controller/metal/request_forgery_protection.rb:202:in `handle_unverified_request'
|
1277
|
+
actionpack (4.1.8) lib/action_controller/metal/request_forgery_protection.rb:197:in `verify_authenticity_token'
|
1278
|
+
activesupport (4.1.8) lib/active_support/callbacks.rb:424:in `block in make_lambda'
|
1279
|
+
activesupport (4.1.8) lib/active_support/callbacks.rb:160:in `call'
|
1280
|
+
activesupport (4.1.8) lib/active_support/callbacks.rb:160:in `block in halting'
|
1281
|
+
activesupport (4.1.8) lib/active_support/callbacks.rb:86:in `call'
|
1282
|
+
activesupport (4.1.8) lib/active_support/callbacks.rb:86:in `run_callbacks'
|
1283
|
+
actionpack (4.1.8) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
1284
|
+
actionpack (4.1.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
1285
|
+
actionpack (4.1.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
1286
|
+
activesupport (4.1.8) lib/active_support/notifications.rb:159:in `block in instrument'
|
1287
|
+
activesupport (4.1.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1288
|
+
activesupport (4.1.8) lib/active_support/notifications.rb:159:in `instrument'
|
1289
|
+
actionpack (4.1.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
1290
|
+
actionpack (4.1.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
1291
|
+
activerecord (4.1.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
1292
|
+
actionpack (4.1.8) lib/abstract_controller/base.rb:136:in `process'
|
1293
|
+
actionview (4.1.8) lib/action_view/rendering.rb:30:in `process'
|
1294
|
+
actionpack (4.1.8) lib/action_controller/metal.rb:196:in `dispatch'
|
1295
|
+
actionpack (4.1.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
1296
|
+
actionpack (4.1.8) lib/action_controller/metal.rb:232:in `block in action'
|
1297
|
+
actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:82:in `call'
|
1298
|
+
actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
|
1299
|
+
actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:50:in `call'
|
1300
|
+
actionpack (4.1.8) lib/action_dispatch/journey/router.rb:73:in `block in call'
|
1301
|
+
actionpack (4.1.8) lib/action_dispatch/journey/router.rb:59:in `each'
|
1302
|
+
actionpack (4.1.8) lib/action_dispatch/journey/router.rb:59:in `call'
|
1303
|
+
actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:678:in `call'
|
1304
|
+
railties (4.1.8) lib/rails/engine.rb:514:in `call'
|
1305
|
+
railties (4.1.8) lib/rails/railtie.rb:194:in `public_send'
|
1306
|
+
railties (4.1.8) lib/rails/railtie.rb:194:in `method_missing'
|
1307
|
+
actionpack (4.1.8) lib/action_dispatch/journey/router.rb:73:in `block in call'
|
1308
|
+
actionpack (4.1.8) lib/action_dispatch/journey/router.rb:59:in `each'
|
1309
|
+
actionpack (4.1.8) lib/action_dispatch/journey/router.rb:59:in `call'
|
1310
|
+
actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:678:in `call'
|
1311
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
1312
|
+
rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
|
1313
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
1314
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
1315
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/flash.rb:254:in `call'
|
1316
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
1317
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
1318
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
1319
|
+
activerecord (4.1.8) lib/active_record/query_cache.rb:36:in `call'
|
1320
|
+
activerecord (4.1.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
|
1321
|
+
activerecord (4.1.8) lib/active_record/migration.rb:380:in `call'
|
1322
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
1323
|
+
activesupport (4.1.8) lib/active_support/callbacks.rb:82:in `run_callbacks'
|
1324
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
1325
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
1326
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
1327
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
1328
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1329
|
+
railties (4.1.8) lib/rails/rack/logger.rb:38:in `call_app'
|
1330
|
+
railties (4.1.8) lib/rails/rack/logger.rb:20:in `block in call'
|
1331
|
+
activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
1332
|
+
activesupport (4.1.8) lib/active_support/tagged_logging.rb:26:in `tagged'
|
1333
|
+
activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `tagged'
|
1334
|
+
railties (4.1.8) lib/rails/rack/logger.rb:20:in `call'
|
1335
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1336
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
1337
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
1338
|
+
activesupport (4.1.8) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
|
1339
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
1340
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/static.rb:84:in `call'
|
1341
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
1342
|
+
railties (4.1.8) lib/rails/engine.rb:514:in `call'
|
1343
|
+
railties (4.1.8) lib/rails/application.rb:144:in `call'
|
1344
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
1345
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
1346
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
1347
|
+
/Users/earlynovrock/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
1348
|
+
/Users/earlynovrock/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
1349
|
+
/Users/earlynovrock/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
1350
|
+
|
1351
|
+
|
1352
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
|
1353
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
|
1354
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
|
1355
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (21.3ms)
|
1356
|
+
|
1357
|
+
|
1358
|
+
Started GET "/" for 127.0.0.1 at 2015-01-21 11:31:57 -0600
|
1359
|
+
Processing by ApplicationController#index as HTML
|
1360
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (9.4ms)
|
1361
|
+
Rendered application/index.html.erb within layouts/application (10.7ms)
|
1362
|
+
Completed 200 OK in 77ms (Views: 76.3ms | ActiveRecord: 0.0ms)
|
1363
|
+
|
1364
|
+
|
1365
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 11:31:57 -0600
|
1366
|
+
|
1367
|
+
|
1368
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-01-21 11:31:58 -0600
|
1369
|
+
|
1370
|
+
|
1371
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-21 11:31:58 -0600
|
1372
|
+
|
1373
|
+
|
1374
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-01-21 11:31:58 -0600
|
1375
|
+
|
1376
|
+
|
1377
|
+
Started POST "/messages/create" for 127.0.0.1 at 2015-01-21 11:32:02 -0600
|
1378
|
+
Processing by Contact::MessagesController#create as JS
|
1379
|
+
Parameters: {"utf8"=>"✓", "message"=>{"name"=>"", "email"=>"", "content"=>""}, "commit"=>"Send Message"}
|
1380
|
+
Completed 500 Internal Server Error in 7ms
|
1381
|
+
|
1382
|
+
ActionView::MissingTemplate (Missing template contact/messages/create, contact/application/create, application/create with {:locale=>[:en], :formats=>[:js, :html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee]}. Searched in:
|
1383
|
+
* "/Users/earlynovrock/Web/contact/test/dummy/app/views"
|
1384
|
+
* "/Users/earlynovrock/Web/contact/app/views"
|
1385
|
+
):
|
1386
|
+
actionview (4.1.8) lib/action_view/path_set.rb:46:in `find'
|
1387
|
+
actionview (4.1.8) lib/action_view/lookup_context.rb:124:in `find'
|
1388
|
+
actionview (4.1.8) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
|
1389
|
+
actionview (4.1.8) lib/action_view/renderer/template_renderer.rb:41:in `determine_template'
|
1390
|
+
actionview (4.1.8) lib/action_view/renderer/template_renderer.rb:8:in `render'
|
1391
|
+
actionview (4.1.8) lib/action_view/renderer/renderer.rb:42:in `render_template'
|
1392
|
+
actionview (4.1.8) lib/action_view/renderer/renderer.rb:23:in `render'
|
1393
|
+
actionview (4.1.8) lib/action_view/rendering.rb:99:in `_render_template'
|
1394
|
+
actionpack (4.1.8) lib/action_controller/metal/streaming.rb:217:in `_render_template'
|
1395
|
+
actionview (4.1.8) lib/action_view/rendering.rb:82:in `render_to_body'
|
1396
|
+
actionpack (4.1.8) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
|
1397
|
+
actionpack (4.1.8) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
|
1398
|
+
actionpack (4.1.8) lib/abstract_controller/rendering.rb:25:in `render'
|
1399
|
+
actionpack (4.1.8) lib/action_controller/metal/rendering.rb:16:in `render'
|
1400
|
+
actionpack (4.1.8) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
|
1401
|
+
activesupport (4.1.8) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
|
1402
|
+
/Users/earlynovrock/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
|
1403
|
+
activesupport (4.1.8) lib/active_support/core_ext/benchmark.rb:12:in `ms'
|
1404
|
+
actionpack (4.1.8) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
|
1405
|
+
actionpack (4.1.8) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
|
1406
|
+
activerecord (4.1.8) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
|
1407
|
+
actionpack (4.1.8) lib/action_controller/metal/instrumentation.rb:40:in `render'
|
1408
|
+
actionpack (4.1.8) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
1409
|
+
actionpack (4.1.8) lib/action_controller/metal/responder.rb:238:in `default_render'
|
1410
|
+
actionpack (4.1.8) lib/action_controller/metal/responder.rb:172:in `to_js'
|
1411
|
+
actionpack (4.1.8) lib/action_controller/metal/responder.rb:158:in `respond'
|
1412
|
+
actionpack (4.1.8) lib/action_controller/metal/responder.rb:151:in `call'
|
1413
|
+
actionpack (4.1.8) lib/action_controller/metal/mime_responds.rb:400:in `respond_with'
|
1414
|
+
/Users/earlynovrock/Web/contact/app/controllers/contact/messages_controller.rb:15:in `create'
|
1415
|
+
actionpack (4.1.8) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
1416
|
+
actionpack (4.1.8) lib/abstract_controller/base.rb:189:in `process_action'
|
1417
|
+
actionpack (4.1.8) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
1418
|
+
actionpack (4.1.8) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
1419
|
+
activesupport (4.1.8) lib/active_support/callbacks.rb:113:in `call'
|
1420
|
+
activesupport (4.1.8) lib/active_support/callbacks.rb:113:in `call'
|
1421
|
+
activesupport (4.1.8) lib/active_support/callbacks.rb:229:in `block in halting'
|
1422
|
+
activesupport (4.1.8) lib/active_support/callbacks.rb:166:in `call'
|
1423
|
+
activesupport (4.1.8) lib/active_support/callbacks.rb:166:in `block in halting'
|
1424
|
+
activesupport (4.1.8) lib/active_support/callbacks.rb:86:in `call'
|
1425
|
+
activesupport (4.1.8) lib/active_support/callbacks.rb:86:in `run_callbacks'
|
1426
|
+
actionpack (4.1.8) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
1427
|
+
actionpack (4.1.8) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
1428
|
+
actionpack (4.1.8) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
1429
|
+
activesupport (4.1.8) lib/active_support/notifications.rb:159:in `block in instrument'
|
1430
|
+
activesupport (4.1.8) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1431
|
+
activesupport (4.1.8) lib/active_support/notifications.rb:159:in `instrument'
|
1432
|
+
actionpack (4.1.8) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
1433
|
+
actionpack (4.1.8) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
1434
|
+
activerecord (4.1.8) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
1435
|
+
actionpack (4.1.8) lib/abstract_controller/base.rb:136:in `process'
|
1436
|
+
actionview (4.1.8) lib/action_view/rendering.rb:30:in `process'
|
1437
|
+
actionpack (4.1.8) lib/action_controller/metal.rb:196:in `dispatch'
|
1438
|
+
actionpack (4.1.8) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
1439
|
+
actionpack (4.1.8) lib/action_controller/metal.rb:232:in `block in action'
|
1440
|
+
actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:82:in `call'
|
1441
|
+
actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
|
1442
|
+
actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:50:in `call'
|
1443
|
+
actionpack (4.1.8) lib/action_dispatch/journey/router.rb:73:in `block in call'
|
1444
|
+
actionpack (4.1.8) lib/action_dispatch/journey/router.rb:59:in `each'
|
1445
|
+
actionpack (4.1.8) lib/action_dispatch/journey/router.rb:59:in `call'
|
1446
|
+
actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:678:in `call'
|
1447
|
+
railties (4.1.8) lib/rails/engine.rb:514:in `call'
|
1448
|
+
railties (4.1.8) lib/rails/railtie.rb:194:in `public_send'
|
1449
|
+
railties (4.1.8) lib/rails/railtie.rb:194:in `method_missing'
|
1450
|
+
actionpack (4.1.8) lib/action_dispatch/journey/router.rb:73:in `block in call'
|
1451
|
+
actionpack (4.1.8) lib/action_dispatch/journey/router.rb:59:in `each'
|
1452
|
+
actionpack (4.1.8) lib/action_dispatch/journey/router.rb:59:in `call'
|
1453
|
+
actionpack (4.1.8) lib/action_dispatch/routing/route_set.rb:678:in `call'
|
1454
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
1455
|
+
rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
|
1456
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
1457
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
1458
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/flash.rb:254:in `call'
|
1459
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
1460
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
1461
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
1462
|
+
activerecord (4.1.8) lib/active_record/query_cache.rb:36:in `call'
|
1463
|
+
activerecord (4.1.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
|
1464
|
+
activerecord (4.1.8) lib/active_record/migration.rb:380:in `call'
|
1465
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
1466
|
+
activesupport (4.1.8) lib/active_support/callbacks.rb:82:in `run_callbacks'
|
1467
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
1468
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
1469
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
1470
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
1471
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1472
|
+
railties (4.1.8) lib/rails/rack/logger.rb:38:in `call_app'
|
1473
|
+
railties (4.1.8) lib/rails/rack/logger.rb:20:in `block in call'
|
1474
|
+
activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
1475
|
+
activesupport (4.1.8) lib/active_support/tagged_logging.rb:26:in `tagged'
|
1476
|
+
activesupport (4.1.8) lib/active_support/tagged_logging.rb:68:in `tagged'
|
1477
|
+
railties (4.1.8) lib/rails/rack/logger.rb:20:in `call'
|
1478
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1479
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
1480
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
1481
|
+
activesupport (4.1.8) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
|
1482
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
1483
|
+
actionpack (4.1.8) lib/action_dispatch/middleware/static.rb:84:in `call'
|
1484
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
1485
|
+
railties (4.1.8) lib/rails/engine.rb:514:in `call'
|
1486
|
+
railties (4.1.8) lib/rails/application.rb:144:in `call'
|
1487
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
1488
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
1489
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
1490
|
+
/Users/earlynovrock/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
1491
|
+
/Users/earlynovrock/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
1492
|
+
/Users/earlynovrock/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
1493
|
+
|
1494
|
+
|
1495
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/missing_template.text.erb (0.5ms)
|
1496
|
+
|
1497
|
+
|
1498
|
+
Started GET "/" for 127.0.0.1 at 2015-01-21 11:33:03 -0600
|
1499
|
+
Processing by ApplicationController#index as HTML
|
1500
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (15.3ms)
|
1501
|
+
Rendered application/index.html.erb within layouts/application (17.8ms)
|
1502
|
+
Completed 200 OK in 51ms (Views: 50.3ms | ActiveRecord: 0.0ms)
|
1503
|
+
|
1504
|
+
|
1505
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 11:33:03 -0600
|
1506
|
+
|
1507
|
+
|
1508
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-01-21 11:33:03 -0600
|
1509
|
+
|
1510
|
+
|
1511
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-01-21 11:33:03 -0600
|
1512
|
+
|
1513
|
+
|
1514
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-21 11:33:03 -0600
|
1515
|
+
|
1516
|
+
|
1517
|
+
Started POST "/messages/create" for 127.0.0.1 at 2015-01-21 11:33:04 -0600
|
1518
|
+
Processing by Contact::MessagesController#create as JS
|
1519
|
+
Parameters: {"utf8"=>"✓", "message"=>{"name"=>"", "email"=>"", "content"=>""}, "commit"=>"Send Message"}
|
1520
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/create.js.erb (0.6ms)
|
1521
|
+
Completed 200 OK in 9ms (Views: 6.6ms | ActiveRecord: 0.0ms)
|
1522
|
+
|
1523
|
+
|
1524
|
+
Started POST "/messages/create" for 127.0.0.1 at 2015-01-21 11:33:10 -0600
|
1525
|
+
Processing by Contact::MessagesController#create as JS
|
1526
|
+
Parameters: {"utf8"=>"✓", "message"=>{"name"=>"David", "email"=>"earlynovrock@gmail.com", "content"=>"test"}, "commit"=>"Send Message"}
|
1527
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/message_mailer/new_message.html.erb (0.6ms)
|
1528
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/message_mailer/new_message.text.erb (0.5ms)
|
1529
|
+
|
1530
|
+
Contact::MessageMailer#new_message: processed outbound mail in 305.1ms
|
1531
|
+
|
1532
|
+
Sent mail to to@example.com (10.4ms)
|
1533
|
+
Date: Wed, 21 Jan 2015 11:33:11 -0600
|
1534
|
+
From: from@example.com
|
1535
|
+
To: to@example.com
|
1536
|
+
Message-ID: <54bfe2d7fc2f_29833fc21ec7b33c5795d@Davids-MacBook-Air-3.local.mail>
|
1537
|
+
Subject: New Contact Form Submission
|
1538
|
+
Mime-Version: 1.0
|
1539
|
+
Content-Type: multipart/alternative;
|
1540
|
+
boundary="--==_mimepart_54bfe2d7e551_29833fc21ec7b33c5781";
|
1541
|
+
charset=UTF-8
|
1542
|
+
Content-Transfer-Encoding: 7bit
|
1543
|
+
|
1544
|
+
|
1545
|
+
----==_mimepart_54bfe2d7e551_29833fc21ec7b33c5781
|
1546
|
+
Content-Type: text/plain;
|
1547
|
+
charset=UTF-8
|
1548
|
+
Content-Transfer-Encoding: 7bit
|
1549
|
+
|
1550
|
+
Name: David
|
1551
|
+
Email: earlynovrock@gmail.com
|
1552
|
+
Message: test
|
1553
|
+
----==_mimepart_54bfe2d7e551_29833fc21ec7b33c5781
|
1554
|
+
Content-Type: text/html;
|
1555
|
+
charset=UTF-8
|
1556
|
+
Content-Transfer-Encoding: 7bit
|
1557
|
+
|
1558
|
+
<p>Name: David</p>
|
1559
|
+
<p>Email: earlynovrock@gmail.com</p>
|
1560
|
+
<p>Message: test</p>
|
1561
|
+
----==_mimepart_54bfe2d7e551_29833fc21ec7b33c5781--
|
1562
|
+
|
1563
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/create.js.erb (0.1ms)
|
1564
|
+
Completed 200 OK in 325ms (Views: 4.6ms | ActiveRecord: 0.0ms)
|
1565
|
+
|
1566
|
+
|
1567
|
+
Started GET "/contact" for 127.0.0.1 at 2015-01-21 11:33:49 -0600
|
1568
|
+
Processing by Contact::MessagesController#new as HTML
|
1569
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (10.7ms)
|
1570
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/new.html.erb within layouts/application (12.3ms)
|
1571
|
+
Completed 200 OK in 47ms (Views: 46.7ms | ActiveRecord: 0.0ms)
|
1572
|
+
|
1573
|
+
|
1574
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-01-21 11:33:50 -0600
|
1575
|
+
|
1576
|
+
|
1577
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-01-21 11:33:50 -0600
|
1578
|
+
|
1579
|
+
|
1580
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-21 11:33:50 -0600
|
1581
|
+
|
1582
|
+
|
1583
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 11:33:50 -0600
|
1584
|
+
|
1585
|
+
|
1586
|
+
Started POST "/messages/create" for 127.0.0.1 at 2015-01-21 11:33:56 -0600
|
1587
|
+
Processing by Contact::MessagesController#create as JS
|
1588
|
+
Parameters: {"utf8"=>"✓", "message"=>{"name"=>"ear", "email"=>"asdf@gmail.com", "content"=>""}, "commit"=>"Send Message"}
|
1589
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/create.js.erb (0.1ms)
|
1590
|
+
Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.0ms)
|
1591
|
+
|
1592
|
+
|
1593
|
+
Started POST "/messages/create" for 127.0.0.1 at 2015-01-21 11:33:58 -0600
|
1594
|
+
Processing by Contact::MessagesController#create as JS
|
1595
|
+
Parameters: {"utf8"=>"✓", "message"=>{"name"=>"ear", "email"=>"asdf@gmail.com", "content"=>"asdf"}, "commit"=>"Send Message"}
|
1596
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/message_mailer/new_message.html.erb (0.1ms)
|
1597
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/message_mailer/new_message.text.erb (0.1ms)
|
1598
|
+
|
1599
|
+
Contact::MessageMailer#new_message: processed outbound mail in 10.4ms
|
1600
|
+
|
1601
|
+
Sent mail to to@example.com (4.6ms)
|
1602
|
+
Date: Wed, 21 Jan 2015 11:33:58 -0600
|
1603
|
+
From: from@example.com
|
1604
|
+
To: to@example.com
|
1605
|
+
Message-ID: <54bfe30697452_29833fc22122bfa0581e0@Davids-MacBook-Air-3.local.mail>
|
1606
|
+
Subject: New Contact Form Submission
|
1607
|
+
Mime-Version: 1.0
|
1608
|
+
Content-Type: multipart/alternative;
|
1609
|
+
boundary="--==_mimepart_54bfe30696b68_29833fc22122bfa05802a";
|
1610
|
+
charset=UTF-8
|
1611
|
+
Content-Transfer-Encoding: 7bit
|
1612
|
+
|
1613
|
+
|
1614
|
+
----==_mimepart_54bfe30696b68_29833fc22122bfa05802a
|
1615
|
+
Content-Type: text/plain;
|
1616
|
+
charset=UTF-8
|
1617
|
+
Content-Transfer-Encoding: 7bit
|
1618
|
+
|
1619
|
+
Name: ear
|
1620
|
+
Email: asdf@gmail.com
|
1621
|
+
Message: asdf
|
1622
|
+
----==_mimepart_54bfe30696b68_29833fc22122bfa05802a
|
1623
|
+
Content-Type: text/html;
|
1624
|
+
charset=UTF-8
|
1625
|
+
Content-Transfer-Encoding: 7bit
|
1626
|
+
|
1627
|
+
<p>Name: ear</p>
|
1628
|
+
<p>Email: asdf@gmail.com</p>
|
1629
|
+
<p>Message: asdf</p>
|
1630
|
+
----==_mimepart_54bfe30696b68_29833fc22122bfa05802a--
|
1631
|
+
|
1632
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/create.js.erb (0.0ms)
|
1633
|
+
Completed 200 OK in 22ms (Views: 5.4ms | ActiveRecord: 0.0ms)
|
1634
|
+
|
1635
|
+
|
1636
|
+
Started POST "/messages/create" for 127.0.0.1 at 2015-01-21 11:35:32 -0600
|
1637
|
+
Processing by Contact::MessagesController#create as JS
|
1638
|
+
Parameters: {"utf8"=>"✓", "message"=>{"name"=>"David", "email"=>"earlynovrock@gmail.com", "content"=>""}, "commit"=>"Send Message"}
|
1639
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (7.6ms)
|
1640
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/create.js.erb (9.3ms)
|
1641
|
+
Completed 200 OK in 16ms (Views: 14.5ms | ActiveRecord: 0.0ms)
|
1642
|
+
|
1643
|
+
|
1644
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 11:35:36 -0600
|
1645
|
+
|
1646
|
+
|
1647
|
+
Started GET "/" for 127.0.0.1 at 2015-01-21 11:35:55 -0600
|
1648
|
+
Processing by ApplicationController#index as HTML
|
1649
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (10.1ms)
|
1650
|
+
Rendered application/index.html.erb within layouts/application (12.0ms)
|
1651
|
+
Completed 200 OK in 36ms (Views: 36.0ms | ActiveRecord: 0.0ms)
|
1652
|
+
|
1653
|
+
|
1654
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 11:35:56 -0600
|
1655
|
+
|
1656
|
+
|
1657
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-01-21 11:35:56 -0600
|
1658
|
+
|
1659
|
+
|
1660
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-01-21 11:35:56 -0600
|
1661
|
+
|
1662
|
+
|
1663
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-21 11:35:56 -0600
|
1664
|
+
|
1665
|
+
|
1666
|
+
Started POST "/messages/create" for 127.0.0.1 at 2015-01-21 11:35:58 -0600
|
1667
|
+
Processing by Contact::MessagesController#create as JS
|
1668
|
+
Parameters: {"utf8"=>"✓", "message"=>{"name"=>"", "email"=>"", "content"=>""}, "commit"=>"Send Message"}
|
1669
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (7.7ms)
|
1670
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/create.js.erb (9.1ms)
|
1671
|
+
Completed 200 OK in 17ms (Views: 14.6ms | ActiveRecord: 0.0ms)
|
1672
|
+
|
1673
|
+
|
1674
|
+
Started GET "/" for 127.0.0.1 at 2015-01-21 11:36:58 -0600
|
1675
|
+
Processing by ApplicationController#index as HTML
|
1676
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (8.5ms)
|
1677
|
+
Rendered application/index.html.erb within layouts/application (10.2ms)
|
1678
|
+
Completed 200 OK in 41ms (Views: 40.5ms | ActiveRecord: 0.0ms)
|
1679
|
+
|
1680
|
+
|
1681
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 11:36:58 -0600
|
1682
|
+
|
1683
|
+
|
1684
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-01-21 11:36:58 -0600
|
1685
|
+
|
1686
|
+
|
1687
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-01-21 11:36:58 -0600
|
1688
|
+
|
1689
|
+
|
1690
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-21 11:36:58 -0600
|
1691
|
+
|
1692
|
+
|
1693
|
+
Started POST "/messages/create" for 127.0.0.1 at 2015-01-21 11:37:00 -0600
|
1694
|
+
Processing by Contact::MessagesController#create as JS
|
1695
|
+
Parameters: {"utf8"=>"✓", "message"=>{"name"=>"", "email"=>"", "content"=>""}, "commit"=>"Send Message"}
|
1696
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (8.1ms)
|
1697
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/create.js.erb (10.0ms)
|
1698
|
+
Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 0.0ms)
|
1699
|
+
|
1700
|
+
|
1701
|
+
Started GET "/" for 127.0.0.1 at 2015-01-21 11:37:51 -0600
|
1702
|
+
Processing by ApplicationController#index as HTML
|
1703
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (8.9ms)
|
1704
|
+
Rendered application/index.html.erb within layouts/application (10.2ms)
|
1705
|
+
Completed 200 OK in 34ms (Views: 33.6ms | ActiveRecord: 0.0ms)
|
1706
|
+
|
1707
|
+
|
1708
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 11:37:51 -0600
|
1709
|
+
|
1710
|
+
|
1711
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-01-21 11:37:51 -0600
|
1712
|
+
|
1713
|
+
|
1714
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-01-21 11:37:51 -0600
|
1715
|
+
|
1716
|
+
|
1717
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-21 11:37:51 -0600
|
1718
|
+
|
1719
|
+
|
1720
|
+
Started POST "/messages/create" for 127.0.0.1 at 2015-01-21 11:37:53 -0600
|
1721
|
+
Processing by Contact::MessagesController#create as JS
|
1722
|
+
Parameters: {"utf8"=>"✓", "message"=>{"name"=>"", "email"=>"", "content"=>""}, "commit"=>"Send Message"}
|
1723
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_fields.html.erb (9.4ms)
|
1724
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/create.js.erb (11.4ms)
|
1725
|
+
Completed 200 OK in 21ms (Views: 17.9ms | ActiveRecord: 0.0ms)
|
1726
|
+
|
1727
|
+
|
1728
|
+
Started POST "/messages/create" for 127.0.0.1 at 2015-01-21 11:37:58 -0600
|
1729
|
+
Processing by Contact::MessagesController#create as JS
|
1730
|
+
Parameters: {"utf8"=>"✓", "message"=>{"name"=>"asdf", "email"=>"asdf@gmail.com", "content"=>"asdf"}, "commit"=>"Send Message"}
|
1731
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/message_mailer/new_message.html.erb (0.1ms)
|
1732
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/message_mailer/new_message.text.erb (0.0ms)
|
1733
|
+
|
1734
|
+
Contact::MessageMailer#new_message: processed outbound mail in 10.3ms
|
1735
|
+
|
1736
|
+
Sent mail to to@example.com (5.7ms)
|
1737
|
+
Date: Wed, 21 Jan 2015 11:37:58 -0600
|
1738
|
+
From: from@example.com
|
1739
|
+
To: to@example.com
|
1740
|
+
Message-ID: <54bfe3f62fcb7_29833fc2219507b85834d@Davids-MacBook-Air-3.local.mail>
|
1741
|
+
Subject: New Contact Form Submission
|
1742
|
+
Mime-Version: 1.0
|
1743
|
+
Content-Type: multipart/alternative;
|
1744
|
+
boundary="--==_mimepart_54bfe3f62f064_29833fc2219507b858276";
|
1745
|
+
charset=UTF-8
|
1746
|
+
Content-Transfer-Encoding: 7bit
|
1747
|
+
|
1748
|
+
|
1749
|
+
----==_mimepart_54bfe3f62f064_29833fc2219507b858276
|
1750
|
+
Content-Type: text/plain;
|
1751
|
+
charset=UTF-8
|
1752
|
+
Content-Transfer-Encoding: 7bit
|
1753
|
+
|
1754
|
+
Name: asdf
|
1755
|
+
Email: asdf@gmail.com
|
1756
|
+
Message: asdf
|
1757
|
+
----==_mimepart_54bfe3f62f064_29833fc2219507b858276
|
1758
|
+
Content-Type: text/html;
|
1759
|
+
charset=UTF-8
|
1760
|
+
Content-Transfer-Encoding: 7bit
|
1761
|
+
|
1762
|
+
<p>Name: asdf</p>
|
1763
|
+
<p>Email: asdf@gmail.com</p>
|
1764
|
+
<p>Message: asdf</p>
|
1765
|
+
----==_mimepart_54bfe3f62f064_29833fc2219507b858276--
|
1766
|
+
|
1767
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/create.js.erb (0.1ms)
|
1768
|
+
Completed 200 OK in 22ms (Views: 4.7ms | ActiveRecord: 0.0ms)
|
1769
|
+
|
1770
|
+
|
1771
|
+
Started POST "/messages/create" for 127.0.0.1 at 2015-01-21 11:38:08 -0600
|
1772
|
+
Processing by Contact::MessagesController#create as JS
|
1773
|
+
Parameters: {"utf8"=>"✓", "message"=>{"name"=>"asdf", "email"=>"asdf@gmail.com", "content"=>"asdf"}, "commit"=>"Send Message"}
|
1774
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/message_mailer/new_message.html.erb (0.1ms)
|
1775
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/message_mailer/new_message.text.erb (0.0ms)
|
1776
|
+
|
1777
|
+
Contact::MessageMailer#new_message: processed outbound mail in 9.9ms
|
1778
|
+
|
1779
|
+
Sent mail to to@example.com (5.9ms)
|
1780
|
+
Date: Wed, 21 Jan 2015 11:38:08 -0600
|
1781
|
+
From: from@example.com
|
1782
|
+
To: to@example.com
|
1783
|
+
Message-ID: <54bfe400ce80e_29833fc2219507b85853d@Davids-MacBook-Air-3.local.mail>
|
1784
|
+
Subject: New Contact Form Submission
|
1785
|
+
Mime-Version: 1.0
|
1786
|
+
Content-Type: multipart/alternative;
|
1787
|
+
boundary="--==_mimepart_54bfe400cdcce_29833fc2219507b858490";
|
1788
|
+
charset=UTF-8
|
1789
|
+
Content-Transfer-Encoding: 7bit
|
1790
|
+
|
1791
|
+
|
1792
|
+
----==_mimepart_54bfe400cdcce_29833fc2219507b858490
|
1793
|
+
Content-Type: text/plain;
|
1794
|
+
charset=UTF-8
|
1795
|
+
Content-Transfer-Encoding: 7bit
|
1796
|
+
|
1797
|
+
Name: asdf
|
1798
|
+
Email: asdf@gmail.com
|
1799
|
+
Message: asdf
|
1800
|
+
----==_mimepart_54bfe400cdcce_29833fc2219507b858490
|
1801
|
+
Content-Type: text/html;
|
1802
|
+
charset=UTF-8
|
1803
|
+
Content-Transfer-Encoding: 7bit
|
1804
|
+
|
1805
|
+
<p>Name: asdf</p>
|
1806
|
+
<p>Email: asdf@gmail.com</p>
|
1807
|
+
<p>Message: asdf</p>
|
1808
|
+
----==_mimepart_54bfe400cdcce_29833fc2219507b858490--
|
1809
|
+
|
1810
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_fields.html.erb (7.2ms)
|
1811
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/create.js.erb (9.1ms)
|
1812
|
+
Completed 200 OK in 31ms (Views: 13.8ms | ActiveRecord: 0.0ms)
|
1813
|
+
|
1814
|
+
|
1815
|
+
Started POST "/messages/create" for 127.0.0.1 at 2015-01-21 11:38:41 -0600
|
1816
|
+
Processing by Contact::MessagesController#create as JS
|
1817
|
+
Parameters: {"utf8"=>"✓", "message"=>{"name"=>"asdf", "email"=>"asdf@gmail.com", "content"=>"asdf"}, "commit"=>"Send Message"}
|
1818
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/message_mailer/new_message.html.erb (0.2ms)
|
1819
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/message_mailer/new_message.text.erb (0.1ms)
|
1820
|
+
|
1821
|
+
Contact::MessageMailer#new_message: processed outbound mail in 11.7ms
|
1822
|
+
|
1823
|
+
Sent mail to to@example.com (4.7ms)
|
1824
|
+
Date: Wed, 21 Jan 2015 11:38:41 -0600
|
1825
|
+
From: from@example.com
|
1826
|
+
To: to@example.com
|
1827
|
+
Message-ID: <54bfe421d3fbd_29833fc21eedd29c587b8@Davids-MacBook-Air-3.local.mail>
|
1828
|
+
Subject: New Contact Form Submission
|
1829
|
+
Mime-Version: 1.0
|
1830
|
+
Content-Type: multipart/alternative;
|
1831
|
+
boundary="--==_mimepart_54bfe421d356a_29833fc21eedd29c5861f";
|
1832
|
+
charset=UTF-8
|
1833
|
+
Content-Transfer-Encoding: 7bit
|
1834
|
+
|
1835
|
+
|
1836
|
+
----==_mimepart_54bfe421d356a_29833fc21eedd29c5861f
|
1837
|
+
Content-Type: text/plain;
|
1838
|
+
charset=UTF-8
|
1839
|
+
Content-Transfer-Encoding: 7bit
|
1840
|
+
|
1841
|
+
Name: asdf
|
1842
|
+
Email: asdf@gmail.com
|
1843
|
+
Message: asdf
|
1844
|
+
----==_mimepart_54bfe421d356a_29833fc21eedd29c5861f
|
1845
|
+
Content-Type: text/html;
|
1846
|
+
charset=UTF-8
|
1847
|
+
Content-Transfer-Encoding: 7bit
|
1848
|
+
|
1849
|
+
<p>Name: asdf</p>
|
1850
|
+
<p>Email: asdf@gmail.com</p>
|
1851
|
+
<p>Message: asdf</p>
|
1852
|
+
----==_mimepart_54bfe421d356a_29833fc21eedd29c5861f--
|
1853
|
+
|
1854
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_fields.html.erb (7.8ms)
|
1855
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/create.js.erb (10.4ms)
|
1856
|
+
Completed 200 OK in 33ms (Views: 14.8ms | ActiveRecord: 0.0ms)
|
1857
|
+
|
1858
|
+
|
1859
|
+
Started GET "/" for 127.0.0.1 at 2015-01-21 11:39:37 -0600
|
1860
|
+
Processing by ApplicationController#index as HTML
|
1861
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (2.2ms)
|
1862
|
+
Rendered application/index.html.erb within layouts/application (3.4ms)
|
1863
|
+
Completed 500 Internal Server Error in 5ms
|
1864
|
+
|
1865
|
+
ActionView::Template::Error (Missing partial application/_fields with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee]}. Searched in:
|
1866
|
+
* "/Users/earlynovrock/Web/contact/test/dummy/app/views"
|
1867
|
+
* "/Users/earlynovrock/Web/contact/app/views"
|
1868
|
+
):
|
1869
|
+
2: <div id="success" style="display: none;">
|
1870
|
+
3: Success
|
1871
|
+
4: </div>
|
1872
|
+
5: <%= render 'fields' %>
|
1873
|
+
6: </div>
|
1874
|
+
app/views/application/index.html.erb:7:in `_app_views_application_index_html_erb__2261735541863249140_70102994229260'
|
1875
|
+
|
1876
|
+
|
1877
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
|
1878
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
|
1879
|
+
Rendered /Users/earlynovrock/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.8/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (14.3ms)
|
1880
|
+
|
1881
|
+
|
1882
|
+
Started GET "/" for 127.0.0.1 at 2015-01-21 11:39:51 -0600
|
1883
|
+
Processing by ApplicationController#index as HTML
|
1884
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_fields.html.erb (11.9ms)
|
1885
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (14.0ms)
|
1886
|
+
Rendered application/index.html.erb within layouts/application (15.9ms)
|
1887
|
+
Completed 200 OK in 42ms (Views: 41.9ms | ActiveRecord: 0.0ms)
|
1888
|
+
|
1889
|
+
|
1890
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 11:39:51 -0600
|
1891
|
+
|
1892
|
+
|
1893
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-01-21 11:39:51 -0600
|
1894
|
+
|
1895
|
+
|
1896
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-01-21 11:39:51 -0600
|
1897
|
+
|
1898
|
+
|
1899
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-21 11:39:51 -0600
|
1900
|
+
|
1901
|
+
|
1902
|
+
Started POST "/messages/create" for 127.0.0.1 at 2015-01-21 11:39:56 -0600
|
1903
|
+
Processing by Contact::MessagesController#create as JS
|
1904
|
+
Parameters: {"utf8"=>"✓", "message"=>{"name"=>"ear", "email"=>"asdf@gmail.com", "content"=>"asdf"}, "commit"=>"Send Message"}
|
1905
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/message_mailer/new_message.html.erb (0.1ms)
|
1906
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/message_mailer/new_message.text.erb (0.1ms)
|
1907
|
+
|
1908
|
+
Contact::MessageMailer#new_message: processed outbound mail in 10.6ms
|
1909
|
+
|
1910
|
+
Sent mail to to@example.com (4.3ms)
|
1911
|
+
Date: Wed, 21 Jan 2015 11:39:56 -0600
|
1912
|
+
From: from@example.com
|
1913
|
+
To: to@example.com
|
1914
|
+
Message-ID: <54bfe46c8a5f_29833fc21dff999c5892e@Davids-MacBook-Air-3.local.mail>
|
1915
|
+
Subject: New Contact Form Submission
|
1916
|
+
Mime-Version: 1.0
|
1917
|
+
Content-Type: multipart/alternative;
|
1918
|
+
boundary="--==_mimepart_54bfe46c8156_29833fc21dff999c588e1";
|
1919
|
+
charset=UTF-8
|
1920
|
+
Content-Transfer-Encoding: 7bit
|
1921
|
+
|
1922
|
+
|
1923
|
+
----==_mimepart_54bfe46c8156_29833fc21dff999c588e1
|
1924
|
+
Content-Type: text/plain;
|
1925
|
+
charset=UTF-8
|
1926
|
+
Content-Transfer-Encoding: 7bit
|
1927
|
+
|
1928
|
+
Name: ear
|
1929
|
+
Email: asdf@gmail.com
|
1930
|
+
Message: asdf
|
1931
|
+
----==_mimepart_54bfe46c8156_29833fc21dff999c588e1
|
1932
|
+
Content-Type: text/html;
|
1933
|
+
charset=UTF-8
|
1934
|
+
Content-Transfer-Encoding: 7bit
|
1935
|
+
|
1936
|
+
<p>Name: ear</p>
|
1937
|
+
<p>Email: asdf@gmail.com</p>
|
1938
|
+
<p>Message: asdf</p>
|
1939
|
+
----==_mimepart_54bfe46c8156_29833fc21dff999c588e1--
|
1940
|
+
|
1941
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_fields.html.erb (6.8ms)
|
1942
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/create.js.erb (8.7ms)
|
1943
|
+
Completed 200 OK in 30ms (Views: 13.7ms | ActiveRecord: 0.0ms)
|
1944
|
+
|
1945
|
+
|
1946
|
+
Started GET "/" for 127.0.0.1 at 2015-01-21 11:40:17 -0600
|
1947
|
+
Processing by ApplicationController#index as HTML
|
1948
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_fields.html.erb (8.8ms)
|
1949
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (10.6ms)
|
1950
|
+
Rendered application/index.html.erb within layouts/application (12.5ms)
|
1951
|
+
Completed 200 OK in 37ms (Views: 36.4ms | ActiveRecord: 0.0ms)
|
1952
|
+
|
1953
|
+
|
1954
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 11:40:18 -0600
|
1955
|
+
|
1956
|
+
|
1957
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-01-21 11:40:18 -0600
|
1958
|
+
|
1959
|
+
|
1960
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-01-21 11:40:18 -0600
|
1961
|
+
|
1962
|
+
|
1963
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-21 11:40:18 -0600
|
1964
|
+
|
1965
|
+
|
1966
|
+
Started POST "/messages/create" for 127.0.0.1 at 2015-01-21 11:40:23 -0600
|
1967
|
+
Processing by Contact::MessagesController#create as JS
|
1968
|
+
Parameters: {"utf8"=>"✓", "message"=>{"name"=>"ear", "email"=>"asdf@gmail.com", "content"=>"asdf"}, "commit"=>"Send Message"}
|
1969
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/message_mailer/new_message.html.erb (0.1ms)
|
1970
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/message_mailer/new_message.text.erb (0.1ms)
|
1971
|
+
|
1972
|
+
Contact::MessageMailer#new_message: processed outbound mail in 11.3ms
|
1973
|
+
|
1974
|
+
Sent mail to to@example.com (5.4ms)
|
1975
|
+
Date: Wed, 21 Jan 2015 11:40:23 -0600
|
1976
|
+
From: from@example.com
|
1977
|
+
To: to@example.com
|
1978
|
+
Message-ID: <54bfe4872a5c7_29833fc221da5de05915@Davids-MacBook-Air-3.local.mail>
|
1979
|
+
Subject: New Contact Form Submission
|
1980
|
+
Mime-Version: 1.0
|
1981
|
+
Content-Type: multipart/alternative;
|
1982
|
+
boundary="--==_mimepart_54bfe48729b65_29833fc221da5de0590be";
|
1983
|
+
charset=UTF-8
|
1984
|
+
Content-Transfer-Encoding: 7bit
|
1985
|
+
|
1986
|
+
|
1987
|
+
----==_mimepart_54bfe48729b65_29833fc221da5de0590be
|
1988
|
+
Content-Type: text/plain;
|
1989
|
+
charset=UTF-8
|
1990
|
+
Content-Transfer-Encoding: 7bit
|
1991
|
+
|
1992
|
+
Name: ear
|
1993
|
+
Email: asdf@gmail.com
|
1994
|
+
Message: asdf
|
1995
|
+
----==_mimepart_54bfe48729b65_29833fc221da5de0590be
|
1996
|
+
Content-Type: text/html;
|
1997
|
+
charset=UTF-8
|
1998
|
+
Content-Transfer-Encoding: 7bit
|
1999
|
+
|
2000
|
+
<p>Name: ear</p>
|
2001
|
+
<p>Email: asdf@gmail.com</p>
|
2002
|
+
<p>Message: asdf</p>
|
2003
|
+
----==_mimepart_54bfe48729b65_29833fc221da5de0590be--
|
2004
|
+
|
2005
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_fields.html.erb (7.1ms)
|
2006
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/create.js.erb (8.7ms)
|
2007
|
+
Completed 200 OK in 32ms (Views: 13.8ms | ActiveRecord: 0.0ms)
|
2008
|
+
|
2009
|
+
|
2010
|
+
Started POST "/messages/create" for 127.0.0.1 at 2015-01-21 11:40:45 -0600
|
2011
|
+
Processing by Contact::MessagesController#create as JS
|
2012
|
+
Parameters: {"utf8"=>"✓", "message"=>{"name"=>"", "email"=>"", "content"=>""}, "commit"=>"Send Message"}
|
2013
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_fields.html.erb (10.7ms)
|
2014
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/create.js.erb (12.7ms)
|
2015
|
+
Completed 200 OK in 21ms (Views: 18.4ms | ActiveRecord: 0.0ms)
|
2016
|
+
|
2017
|
+
|
2018
|
+
Started POST "/messages/create" for 127.0.0.1 at 2015-01-21 11:40:51 -0600
|
2019
|
+
Processing by Contact::MessagesController#create as JS
|
2020
|
+
Parameters: {"utf8"=>"✓", "message"=>{"name"=>"asdf", "email"=>"asdf@gmail.com", "content"=>"asdf"}, "commit"=>"Send Message"}
|
2021
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/message_mailer/new_message.html.erb (0.1ms)
|
2022
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/message_mailer/new_message.text.erb (0.0ms)
|
2023
|
+
|
2024
|
+
Contact::MessageMailer#new_message: processed outbound mail in 11.1ms
|
2025
|
+
|
2026
|
+
Sent mail to to@example.com (14.3ms)
|
2027
|
+
Date: Wed, 21 Jan 2015 11:40:51 -0600
|
2028
|
+
From: from@example.com
|
2029
|
+
To: to@example.com
|
2030
|
+
Message-ID: <54bfe4a39b209_29833fc221da5de0593a@Davids-MacBook-Air-3.local.mail>
|
2031
|
+
Subject: New Contact Form Submission
|
2032
|
+
Mime-Version: 1.0
|
2033
|
+
Content-Type: multipart/alternative;
|
2034
|
+
boundary="--==_mimepart_54bfe4a39a9ea_29833fc221da5de0592d9";
|
2035
|
+
charset=UTF-8
|
2036
|
+
Content-Transfer-Encoding: 7bit
|
2037
|
+
|
2038
|
+
|
2039
|
+
----==_mimepart_54bfe4a39a9ea_29833fc221da5de0592d9
|
2040
|
+
Content-Type: text/plain;
|
2041
|
+
charset=UTF-8
|
2042
|
+
Content-Transfer-Encoding: 7bit
|
2043
|
+
|
2044
|
+
Name: asdf
|
2045
|
+
Email: asdf@gmail.com
|
2046
|
+
Message: asdf
|
2047
|
+
----==_mimepart_54bfe4a39a9ea_29833fc221da5de0592d9
|
2048
|
+
Content-Type: text/html;
|
2049
|
+
charset=UTF-8
|
2050
|
+
Content-Transfer-Encoding: 7bit
|
2051
|
+
|
2052
|
+
<p>Name: asdf</p>
|
2053
|
+
<p>Email: asdf@gmail.com</p>
|
2054
|
+
<p>Message: asdf</p>
|
2055
|
+
----==_mimepart_54bfe4a39a9ea_29833fc221da5de0592d9--
|
2056
|
+
|
2057
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_fields.html.erb (11.7ms)
|
2058
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/create.js.erb (12.9ms)
|
2059
|
+
Completed 200 OK in 45ms (Views: 17.7ms | ActiveRecord: 0.0ms)
|
2060
|
+
|
2061
|
+
|
2062
|
+
Started GET "/contact" for 127.0.0.1 at 2015-01-21 11:41:16 -0600
|
2063
|
+
Processing by Contact::MessagesController#new as HTML
|
2064
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_fields.html.erb (8.5ms)
|
2065
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (9.8ms)
|
2066
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/new.html.erb within layouts/application (11.4ms)
|
2067
|
+
Completed 200 OK in 70ms (Views: 69.7ms | ActiveRecord: 0.0ms)
|
2068
|
+
|
2069
|
+
|
2070
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 11:41:16 -0600
|
2071
|
+
|
2072
|
+
|
2073
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-01-21 11:41:16 -0600
|
2074
|
+
|
2075
|
+
|
2076
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-01-21 11:41:16 -0600
|
2077
|
+
|
2078
|
+
|
2079
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-21 11:41:16 -0600
|
2080
|
+
|
2081
|
+
|
2082
|
+
Started GET "/contact" for 127.0.0.1 at 2015-01-21 11:41:17 -0600
|
2083
|
+
Processing by Contact::MessagesController#new as HTML
|
2084
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_fields.html.erb (11.6ms)
|
2085
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_form.html.erb (12.5ms)
|
2086
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/new.html.erb within layouts/application (13.4ms)
|
2087
|
+
Completed 200 OK in 59ms (Views: 58.7ms | ActiveRecord: 0.0ms)
|
2088
|
+
|
2089
|
+
|
2090
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-01-21 11:41:17 -0600
|
2091
|
+
|
2092
|
+
|
2093
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2015-01-21 11:41:17 -0600
|
2094
|
+
|
2095
|
+
|
2096
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-01-21 11:41:17 -0600
|
2097
|
+
|
2098
|
+
|
2099
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-01-21 11:41:17 -0600
|
2100
|
+
|
2101
|
+
|
2102
|
+
Started POST "/messages/create" for 127.0.0.1 at 2015-01-21 11:41:18 -0600
|
2103
|
+
Processing by Contact::MessagesController#create as JS
|
2104
|
+
Parameters: {"utf8"=>"✓", "message"=>{"name"=>"", "email"=>"", "content"=>""}, "commit"=>"Send Message"}
|
2105
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_fields.html.erb (7.5ms)
|
2106
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/create.js.erb (9.1ms)
|
2107
|
+
Completed 200 OK in 18ms (Views: 15.8ms | ActiveRecord: 0.0ms)
|
2108
|
+
|
2109
|
+
|
2110
|
+
Started POST "/messages/create" for 127.0.0.1 at 2015-01-21 11:41:25 -0600
|
2111
|
+
Processing by Contact::MessagesController#create as JS
|
2112
|
+
Parameters: {"utf8"=>"✓", "message"=>{"name"=>"asdf", "email"=>"earlynovrock@gmail.com", "content"=>"asdf"}, "commit"=>"Send Message"}
|
2113
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/message_mailer/new_message.html.erb (0.1ms)
|
2114
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/message_mailer/new_message.text.erb (0.0ms)
|
2115
|
+
|
2116
|
+
Contact::MessageMailer#new_message: processed outbound mail in 11.6ms
|
2117
|
+
|
2118
|
+
Sent mail to to@example.com (4.4ms)
|
2119
|
+
Date: Wed, 21 Jan 2015 11:41:25 -0600
|
2120
|
+
From: from@example.com
|
2121
|
+
To: to@example.com
|
2122
|
+
Message-ID: <54bfe4c555894_29833fc221e94dc8595fe@Davids-MacBook-Air-3.local.mail>
|
2123
|
+
Subject: New Contact Form Submission
|
2124
|
+
Mime-Version: 1.0
|
2125
|
+
Content-Type: multipart/alternative;
|
2126
|
+
boundary="--==_mimepart_54bfe4c554d98_29833fc221e94dc8594a8";
|
2127
|
+
charset=UTF-8
|
2128
|
+
Content-Transfer-Encoding: 7bit
|
2129
|
+
|
2130
|
+
|
2131
|
+
----==_mimepart_54bfe4c554d98_29833fc221e94dc8594a8
|
2132
|
+
Content-Type: text/plain;
|
2133
|
+
charset=UTF-8
|
2134
|
+
Content-Transfer-Encoding: 7bit
|
2135
|
+
|
2136
|
+
Name: asdf
|
2137
|
+
Email: earlynovrock@gmail.com
|
2138
|
+
Message: asdf
|
2139
|
+
----==_mimepart_54bfe4c554d98_29833fc221e94dc8594a8
|
2140
|
+
Content-Type: text/html;
|
2141
|
+
charset=UTF-8
|
2142
|
+
Content-Transfer-Encoding: 7bit
|
2143
|
+
|
2144
|
+
<p>Name: asdf</p>
|
2145
|
+
<p>Email: earlynovrock@gmail.com</p>
|
2146
|
+
<p>Message: asdf</p>
|
2147
|
+
----==_mimepart_54bfe4c554d98_29833fc221e94dc8594a8--
|
2148
|
+
|
2149
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_fields.html.erb (6.8ms)
|
2150
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/create.js.erb (8.5ms)
|
2151
|
+
Completed 200 OK in 31ms (Views: 13.3ms | ActiveRecord: 0.0ms)
|
2152
|
+
|
2153
|
+
|
2154
|
+
Started POST "/messages/create" for 127.0.0.1 at 2015-01-21 11:42:00 -0600
|
2155
|
+
Processing by Contact::MessagesController#create as JS
|
2156
|
+
Parameters: {"utf8"=>"✓", "message"=>{"name"=>"", "email"=>"", "content"=>""}, "commit"=>"Send Message"}
|
2157
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/_fields.html.erb (7.6ms)
|
2158
|
+
Rendered /Users/earlynovrock/Web/contact/app/views/contact/messages/create.js.erb (9.8ms)
|
2159
|
+
Completed 200 OK in 18ms (Views: 15.0ms | ActiveRecord: 0.0ms)
|