letter_bomb 0.0.4 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +4 -16
- data/app/controllers/letter_bomb/mailers_controller.rb +7 -30
- data/app/views/letter_bomb/mailers/index.html.erb +4 -4
- data/app/views/letter_bomb/mailers/show.html.erb +14 -27
- data/lib/letter_bomb/preview.rb +65 -26
- data/lib/letter_bomb/version.rb +1 -1
- data/spec/dummy/app/mailers/foo_mailer_preview.rb +11 -1
- data/spec/dummy/log/development.log +3580 -0
- data/spec/dummy/log/test.log +889 -0
- data/spec/lib/letter_bomb/preview_spec.rb +11 -35
- data/spec/spec_helper.rb +0 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2b2191fc1d8bf39b5a70eb11c7efb061f3a7a202
|
4
|
+
data.tar.gz: 1d2e2998c1c589f2ac93671f53b4566a7136ff86
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 147fcc0bf08be13aa9d8763373dd31393fc3a7a90874be940fbcec8566b0b7e824b02dcc97bfec7de83529238a1133fe3f4d515540fd8a51fdc1f95e541f9e1f
|
7
|
+
data.tar.gz: 3ddfbc413c263b9c3107a1d3b61d03a22f43d62145caa3dc157e376a6441dc6f6bd271350d4cb0a9a0bece04e0f585307b9cb9c7645fb4de103444f50a129c80
|
data/README.md
CHANGED
@@ -34,27 +34,15 @@ Preview method names are arbitrary so long as they return a `Mail` object.
|
|
34
34
|
class UserMailer::Preview < LetterBomb::Preview
|
35
35
|
|
36
36
|
def welcome
|
37
|
-
|
37
|
+
WelcomeMailer.for_user(User.last)
|
38
38
|
end
|
39
39
|
|
40
40
|
end
|
41
41
|
```
|
42
42
|
|
43
|
-
Preview methods are wrapped in
|
44
|
-
|
45
|
-
|
46
|
-
```ruby
|
47
|
-
class UserMailer::Preview < LetterBomb::Preview
|
48
|
-
|
49
|
-
has_factory_girl
|
50
|
-
|
51
|
-
def welcome
|
52
|
-
user = FactoryGirl.create(:user)
|
53
|
-
UserMailer.welcome(user)
|
54
|
-
end
|
55
|
-
|
56
|
-
end
|
57
|
-
```
|
43
|
+
Preview methods are wrapped in an ActiveRecord transaction block that will be
|
44
|
+
rolled back after execution, so it's safe to create your own test data within
|
45
|
+
them.
|
58
46
|
|
59
47
|
Alternatives
|
60
48
|
------------
|
@@ -1,16 +1,17 @@
|
|
1
1
|
module LetterBomb
|
2
2
|
class MailersController < ApplicationController
|
3
|
-
|
4
3
|
def index
|
5
|
-
@
|
4
|
+
@mailer_classes = LetterBomb::Preview.classes
|
6
5
|
end
|
7
6
|
|
8
7
|
def show
|
9
|
-
|
10
|
-
|
11
|
-
@mail = klass.constantize.preview_action(@action)
|
8
|
+
class_name = params[:mailer_class]
|
9
|
+
action_name = params[:mailer_action]
|
12
10
|
|
13
|
-
|
11
|
+
@action = class_name.constantize.preview_action(
|
12
|
+
action_name,
|
13
|
+
format: params[:format]
|
14
|
+
)
|
14
15
|
|
15
16
|
respond_to do |format|
|
16
17
|
format.html {
|
@@ -24,29 +25,5 @@ module LetterBomb
|
|
24
25
|
}
|
25
26
|
end
|
26
27
|
end
|
27
|
-
|
28
|
-
private
|
29
|
-
|
30
|
-
def content_type_html?
|
31
|
-
@mail.content_type.match("text/html")
|
32
|
-
end
|
33
|
-
|
34
|
-
def body_part
|
35
|
-
return @mail unless @mail.multipart?
|
36
|
-
|
37
|
-
content_type = Rack::Mime.mime_type(".#{params[:format]}")
|
38
|
-
if @mail.respond_to?(:all_parts)
|
39
|
-
@mail.all_parts.find { |part| part.content_type.match(content_type) } || @mail.parts.first
|
40
|
-
else
|
41
|
-
@mail.parts.find { |part| part.content_type.match(content_type) } || @mail.parts.first
|
42
|
-
end
|
43
|
-
end
|
44
|
-
helper_method :body_part
|
45
|
-
|
46
|
-
def html_template?
|
47
|
-
params[:format] == 'html'
|
48
|
-
end
|
49
|
-
helper_method :html_template?
|
50
|
-
|
51
28
|
end
|
52
29
|
end
|
@@ -1,11 +1,11 @@
|
|
1
1
|
<h1>Mailer Previews</h1>
|
2
2
|
|
3
|
-
<% @
|
4
|
-
<p><%= mailer.
|
3
|
+
<% @mailer_classes.each do |mailer| %>
|
4
|
+
<p><%= mailer.name %></p>
|
5
5
|
|
6
6
|
<ul>
|
7
|
-
<% mailer.
|
8
|
-
<li><%= link_to action, mailer_path(mailer.
|
7
|
+
<% mailer.actions.each do |action| %>
|
8
|
+
<li><%= link_to action, mailer_path(mailer.name, action) %></li>
|
9
9
|
<% end %>
|
10
10
|
</ul>
|
11
11
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
<% content_for :head do %>
|
2
|
-
<meta http-equiv="Content-Type" content="text/html; charset=<%= @
|
2
|
+
<meta http-equiv="Content-Type" content="text/html; charset=<%= @action.charset %>" />
|
3
3
|
<style type="text/css">
|
4
4
|
#message_headers {
|
5
5
|
width: 100%;
|
@@ -49,49 +49,36 @@
|
|
49
49
|
|
50
50
|
<div id="message_headers">
|
51
51
|
<dl>
|
52
|
-
|
53
|
-
|
54
|
-
<dd><%= @mail.smtp_envelope_from %></dd>
|
55
|
-
<% end %>
|
52
|
+
<dt>To:</dt>
|
53
|
+
<dd><%= @action.to %></dd>
|
56
54
|
|
57
55
|
<dt>From:</dt>
|
58
|
-
<dd><%= @
|
56
|
+
<dd><%= @action.from %></dd>
|
59
57
|
|
60
|
-
<% if @
|
58
|
+
<% if @action.reply_to %>
|
61
59
|
<dt>Reply-To:</dt>
|
62
|
-
<dd><%= @
|
60
|
+
<dd><%= @action.reply_to %></dd>
|
63
61
|
<% end %>
|
64
62
|
|
65
63
|
<dt>Subject:</dt>
|
66
|
-
<dd><strong><%= @
|
67
|
-
|
68
|
-
<dt>Date:</dt>
|
69
|
-
<dd><%= Time.now.strftime("%b %e, %Y %I:%M:%S %p %Z") %></dd>
|
70
|
-
|
71
|
-
<% if @mail.respond_to?(:smtp_envelope_to) && @mail.to != @mail.smtp_envelope_to %>
|
72
|
-
<dt>SMTP-To:</dt>
|
73
|
-
<dd><%= @mail.smtp_envelope_to %></dd>
|
74
|
-
<% end %>
|
75
|
-
|
76
|
-
<dt>To:</dt>
|
77
|
-
<dd><%= @mail.to %></dd>
|
64
|
+
<dd><strong><%= @action.subject %></strong></dd>
|
78
65
|
</dl>
|
79
66
|
|
80
|
-
<% if @
|
67
|
+
<% if @action.multipart? %>
|
81
68
|
<p class="alternate">
|
82
|
-
<% if
|
83
|
-
<a href="<%= @action %>.txt">View plain text version</a>
|
69
|
+
<% if @action.html_format? %>
|
70
|
+
<a href="<%= @action.name %>.txt">View plain text version</a>
|
84
71
|
<% else %>
|
85
|
-
<a href="<%= @action %>.html">View HTML version</a>
|
72
|
+
<a href="<%= @action.name %>.html">View HTML version</a>
|
86
73
|
<% end %>
|
87
74
|
</p>
|
88
75
|
<% end %>
|
89
76
|
</div>
|
90
77
|
|
91
|
-
<% if
|
92
|
-
<%=
|
78
|
+
<% if @action.html_format? %>
|
79
|
+
<%= @action.body.to_s.html_safe %>
|
93
80
|
<% else %>
|
94
81
|
<pre id="message_body">
|
95
|
-
<%=
|
82
|
+
<%= @action.body %>
|
96
83
|
</pre>
|
97
84
|
<% end %>
|
data/lib/letter_bomb/preview.rb
CHANGED
@@ -1,42 +1,81 @@
|
|
1
|
+
require "forwardable"
|
2
|
+
|
1
3
|
module LetterBomb
|
2
4
|
class Preview
|
5
|
+
class << self
|
6
|
+
def classes
|
7
|
+
preview_filenames.map { |filename| class_from_filename(filename) }
|
8
|
+
end
|
9
|
+
|
10
|
+
def actions
|
11
|
+
public_instance_methods(false).map(&:to_s).sort
|
12
|
+
end
|
13
|
+
|
14
|
+
def preview_action(action_name, options={})
|
15
|
+
action = nil
|
16
|
+
ActiveRecord::Base.transaction do
|
17
|
+
mail = new.send(action_name)
|
18
|
+
action = Action.new(action_name, mail, options)
|
19
|
+
raise ActiveRecord::Rollback
|
20
|
+
end
|
21
|
+
action
|
22
|
+
end
|
23
|
+
|
24
|
+
private
|
3
25
|
|
4
|
-
|
5
|
-
|
6
|
-
|
26
|
+
def preview_filenames
|
27
|
+
Dir.glob(preview_directory + "/**/*preview.rb")
|
28
|
+
end
|
29
|
+
|
30
|
+
def preview_directory
|
31
|
+
Rails.application.root.join("app/mailers").to_s
|
32
|
+
end
|
33
|
+
|
34
|
+
def class_from_filename(filename)
|
7
35
|
# app/mailers/module/class.rb => module/class.rb => module/class => Module::Class
|
8
|
-
lchomp(filename,
|
36
|
+
lchomp(filename, preview_directory).chomp(".rb").camelize.constantize
|
9
37
|
end
|
10
|
-
end
|
11
38
|
|
12
|
-
|
13
|
-
|
39
|
+
def lchomp(target, removable)
|
40
|
+
target.to_s.reverse.chomp(removable.to_s.reverse).reverse
|
41
|
+
end
|
14
42
|
end
|
15
43
|
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
44
|
+
class Action
|
45
|
+
extend Forwardable
|
46
|
+
|
47
|
+
attr_reader :name, :mail, :format
|
48
|
+
|
49
|
+
def_delegators :mail,
|
50
|
+
:from, :to, :reply_to, :subject, :multipart?, :content_type, :charset
|
51
|
+
|
52
|
+
def initialize(name, mail, options={})
|
53
|
+
@name = name
|
54
|
+
@mail = mail
|
55
|
+
@format = options[:format] || default_format
|
21
56
|
end
|
22
|
-
mail
|
23
|
-
end
|
24
57
|
|
25
|
-
|
26
|
-
|
27
|
-
end
|
58
|
+
def body
|
59
|
+
return mail.body unless multipart?
|
28
60
|
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
end
|
61
|
+
content_type = Rack::Mime.mime_type(".#{format}")
|
62
|
+
(find_part_with_content_type(content_type) || mail.parts.first).body
|
63
|
+
end
|
33
64
|
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
65
|
+
def html_format?
|
66
|
+
format == "html"
|
67
|
+
end
|
68
|
+
|
69
|
+
private
|
70
|
+
|
71
|
+
def default_format
|
72
|
+
content_type.match(/multipart|html/) ? "html" : "text"
|
38
73
|
end
|
39
|
-
end
|
40
74
|
|
75
|
+
def find_part_with_content_type(content_type)
|
76
|
+
parts = mail.respond_to?(:all_parts) ? mail.all_parts : mail.parts
|
77
|
+
parts.find { |part| part.content_type.match(content_type) }
|
78
|
+
end
|
79
|
+
end
|
41
80
|
end
|
42
81
|
end
|
data/lib/letter_bomb/version.rb
CHANGED
@@ -1,7 +1,17 @@
|
|
1
1
|
class FooMailerPreview < LetterBomb::Preview
|
2
2
|
def good
|
3
3
|
User.create!(name: 'bob')
|
4
|
-
|
4
|
+
|
5
|
+
Mail.new do
|
6
|
+
text_part do
|
7
|
+
content_type "text/plain"
|
8
|
+
body "this is text"
|
9
|
+
end
|
10
|
+
html_part do
|
11
|
+
content_type "text/html"
|
12
|
+
body "this is html"
|
13
|
+
end
|
14
|
+
end
|
5
15
|
end
|
6
16
|
|
7
17
|
def bad; end
|
@@ -10716,3 +10716,3583 @@ Started GET "/" for 127.0.0.1 at 2013-05-02 01:54:34 +1000
|
|
10716
10716
|
Processing by LetterBomb::MailersController#index as HTML
|
10717
10717
|
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/index.html.erb within layouts/letter_bomb/application (1.4ms)
|
10718
10718
|
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
|
10719
|
+
Connecting to database specified by database.yml
|
10720
|
+
Connecting to database specified by database.yml
|
10721
|
+
|
10722
|
+
|
10723
|
+
Started GET "/letter_bomb" for 127.0.0.1 at 2013-07-17 12:42:06 +1000
|
10724
|
+
|
10725
|
+
ActionController::RoutingError (No route matches [GET] "/letter_bomb"):
|
10726
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
10727
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
10728
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
10729
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
10730
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
10731
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
10732
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
10733
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
10734
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
10735
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
10736
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
10737
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
10738
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
10739
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
10740
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
10741
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
10742
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
10743
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
10744
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
10745
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
10746
|
+
|
10747
|
+
|
10748
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.6ms)
|
10749
|
+
|
10750
|
+
|
10751
|
+
Started GET "/letter_bomb" for 127.0.0.1 at 2013-07-17 12:42:07 +1000
|
10752
|
+
|
10753
|
+
ActionController::RoutingError (No route matches [GET] "/letter_bomb"):
|
10754
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
10755
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
10756
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
10757
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
10758
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
10759
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
10760
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
10761
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
10762
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
10763
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
10764
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
10765
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
10766
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
10767
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
10768
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
10769
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
10770
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
10771
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
10772
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
10773
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
10774
|
+
|
10775
|
+
|
10776
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
10777
|
+
|
10778
|
+
|
10779
|
+
Started GET "/" for 127.0.0.1 at 2013-07-17 12:42:09 +1000
|
10780
|
+
Processing by LetterBomb::MailersController#index as HTML
|
10781
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/index.html.erb within layouts/letter_bomb/application (1.4ms)
|
10782
|
+
Completed 200 OK in 303ms (Views: 4.9ms | ActiveRecord: 0.0ms)
|
10783
|
+
|
10784
|
+
|
10785
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 12:42:11 +1000
|
10786
|
+
Processing by LetterBomb::MailersController#show as HTML
|
10787
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
10788
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
10789
|
+
[1m[35mSQL (4.5ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 02:42:11 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 02:42:11 UTC +00:00]]
|
10790
|
+
Rendered user_mailer/welcome.html.erb (0.3ms)
|
10791
|
+
Rendered user_mailer/welcome.text.erb (0.2ms)
|
10792
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
10793
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (4.5ms)
|
10794
|
+
Completed 200 OK in 49ms (Views: 6.3ms | ActiveRecord: 6.0ms)
|
10795
|
+
|
10796
|
+
|
10797
|
+
Started GET "/FooMailerPreview/bad" for 127.0.0.1 at 2013-07-17 12:42:14 +1000
|
10798
|
+
Processing by LetterBomb::MailersController#show as HTML
|
10799
|
+
Parameters: {"mailer_class"=>"FooMailerPreview", "mailer_action"=>"bad"}
|
10800
|
+
[1m[35m (0.1ms)[0m begin transaction
|
10801
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
10802
|
+
Completed 500 Internal Server Error in 1ms
|
10803
|
+
|
10804
|
+
NoMethodError (undefined method `content_type' for nil:NilClass):
|
10805
|
+
/Users/ags/code/letter_bomb/app/controllers/letter_bomb/mailers_controller.rb:31:in `content_type_html?'
|
10806
|
+
/Users/ags/code/letter_bomb/app/controllers/letter_bomb/mailers_controller.rb:13:in `show'
|
10807
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
10808
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
|
10809
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
10810
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
10811
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:403:in `_run__1831383230331844923__process_action__2772034866157210147__callbacks'
|
10812
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
10813
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
10814
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
10815
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
10816
|
+
actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
10817
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
10818
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
10819
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
10820
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
10821
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
10822
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
10823
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
10824
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
|
10825
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
|
10826
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
|
10827
|
+
actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
10828
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
|
10829
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
10830
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
10831
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
10832
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
10833
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
10834
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
10835
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
10836
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
10837
|
+
railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
10838
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
10839
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
10840
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
10841
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
10842
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
10843
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
10844
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
10845
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
10846
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
10847
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
10848
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
10849
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
10850
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
10851
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
10852
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
10853
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
10854
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__3410181898972741784__call__3220980217829970584__callbacks'
|
10855
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
10856
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
10857
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
10858
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
10859
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
10860
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
10861
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
10862
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
10863
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
10864
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
10865
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
10866
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
10867
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
10868
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
10869
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
10870
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
10871
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
10872
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
10873
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
10874
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
10875
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
10876
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
10877
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
10878
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
10879
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
10880
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
10881
|
+
|
10882
|
+
|
10883
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
|
10884
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
|
10885
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.3ms)
|
10886
|
+
|
10887
|
+
|
10888
|
+
Started GET "/" for 127.0.0.1 at 2013-07-17 12:42:17 +1000
|
10889
|
+
Processing by LetterBomb::MailersController#index as HTML
|
10890
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/index.html.erb within layouts/letter_bomb/application (1.0ms)
|
10891
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
10892
|
+
|
10893
|
+
|
10894
|
+
Started GET "/FooMailerPreview/bad" for 127.0.0.1 at 2013-07-17 12:42:19 +1000
|
10895
|
+
Processing by LetterBomb::MailersController#show as HTML
|
10896
|
+
Parameters: {"mailer_class"=>"FooMailerPreview", "mailer_action"=>"bad"}
|
10897
|
+
[1m[35m (0.1ms)[0m begin transaction
|
10898
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
10899
|
+
Completed 500 Internal Server Error in 1ms
|
10900
|
+
|
10901
|
+
NoMethodError (undefined method `content_type' for nil:NilClass):
|
10902
|
+
/Users/ags/code/letter_bomb/app/controllers/letter_bomb/mailers_controller.rb:31:in `content_type_html?'
|
10903
|
+
/Users/ags/code/letter_bomb/app/controllers/letter_bomb/mailers_controller.rb:13:in `show'
|
10904
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
10905
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
|
10906
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
10907
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
10908
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:403:in `_run__1831383230331844923__process_action__2772034866157210147__callbacks'
|
10909
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
10910
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
10911
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
10912
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
10913
|
+
actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
10914
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
10915
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
10916
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
10917
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
10918
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
10919
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
10920
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
10921
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
|
10922
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
|
10923
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
|
10924
|
+
actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
10925
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
|
10926
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
10927
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
10928
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
10929
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
10930
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
10931
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
10932
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
10933
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
10934
|
+
railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
10935
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
10936
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
10937
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
10938
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
10939
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
10940
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
10941
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
10942
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
10943
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
10944
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
10945
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
10946
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
10947
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
10948
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
10949
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
10950
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
10951
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__3410181898972741784__call__3220980217829970584__callbacks'
|
10952
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
10953
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
10954
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
10955
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
10956
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
10957
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
10958
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
10959
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
10960
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
10961
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
10962
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
10963
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
10964
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
10965
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
10966
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
10967
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
10968
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
10969
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
10970
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
10971
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
10972
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
10973
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
10974
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
10975
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
10976
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
10977
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
10978
|
+
|
10979
|
+
|
10980
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
|
10981
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
|
10982
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.1ms)
|
10983
|
+
|
10984
|
+
|
10985
|
+
Started GET "/FooMailerPreview/good" for 127.0.0.1 at 2013-07-17 12:42:21 +1000
|
10986
|
+
Processing by LetterBomb::MailersController#show as HTML
|
10987
|
+
Parameters: {"mailer_class"=>"FooMailerPreview", "mailer_action"=>"good"}
|
10988
|
+
[1m[35m (0.1ms)[0m begin transaction
|
10989
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 02:42:21 UTC +00:00], ["name", "bob"], ["updated_at", Wed, 17 Jul 2013 02:42:21 UTC +00:00]]
|
10990
|
+
[1m[35m (1.3ms)[0m rollback transaction
|
10991
|
+
Completed 500 Internal Server Error in 4ms
|
10992
|
+
|
10993
|
+
NoMethodError (undefined method `content_type' for "result of good":String):
|
10994
|
+
/Users/ags/code/letter_bomb/app/controllers/letter_bomb/mailers_controller.rb:31:in `content_type_html?'
|
10995
|
+
/Users/ags/code/letter_bomb/app/controllers/letter_bomb/mailers_controller.rb:13:in `show'
|
10996
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
10997
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
|
10998
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
10999
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
11000
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:403:in `_run__1831383230331844923__process_action__2772034866157210147__callbacks'
|
11001
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
11002
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
11003
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
11004
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
11005
|
+
actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
11006
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
11007
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
11008
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
11009
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
11010
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
11011
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
11012
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
11013
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
|
11014
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
|
11015
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
|
11016
|
+
actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
11017
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
|
11018
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
11019
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
11020
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
11021
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
11022
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
11023
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
11024
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
11025
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
11026
|
+
railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
11027
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
11028
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
11029
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
11030
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
11031
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
11032
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
11033
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
11034
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
11035
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
11036
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
11037
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
11038
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
11039
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
11040
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
11041
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
11042
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
11043
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__3410181898972741784__call__3220980217829970584__callbacks'
|
11044
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
11045
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
11046
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
11047
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
11048
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
11049
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
11050
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
11051
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
11052
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
11053
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
11054
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
11055
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
11056
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
11057
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
11058
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
11059
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
11060
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
11061
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
11062
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
11063
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
11064
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
11065
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
11066
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
11067
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
11068
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
11069
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
11070
|
+
|
11071
|
+
|
11072
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
|
11073
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
|
11074
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.9ms)
|
11075
|
+
|
11076
|
+
|
11077
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 12:42:22 +1000
|
11078
|
+
Processing by LetterBomb::MailersController#show as HTML
|
11079
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
11080
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
11081
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 02:42:22 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 02:42:22 UTC +00:00]]
|
11082
|
+
Rendered user_mailer/welcome.html.erb (0.1ms)
|
11083
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
11084
|
+
[1m[36m (1.6ms)[0m [1mrollback transaction[0m
|
11085
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (1.6ms)
|
11086
|
+
Completed 200 OK in 18ms (Views: 2.8ms | ActiveRecord: 2.1ms)
|
11087
|
+
|
11088
|
+
|
11089
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 12:42:26 +1000
|
11090
|
+
Processing by LetterBomb::MailersController#show as HTML
|
11091
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
11092
|
+
[1m[35m (0.0ms)[0m begin transaction
|
11093
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 02:42:26 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 02:42:26 UTC +00:00]]
|
11094
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
11095
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
11096
|
+
[1m[35m (1.4ms)[0m rollback transaction
|
11097
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (1.5ms)
|
11098
|
+
Completed 200 OK in 17ms (Views: 2.7ms | ActiveRecord: 1.8ms)
|
11099
|
+
|
11100
|
+
|
11101
|
+
Started GET "/UserMailer::Preview/welcome.html" for 127.0.0.1 at 2013-07-17 12:42:33 +1000
|
11102
|
+
Processing by LetterBomb::MailersController#show as HTML
|
11103
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
11104
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11105
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 02:42:33 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 02:42:33 UTC +00:00]]
|
11106
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
11107
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
11108
|
+
[1m[36m (1.4ms)[0m [1mrollback transaction[0m
|
11109
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (1.7ms)
|
11110
|
+
Completed 200 OK in 19ms (Views: 3.0ms | ActiveRecord: 1.8ms)
|
11111
|
+
|
11112
|
+
|
11113
|
+
Started GET "/UserMailer::Preview/welcome.txt" for 127.0.0.1 at 2013-07-17 12:42:35 +1000
|
11114
|
+
Processing by LetterBomb::MailersController#show as TEXT
|
11115
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
11116
|
+
[1m[35m (0.1ms)[0m begin transaction
|
11117
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 02:42:35 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 02:42:35 UTC +00:00]]
|
11118
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
11119
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
11120
|
+
[1m[35m (1.4ms)[0m rollback transaction
|
11121
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (1.5ms)
|
11122
|
+
Completed 200 OK in 19ms (Views: 2.8ms | ActiveRecord: 1.8ms)
|
11123
|
+
|
11124
|
+
|
11125
|
+
Started GET "/UserMailer::Preview/welcome.html" for 127.0.0.1 at 2013-07-17 12:42:35 +1000
|
11126
|
+
Processing by LetterBomb::MailersController#show as HTML
|
11127
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
11128
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11129
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 02:42:35 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 02:42:35 UTC +00:00]]
|
11130
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
11131
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
11132
|
+
[1m[36m (1.4ms)[0m [1mrollback transaction[0m
|
11133
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (1.6ms)
|
11134
|
+
Completed 200 OK in 18ms (Views: 2.8ms | ActiveRecord: 1.8ms)
|
11135
|
+
|
11136
|
+
|
11137
|
+
Started GET "/UserMailer::Preview/welcome.txt" for 127.0.0.1 at 2013-07-17 12:42:36 +1000
|
11138
|
+
Processing by LetterBomb::MailersController#show as TEXT
|
11139
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
11140
|
+
[1m[35m (0.1ms)[0m begin transaction
|
11141
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 02:42:36 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 02:42:36 UTC +00:00]]
|
11142
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
11143
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
11144
|
+
[1m[35m (1.5ms)[0m rollback transaction
|
11145
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (1.4ms)
|
11146
|
+
Completed 200 OK in 18ms (Views: 2.5ms | ActiveRecord: 2.0ms)
|
11147
|
+
|
11148
|
+
|
11149
|
+
Started GET "/UserMailer::Preview/welcome.html" for 127.0.0.1 at 2013-07-17 12:42:36 +1000
|
11150
|
+
Processing by LetterBomb::MailersController#show as HTML
|
11151
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
11152
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11153
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 02:42:36 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 02:42:36 UTC +00:00]]
|
11154
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
11155
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
11156
|
+
[1m[36m (1.5ms)[0m [1mrollback transaction[0m
|
11157
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (1.5ms)
|
11158
|
+
Completed 200 OK in 18ms (Views: 2.7ms | ActiveRecord: 2.0ms)
|
11159
|
+
|
11160
|
+
|
11161
|
+
Started GET "/UserMailer::Preview/welcome.txt" for 127.0.0.1 at 2013-07-17 12:42:37 +1000
|
11162
|
+
Processing by LetterBomb::MailersController#show as TEXT
|
11163
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
11164
|
+
[1m[35m (0.0ms)[0m begin transaction
|
11165
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 02:42:37 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 02:42:37 UTC +00:00]]
|
11166
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
11167
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
11168
|
+
[1m[35m (1.3ms)[0m rollback transaction
|
11169
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (1.6ms)
|
11170
|
+
Completed 200 OK in 18ms (Views: 2.9ms | ActiveRecord: 1.8ms)
|
11171
|
+
|
11172
|
+
|
11173
|
+
Started GET "/UserMailer::Preview/welcome.html" for 127.0.0.1 at 2013-07-17 12:42:37 +1000
|
11174
|
+
Processing by LetterBomb::MailersController#show as HTML
|
11175
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
11176
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11177
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 02:42:37 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 02:42:37 UTC +00:00]]
|
11178
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
11179
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
11180
|
+
[1m[36m (1.4ms)[0m [1mrollback transaction[0m
|
11181
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (1.6ms)
|
11182
|
+
Completed 200 OK in 19ms (Views: 2.8ms | ActiveRecord: 1.8ms)
|
11183
|
+
|
11184
|
+
|
11185
|
+
Started GET "/UserMailer::Preview/welcome.txt" for 127.0.0.1 at 2013-07-17 12:42:38 +1000
|
11186
|
+
Processing by LetterBomb::MailersController#show as TEXT
|
11187
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
11188
|
+
[1m[35m (0.1ms)[0m begin transaction
|
11189
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 02:42:38 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 02:42:38 UTC +00:00]]
|
11190
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
11191
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
11192
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
11193
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (1.6ms)
|
11194
|
+
Completed 200 OK in 18ms (Views: 2.9ms | ActiveRecord: 0.8ms)
|
11195
|
+
|
11196
|
+
|
11197
|
+
Started GET "/UserMailer::Preview/welcome.html" for 127.0.0.1 at 2013-07-17 12:42:56 +1000
|
11198
|
+
Processing by LetterBomb::MailersController#show as HTML
|
11199
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
11200
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11201
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 02:42:56 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 02:42:56 UTC +00:00]]
|
11202
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
11203
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
11204
|
+
[1m[36m (1.4ms)[0m [1mrollback transaction[0m
|
11205
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (1.6ms)
|
11206
|
+
Completed 200 OK in 18ms (Views: 2.9ms | ActiveRecord: 1.8ms)
|
11207
|
+
|
11208
|
+
|
11209
|
+
Started GET "/" for 127.0.0.1 at 2013-07-17 12:42:58 +1000
|
11210
|
+
Processing by LetterBomb::MailersController#index as HTML
|
11211
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/index.html.erb within layouts/letter_bomb/application (2.1ms)
|
11212
|
+
Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
|
11213
|
+
|
11214
|
+
|
11215
|
+
Started GET "/" for 127.0.0.1 at 2013-07-17 12:43:01 +1000
|
11216
|
+
Processing by LetterBomb::MailersController#index as HTML
|
11217
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/index.html.erb within layouts/letter_bomb/application (3.0ms)
|
11218
|
+
Completed 500 Internal Server Error in 5ms
|
11219
|
+
|
11220
|
+
ActionView::Template::Error (undefined method `namae' for FooMailerPreview:Class):
|
11221
|
+
1: <h1>Mailer Previews</h1>
|
11222
|
+
2:
|
11223
|
+
3: <% @mailer_classes.each do |mailer| %>
|
11224
|
+
4: <p><%= mailer.namae %></p>
|
11225
|
+
5:
|
11226
|
+
6: <ul>
|
11227
|
+
7: <% mailer.mailer_actions.each do |action| %>
|
11228
|
+
/Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/index.html.erb:4:in `block in ___sers_ags_code_letter_bomb_app_views_letter_bomb_mailers_index_html_erb___1884325446310690529_70221681502560'
|
11229
|
+
/Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/index.html.erb:3:in `each'
|
11230
|
+
/Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/index.html.erb:3:in `___sers_ags_code_letter_bomb_app_views_letter_bomb_mailers_index_html_erb___1884325446310690529_70221681502560'
|
11231
|
+
actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
|
11232
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
|
11233
|
+
actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
|
11234
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
11235
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
11236
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
11237
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
11238
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
11239
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
11240
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
11241
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
11242
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
11243
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
11244
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
11245
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
|
11246
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
11247
|
+
actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
11248
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
11249
|
+
actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
11250
|
+
actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
11251
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
|
11252
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
|
11253
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
11254
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
11255
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
11256
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
11257
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
11258
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
11259
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
11260
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
11261
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
11262
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
11263
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
|
11264
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
11265
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
11266
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:403:in `_run__1831383230331844923__process_action__3833160623160542610__callbacks'
|
11267
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
11268
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
11269
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
11270
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
11271
|
+
actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
11272
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
11273
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
11274
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
11275
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
11276
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
11277
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
11278
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
11279
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
|
11280
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
|
11281
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
|
11282
|
+
actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
11283
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
|
11284
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
11285
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
11286
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
11287
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
11288
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
11289
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
11290
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
11291
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
11292
|
+
railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
11293
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
11294
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
11295
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
11296
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
11297
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
11298
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
11299
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
11300
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
11301
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
11302
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
11303
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
11304
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
11305
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
11306
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
11307
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
11308
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
11309
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__3410181898972741784__call__3220980217829970584__callbacks'
|
11310
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
11311
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
11312
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
11313
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
11314
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
11315
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
11316
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
11317
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
11318
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
11319
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
11320
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
11321
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
11322
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
11323
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
11324
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
11325
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
11326
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
11327
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
11328
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
11329
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
11330
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
11331
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
11332
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
11333
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
11334
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
11335
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
11336
|
+
|
11337
|
+
|
11338
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
|
11339
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
|
11340
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.2ms)
|
11341
|
+
|
11342
|
+
|
11343
|
+
Started GET "/" for 127.0.0.1 at 2013-07-17 12:43:06 +1000
|
11344
|
+
Processing by LetterBomb::MailersController#index as HTML
|
11345
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/index.html.erb within layouts/letter_bomb/application (1.2ms)
|
11346
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
11347
|
+
|
11348
|
+
|
11349
|
+
Started GET "/" for 127.0.0.1 at 2013-07-17 12:43:37 +1000
|
11350
|
+
Processing by LetterBomb::MailersController#index as HTML
|
11351
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/index.html.erb within layouts/letter_bomb/application (1.2ms)
|
11352
|
+
Completed 500 Internal Server Error in 3ms
|
11353
|
+
|
11354
|
+
ActionView::Template::Error (undefined method `actions' for FooMailerPreview:Class):
|
11355
|
+
4: <p><%= mailer.name %></p>
|
11356
|
+
5:
|
11357
|
+
6: <ul>
|
11358
|
+
7: <% mailer.actions.each do |action| %>
|
11359
|
+
8: <li><%= link_to action, mailer_path(mailer.name, action) %></li>
|
11360
|
+
9: <% end %>
|
11361
|
+
10: </ul>
|
11362
|
+
/Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/index.html.erb:7:in `block in ___sers_ags_code_letter_bomb_app_views_letter_bomb_mailers_index_html_erb___1884325446310690529_70221668860780'
|
11363
|
+
/Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/index.html.erb:3:in `each'
|
11364
|
+
/Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/index.html.erb:3:in `___sers_ags_code_letter_bomb_app_views_letter_bomb_mailers_index_html_erb___1884325446310690529_70221668860780'
|
11365
|
+
actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
|
11366
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
|
11367
|
+
actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
|
11368
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
11369
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
11370
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
11371
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
11372
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
11373
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
11374
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
11375
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
11376
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
11377
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
11378
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
11379
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
|
11380
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
11381
|
+
actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
11382
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
11383
|
+
actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
11384
|
+
actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
11385
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
|
11386
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
|
11387
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
11388
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
11389
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
11390
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
11391
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
11392
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
11393
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
11394
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
11395
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
11396
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
11397
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
|
11398
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
11399
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
11400
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:403:in `_run__1831383230331844923__process_action__3833160623160542610__callbacks'
|
11401
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
11402
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
11403
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
11404
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
11405
|
+
actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
11406
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
11407
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
11408
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
11409
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
11410
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
11411
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
11412
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
11413
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
|
11414
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
|
11415
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
|
11416
|
+
actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
11417
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
|
11418
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
11419
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
11420
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
11421
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
11422
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
11423
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
11424
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
11425
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
11426
|
+
railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
11427
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
11428
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
11429
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
11430
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
11431
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
11432
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
11433
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
11434
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
11435
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
11436
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
11437
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
11438
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
11439
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
11440
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
11441
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
11442
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
11443
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__3410181898972741784__call__3220980217829970584__callbacks'
|
11444
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
11445
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
11446
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
11447
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
11448
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
11449
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
11450
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
11451
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
11452
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
11453
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
11454
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
11455
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
11456
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
11457
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
11458
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
11459
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
11460
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
11461
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
11462
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
11463
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
11464
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
11465
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
11466
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
11467
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
11468
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
11469
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
11470
|
+
|
11471
|
+
|
11472
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
|
11473
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
|
11474
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.1ms)
|
11475
|
+
Connecting to database specified by database.yml
|
11476
|
+
|
11477
|
+
|
11478
|
+
Started GET "/" for 127.0.0.1 at 2013-07-17 12:44:36 +1000
|
11479
|
+
Processing by LetterBomb::MailersController#index as HTML
|
11480
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/index.html.erb within layouts/letter_bomb/application (2.0ms)
|
11481
|
+
Completed 200 OK in 237ms (Views: 6.8ms | ActiveRecord: 0.0ms)
|
11482
|
+
|
11483
|
+
|
11484
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 12:44:38 +1000
|
11485
|
+
Processing by LetterBomb::MailersController#show as HTML
|
11486
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
11487
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
11488
|
+
[1m[35mSQL (2.7ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 02:44:38 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 02:44:38 UTC +00:00]]
|
11489
|
+
Rendered user_mailer/welcome.html.erb (0.3ms)
|
11490
|
+
Rendered user_mailer/welcome.text.erb (0.3ms)
|
11491
|
+
[1m[36m (1.4ms)[0m [1mrollback transaction[0m
|
11492
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (3.7ms)
|
11493
|
+
Completed 200 OK in 40ms (Views: 5.0ms | ActiveRecord: 4.9ms)
|
11494
|
+
|
11495
|
+
|
11496
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 12:47:38 +1000
|
11497
|
+
Processing by LetterBomb::MailersController#show as HTML
|
11498
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
11499
|
+
[1m[35m (0.2ms)[0m begin transaction
|
11500
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 02:47:38 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 02:47:38 UTC +00:00]]
|
11501
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
11502
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
11503
|
+
[1m[35m (1.3ms)[0m rollback transaction
|
11504
|
+
Completed 500 Internal Server Error in 50ms
|
11505
|
+
|
11506
|
+
NoMethodError (undefined method `content_type_html?' for #<Mail::Message:0x007f9337b06860>):
|
11507
|
+
mail (2.5.4) lib/mail/message.rb:1368:in `method_missing'
|
11508
|
+
/Users/ags/code/letter_bomb/app/controllers/letter_bomb/mailers_controller.rb:13:in `show'
|
11509
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
11510
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
|
11511
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
11512
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
11513
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:403:in `_run__3800159695794940771__process_action__696745907628000037__callbacks'
|
11514
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
11515
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
11516
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
11517
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
11518
|
+
actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
11519
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
11520
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
11521
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
11522
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
11523
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
11524
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
11525
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
11526
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
|
11527
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
|
11528
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
|
11529
|
+
actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
11530
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
|
11531
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
11532
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
11533
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
11534
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
11535
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
11536
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
11537
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
11538
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
11539
|
+
railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
11540
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
11541
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
11542
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
11543
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
11544
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
11545
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
11546
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
11547
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
11548
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
11549
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
11550
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
11551
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
11552
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
11553
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
11554
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
11555
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
11556
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__1126841632009547241__call__2719858218288758858__callbacks'
|
11557
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
11558
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
11559
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
11560
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
11561
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
11562
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
11563
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
11564
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
11565
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
11566
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
11567
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
11568
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
11569
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
11570
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
11571
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
11572
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
11573
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
11574
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
11575
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
11576
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
11577
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
11578
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
11579
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
11580
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
11581
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
11582
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
11583
|
+
|
11584
|
+
|
11585
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
|
11586
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
|
11587
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.8ms)
|
11588
|
+
Connecting to database specified by database.yml
|
11589
|
+
|
11590
|
+
|
11591
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:08:57 +1000
|
11592
|
+
Processing by LetterBomb::MailersController#show as HTML
|
11593
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
11594
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
11595
|
+
[1m[35mSQL (2.9ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 03:08:57 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:08:57 UTC +00:00]]
|
11596
|
+
Rendered user_mailer/welcome.html.erb (1.8ms)
|
11597
|
+
Rendered user_mailer/welcome.text.erb (0.4ms)
|
11598
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
11599
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (2.9ms)
|
11600
|
+
Completed 500 Internal Server Error in 312ms
|
11601
|
+
|
11602
|
+
ActionView::Template::Error (undefined method `charset' for #<LetterBomb::Preview::Action:0x007fea96091f40>):
|
11603
|
+
1: <% content_for :head do %>
|
11604
|
+
2: <meta http-equiv="Content-Type" content="text/html; charset=<%= @mail.charset %>" />
|
11605
|
+
3: <style type="text/css">
|
11606
|
+
4: #message_headers {
|
11607
|
+
5: width: 100%;
|
11608
|
+
/Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb:2:in `block in ___sers_ags_code_letter_bomb_app_views_letter_bomb_mailers_show_html_erb___3854348128551475382_70322758095500'
|
11609
|
+
actionpack (3.2.13) lib/action_view/helpers/capture_helper.rb:40:in `block in capture'
|
11610
|
+
actionpack (3.2.13) lib/action_view/helpers/capture_helper.rb:187:in `with_output_buffer'
|
11611
|
+
actionpack (3.2.13) lib/action_view/helpers/capture_helper.rb:40:in `capture'
|
11612
|
+
actionpack (3.2.13) lib/action_view/helpers/capture_helper.rb:138:in `content_for'
|
11613
|
+
/Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb:1:in `___sers_ags_code_letter_bomb_app_views_letter_bomb_mailers_show_html_erb___3854348128551475382_70322758095500'
|
11614
|
+
actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
|
11615
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
|
11616
|
+
actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
|
11617
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
11618
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
11619
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
11620
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
11621
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
11622
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
11623
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
11624
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
11625
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
11626
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
11627
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
11628
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
|
11629
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
11630
|
+
actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
11631
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
11632
|
+
actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
11633
|
+
actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
11634
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
|
11635
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
|
11636
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
11637
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
11638
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
11639
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
11640
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
11641
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
11642
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
11643
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
11644
|
+
/Users/ags/code/letter_bomb/app/controllers/letter_bomb/mailers_controller.rb:19:in `block (2 levels) in show'
|
11645
|
+
actionpack (3.2.13) lib/action_controller/metal/mime_responds.rb:196:in `call'
|
11646
|
+
actionpack (3.2.13) lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
|
11647
|
+
/Users/ags/code/letter_bomb/app/controllers/letter_bomb/mailers_controller.rb:17:in `show'
|
11648
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
11649
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
|
11650
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
11651
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
11652
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:403:in `_run__4321597750226949258__process_action__4054700221723781459__callbacks'
|
11653
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
11654
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
11655
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
11656
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
11657
|
+
actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
11658
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
11659
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
11660
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
11661
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
11662
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
11663
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
11664
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
11665
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
|
11666
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
|
11667
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
|
11668
|
+
actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
11669
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
|
11670
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
11671
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
11672
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
11673
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
11674
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
11675
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
11676
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
11677
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
11678
|
+
railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
11679
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
11680
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
11681
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
11682
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
11683
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
11684
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
11685
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
11686
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
11687
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
11688
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
11689
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
11690
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
11691
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
11692
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
11693
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
11694
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
11695
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__341051566241343239__call__188784677669380238__callbacks'
|
11696
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
11697
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
11698
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
11699
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
11700
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
11701
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
11702
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
11703
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
11704
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
11705
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
11706
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
11707
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
11708
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
11709
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
11710
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
11711
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
11712
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
11713
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
11714
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
11715
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
11716
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
11717
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
11718
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
11719
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
11720
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
11721
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
11722
|
+
|
11723
|
+
|
11724
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
|
11725
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
|
11726
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.8ms)
|
11727
|
+
|
11728
|
+
|
11729
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:09:07 +1000
|
11730
|
+
Processing by LetterBomb::MailersController#show as HTML
|
11731
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
11732
|
+
[1m[35m (0.1ms)[0m begin transaction
|
11733
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 03:09:07 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:09:07 UTC +00:00]]
|
11734
|
+
Rendered user_mailer/welcome.html.erb (0.1ms)
|
11735
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
11736
|
+
[1m[35m (1.7ms)[0m rollback transaction
|
11737
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (1.2ms)
|
11738
|
+
Completed 500 Internal Server Error in 42ms
|
11739
|
+
|
11740
|
+
ActionView::Template::Error (undefined method `charset' for #<LetterBomb::Preview::Action:0x007fea9329e890>):
|
11741
|
+
1: <% content_for :head do %>
|
11742
|
+
2: <!--<meta http-equiv="Content-Type" content="text/html; charset=<%= @mail.charset %>" />-->
|
11743
|
+
3: <style type="text/css">
|
11744
|
+
4: #message_headers {
|
11745
|
+
5: width: 100%;
|
11746
|
+
/Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb:2:in `block in ___sers_ags_code_letter_bomb_app_views_letter_bomb_mailers_show_html_erb___3854348128551475382_70322794762780'
|
11747
|
+
actionpack (3.2.13) lib/action_view/helpers/capture_helper.rb:40:in `block in capture'
|
11748
|
+
actionpack (3.2.13) lib/action_view/helpers/capture_helper.rb:187:in `with_output_buffer'
|
11749
|
+
actionpack (3.2.13) lib/action_view/helpers/capture_helper.rb:40:in `capture'
|
11750
|
+
actionpack (3.2.13) lib/action_view/helpers/capture_helper.rb:138:in `content_for'
|
11751
|
+
/Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb:1:in `___sers_ags_code_letter_bomb_app_views_letter_bomb_mailers_show_html_erb___3854348128551475382_70322794762780'
|
11752
|
+
actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
|
11753
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
|
11754
|
+
actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
|
11755
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
11756
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
11757
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
11758
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
11759
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
11760
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
11761
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
11762
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
11763
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
11764
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
11765
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
11766
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
|
11767
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
11768
|
+
actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
11769
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
11770
|
+
actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
11771
|
+
actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
11772
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
|
11773
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
|
11774
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
11775
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
11776
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
11777
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
11778
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
11779
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
11780
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
11781
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
11782
|
+
/Users/ags/code/letter_bomb/app/controllers/letter_bomb/mailers_controller.rb:19:in `block (2 levels) in show'
|
11783
|
+
actionpack (3.2.13) lib/action_controller/metal/mime_responds.rb:196:in `call'
|
11784
|
+
actionpack (3.2.13) lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
|
11785
|
+
/Users/ags/code/letter_bomb/app/controllers/letter_bomb/mailers_controller.rb:17:in `show'
|
11786
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
11787
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
|
11788
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
11789
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
11790
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:403:in `_run__4321597750226949258__process_action__4054700221723781459__callbacks'
|
11791
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
11792
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
11793
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
11794
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
11795
|
+
actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
11796
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
11797
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
11798
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
11799
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
11800
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
11801
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
11802
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
11803
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
|
11804
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
|
11805
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
|
11806
|
+
actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
11807
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
|
11808
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
11809
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
11810
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
11811
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
11812
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
11813
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
11814
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
11815
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
11816
|
+
railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
11817
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
11818
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
11819
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
11820
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
11821
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
11822
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
11823
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
11824
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
11825
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
11826
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
11827
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
11828
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
11829
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
11830
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
11831
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
11832
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
11833
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__341051566241343239__call__188784677669380238__callbacks'
|
11834
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
11835
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
11836
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
11837
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
11838
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
11839
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
11840
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
11841
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
11842
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
11843
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
11844
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
11845
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
11846
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
11847
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
11848
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
11849
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
11850
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
11851
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
11852
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
11853
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
11854
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
11855
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
11856
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
11857
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
11858
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
11859
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
11860
|
+
|
11861
|
+
|
11862
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
|
11863
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
|
11864
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.1ms)
|
11865
|
+
|
11866
|
+
|
11867
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:09:16 +1000
|
11868
|
+
Processing by LetterBomb::MailersController#show as HTML
|
11869
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
11870
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
11871
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 03:09:16 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:09:16 UTC +00:00]]
|
11872
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
11873
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
11874
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
11875
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (1.1ms)
|
11876
|
+
Completed 500 Internal Server Error in 18ms
|
11877
|
+
|
11878
|
+
ActionView::Template::Error (undefined method `multipart?' for nil:NilClass):
|
11879
|
+
48:
|
11880
|
+
49: <div id="message_headers">
|
11881
|
+
50:
|
11882
|
+
51: <% if @action.multipart? %>
|
11883
|
+
52: <p class="alternate">
|
11884
|
+
53: <% if html_format_requested? %>
|
11885
|
+
54: <a href="<%= @action.name %>.txt">View plain text version</a>
|
11886
|
+
/Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb:51:in `___sers_ags_code_letter_bomb_app_views_letter_bomb_mailers_show_html_erb___3854348128551475382_70322749671900'
|
11887
|
+
actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
|
11888
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
|
11889
|
+
actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
|
11890
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
11891
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
11892
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
11893
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
11894
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
11895
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
11896
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
11897
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
11898
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
11899
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
11900
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
11901
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
|
11902
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
11903
|
+
actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
11904
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
11905
|
+
actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
11906
|
+
actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
11907
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
|
11908
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
|
11909
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
11910
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
11911
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
11912
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
11913
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
11914
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
11915
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
11916
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
11917
|
+
/Users/ags/code/letter_bomb/app/controllers/letter_bomb/mailers_controller.rb:19:in `block (2 levels) in show'
|
11918
|
+
actionpack (3.2.13) lib/action_controller/metal/mime_responds.rb:196:in `call'
|
11919
|
+
actionpack (3.2.13) lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
|
11920
|
+
/Users/ags/code/letter_bomb/app/controllers/letter_bomb/mailers_controller.rb:17:in `show'
|
11921
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
11922
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
|
11923
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
11924
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
11925
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:403:in `_run__4321597750226949258__process_action__4054700221723781459__callbacks'
|
11926
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
11927
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
11928
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
11929
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
11930
|
+
actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
11931
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
11932
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
11933
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
11934
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
11935
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
11936
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
11937
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
11938
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
|
11939
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
|
11940
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
|
11941
|
+
actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
11942
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
|
11943
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
11944
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
11945
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
11946
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
11947
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
11948
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
11949
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
11950
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
11951
|
+
railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
11952
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
11953
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
11954
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
11955
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
11956
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
11957
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
11958
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
11959
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
11960
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
11961
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
11962
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
11963
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
11964
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
11965
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
11966
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
11967
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
11968
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__341051566241343239__call__188784677669380238__callbacks'
|
11969
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
11970
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
11971
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
11972
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
11973
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
11974
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
11975
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
11976
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
11977
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
11978
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
11979
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
11980
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
11981
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
11982
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
11983
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
11984
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
11985
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
11986
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
11987
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
11988
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
11989
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
11990
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
11991
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
11992
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
11993
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
11994
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
11995
|
+
|
11996
|
+
|
11997
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
|
11998
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
11999
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.8ms)
|
12000
|
+
|
12001
|
+
|
12002
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:09:27 +1000
|
12003
|
+
Processing by LetterBomb::MailersController#show as HTML
|
12004
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
12005
|
+
[1m[35m (0.2ms)[0m begin transaction
|
12006
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 03:09:27 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:09:27 UTC +00:00]]
|
12007
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
12008
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
12009
|
+
[1m[35m (1.7ms)[0m rollback transaction
|
12010
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (5.8ms)
|
12011
|
+
Completed 500 Internal Server Error in 31ms
|
12012
|
+
|
12013
|
+
ActionView::Template::Error (undefined method `html_format_requested?' for #<#<Class:0x007fea96c29f60>:0x007fea96c29290>):
|
12014
|
+
50:
|
12015
|
+
51: <% if @action.multipart? %>
|
12016
|
+
52: <p class="alternate">
|
12017
|
+
53: <% if html_format_requested? %>
|
12018
|
+
54: <a href="<%= @action.name %>.txt">View plain text version</a>
|
12019
|
+
55: <% else %>
|
12020
|
+
56: <a href="<%= @action.name %>.html">View HTML version</a>
|
12021
|
+
/Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb:53:in `___sers_ags_code_letter_bomb_app_views_letter_bomb_mailers_show_html_erb___3854348128551475382_70322749671900'
|
12022
|
+
actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
|
12023
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
|
12024
|
+
actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
|
12025
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
12026
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
12027
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
12028
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
12029
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
12030
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
12031
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
12032
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
12033
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
12034
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
12035
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
12036
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
|
12037
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
12038
|
+
actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
12039
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
12040
|
+
actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
12041
|
+
actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
12042
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
|
12043
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
|
12044
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
12045
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
12046
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
12047
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
12048
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
12049
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
12050
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
12051
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
12052
|
+
/Users/ags/code/letter_bomb/app/controllers/letter_bomb/mailers_controller.rb:19:in `block (2 levels) in show'
|
12053
|
+
actionpack (3.2.13) lib/action_controller/metal/mime_responds.rb:196:in `call'
|
12054
|
+
actionpack (3.2.13) lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
|
12055
|
+
/Users/ags/code/letter_bomb/app/controllers/letter_bomb/mailers_controller.rb:17:in `show'
|
12056
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
12057
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
|
12058
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
12059
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
12060
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:403:in `_run__4321597750226949258__process_action__4054700221723781459__callbacks'
|
12061
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
12062
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
12063
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
12064
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
12065
|
+
actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
12066
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
12067
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
12068
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
12069
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
12070
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
12071
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
12072
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
12073
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
|
12074
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
|
12075
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
|
12076
|
+
actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
12077
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
|
12078
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
12079
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
12080
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
12081
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
12082
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
12083
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
12084
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
12085
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
12086
|
+
railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
12087
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
12088
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
12089
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
12090
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
12091
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
12092
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
12093
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
12094
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
12095
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
12096
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
12097
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
12098
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
12099
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
12100
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
12101
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
12102
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
12103
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__341051566241343239__call__188784677669380238__callbacks'
|
12104
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
12105
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
12106
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
12107
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
12108
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
12109
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
12110
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
12111
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
12112
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
12113
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
12114
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
12115
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
12116
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
12117
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
12118
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
12119
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
12120
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
12121
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
12122
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
12123
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
12124
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
12125
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
12126
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
12127
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
12128
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
12129
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
12130
|
+
|
12131
|
+
|
12132
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
|
12133
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
|
12134
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.8ms)
|
12135
|
+
|
12136
|
+
|
12137
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:09:39 +1000
|
12138
|
+
Processing by LetterBomb::MailersController#show as HTML
|
12139
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
12140
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
12141
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 03:09:39 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:09:39 UTC +00:00]]
|
12142
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
12143
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
12144
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
12145
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.7ms)
|
12146
|
+
Completed 500 Internal Server Error in 26ms
|
12147
|
+
|
12148
|
+
ActionView::Template::Error (private method `format' called for nil:NilClass):
|
12149
|
+
50:
|
12150
|
+
51: <% if @action.multipart? %>
|
12151
|
+
52: <p class="alternate">
|
12152
|
+
53: <% if html_format_requested? %>
|
12153
|
+
54: <a href="<%= @action.name %>.txt">View plain text version</a>
|
12154
|
+
55: <% else %>
|
12155
|
+
56: <a href="<%= @action.name %>.html">View HTML version</a>
|
12156
|
+
/Users/ags/code/letter_bomb/app/controllers/letter_bomb/mailers_controller.rb:38:in `html_format_requested?'
|
12157
|
+
actionpack (3.2.13) lib/abstract_controller/helpers.rb:53:in `html_format_requested?'
|
12158
|
+
/Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb:53:in `___sers_ags_code_letter_bomb_app_views_letter_bomb_mailers_show_html_erb___3854348128551475382_70322749671900'
|
12159
|
+
actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
|
12160
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
|
12161
|
+
actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
|
12162
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
12163
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
12164
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
12165
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
12166
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
12167
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
12168
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
12169
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
12170
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
12171
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
12172
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
12173
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
|
12174
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
12175
|
+
actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
12176
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
12177
|
+
actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
12178
|
+
actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
12179
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
|
12180
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
|
12181
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
12182
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
12183
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
12184
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
12185
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
12186
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
12187
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
12188
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
12189
|
+
/Users/ags/code/letter_bomb/app/controllers/letter_bomb/mailers_controller.rb:19:in `block (2 levels) in show'
|
12190
|
+
actionpack (3.2.13) lib/action_controller/metal/mime_responds.rb:196:in `call'
|
12191
|
+
actionpack (3.2.13) lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
|
12192
|
+
/Users/ags/code/letter_bomb/app/controllers/letter_bomb/mailers_controller.rb:17:in `show'
|
12193
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
12194
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
|
12195
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
12196
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
12197
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:403:in `_run__4321597750226949258__process_action__4054700221723781459__callbacks'
|
12198
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
12199
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
12200
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
12201
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
12202
|
+
actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
12203
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
12204
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
12205
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
12206
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
12207
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
12208
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
12209
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
12210
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
|
12211
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
|
12212
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
|
12213
|
+
actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
12214
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
|
12215
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
12216
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
12217
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
12218
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
12219
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
12220
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
12221
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
12222
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
12223
|
+
railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
12224
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
12225
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
12226
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
12227
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
12228
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
12229
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
12230
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
12231
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
12232
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
12233
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
12234
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
12235
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
12236
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
12237
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
12238
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
12239
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
12240
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__341051566241343239__call__188784677669380238__callbacks'
|
12241
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
12242
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
12243
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
12244
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
12245
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
12246
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
12247
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
12248
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
12249
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
12250
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
12251
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
12252
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
12253
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
12254
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
12255
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
12256
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
12257
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
12258
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
12259
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
12260
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
12261
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
12262
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
12263
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
12264
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
12265
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
12266
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
12267
|
+
|
12268
|
+
|
12269
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
|
12270
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
12271
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.6ms)
|
12272
|
+
|
12273
|
+
|
12274
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:10:06 +1000
|
12275
|
+
Processing by LetterBomb::MailersController#show as HTML
|
12276
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
12277
|
+
[1m[35m (0.2ms)[0m begin transaction
|
12278
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 03:10:06 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:10:06 UTC +00:00]]
|
12279
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
12280
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
12281
|
+
[1m[35m (1.6ms)[0m rollback transaction
|
12282
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.4ms)
|
12283
|
+
Completed 200 OK in 25ms (Views: 2.0ms | ActiveRecord: 2.4ms)
|
12284
|
+
|
12285
|
+
|
12286
|
+
Started GET "/UserMailer::Preview/welcome.html" for 127.0.0.1 at 2013-07-17 13:10:09 +1000
|
12287
|
+
Processing by LetterBomb::MailersController#show as HTML
|
12288
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
12289
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12290
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 03:10:09 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:10:09 UTC +00:00]]
|
12291
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
12292
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
12293
|
+
[1m[36m (1.7ms)[0m [1mrollback transaction[0m
|
12294
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.4ms)
|
12295
|
+
Completed 200 OK in 16ms (Views: 1.8ms | ActiveRecord: 2.2ms)
|
12296
|
+
|
12297
|
+
|
12298
|
+
Started GET "/UserMailer::Preview/welcome.txt" for 127.0.0.1 at 2013-07-17 13:10:10 +1000
|
12299
|
+
Processing by LetterBomb::MailersController#show as TEXT
|
12300
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
12301
|
+
[1m[35m (0.1ms)[0m begin transaction
|
12302
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 03:10:10 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:10:10 UTC +00:00]]
|
12303
|
+
Rendered user_mailer/welcome.html.erb (0.1ms)
|
12304
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
12305
|
+
[1m[35m (1.5ms)[0m rollback transaction
|
12306
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.3ms)
|
12307
|
+
Completed 200 OK in 16ms (Views: 1.6ms | ActiveRecord: 1.9ms)
|
12308
|
+
|
12309
|
+
|
12310
|
+
Started GET "/UserMailer::Preview/welcome.html" for 127.0.0.1 at 2013-07-17 13:10:11 +1000
|
12311
|
+
Processing by LetterBomb::MailersController#show as HTML
|
12312
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
12313
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12314
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 03:10:11 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:10:11 UTC +00:00]]
|
12315
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
12316
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
12317
|
+
[1m[36m (1.7ms)[0m [1mrollback transaction[0m
|
12318
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.4ms)
|
12319
|
+
Completed 200 OK in 16ms (Views: 1.7ms | ActiveRecord: 2.5ms)
|
12320
|
+
|
12321
|
+
|
12322
|
+
Started GET "/UserMailer::Preview/welcome.txt" for 127.0.0.1 at 2013-07-17 13:10:12 +1000
|
12323
|
+
Processing by LetterBomb::MailersController#show as TEXT
|
12324
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
12325
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12326
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 03:10:12 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:10:12 UTC +00:00]]
|
12327
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
12328
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
12329
|
+
[1m[35m (1.4ms)[0m rollback transaction
|
12330
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.3ms)
|
12331
|
+
Completed 200 OK in 16ms (Views: 1.5ms | ActiveRecord: 1.8ms)
|
12332
|
+
|
12333
|
+
|
12334
|
+
Started GET "/UserMailer::Preview/welcome.html" for 127.0.0.1 at 2013-07-17 13:10:12 +1000
|
12335
|
+
Processing by LetterBomb::MailersController#show as HTML
|
12336
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
12337
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12338
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 03:10:12 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:10:12 UTC +00:00]]
|
12339
|
+
Rendered user_mailer/welcome.html.erb (0.1ms)
|
12340
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
12341
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
12342
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.3ms)
|
12343
|
+
Completed 200 OK in 16ms (Views: 1.5ms | ActiveRecord: 0.8ms)
|
12344
|
+
|
12345
|
+
|
12346
|
+
Started GET "/UserMailer::Preview/welcome.txt" for 127.0.0.1 at 2013-07-17 13:10:13 +1000
|
12347
|
+
Processing by LetterBomb::MailersController#show as TEXT
|
12348
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
12349
|
+
[1m[35m (0.1ms)[0m begin transaction
|
12350
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 03:10:13 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:10:13 UTC +00:00]]
|
12351
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
12352
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
12353
|
+
[1m[35m (1.5ms)[0m rollback transaction
|
12354
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.4ms)
|
12355
|
+
Completed 200 OK in 16ms (Views: 1.7ms | ActiveRecord: 1.9ms)
|
12356
|
+
|
12357
|
+
|
12358
|
+
Started GET "/UserMailer::Preview/welcome.html" for 127.0.0.1 at 2013-07-17 13:10:13 +1000
|
12359
|
+
Processing by LetterBomb::MailersController#show as HTML
|
12360
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
12361
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12362
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 03:10:13 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:10:13 UTC +00:00]]
|
12363
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
12364
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
12365
|
+
[1m[36m (1.4ms)[0m [1mrollback transaction[0m
|
12366
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.4ms)
|
12367
|
+
Completed 200 OK in 16ms (Views: 1.7ms | ActiveRecord: 1.8ms)
|
12368
|
+
|
12369
|
+
|
12370
|
+
Started GET "/UserMailer::Preview/welcome.txt" for 127.0.0.1 at 2013-07-17 13:10:14 +1000
|
12371
|
+
Processing by LetterBomb::MailersController#show as TEXT
|
12372
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
12373
|
+
[1m[35m (0.1ms)[0m begin transaction
|
12374
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 03:10:14 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:10:14 UTC +00:00]]
|
12375
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
12376
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
12377
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
12378
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.3ms)
|
12379
|
+
Completed 200 OK in 15ms (Views: 1.6ms | ActiveRecord: 0.8ms)
|
12380
|
+
|
12381
|
+
|
12382
|
+
Started GET "/UserMailer::Preview/welcome.html" for 127.0.0.1 at 2013-07-17 13:10:14 +1000
|
12383
|
+
Processing by LetterBomb::MailersController#show as HTML
|
12384
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
12385
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12386
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 03:10:14 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:10:14 UTC +00:00]]
|
12387
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
12388
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
12389
|
+
[1m[36m (1.7ms)[0m [1mrollback transaction[0m
|
12390
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.4ms)
|
12391
|
+
Completed 200 OK in 17ms (Views: 1.6ms | ActiveRecord: 2.2ms)
|
12392
|
+
|
12393
|
+
|
12394
|
+
Started GET "/UserMailer::Preview/welcome.txt" for 127.0.0.1 at 2013-07-17 13:10:15 +1000
|
12395
|
+
Processing by LetterBomb::MailersController#show as TEXT
|
12396
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
12397
|
+
[1m[35m (0.1ms)[0m begin transaction
|
12398
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 03:10:15 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:10:15 UTC +00:00]]
|
12399
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
12400
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
12401
|
+
[1m[35m (1.7ms)[0m rollback transaction
|
12402
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.4ms)
|
12403
|
+
Completed 200 OK in 16ms (Views: 1.6ms | ActiveRecord: 2.1ms)
|
12404
|
+
|
12405
|
+
|
12406
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:10:18 +1000
|
12407
|
+
Processing by LetterBomb::MailersController#show as HTML
|
12408
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
12409
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12410
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 03:10:18 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:10:18 UTC +00:00]]
|
12411
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
12412
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
12413
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
12414
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.3ms)
|
12415
|
+
Completed 200 OK in 16ms (Views: 1.6ms | ActiveRecord: 1.0ms)
|
12416
|
+
|
12417
|
+
|
12418
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:10:19 +1000
|
12419
|
+
Processing by LetterBomb::MailersController#show as HTML
|
12420
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
12421
|
+
[1m[35m (0.1ms)[0m begin transaction
|
12422
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 03:10:19 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:10:19 UTC +00:00]]
|
12423
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
12424
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
12425
|
+
[1m[35m (1.4ms)[0m rollback transaction
|
12426
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.4ms)
|
12427
|
+
Completed 200 OK in 17ms (Views: 1.6ms | ActiveRecord: 1.9ms)
|
12428
|
+
Connecting to database specified by database.yml
|
12429
|
+
|
12430
|
+
|
12431
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:12:55 +1000
|
12432
|
+
Processing by LetterBomb::MailersController#show as HTML
|
12433
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
12434
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
12435
|
+
[1m[35mSQL (2.7ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 03:12:55 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:12:55 UTC +00:00]]
|
12436
|
+
Rendered user_mailer/welcome.html.erb (0.8ms)
|
12437
|
+
Rendered user_mailer/welcome.text.erb (0.3ms)
|
12438
|
+
[1m[36m (1.5ms)[0m [1mrollback transaction[0m
|
12439
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (2.0ms)
|
12440
|
+
Completed 500 Internal Server Error in 261ms
|
12441
|
+
|
12442
|
+
ActionView::Template::Error (undefined method `charset' for nil:NilClass):
|
12443
|
+
1: <% content_for :head do %>
|
12444
|
+
2: <meta http-equiv="Content-Type" content="text/html; charset=<%= @mail.charset %>" />
|
12445
|
+
3: <style type="text/css">
|
12446
|
+
4: #message_headers {
|
12447
|
+
5: width: 100%;
|
12448
|
+
/Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb:2:in `block in ___sers_ags_code_letter_bomb_app_views_letter_bomb_mailers_show_html_erb__3358442430074992572_70315140354840'
|
12449
|
+
actionpack (3.2.13) lib/action_view/helpers/capture_helper.rb:40:in `block in capture'
|
12450
|
+
actionpack (3.2.13) lib/action_view/helpers/capture_helper.rb:187:in `with_output_buffer'
|
12451
|
+
actionpack (3.2.13) lib/action_view/helpers/capture_helper.rb:40:in `capture'
|
12452
|
+
actionpack (3.2.13) lib/action_view/helpers/capture_helper.rb:138:in `content_for'
|
12453
|
+
/Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb:1:in `___sers_ags_code_letter_bomb_app_views_letter_bomb_mailers_show_html_erb__3358442430074992572_70315140354840'
|
12454
|
+
actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
|
12455
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
|
12456
|
+
actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
|
12457
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
12458
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
12459
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
12460
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
12461
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
12462
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
12463
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
12464
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
12465
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
12466
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
12467
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
12468
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
|
12469
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
12470
|
+
actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
12471
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
12472
|
+
actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
12473
|
+
actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
12474
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
|
12475
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
|
12476
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
12477
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
12478
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
12479
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
12480
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
12481
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
12482
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
12483
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
12484
|
+
/Users/ags/code/letter_bomb/app/controllers/letter_bomb/mailers_controller.rb:19:in `block (2 levels) in show'
|
12485
|
+
actionpack (3.2.13) lib/action_controller/metal/mime_responds.rb:196:in `call'
|
12486
|
+
actionpack (3.2.13) lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
|
12487
|
+
/Users/ags/code/letter_bomb/app/controllers/letter_bomb/mailers_controller.rb:17:in `show'
|
12488
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
12489
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
|
12490
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
12491
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
12492
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:403:in `_run__1171680296092292761__process_action__2124586442903680018__callbacks'
|
12493
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
12494
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
12495
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
12496
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
12497
|
+
actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
12498
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
12499
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
12500
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
12501
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
12502
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
12503
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
12504
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
12505
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
|
12506
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
|
12507
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
|
12508
|
+
actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
12509
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
|
12510
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
12511
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
12512
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
12513
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
12514
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
12515
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
12516
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
12517
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
12518
|
+
railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
12519
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
12520
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
12521
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
12522
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
12523
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
12524
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
12525
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
12526
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
12527
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
12528
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
12529
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
12530
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
12531
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
12532
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
12533
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
12534
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
12535
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__3675557817322259641__call__1228134147957313302__callbacks'
|
12536
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
12537
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
12538
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
12539
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
12540
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
12541
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
12542
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
12543
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
12544
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
12545
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
12546
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
12547
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
12548
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
12549
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
12550
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
12551
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
12552
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
12553
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
12554
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
12555
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
12556
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
12557
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
12558
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
12559
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
12560
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
12561
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
12562
|
+
|
12563
|
+
|
12564
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
|
12565
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
|
12566
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.5ms)
|
12567
|
+
|
12568
|
+
|
12569
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:13:22 +1000
|
12570
|
+
Processing by LetterBomb::MailersController#show as HTML
|
12571
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
12572
|
+
[1m[35m (0.1ms)[0m begin transaction
|
12573
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 03:13:22 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:13:22 UTC +00:00]]
|
12574
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
12575
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
12576
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
12577
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (9.1ms)
|
12578
|
+
Completed 500 Internal Server Error in 23ms
|
12579
|
+
|
12580
|
+
ActionView::Template::Error (undefined method `viewing_html_format?' for #<#<Class:0x007fe709ed92f0>:0x007fe709c660e0>):
|
12581
|
+
69:
|
12582
|
+
70: <% if @action.multipart? %>
|
12583
|
+
71: <p class="alternate">
|
12584
|
+
72: <% if viewing_html_format? %>
|
12585
|
+
73: <a href="<%= @action.name %>.txt">View plain text version</a>
|
12586
|
+
74: <% else %>
|
12587
|
+
75: <a href="<%= @action.name %>.html">View HTML version</a>
|
12588
|
+
/Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb:72:in `___sers_ags_code_letter_bomb_app_views_letter_bomb_mailers_show_html_erb__3358442430074992572_70315139054960'
|
12589
|
+
actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
|
12590
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
|
12591
|
+
actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
|
12592
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
12593
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
12594
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
12595
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
12596
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
12597
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
12598
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
12599
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
12600
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
12601
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
12602
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
12603
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
|
12604
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
12605
|
+
actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
12606
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
12607
|
+
actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
12608
|
+
actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
12609
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
|
12610
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
|
12611
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
12612
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
12613
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
12614
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
12615
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
12616
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
12617
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
12618
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
12619
|
+
/Users/ags/code/letter_bomb/app/controllers/letter_bomb/mailers_controller.rb:19:in `block (2 levels) in show'
|
12620
|
+
actionpack (3.2.13) lib/action_controller/metal/mime_responds.rb:196:in `call'
|
12621
|
+
actionpack (3.2.13) lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
|
12622
|
+
/Users/ags/code/letter_bomb/app/controllers/letter_bomb/mailers_controller.rb:17:in `show'
|
12623
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
12624
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
|
12625
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
12626
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
12627
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:403:in `_run__1171680296092292761__process_action__2124586442903680018__callbacks'
|
12628
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
12629
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
12630
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
12631
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
12632
|
+
actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
12633
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
12634
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
12635
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
12636
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
12637
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
12638
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
12639
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
12640
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
|
12641
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
|
12642
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
|
12643
|
+
actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
12644
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
|
12645
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
12646
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
12647
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
12648
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
12649
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
12650
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
12651
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
12652
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
12653
|
+
railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
12654
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
12655
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
12656
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
12657
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
12658
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
12659
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
12660
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
12661
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
12662
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
12663
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
12664
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
12665
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
12666
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
12667
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
12668
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
12669
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
12670
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__3675557817322259641__call__1228134147957313302__callbacks'
|
12671
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
12672
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
12673
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
12674
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
12675
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
12676
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
12677
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
12678
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
12679
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
12680
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
12681
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
12682
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
12683
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
12684
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
12685
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
12686
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
12687
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
12688
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
12689
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
12690
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
12691
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
12692
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
12693
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
12694
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
12695
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
12696
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
12697
|
+
|
12698
|
+
|
12699
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
|
12700
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
12701
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.7ms)
|
12702
|
+
|
12703
|
+
|
12704
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:13:29 +1000
|
12705
|
+
Processing by LetterBomb::MailersController#show as HTML
|
12706
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
12707
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
12708
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 03:13:29 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:13:29 UTC +00:00]]
|
12709
|
+
Rendered user_mailer/welcome.html.erb (0.1ms)
|
12710
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
12711
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
12712
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.8ms)
|
12713
|
+
Completed 200 OK in 27ms (Views: 2.4ms | ActiveRecord: 1.4ms)
|
12714
|
+
|
12715
|
+
|
12716
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:14:48 +1000
|
12717
|
+
Processing by LetterBomb::MailersController#show as HTML
|
12718
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
12719
|
+
[1m[35m (0.2ms)[0m begin transaction
|
12720
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 03:14:48 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:14:48 UTC +00:00]]
|
12721
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
12722
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
12723
|
+
[1m[35m (1.6ms)[0m rollback transaction
|
12724
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.9ms)
|
12725
|
+
Completed 200 OK in 27ms (Views: 2.3ms | ActiveRecord: 2.4ms)
|
12726
|
+
|
12727
|
+
|
12728
|
+
Started GET "/UserMailer::Preview/welcome.html" for 127.0.0.1 at 2013-07-17 13:14:51 +1000
|
12729
|
+
Processing by LetterBomb::MailersController#show as HTML
|
12730
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
12731
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12732
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 03:14:51 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:14:51 UTC +00:00]]
|
12733
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
12734
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
12735
|
+
[1m[36m (1.7ms)[0m [1mrollback transaction[0m
|
12736
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.9ms)
|
12737
|
+
Completed 200 OK in 17ms (Views: 2.2ms | ActiveRecord: 2.1ms)
|
12738
|
+
|
12739
|
+
|
12740
|
+
Started GET "/UserMailer::Preview/welcome.txt" for 127.0.0.1 at 2013-07-17 13:14:51 +1000
|
12741
|
+
Processing by LetterBomb::MailersController#show as TEXT
|
12742
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
12743
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12744
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 03:14:51 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:14:51 UTC +00:00]]
|
12745
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
12746
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
12747
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
12748
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.8ms)
|
12749
|
+
Completed 200 OK in 66ms (Views: 2.0ms | ActiveRecord: 0.9ms)
|
12750
|
+
|
12751
|
+
|
12752
|
+
Started GET "/" for 127.0.0.1 at 2013-07-17 13:14:54 +1000
|
12753
|
+
Processing by LetterBomb::MailersController#index as HTML
|
12754
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/index.html.erb within layouts/letter_bomb/application (1.3ms)
|
12755
|
+
Completed 200 OK in 5ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
12756
|
+
|
12757
|
+
|
12758
|
+
Started GET "/" for 127.0.0.1 at 2013-07-17 13:14:55 +1000
|
12759
|
+
Processing by LetterBomb::MailersController#index as HTML
|
12760
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/index.html.erb within layouts/letter_bomb/application (0.7ms)
|
12761
|
+
Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
12762
|
+
|
12763
|
+
|
12764
|
+
Started GET "/FooMailerPreview/bad" for 127.0.0.1 at 2013-07-17 13:14:56 +1000
|
12765
|
+
Processing by LetterBomb::MailersController#show as HTML
|
12766
|
+
Parameters: {"mailer_class"=>"FooMailerPreview", "mailer_action"=>"bad"}
|
12767
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12768
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12769
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (1.0ms)
|
12770
|
+
Completed 500 Internal Server Error in 2ms
|
12771
|
+
|
12772
|
+
ActionView::Template::Error (undefined method `charset' for nil:LetterBomb::Preview::Action):
|
12773
|
+
1: <% content_for :head do %>
|
12774
|
+
2: <meta http-equiv="Content-Type" content="text/html; charset=<%= @action.charset %>" />
|
12775
|
+
3: <style type="text/css">
|
12776
|
+
4: #message_headers {
|
12777
|
+
5: width: 100%;
|
12778
|
+
/Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb:2:in `block in ___sers_ags_code_letter_bomb_app_views_letter_bomb_mailers_show_html_erb__3358442430074992572_70315139054960'
|
12779
|
+
actionpack (3.2.13) lib/action_view/helpers/capture_helper.rb:40:in `block in capture'
|
12780
|
+
actionpack (3.2.13) lib/action_view/helpers/capture_helper.rb:187:in `with_output_buffer'
|
12781
|
+
actionpack (3.2.13) lib/action_view/helpers/capture_helper.rb:40:in `capture'
|
12782
|
+
actionpack (3.2.13) lib/action_view/helpers/capture_helper.rb:138:in `content_for'
|
12783
|
+
/Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb:1:in `___sers_ags_code_letter_bomb_app_views_letter_bomb_mailers_show_html_erb__3358442430074992572_70315139054960'
|
12784
|
+
actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
|
12785
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
|
12786
|
+
actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
|
12787
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
12788
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
12789
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
12790
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
12791
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
12792
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
12793
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
12794
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
12795
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
12796
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
12797
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
12798
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
|
12799
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
12800
|
+
actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
12801
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
12802
|
+
actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
12803
|
+
actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
12804
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
|
12805
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
|
12806
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
12807
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
12808
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
12809
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
12810
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
12811
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
12812
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
12813
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
12814
|
+
/Users/ags/code/letter_bomb/app/controllers/letter_bomb/mailers_controller.rb:18:in `block (2 levels) in show'
|
12815
|
+
actionpack (3.2.13) lib/action_controller/metal/mime_responds.rb:196:in `call'
|
12816
|
+
actionpack (3.2.13) lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
|
12817
|
+
/Users/ags/code/letter_bomb/app/controllers/letter_bomb/mailers_controller.rb:16:in `show'
|
12818
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
12819
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
|
12820
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
12821
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
12822
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:403:in `_run__1171680296092292761__process_action__2124586442903680018__callbacks'
|
12823
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
12824
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
12825
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
12826
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
12827
|
+
actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
12828
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
12829
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
12830
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
12831
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
12832
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
12833
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
12834
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
12835
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
|
12836
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
|
12837
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
|
12838
|
+
actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
12839
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
|
12840
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
12841
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
12842
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
12843
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
12844
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
12845
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
12846
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
12847
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
12848
|
+
railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
12849
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
12850
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
12851
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
12852
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
12853
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
12854
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
12855
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
12856
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
12857
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
12858
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
12859
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
12860
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
12861
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
12862
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
12863
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
12864
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
12865
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__3675557817322259641__call__1228134147957313302__callbacks'
|
12866
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
12867
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
12868
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
12869
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
12870
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
12871
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
12872
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
12873
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
12874
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
12875
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
12876
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
12877
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
12878
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
12879
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
12880
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
12881
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
12882
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
12883
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
12884
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
12885
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
12886
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
12887
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
12888
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
12889
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
12890
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
12891
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
12892
|
+
|
12893
|
+
|
12894
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
|
12895
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
|
12896
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.9ms)
|
12897
|
+
|
12898
|
+
|
12899
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:15:16 +1000
|
12900
|
+
Processing by LetterBomb::MailersController#show as HTML
|
12901
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
12902
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12903
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 03:15:16 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:15:16 UTC +00:00]]
|
12904
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
12905
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
12906
|
+
[1m[36m (1.4ms)[0m [1mrollback transaction[0m
|
12907
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.9ms)
|
12908
|
+
Completed 200 OK in 16ms (Views: 2.1ms | ActiveRecord: 1.8ms)
|
12909
|
+
|
12910
|
+
|
12911
|
+
Started GET "/" for 127.0.0.1 at 2013-07-17 13:38:28 +1000
|
12912
|
+
Processing by LetterBomb::MailersController#index as HTML
|
12913
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/index.html.erb within layouts/letter_bomb/application (0.8ms)
|
12914
|
+
Completed 200 OK in 7ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
12915
|
+
|
12916
|
+
|
12917
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:38:31 +1000
|
12918
|
+
Processing by LetterBomb::MailersController#show as HTML
|
12919
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
12920
|
+
[1m[35m (0.2ms)[0m begin transaction
|
12921
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 03:38:31 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:38:31 UTC +00:00]]
|
12922
|
+
Rendered user_mailer/welcome.html.erb (0.1ms)
|
12923
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
12924
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
12925
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.8ms)
|
12926
|
+
Completed 200 OK in 29ms (Views: 2.1ms | ActiveRecord: 1.3ms)
|
12927
|
+
Connecting to database specified by database.yml
|
12928
|
+
|
12929
|
+
|
12930
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:39:01 +1000
|
12931
|
+
Processing by LetterBomb::MailersController#show as HTML
|
12932
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
12933
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
12934
|
+
[1m[35mSQL (2.6ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 03:39:01 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:39:01 UTC +00:00]]
|
12935
|
+
Rendered user_mailer/welcome.html.erb (1.4ms)
|
12936
|
+
Rendered user_mailer/welcome.text.erb (0.3ms)
|
12937
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
12938
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (2.8ms)
|
12939
|
+
Completed 500 Internal Server Error in 331ms
|
12940
|
+
|
12941
|
+
ActionView::Template::Error (undefined method `charset' for #<LetterBomb::Preview::Action:0x007fe6ab25ee20>):
|
12942
|
+
1: <% content_for :head do %>
|
12943
|
+
2: <meta http-equiv="Content-Type" content="text/html; charset=<%= @action.charset %>" />
|
12944
|
+
3: <style type="text/css">
|
12945
|
+
4: #message_headers {
|
12946
|
+
5: width: 100%;
|
12947
|
+
/Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb:2:in `block in ___sers_ags_code_letter_bomb_app_views_letter_bomb_mailers_show_html_erb___2223537254896356744_70314345375880'
|
12948
|
+
actionpack (3.2.13) lib/action_view/helpers/capture_helper.rb:40:in `block in capture'
|
12949
|
+
actionpack (3.2.13) lib/action_view/helpers/capture_helper.rb:187:in `with_output_buffer'
|
12950
|
+
actionpack (3.2.13) lib/action_view/helpers/capture_helper.rb:40:in `capture'
|
12951
|
+
actionpack (3.2.13) lib/action_view/helpers/capture_helper.rb:138:in `content_for'
|
12952
|
+
/Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb:1:in `___sers_ags_code_letter_bomb_app_views_letter_bomb_mailers_show_html_erb___2223537254896356744_70314345375880'
|
12953
|
+
actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
|
12954
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
|
12955
|
+
actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
|
12956
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
12957
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
12958
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
12959
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
12960
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
12961
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
12962
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
12963
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
12964
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
12965
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
12966
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
12967
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
|
12968
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
12969
|
+
actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
12970
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
12971
|
+
actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
12972
|
+
actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
12973
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
|
12974
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
|
12975
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
12976
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
12977
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
12978
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
12979
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
12980
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
12981
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
12982
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
12983
|
+
/Users/ags/code/letter_bomb/app/controllers/letter_bomb/mailers_controller.rb:18:in `block (2 levels) in show'
|
12984
|
+
actionpack (3.2.13) lib/action_controller/metal/mime_responds.rb:196:in `call'
|
12985
|
+
actionpack (3.2.13) lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
|
12986
|
+
/Users/ags/code/letter_bomb/app/controllers/letter_bomb/mailers_controller.rb:16:in `show'
|
12987
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
12988
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
|
12989
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
12990
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
12991
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:403:in `_run__4474248343327721087__process_action__227721459435348126__callbacks'
|
12992
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
12993
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
12994
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
12995
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
12996
|
+
actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
12997
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
12998
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
12999
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
13000
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
13001
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
13002
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
13003
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
13004
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
|
13005
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
|
13006
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
|
13007
|
+
actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
13008
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
|
13009
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
13010
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
13011
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
13012
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
13013
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
13014
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
13015
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
13016
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
13017
|
+
railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
13018
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
13019
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
13020
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
13021
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
13022
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
13023
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
13024
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
13025
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
13026
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
13027
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
13028
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
13029
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
13030
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
13031
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
13032
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
13033
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
13034
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__3716945708331857513__call__2602751867826681857__callbacks'
|
13035
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
13036
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
13037
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
13038
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
13039
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
13040
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
13041
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
13042
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
13043
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
13044
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
13045
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
13046
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
13047
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
13048
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
13049
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
13050
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
13051
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
13052
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
13053
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
13054
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
13055
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
13056
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
13057
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
13058
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
13059
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
13060
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
13061
|
+
|
13062
|
+
|
13063
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
|
13064
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
13065
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.6ms)
|
13066
|
+
|
13067
|
+
|
13068
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:39:09 +1000
|
13069
|
+
Processing by LetterBomb::MailersController#show as HTML
|
13070
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
13071
|
+
[1m[35m (0.1ms)[0m begin transaction
|
13072
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 03:39:09 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:39:09 UTC +00:00]]
|
13073
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
13074
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
13075
|
+
[1m[35m (1.4ms)[0m rollback transaction
|
13076
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.7ms)
|
13077
|
+
Completed 500 Internal Server Error in 43ms
|
13078
|
+
|
13079
|
+
ActionView::Template::Error (undefined method `charset' for #<LetterBomb::Preview::Action:0x007fe6ab3440d8>):
|
13080
|
+
1: <% content_for :head do %>
|
13081
|
+
2: <meta http-equiv="Content-Type" content="text/html; charset=<%= @action.charset %>" />
|
13082
|
+
3: <style type="text/css">
|
13083
|
+
4: #message_headers {
|
13084
|
+
5: width: 100%;
|
13085
|
+
/Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb:2:in `block in ___sers_ags_code_letter_bomb_app_views_letter_bomb_mailers_show_html_erb___2223537254896356744_70314345375880'
|
13086
|
+
actionpack (3.2.13) lib/action_view/helpers/capture_helper.rb:40:in `block in capture'
|
13087
|
+
actionpack (3.2.13) lib/action_view/helpers/capture_helper.rb:187:in `with_output_buffer'
|
13088
|
+
actionpack (3.2.13) lib/action_view/helpers/capture_helper.rb:40:in `capture'
|
13089
|
+
actionpack (3.2.13) lib/action_view/helpers/capture_helper.rb:138:in `content_for'
|
13090
|
+
/Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb:1:in `___sers_ags_code_letter_bomb_app_views_letter_bomb_mailers_show_html_erb___2223537254896356744_70314345375880'
|
13091
|
+
actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
|
13092
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
|
13093
|
+
actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
|
13094
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
13095
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
13096
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
13097
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
13098
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
13099
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
13100
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
13101
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
13102
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
13103
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
13104
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
13105
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
|
13106
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
13107
|
+
actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
13108
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
13109
|
+
actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
13110
|
+
actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
13111
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
|
13112
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
|
13113
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
13114
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
13115
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
13116
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
13117
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
13118
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
13119
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
13120
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
13121
|
+
/Users/ags/code/letter_bomb/app/controllers/letter_bomb/mailers_controller.rb:18:in `block (2 levels) in show'
|
13122
|
+
actionpack (3.2.13) lib/action_controller/metal/mime_responds.rb:196:in `call'
|
13123
|
+
actionpack (3.2.13) lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
|
13124
|
+
/Users/ags/code/letter_bomb/app/controllers/letter_bomb/mailers_controller.rb:16:in `show'
|
13125
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
13126
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
|
13127
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
13128
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
13129
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:403:in `_run__4474248343327721087__process_action__227721459435348126__callbacks'
|
13130
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
13131
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
13132
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
13133
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
13134
|
+
actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
13135
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
13136
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
13137
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
13138
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
13139
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
13140
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
13141
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
13142
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
|
13143
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
|
13144
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
|
13145
|
+
actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
13146
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
|
13147
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
13148
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
13149
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
13150
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
13151
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
13152
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
13153
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
13154
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
13155
|
+
railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
13156
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
13157
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
13158
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
13159
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
13160
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
13161
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
13162
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
13163
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
13164
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
13165
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
13166
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
13167
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
13168
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
13169
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
13170
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
13171
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
13172
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__3716945708331857513__call__2602751867826681857__callbacks'
|
13173
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
13174
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
13175
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
13176
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
13177
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
13178
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
13179
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
13180
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
13181
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
13182
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
13183
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
13184
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
13185
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
13186
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
13187
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
13188
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
13189
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
13190
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
13191
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
13192
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
13193
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
13194
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
13195
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
13196
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
13197
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
13198
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
13199
|
+
|
13200
|
+
|
13201
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
|
13202
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
|
13203
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.8ms)
|
13204
|
+
|
13205
|
+
|
13206
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:39:10 +1000
|
13207
|
+
Processing by LetterBomb::MailersController#show as HTML
|
13208
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
13209
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
13210
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 03:39:10 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:39:10 UTC +00:00]]
|
13211
|
+
Rendered user_mailer/welcome.html.erb (0.1ms)
|
13212
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
13213
|
+
[1m[36m (1.5ms)[0m [1mrollback transaction[0m
|
13214
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.9ms)
|
13215
|
+
Completed 500 Internal Server Error in 21ms
|
13216
|
+
|
13217
|
+
ActionView::Template::Error (undefined method `charset' for #<LetterBomb::Preview::Action:0x007fe6ade0cab8>):
|
13218
|
+
1: <% content_for :head do %>
|
13219
|
+
2: <meta http-equiv="Content-Type" content="text/html; charset=<%= @action.charset %>" />
|
13220
|
+
3: <style type="text/css">
|
13221
|
+
4: #message_headers {
|
13222
|
+
5: width: 100%;
|
13223
|
+
/Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb:2:in `block in ___sers_ags_code_letter_bomb_app_views_letter_bomb_mailers_show_html_erb___2223537254896356744_70314345375880'
|
13224
|
+
actionpack (3.2.13) lib/action_view/helpers/capture_helper.rb:40:in `block in capture'
|
13225
|
+
actionpack (3.2.13) lib/action_view/helpers/capture_helper.rb:187:in `with_output_buffer'
|
13226
|
+
actionpack (3.2.13) lib/action_view/helpers/capture_helper.rb:40:in `capture'
|
13227
|
+
actionpack (3.2.13) lib/action_view/helpers/capture_helper.rb:138:in `content_for'
|
13228
|
+
/Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb:1:in `___sers_ags_code_letter_bomb_app_views_letter_bomb_mailers_show_html_erb___2223537254896356744_70314345375880'
|
13229
|
+
actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
|
13230
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
|
13231
|
+
actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
|
13232
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
13233
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
13234
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
13235
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
13236
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
13237
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
13238
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
13239
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
13240
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
13241
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
13242
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
13243
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
|
13244
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
13245
|
+
actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
13246
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
13247
|
+
actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
13248
|
+
actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
13249
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
|
13250
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
|
13251
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
13252
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
13253
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
13254
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
13255
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
13256
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
13257
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
13258
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
13259
|
+
/Users/ags/code/letter_bomb/app/controllers/letter_bomb/mailers_controller.rb:18:in `block (2 levels) in show'
|
13260
|
+
actionpack (3.2.13) lib/action_controller/metal/mime_responds.rb:196:in `call'
|
13261
|
+
actionpack (3.2.13) lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
|
13262
|
+
/Users/ags/code/letter_bomb/app/controllers/letter_bomb/mailers_controller.rb:16:in `show'
|
13263
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
13264
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
|
13265
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
13266
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
13267
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:403:in `_run__4474248343327721087__process_action__227721459435348126__callbacks'
|
13268
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
13269
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
13270
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
13271
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
13272
|
+
actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
13273
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
13274
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
13275
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
13276
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
13277
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
13278
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
13279
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
13280
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
|
13281
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
|
13282
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
|
13283
|
+
actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
13284
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
|
13285
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
13286
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
13287
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
13288
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
13289
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
13290
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
13291
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
13292
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
13293
|
+
railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
13294
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
13295
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
13296
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
13297
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
13298
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
13299
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
13300
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
13301
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
13302
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
13303
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
13304
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
13305
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
13306
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
13307
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
13308
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
13309
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
13310
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__3716945708331857513__call__2602751867826681857__callbacks'
|
13311
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
13312
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
13313
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
13314
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
13315
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
13316
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
13317
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
13318
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
13319
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
13320
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
13321
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
13322
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
13323
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
13324
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
13325
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
13326
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
13327
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
13328
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
13329
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
13330
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
13331
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
13332
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
13333
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
13334
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
13335
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
13336
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
13337
|
+
|
13338
|
+
|
13339
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
|
13340
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
|
13341
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.4ms)
|
13342
|
+
Connecting to database specified by database.yml
|
13343
|
+
|
13344
|
+
|
13345
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:39:15 +1000
|
13346
|
+
Processing by LetterBomb::MailersController#show as HTML
|
13347
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
13348
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
13349
|
+
[1m[35mSQL (2.7ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 03:39:16 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:39:16 UTC +00:00]]
|
13350
|
+
Rendered user_mailer/welcome.html.erb (0.8ms)
|
13351
|
+
Rendered user_mailer/welcome.text.erb (0.2ms)
|
13352
|
+
[1m[36m (1.8ms)[0m [1mrollback transaction[0m
|
13353
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (3.3ms)
|
13354
|
+
Completed 200 OK in 268ms (Views: 5.5ms | ActiveRecord: 5.4ms)
|
13355
|
+
|
13356
|
+
|
13357
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:39:16 +1000
|
13358
|
+
Processing by LetterBomb::MailersController#show as HTML
|
13359
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
13360
|
+
[1m[35m (0.1ms)[0m begin transaction
|
13361
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 03:39:16 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:39:16 UTC +00:00]]
|
13362
|
+
Rendered user_mailer/welcome.html.erb (0.1ms)
|
13363
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
13364
|
+
[1m[35m (1.4ms)[0m rollback transaction
|
13365
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.8ms)
|
13366
|
+
Completed 200 OK in 16ms (Views: 2.0ms | ActiveRecord: 1.8ms)
|
13367
|
+
|
13368
|
+
|
13369
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:39:17 +1000
|
13370
|
+
Processing by LetterBomb::MailersController#show as HTML
|
13371
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
13372
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13373
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 03:39:17 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:39:17 UTC +00:00]]
|
13374
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
13375
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
13376
|
+
[1m[36m (1.4ms)[0m [1mrollback transaction[0m
|
13377
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (1.0ms)
|
13378
|
+
Completed 200 OK in 17ms (Views: 2.2ms | ActiveRecord: 1.8ms)
|
13379
|
+
|
13380
|
+
|
13381
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:39:18 +1000
|
13382
|
+
Processing by LetterBomb::MailersController#show as HTML
|
13383
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
13384
|
+
[1m[35m (0.1ms)[0m begin transaction
|
13385
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 03:39:18 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:39:18 UTC +00:00]]
|
13386
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
13387
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
13388
|
+
[1m[35m (1.5ms)[0m rollback transaction
|
13389
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.9ms)
|
13390
|
+
Completed 200 OK in 18ms (Views: 2.1ms | ActiveRecord: 1.9ms)
|
13391
|
+
|
13392
|
+
|
13393
|
+
Started GET "/UserMailer::Preview/welcome.html" for 127.0.0.1 at 2013-07-17 13:39:19 +1000
|
13394
|
+
Processing by LetterBomb::MailersController#show as HTML
|
13395
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
13396
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
13397
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 03:39:19 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:39:19 UTC +00:00]]
|
13398
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
13399
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
13400
|
+
[1m[36m (1.4ms)[0m [1mrollback transaction[0m
|
13401
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.9ms)
|
13402
|
+
Completed 200 OK in 19ms (Views: 2.3ms | ActiveRecord: 1.9ms)
|
13403
|
+
|
13404
|
+
|
13405
|
+
Started GET "/UserMailer::Preview/welcome.txt" for 127.0.0.1 at 2013-07-17 13:39:20 +1000
|
13406
|
+
Processing by LetterBomb::MailersController#show as TEXT
|
13407
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
13408
|
+
[1m[35m (0.1ms)[0m begin transaction
|
13409
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 03:39:20 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:39:20 UTC +00:00]]
|
13410
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
13411
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
13412
|
+
[1m[35m (1.4ms)[0m rollback transaction
|
13413
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (1.2ms)
|
13414
|
+
Completed 200 OK in 19ms (Views: 3.1ms | ActiveRecord: 1.9ms)
|
13415
|
+
|
13416
|
+
|
13417
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:41:32 +1000
|
13418
|
+
Processing by LetterBomb::MailersController#show as HTML
|
13419
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
13420
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
13421
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 03:41:32 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:41:32 UTC +00:00]]
|
13422
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
13423
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
13424
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
13425
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (1.5ms)
|
13426
|
+
Completed 200 OK in 26ms (Views: 2.9ms | ActiveRecord: 1.2ms)
|
13427
|
+
Connecting to database specified by database.yml
|
13428
|
+
|
13429
|
+
|
13430
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:41:54 +1000
|
13431
|
+
Processing by LetterBomb::MailersController#show as HTML
|
13432
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
13433
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
13434
|
+
[1m[35mSQL (2.9ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 03:41:54 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:41:54 UTC +00:00]]
|
13435
|
+
Rendered user_mailer/welcome.html.erb (0.9ms)
|
13436
|
+
Rendered user_mailer/welcome.text.erb (0.3ms)
|
13437
|
+
[1m[36m (1.4ms)[0m [1mrollback transaction[0m
|
13438
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (2.9ms)
|
13439
|
+
Completed 200 OK in 287ms (Views: 4.7ms | ActiveRecord: 5.3ms)
|
13440
|
+
|
13441
|
+
|
13442
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:41:55 +1000
|
13443
|
+
Processing by LetterBomb::MailersController#show as HTML
|
13444
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
13445
|
+
[1m[35m (0.1ms)[0m begin transaction
|
13446
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 03:41:55 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:41:55 UTC +00:00]]
|
13447
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
13448
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
13449
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
13450
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (1.4ms)
|
13451
|
+
Completed 200 OK in 18ms (Views: 2.9ms | ActiveRecord: 0.9ms)
|
13452
|
+
|
13453
|
+
|
13454
|
+
Started GET "/UserMailer::Preview/welcome.html" for 127.0.0.1 at 2013-07-17 13:41:57 +1000
|
13455
|
+
Processing by LetterBomb::MailersController#show as HTML
|
13456
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
13457
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13458
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 03:41:57 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:41:57 UTC +00:00]]
|
13459
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
13460
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
13461
|
+
[1m[36m (1.5ms)[0m [1mrollback transaction[0m
|
13462
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.9ms)
|
13463
|
+
Completed 200 OK in 18ms (Views: 2.2ms | ActiveRecord: 2.0ms)
|
13464
|
+
|
13465
|
+
|
13466
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:41:59 +1000
|
13467
|
+
Processing by LetterBomb::MailersController#show as HTML
|
13468
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
13469
|
+
[1m[35m (0.1ms)[0m begin transaction
|
13470
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 03:41:59 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:41:59 UTC +00:00]]
|
13471
|
+
Rendered user_mailer/welcome.html.erb (0.1ms)
|
13472
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
13473
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
13474
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.8ms)
|
13475
|
+
Completed 200 OK in 19ms (Views: 2.1ms | ActiveRecord: 1.0ms)
|
13476
|
+
|
13477
|
+
|
13478
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:42:00 +1000
|
13479
|
+
Processing by LetterBomb::MailersController#show as HTML
|
13480
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
13481
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
13482
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 03:42:00 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:42:00 UTC +00:00]]
|
13483
|
+
Rendered user_mailer/welcome.html.erb (0.1ms)
|
13484
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
13485
|
+
[1m[36m (1.4ms)[0m [1mrollback transaction[0m
|
13486
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.9ms)
|
13487
|
+
Completed 200 OK in 47ms (Views: 2.1ms | ActiveRecord: 1.9ms)
|
13488
|
+
|
13489
|
+
|
13490
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:42:23 +1000
|
13491
|
+
Processing by LetterBomb::MailersController#show as HTML
|
13492
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
13493
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13494
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 03:42:23 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:42:23 UTC +00:00]]
|
13495
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
13496
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
13497
|
+
[1m[35m (1.4ms)[0m rollback transaction
|
13498
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.8ms)
|
13499
|
+
Completed 200 OK in 16ms (Views: 2.0ms | ActiveRecord: 1.9ms)
|
13500
|
+
Connecting to database specified by database.yml
|
13501
|
+
|
13502
|
+
|
13503
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:42:29 +1000
|
13504
|
+
Processing by LetterBomb::MailersController#show as HTML
|
13505
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
13506
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
13507
|
+
[1m[35mSQL (4.2ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 03:42:30 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:42:30 UTC +00:00]]
|
13508
|
+
Rendered user_mailer/welcome.html.erb (0.9ms)
|
13509
|
+
Rendered user_mailer/welcome.text.erb (0.2ms)
|
13510
|
+
[1m[36m (1.4ms)[0m [1mrollback transaction[0m
|
13511
|
+
Completed 500 Internal Server Error in 331ms
|
13512
|
+
|
13513
|
+
NoMethodError (undefined method `content_type' for nil:NilClass):
|
13514
|
+
/Users/ags/code/letter_bomb/lib/letter_bomb/preview.rb:67:in `default_format'
|
13515
|
+
/Users/ags/code/letter_bomb/lib/letter_bomb/preview.rb:53:in `initialize'
|
13516
|
+
/Users/ags/code/letter_bomb/lib/letter_bomb/preview.rb:18:in `new'
|
13517
|
+
/Users/ags/code/letter_bomb/lib/letter_bomb/preview.rb:18:in `block in preview_action'
|
13518
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/database_statements.rb:192:in `transaction'
|
13519
|
+
activerecord (3.2.13) lib/active_record/transactions.rb:208:in `transaction'
|
13520
|
+
/Users/ags/code/letter_bomb/lib/letter_bomb/preview.rb:16:in `preview_action'
|
13521
|
+
/Users/ags/code/letter_bomb/app/controllers/letter_bomb/mailers_controller.rb:11:in `show'
|
13522
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
13523
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
|
13524
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
13525
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
13526
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:403:in `_run__1728222665848077301__process_action__53354594250984271__callbacks'
|
13527
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
13528
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
13529
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
13530
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
13531
|
+
actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
13532
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
13533
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
13534
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
13535
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
13536
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
13537
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
13538
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
13539
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
|
13540
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
|
13541
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
|
13542
|
+
actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
13543
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
|
13544
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
13545
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
13546
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
13547
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
13548
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
13549
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
13550
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
13551
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
13552
|
+
railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
13553
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
13554
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
13555
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
13556
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
13557
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
13558
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
13559
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
13560
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
13561
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
13562
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
13563
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
13564
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
13565
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
13566
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
13567
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
13568
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
13569
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__3647814524867866456__call__2537418227586484132__callbacks'
|
13570
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
13571
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
13572
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
13573
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
13574
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
13575
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
13576
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
13577
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
13578
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
13579
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
13580
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
13581
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
13582
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
13583
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
13584
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
13585
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
13586
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
13587
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
13588
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
13589
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
13590
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
13591
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
13592
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
13593
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
13594
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
13595
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
13596
|
+
|
13597
|
+
|
13598
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
|
13599
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
|
13600
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.8ms)
|
13601
|
+
Connecting to database specified by database.yml
|
13602
|
+
|
13603
|
+
|
13604
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:45:58 +1000
|
13605
|
+
Processing by LetterBomb::MailersController#show as HTML
|
13606
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
13607
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
13608
|
+
[1m[35mSQL (3.3ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 03:45:58 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:45:58 UTC +00:00]]
|
13609
|
+
Rendered user_mailer/welcome.html.erb (1.2ms)
|
13610
|
+
Rendered user_mailer/welcome.text.erb (0.4ms)
|
13611
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
13612
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (2.9ms)
|
13613
|
+
Completed 200 OK in 277ms (Views: 4.8ms | ActiveRecord: 4.9ms)
|
13614
|
+
|
13615
|
+
|
13616
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:46:13 +1000
|
13617
|
+
Processing by LetterBomb::MailersController#show as HTML
|
13618
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
13619
|
+
[1m[35m (0.1ms)[0m begin transaction
|
13620
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 03:46:13 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:46:13 UTC +00:00]]
|
13621
|
+
Rendered user_mailer/welcome.html.erb (0.1ms)
|
13622
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
13623
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
13624
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (1.4ms)
|
13625
|
+
Completed 200 OK in 21ms (Views: 3.5ms | ActiveRecord: 0.9ms)
|
13626
|
+
|
13627
|
+
|
13628
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:46:14 +1000
|
13629
|
+
Processing by LetterBomb::MailersController#show as HTML
|
13630
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
13631
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
13632
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 03:46:14 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:46:14 UTC +00:00]]
|
13633
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
13634
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
13635
|
+
[1m[36m (1.5ms)[0m [1mrollback transaction[0m
|
13636
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.8ms)
|
13637
|
+
Completed 200 OK in 16ms (Views: 2.0ms | ActiveRecord: 1.8ms)
|
13638
|
+
Connecting to database specified by database.yml
|
13639
|
+
|
13640
|
+
|
13641
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:46:18 +1000
|
13642
|
+
Processing by LetterBomb::MailersController#show as HTML
|
13643
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
13644
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
13645
|
+
[1m[35mSQL (2.5ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 03:46:19 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:46:19 UTC +00:00]]
|
13646
|
+
Rendered user_mailer/welcome.html.erb (0.9ms)
|
13647
|
+
Rendered user_mailer/welcome.text.erb (0.2ms)
|
13648
|
+
[1m[36m (1.4ms)[0m [1mrollback transaction[0m
|
13649
|
+
Completed 500 Internal Server Error in 317ms
|
13650
|
+
|
13651
|
+
RuntimeError ("multipart/alternative; boundary=\"--==_mimepart_51e6138b3d497_154303fd202f80b9c8665e\"; charset=UTF-8"):
|
13652
|
+
/Users/ags/code/letter_bomb/lib/letter_bomb/preview.rb:68:in `default_format'
|
13653
|
+
/Users/ags/code/letter_bomb/lib/letter_bomb/preview.rb:55:in `initialize'
|
13654
|
+
/Users/ags/code/letter_bomb/lib/letter_bomb/preview.rb:18:in `new'
|
13655
|
+
/Users/ags/code/letter_bomb/lib/letter_bomb/preview.rb:18:in `block in preview_action'
|
13656
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/database_statements.rb:192:in `transaction'
|
13657
|
+
activerecord (3.2.13) lib/active_record/transactions.rb:208:in `transaction'
|
13658
|
+
/Users/ags/code/letter_bomb/lib/letter_bomb/preview.rb:16:in `preview_action'
|
13659
|
+
/Users/ags/code/letter_bomb/app/controllers/letter_bomb/mailers_controller.rb:11:in `show'
|
13660
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
13661
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
|
13662
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
13663
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
13664
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:403:in `_run__2608605032450422607__process_action__1259909128544832216__callbacks'
|
13665
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
13666
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
13667
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
13668
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
13669
|
+
actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
13670
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
13671
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
13672
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
13673
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
13674
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
13675
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
13676
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
13677
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
|
13678
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
|
13679
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
|
13680
|
+
actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
13681
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
|
13682
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
13683
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
13684
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
13685
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
13686
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
13687
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
13688
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
13689
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
13690
|
+
railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
13691
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
13692
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
13693
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
13694
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
13695
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
13696
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
13697
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
13698
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
13699
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
13700
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
13701
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
13702
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
13703
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
13704
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
13705
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
13706
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
13707
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__374652809706827304__call__3326718071893748832__callbacks'
|
13708
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
13709
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
13710
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
13711
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
13712
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
13713
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
13714
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
13715
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
13716
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
13717
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
13718
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
13719
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
13720
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
13721
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
13722
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
13723
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
13724
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
13725
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
13726
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
13727
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
13728
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
13729
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
13730
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
13731
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
13732
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
13733
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
13734
|
+
|
13735
|
+
|
13736
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
|
13737
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
13738
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.7ms)
|
13739
|
+
|
13740
|
+
|
13741
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:46:45 +1000
|
13742
|
+
Processing by LetterBomb::MailersController#show as HTML
|
13743
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
13744
|
+
[1m[35m (0.1ms)[0m begin transaction
|
13745
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 03:46:45 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:46:45 UTC +00:00]]
|
13746
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
13747
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
13748
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
13749
|
+
Completed 500 Internal Server Error in 38ms
|
13750
|
+
|
13751
|
+
RuntimeError ("multipart/alternative; boundary=\"--==_mimepart_51e613a54b23e_154303fd202f80b9c867b8\"; charset=UTF-8"):
|
13752
|
+
/Users/ags/code/letter_bomb/lib/letter_bomb/preview.rb:68:in `default_format'
|
13753
|
+
/Users/ags/code/letter_bomb/lib/letter_bomb/preview.rb:55:in `initialize'
|
13754
|
+
/Users/ags/code/letter_bomb/lib/letter_bomb/preview.rb:18:in `new'
|
13755
|
+
/Users/ags/code/letter_bomb/lib/letter_bomb/preview.rb:18:in `block in preview_action'
|
13756
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/database_statements.rb:192:in `transaction'
|
13757
|
+
activerecord (3.2.13) lib/active_record/transactions.rb:208:in `transaction'
|
13758
|
+
/Users/ags/code/letter_bomb/lib/letter_bomb/preview.rb:16:in `preview_action'
|
13759
|
+
/Users/ags/code/letter_bomb/app/controllers/letter_bomb/mailers_controller.rb:11:in `show'
|
13760
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
13761
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
|
13762
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
13763
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
13764
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:403:in `_run__2608605032450422607__process_action__1259909128544832216__callbacks'
|
13765
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
13766
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
13767
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
13768
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
13769
|
+
actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
13770
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
13771
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
13772
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
13773
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
13774
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
13775
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
13776
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
13777
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
|
13778
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
|
13779
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
|
13780
|
+
actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
13781
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
|
13782
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
13783
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
13784
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
13785
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
13786
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
13787
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
13788
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
13789
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
13790
|
+
railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
13791
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
13792
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
13793
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
13794
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
13795
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
13796
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
13797
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
13798
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
13799
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
13800
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
13801
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
13802
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
13803
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
13804
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
13805
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
13806
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
13807
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__374652809706827304__call__3326718071893748832__callbacks'
|
13808
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
13809
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
13810
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
13811
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
13812
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
13813
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
13814
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
13815
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
13816
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
13817
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
13818
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
13819
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
13820
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
13821
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
13822
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
13823
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
13824
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
13825
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
13826
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
13827
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
13828
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
13829
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
13830
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
13831
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
13832
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
13833
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
13834
|
+
|
13835
|
+
|
13836
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
|
13837
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
|
13838
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.1ms)
|
13839
|
+
Connecting to database specified by database.yml
|
13840
|
+
|
13841
|
+
|
13842
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:46:51 +1000
|
13843
|
+
Processing by LetterBomb::MailersController#show as HTML
|
13844
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
13845
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
13846
|
+
[1m[35mSQL (3.0ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 03:46:51 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:46:51 UTC +00:00]]
|
13847
|
+
Rendered user_mailer/welcome.html.erb (0.9ms)
|
13848
|
+
Rendered user_mailer/welcome.text.erb (0.2ms)
|
13849
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
13850
|
+
Completed 500 Internal Server Error in 281ms
|
13851
|
+
|
13852
|
+
RuntimeError (#<Mail::Message:70360932140160, Multipart: true, Headers: <From: bar@example.com>, <To: foo@example.com>, <Subject: welcome to the show!>, <Mime-Version: 1.0>, <Content-Type: multipart/alternative; boundary="--==_mimepart_51e613aba2456_1549a3ffe2fd2b6b858551"; charset=UTF-8>>):
|
13853
|
+
/Users/ags/code/letter_bomb/lib/letter_bomb/preview.rb:68:in `default_format'
|
13854
|
+
/Users/ags/code/letter_bomb/lib/letter_bomb/preview.rb:55:in `initialize'
|
13855
|
+
/Users/ags/code/letter_bomb/lib/letter_bomb/preview.rb:18:in `new'
|
13856
|
+
/Users/ags/code/letter_bomb/lib/letter_bomb/preview.rb:18:in `block in preview_action'
|
13857
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/database_statements.rb:192:in `transaction'
|
13858
|
+
activerecord (3.2.13) lib/active_record/transactions.rb:208:in `transaction'
|
13859
|
+
/Users/ags/code/letter_bomb/lib/letter_bomb/preview.rb:16:in `preview_action'
|
13860
|
+
/Users/ags/code/letter_bomb/app/controllers/letter_bomb/mailers_controller.rb:11:in `show'
|
13861
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
13862
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
|
13863
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
13864
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
13865
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:403:in `_run__2015133857820264473__process_action__3542092487216198261__callbacks'
|
13866
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
13867
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
13868
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
13869
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
13870
|
+
actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
13871
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
13872
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
13873
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
13874
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
13875
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
13876
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
13877
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
13878
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
|
13879
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
|
13880
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
|
13881
|
+
actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
13882
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
|
13883
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
13884
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
13885
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
13886
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
13887
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
13888
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
13889
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
13890
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
13891
|
+
railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
13892
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
13893
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
13894
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
13895
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
13896
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
13897
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
13898
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
13899
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
13900
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
13901
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
13902
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
13903
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
13904
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
13905
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
13906
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
13907
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
13908
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__761919804191525891__call__859242345517260852__callbacks'
|
13909
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
13910
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
13911
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
13912
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
13913
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
13914
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
13915
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
13916
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
13917
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
13918
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
13919
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
13920
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
13921
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
13922
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
13923
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
13924
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
13925
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
13926
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
13927
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
13928
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
13929
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
13930
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
13931
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
13932
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
13933
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
13934
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
13935
|
+
|
13936
|
+
|
13937
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
|
13938
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
|
13939
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.2ms)
|
13940
|
+
|
13941
|
+
|
13942
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:47:27 +1000
|
13943
|
+
Processing by LetterBomb::MailersController#show as HTML
|
13944
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
13945
|
+
[1m[35m (0.1ms)[0m begin transaction
|
13946
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 03:47:27 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:47:27 UTC +00:00]]
|
13947
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
13948
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
13949
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
13950
|
+
Completed 500 Internal Server Error in 14ms
|
13951
|
+
|
13952
|
+
RuntimeError (#<Mail::Message:70360934831000, Multipart: true, Headers: <From: bar@example.com>, <To: foo@example.com>, <Subject: welcome to the show!>, <Mime-Version: 1.0>, <Content-Type: multipart/alternative; boundary="--==_mimepart_51e613cf91f7f_1549a3ffe2e67c87c586e6"; charset=UTF-8>>):
|
13953
|
+
/Users/ags/code/letter_bomb/lib/letter_bomb/preview.rb:68:in `default_format'
|
13954
|
+
/Users/ags/code/letter_bomb/lib/letter_bomb/preview.rb:55:in `initialize'
|
13955
|
+
/Users/ags/code/letter_bomb/lib/letter_bomb/preview.rb:18:in `new'
|
13956
|
+
/Users/ags/code/letter_bomb/lib/letter_bomb/preview.rb:18:in `block in preview_action'
|
13957
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/database_statements.rb:192:in `transaction'
|
13958
|
+
activerecord (3.2.13) lib/active_record/transactions.rb:208:in `transaction'
|
13959
|
+
/Users/ags/code/letter_bomb/lib/letter_bomb/preview.rb:16:in `preview_action'
|
13960
|
+
/Users/ags/code/letter_bomb/app/controllers/letter_bomb/mailers_controller.rb:11:in `show'
|
13961
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
13962
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
|
13963
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
13964
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
13965
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:403:in `_run__2015133857820264473__process_action__3542092487216198261__callbacks'
|
13966
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
13967
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
13968
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
13969
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
13970
|
+
actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
13971
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
13972
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
13973
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
13974
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
13975
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
13976
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
13977
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
13978
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
|
13979
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
|
13980
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
|
13981
|
+
actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
13982
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
|
13983
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
13984
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
13985
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
13986
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
13987
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
13988
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
13989
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
13990
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
13991
|
+
railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
13992
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
13993
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
13994
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
13995
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
13996
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
13997
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
13998
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
13999
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
14000
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
14001
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
14002
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
14003
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
14004
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
14005
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
14006
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
14007
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
14008
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__761919804191525891__call__859242345517260852__callbacks'
|
14009
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
14010
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
14011
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
14012
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
14013
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
14014
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
14015
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
14016
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
14017
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
14018
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
14019
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
14020
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
14021
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
14022
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
14023
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
14024
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
14025
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
14026
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
14027
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
14028
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
14029
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
14030
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
14031
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
14032
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
14033
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
14034
|
+
/Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
14035
|
+
|
14036
|
+
|
14037
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
|
14038
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
|
14039
|
+
Rendered /Users/ags/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.8ms)
|
14040
|
+
Connecting to database specified by database.yml
|
14041
|
+
|
14042
|
+
|
14043
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:47:34 +1000
|
14044
|
+
Processing by LetterBomb::MailersController#show as HTML
|
14045
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
14046
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
14047
|
+
[1m[35mSQL (2.8ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 03:47:34 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:47:34 UTC +00:00]]
|
14048
|
+
Rendered user_mailer/welcome.html.erb (1.8ms)
|
14049
|
+
Rendered user_mailer/welcome.text.erb (0.4ms)
|
14050
|
+
[1m[36m (1.4ms)[0m [1mrollback transaction[0m
|
14051
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (2.7ms)
|
14052
|
+
Completed 200 OK in 256ms (Views: 4.5ms | ActiveRecord: 5.2ms)
|
14053
|
+
|
14054
|
+
|
14055
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:47:35 +1000
|
14056
|
+
Processing by LetterBomb::MailersController#show as HTML
|
14057
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
14058
|
+
[1m[35m (0.1ms)[0m begin transaction
|
14059
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 03:47:35 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:47:35 UTC +00:00]]
|
14060
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
14061
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
14062
|
+
[1m[35m (1.5ms)[0m rollback transaction
|
14063
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.9ms)
|
14064
|
+
Completed 200 OK in 16ms (Views: 2.1ms | ActiveRecord: 2.0ms)
|
14065
|
+
|
14066
|
+
|
14067
|
+
Started GET "/UserMailer::Preview/welcome.txt" for 127.0.0.1 at 2013-07-17 13:47:35 +1000
|
14068
|
+
Processing by LetterBomb::MailersController#show as TEXT
|
14069
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
14070
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
14071
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 03:47:35 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:47:35 UTC +00:00]]
|
14072
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
14073
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
14074
|
+
[1m[36m (1.4ms)[0m [1mrollback transaction[0m
|
14075
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.8ms)
|
14076
|
+
Completed 200 OK in 16ms (Views: 2.0ms | ActiveRecord: 1.8ms)
|
14077
|
+
|
14078
|
+
|
14079
|
+
Started GET "/UserMailer::Preview/welcome.html" for 127.0.0.1 at 2013-07-17 13:47:36 +1000
|
14080
|
+
Processing by LetterBomb::MailersController#show as HTML
|
14081
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
14082
|
+
[1m[35m (0.1ms)[0m begin transaction
|
14083
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 03:47:36 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:47:36 UTC +00:00]]
|
14084
|
+
Rendered user_mailer/welcome.html.erb (0.1ms)
|
14085
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
14086
|
+
[1m[35m (1.5ms)[0m rollback transaction
|
14087
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.9ms)
|
14088
|
+
Completed 200 OK in 40ms (Views: 2.0ms | ActiveRecord: 2.0ms)
|
14089
|
+
|
14090
|
+
|
14091
|
+
Started GET "/UserMailer::Preview/welcome.txt" for 127.0.0.1 at 2013-07-17 13:47:37 +1000
|
14092
|
+
Processing by LetterBomb::MailersController#show as TEXT
|
14093
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
14094
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
14095
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 03:47:37 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:47:37 UTC +00:00]]
|
14096
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
14097
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
14098
|
+
[1m[36m (1.7ms)[0m [1mrollback transaction[0m
|
14099
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.9ms)
|
14100
|
+
Completed 200 OK in 17ms (Views: 2.1ms | ActiveRecord: 2.1ms)
|
14101
|
+
|
14102
|
+
|
14103
|
+
Started GET "/UserMailer::Preview/welcome.html" for 127.0.0.1 at 2013-07-17 13:47:37 +1000
|
14104
|
+
Processing by LetterBomb::MailersController#show as HTML
|
14105
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
14106
|
+
[1m[35m (0.1ms)[0m begin transaction
|
14107
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 03:47:37 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:47:37 UTC +00:00]]
|
14108
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
14109
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
14110
|
+
[1m[35m (1.5ms)[0m rollback transaction
|
14111
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.8ms)
|
14112
|
+
Completed 200 OK in 21ms (Views: 2.0ms | ActiveRecord: 1.9ms)
|
14113
|
+
|
14114
|
+
|
14115
|
+
Started GET "/" for 127.0.0.1 at 2013-07-17 13:47:41 +1000
|
14116
|
+
Processing by LetterBomb::MailersController#index as HTML
|
14117
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/index.html.erb within layouts/letter_bomb/application (1.4ms)
|
14118
|
+
Completed 200 OK in 7ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
14119
|
+
|
14120
|
+
|
14121
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:47:42 +1000
|
14122
|
+
Processing by LetterBomb::MailersController#show as HTML
|
14123
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
14124
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
14125
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 03:47:42 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:47:42 UTC +00:00]]
|
14126
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
14127
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
14128
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
14129
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.8ms)
|
14130
|
+
Completed 200 OK in 16ms (Views: 2.0ms | ActiveRecord: 0.9ms)
|
14131
|
+
|
14132
|
+
|
14133
|
+
Started GET "/UserMailer::Preview/welcome.txt" for 127.0.0.1 at 2013-07-17 13:47:43 +1000
|
14134
|
+
Processing by LetterBomb::MailersController#show as TEXT
|
14135
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
14136
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14137
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 03:47:43 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:47:43 UTC +00:00]]
|
14138
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
14139
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
14140
|
+
[1m[35m (1.4ms)[0m rollback transaction
|
14141
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (2.2ms)
|
14142
|
+
Completed 200 OK in 18ms (Views: 3.6ms | ActiveRecord: 1.8ms)
|
14143
|
+
|
14144
|
+
|
14145
|
+
Started GET "/UserMailer::Preview/welcome.html" for 127.0.0.1 at 2013-07-17 13:47:44 +1000
|
14146
|
+
Processing by LetterBomb::MailersController#show as HTML
|
14147
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
14148
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
14149
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 03:47:44 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:47:44 UTC +00:00]]
|
14150
|
+
Rendered user_mailer/welcome.html.erb (0.1ms)
|
14151
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
14152
|
+
[1m[36m (1.6ms)[0m [1mrollback transaction[0m
|
14153
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.8ms)
|
14154
|
+
Completed 200 OK in 21ms (Views: 2.0ms | ActiveRecord: 2.1ms)
|
14155
|
+
|
14156
|
+
|
14157
|
+
Started GET "/UserMailer::Preview/welcome.html" for 127.0.0.1 at 2013-07-17 13:55:38 +1000
|
14158
|
+
Processing by LetterBomb::MailersController#show as HTML
|
14159
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
14160
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14161
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 03:55:38 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:55:38 UTC +00:00]]
|
14162
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
14163
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
14164
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
14165
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.8ms)
|
14166
|
+
Completed 200 OK in 16ms (Views: 2.0ms | ActiveRecord: 0.8ms)
|
14167
|
+
|
14168
|
+
|
14169
|
+
Started GET "/UserMailer::Preview/welcome.html" for 127.0.0.1 at 2013-07-17 13:55:56 +1000
|
14170
|
+
Processing by LetterBomb::MailersController#show as HTML
|
14171
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
14172
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
14173
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 03:55:56 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:55:56 UTC +00:00]]
|
14174
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
14175
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
14176
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
14177
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (2.4ms)
|
14178
|
+
Completed 200 OK in 19ms (Views: 4.2ms | ActiveRecord: 0.8ms)
|
14179
|
+
|
14180
|
+
|
14181
|
+
Started GET "/UserMailer::Preview/welcome.html" for 127.0.0.1 at 2013-07-17 13:56:09 +1000
|
14182
|
+
Processing by LetterBomb::MailersController#show as HTML
|
14183
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
14184
|
+
[1m[35m (0.1ms)[0m begin transaction
|
14185
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 03:56:09 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:56:09 UTC +00:00]]
|
14186
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
14187
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
14188
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
14189
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (1.3ms)
|
14190
|
+
Completed 200 OK in 16ms (Views: 2.5ms | ActiveRecord: 0.9ms)
|
14191
|
+
|
14192
|
+
|
14193
|
+
Started GET "/UserMailer::Preview/welcome.html" for 127.0.0.1 at 2013-07-17 13:56:20 +1000
|
14194
|
+
Processing by LetterBomb::MailersController#show as HTML
|
14195
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
14196
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
14197
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 03:56:20 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:56:20 UTC +00:00]]
|
14198
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
14199
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
14200
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
14201
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.8ms)
|
14202
|
+
Completed 200 OK in 15ms (Views: 2.0ms | ActiveRecord: 0.7ms)
|
14203
|
+
|
14204
|
+
|
14205
|
+
Started GET "/UserMailer::Preview/welcome.html" for 127.0.0.1 at 2013-07-17 13:56:30 +1000
|
14206
|
+
Processing by LetterBomb::MailersController#show as HTML
|
14207
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
14208
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14209
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 03:56:30 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:56:30 UTC +00:00]]
|
14210
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
14211
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
14212
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
14213
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (1.7ms)
|
14214
|
+
Completed 200 OK in 16ms (Views: 3.1ms | ActiveRecord: 0.8ms)
|
14215
|
+
|
14216
|
+
|
14217
|
+
Started GET "/UserMailer::Preview/welcome.html" for 127.0.0.1 at 2013-07-17 13:56:44 +1000
|
14218
|
+
Processing by LetterBomb::MailersController#show as HTML
|
14219
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
14220
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
14221
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 03:56:44 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:56:44 UTC +00:00]]
|
14222
|
+
Rendered user_mailer/welcome.html.erb (0.1ms)
|
14223
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
14224
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
14225
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.8ms)
|
14226
|
+
Completed 200 OK in 18ms (Views: 2.1ms | ActiveRecord: 0.9ms)
|
14227
|
+
|
14228
|
+
|
14229
|
+
Started GET "/UserMailer::Preview/welcome.html" for 127.0.0.1 at 2013-07-17 13:57:01 +1000
|
14230
|
+
Processing by LetterBomb::MailersController#show as HTML
|
14231
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
14232
|
+
[1m[35m (0.0ms)[0m begin transaction
|
14233
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 03:57:01 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:57:01 UTC +00:00]]
|
14234
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
14235
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
14236
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
14237
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.8ms)
|
14238
|
+
Completed 200 OK in 17ms (Views: 2.1ms | ActiveRecord: 0.8ms)
|
14239
|
+
|
14240
|
+
|
14241
|
+
Started GET "/UserMailer::Preview/welcome.html" for 127.0.0.1 at 2013-07-17 13:57:51 +1000
|
14242
|
+
Processing by LetterBomb::MailersController#show as HTML
|
14243
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
14244
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
14245
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 03:57:51 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:57:51 UTC +00:00]]
|
14246
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
14247
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
14248
|
+
[1m[36m (1.5ms)[0m [1mrollback transaction[0m
|
14249
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (1.7ms)
|
14250
|
+
Completed 200 OK in 21ms (Views: 4.0ms | ActiveRecord: 2.1ms)
|
14251
|
+
|
14252
|
+
|
14253
|
+
Started GET "/UserMailer::Preview/welcome.txt" for 127.0.0.1 at 2013-07-17 13:57:53 +1000
|
14254
|
+
Processing by LetterBomb::MailersController#show as TEXT
|
14255
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
14256
|
+
[1m[35m (0.1ms)[0m begin transaction
|
14257
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 03:57:53 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:57:53 UTC +00:00]]
|
14258
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
14259
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
14260
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
14261
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.7ms)
|
14262
|
+
Completed 200 OK in 17ms (Views: 1.9ms | ActiveRecord: 1.2ms)
|
14263
|
+
|
14264
|
+
|
14265
|
+
Started GET "/UserMailer::Preview/welcome.html" for 127.0.0.1 at 2013-07-17 13:57:53 +1000
|
14266
|
+
Processing by LetterBomb::MailersController#show as HTML
|
14267
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
14268
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
14269
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 17 Jul 2013 03:57:53 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:57:53 UTC +00:00]]
|
14270
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
14271
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
14272
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
14273
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.9ms)
|
14274
|
+
Completed 200 OK in 19ms (Views: 2.2ms | ActiveRecord: 0.9ms)
|
14275
|
+
|
14276
|
+
|
14277
|
+
Started GET "/" for 127.0.0.1 at 2013-07-17 13:57:55 +1000
|
14278
|
+
Processing by LetterBomb::MailersController#index as HTML
|
14279
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/index.html.erb within layouts/letter_bomb/application (1.4ms)
|
14280
|
+
Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
14281
|
+
|
14282
|
+
|
14283
|
+
Started GET "/UserMailer::Preview/welcome" for 127.0.0.1 at 2013-07-17 13:58:08 +1000
|
14284
|
+
Processing by LetterBomb::MailersController#show as HTML
|
14285
|
+
Parameters: {"mailer_class"=>"UserMailer::Preview", "mailer_action"=>"welcome"}
|
14286
|
+
[1m[35m (0.1ms)[0m begin transaction
|
14287
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Wed, 17 Jul 2013 03:58:08 UTC +00:00], ["name", "john"], ["updated_at", Wed, 17 Jul 2013 03:58:08 UTC +00:00]]
|
14288
|
+
Rendered user_mailer/welcome.html.erb (0.0ms)
|
14289
|
+
Rendered user_mailer/welcome.text.erb (0.0ms)
|
14290
|
+
[1m[35m (1.3ms)[0m rollback transaction
|
14291
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/show.html.erb within layouts/letter_bomb/application (0.9ms)
|
14292
|
+
Completed 200 OK in 17ms (Views: 2.1ms | ActiveRecord: 1.8ms)
|
14293
|
+
|
14294
|
+
|
14295
|
+
Started GET "/" for 127.0.0.1 at 2013-07-17 14:55:35 +1000
|
14296
|
+
Processing by LetterBomb::MailersController#index as HTML
|
14297
|
+
Rendered /Users/ags/code/letter_bomb/app/views/letter_bomb/mailers/index.html.erb within layouts/letter_bomb/application (1.8ms)
|
14298
|
+
Completed 200 OK in 12ms (Views: 4.8ms | ActiveRecord: 0.0ms)
|