inbox 0.2.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (152) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +18 -0
  3. data/LICENSE.txt +22 -0
  4. data/README.md +162 -74
  5. data/Rakefile +35 -30
  6. data/VERSION +1 -0
  7. data/example/.gitignore +16 -0
  8. data/example/Gemfile +39 -0
  9. data/example/README.rdoc +28 -0
  10. data/{test/dummy → example}/Rakefile +1 -2
  11. data/{app/views/inbox/emails/index.html.erb → example/app/assets/images/.keep} +0 -0
  12. data/example/app/assets/javascripts/application.js +16 -0
  13. data/example/app/assets/javascripts/welcome.js.coffee +3 -0
  14. data/example/app/assets/stylesheets/application.css +15 -0
  15. data/example/app/assets/stylesheets/welcome.css.scss +3 -0
  16. data/example/app/controllers/application_controller.rb +61 -0
  17. data/{test/dummy/db/development.sqlite3 → example/app/controllers/concerns/.keep} +0 -0
  18. data/{test/dummy → example}/app/helpers/application_helper.rb +0 -0
  19. data/example/app/helpers/welcome_helper.rb +2 -0
  20. data/{test/dummy/db/production.sqlite3 → example/app/mailers/.keep} +0 -0
  21. data/{test/dummy/db/test.sqlite3 → example/app/models/.keep} +0 -0
  22. data/{test/dummy/log/test.log → example/app/models/concerns/.keep} +0 -0
  23. data/example/app/views/layouts/application.html.erb +14 -0
  24. data/example/app/views/welcome/index.html.erb +2 -0
  25. data/example/bin/bundle +3 -0
  26. data/example/bin/rails +8 -0
  27. data/example/bin/rake +8 -0
  28. data/example/bin/spring +18 -0
  29. data/{test/dummy → example}/config.ru +1 -1
  30. data/example/config/application.rb +23 -0
  31. data/example/config/boot.rb +4 -0
  32. data/{test/dummy → example}/config/database.yml +8 -8
  33. data/example/config/environment.rb +5 -0
  34. data/example/config/environments/development.rb +39 -0
  35. data/example/config/environments/production.rb +82 -0
  36. data/example/config/environments/test.rb +41 -0
  37. data/example/config/initializers/assets.rb +8 -0
  38. data/{test/dummy → example}/config/initializers/backtrace_silencers.rb +1 -1
  39. data/example/config/initializers/cookies_serializer.rb +3 -0
  40. data/example/config/initializers/filter_parameter_logging.rb +4 -0
  41. data/example/config/initializers/inflections.rb +16 -0
  42. data/{test/dummy → example}/config/initializers/mime_types.rb +0 -1
  43. data/example/config/initializers/session_store.rb +3 -0
  44. data/{test/dummy → example}/config/initializers/wrap_parameters.rb +6 -6
  45. data/example/config/locales/en.yml +23 -0
  46. data/example/config/routes.rb +59 -0
  47. data/example/config/secrets.yml +22 -0
  48. data/example/db/seeds.rb +7 -0
  49. data/{test/dummy/public/favicon.ico → example/lib/assets/.keep} +0 -0
  50. data/example/lib/tasks/.keep +0 -0
  51. data/example/log/.keep +0 -0
  52. data/example/public/404.html +67 -0
  53. data/example/public/422.html +67 -0
  54. data/example/public/500.html +66 -0
  55. data/example/public/favicon.ico +0 -0
  56. data/example/public/robots.txt +5 -0
  57. data/example/test/controllers/.keep +0 -0
  58. data/example/test/controllers/welcome_controller_test.rb +9 -0
  59. data/example/test/fixtures/.keep +0 -0
  60. data/example/test/fixtures/users.yml +11 -0
  61. data/example/test/helpers/.keep +0 -0
  62. data/example/test/helpers/welcome_helper_test.rb +4 -0
  63. data/example/test/integration/.keep +0 -0
  64. data/example/test/mailers/.keep +0 -0
  65. data/example/test/models/.keep +0 -0
  66. data/{test/integration/navigation_test.rb → example/test/models/user_test.rb} +1 -4
  67. data/example/test/test_helper.rb +10 -0
  68. data/example/vendor/assets/javascripts/.keep +0 -0
  69. data/example/vendor/assets/stylesheets/.keep +0 -0
  70. data/inbox.gemspec +327 -0
  71. data/lib/contact.rb +10 -0
  72. data/lib/draft.rb +28 -0
  73. data/lib/file.rb +31 -0
  74. data/lib/inbox.rb +81 -20
  75. data/lib/message.rb +37 -0
  76. data/lib/namespace.rb +51 -0
  77. data/lib/restful_model.rb +76 -0
  78. data/lib/restful_model_collection.rb +131 -0
  79. data/lib/tag.rb +9 -0
  80. data/lib/thread.rb +60 -0
  81. data/lib/version.rb +3 -0
  82. data/spec/inbox_spec.rb +79 -0
  83. data/spec/restful_model_spec.rb +18 -0
  84. data/spec/spec_helper.rb +1 -0
  85. data/tasks/rspec.rake +3 -0
  86. metadata +1038 -181
  87. data/MIT-LICENSE +0 -20
  88. data/app/assets/images/inbox/results_bg.png +0 -0
  89. data/app/assets/images/inbox/tree_bg.png +0 -0
  90. data/app/assets/javascripts/inbox/application.js +0 -8
  91. data/app/assets/javascripts/inbox/emails.js +0 -2
  92. data/app/assets/stylesheets/inbox/application.css +0 -7
  93. data/app/assets/stylesheets/inbox/emails.css +0 -59
  94. data/app/assets/stylesheets/inbox/panel.css.erb +0 -229
  95. data/app/assets/stylesheets/inbox/reset.css +0 -53
  96. data/app/controllers/inbox/application_controller.rb +0 -4
  97. data/app/controllers/inbox/emails_controller.rb +0 -52
  98. data/app/helpers/inbox/application_helper.rb +0 -4
  99. data/app/helpers/inbox/emails_helper.rb +0 -4
  100. data/app/mailers/inbox/email_mailer.rb +0 -11
  101. data/app/models/inbox/email.rb +0 -51
  102. data/app/views/inbox/emails/new.html.erb +0 -9
  103. data/app/views/inbox/emails/show.html.erb +0 -48
  104. data/app/views/layouts/inbox/application.html.erb +0 -15
  105. data/app/views/layouts/inbox/inbox.html.erb +0 -25
  106. data/config/routes.rb +0 -6
  107. data/lib/inbox/engine.rb +0 -9
  108. data/lib/inbox/version.rb +0 -3
  109. data/lib/tasks/inbox_tasks.rake +0 -4
  110. data/test/dummy/app/assets/javascripts/application.js +0 -9
  111. data/test/dummy/app/assets/stylesheets/application.css +0 -7
  112. data/test/dummy/app/controllers/application_controller.rb +0 -3
  113. data/test/dummy/app/views/layouts/application.html.erb +0 -14
  114. data/test/dummy/config/application.rb +0 -45
  115. data/test/dummy/config/boot.rb +0 -10
  116. data/test/dummy/config/environment.rb +0 -5
  117. data/test/dummy/config/environments/development.rb +0 -32
  118. data/test/dummy/config/environments/production.rb +0 -60
  119. data/test/dummy/config/environments/test.rb +0 -42
  120. data/test/dummy/config/initializers/inflections.rb +0 -10
  121. data/test/dummy/config/initializers/secret_token.rb +0 -7
  122. data/test/dummy/config/initializers/session_store.rb +0 -8
  123. data/test/dummy/config/locales/en.yml +0 -5
  124. data/test/dummy/config/routes.rb +0 -4
  125. data/test/dummy/log/development.log +0 -3641
  126. data/test/dummy/public/404.html +0 -26
  127. data/test/dummy/public/422.html +0 -26
  128. data/test/dummy/public/500.html +0 -26
  129. data/test/dummy/script/rails +0 -6
  130. data/test/dummy/tmp/cache/assets/C4D/8B0/sprockets%2F5e1b589842222e2ea0043890c2c84539 +0 -0
  131. data/test/dummy/tmp/cache/assets/C6F/5C0/sprockets%2F259fb59d511a70d46436201b6770a04a +0 -0
  132. data/test/dummy/tmp/cache/assets/CF2/F90/sprockets%2F5378bb2470df984ccf2643991a6e476d +0 -0
  133. data/test/dummy/tmp/cache/assets/D0B/330/sprockets%2F582a2b19d6be92a0393afa63894d721a +0 -0
  134. data/test/dummy/tmp/cache/assets/D1B/CE0/sprockets%2F09c9c18794df089e62443d3debb117e5 +0 -0
  135. data/test/dummy/tmp/cache/assets/D1D/BA0/sprockets%2F29888f599d35bb11e4a8183d6dc5e23a +0 -0
  136. data/test/dummy/tmp/cache/assets/D1F/600/sprockets%2Fdd3578c9bd0719efe092c59655a25c55 +0 -0
  137. data/test/dummy/tmp/cache/assets/D21/920/sprockets%2F85fd59fe11746a33f5f917a923d84be3 +0 -0
  138. data/test/dummy/tmp/cache/assets/D4D/FB0/sprockets%2Fd5743837e8babdab4825364c4ee86f73 +0 -0
  139. data/test/dummy/tmp/cache/assets/D4F/520/sprockets%2F88ecb483df9e177ee775202ba0691ec7 +0 -0
  140. data/test/dummy/tmp/cache/assets/D6E/300/sprockets%2Fcc54b61039f74d6b8a2a7d04ad9d77f0 +0 -0
  141. data/test/dummy/tmp/cache/assets/D74/390/sprockets%2F5eda33e637dd54ff6a27bb76c482a473 +0 -0
  142. data/test/dummy/tmp/cache/assets/D76/170/sprockets%2Ffa5e461b362e11c80d5fd9e877fb63e2 +0 -0
  143. data/test/dummy/tmp/cache/assets/D7F/2D0/sprockets%2F141c2c9cb5235c8d21a00fbc8d7a2ab1 +0 -0
  144. data/test/dummy/tmp/cache/assets/D84/AA0/sprockets%2F5e841fe9d79e3ebf4333be8842b77bc5 +0 -0
  145. data/test/dummy/tmp/cache/assets/DA0/520/sprockets%2Fb8e93a54478c1f1a0e750ef2cbf74f3c +0 -0
  146. data/test/dummy/tmp/cache/assets/DC1/520/sprockets%2Feb8cea402f0bf04560adcd0cb8807b88 +0 -0
  147. data/test/dummy/tmp/mails/1345541756.4616725 +0 -11
  148. data/test/functional/inbox/email_test.rb +0 -9
  149. data/test/functional/inbox/emails_controller_test.rb +0 -16
  150. data/test/inbox_test.rb +0 -7
  151. data/test/test_helper.rb +0 -10
  152. data/test/unit/helpers/inbox/emails_helper_test.rb +0 -6
@@ -1,10 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # Add new inflection rules using the following format
4
- # (all these examples are active by default):
5
- # ActiveSupport::Inflector.inflections do |inflect|
6
- # inflect.plural /^(ox)$/i, '\1en'
7
- # inflect.singular /^(ox)en/i, '\1'
8
- # inflect.irregular 'person', 'people'
9
- # inflect.uncountable %w( fish sheep )
10
- # end
@@ -1,7 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # Your secret key for verifying the integrity of signed cookies.
4
- # If you change this key, all old signed cookies will become invalid!
5
- # Make sure the secret is at least 30 characters and all random,
6
- # no regular words or you'll be exposed to dictionary attacks.
7
- Dummy::Application.config.secret_token = 'c3904104c7de8542b252757e8e45133bc4f3b76f8bac3bc589e055c6e3fd21bae0d3dcff87e566b5021c3bb2af8f3806a5021b5c4d0d5c6fd4b457ccc52bed8c'
@@ -1,8 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
4
-
5
- # Use the database for sessions instead of the cookie-based default,
6
- # which shouldn't be used to store highly confidential information
7
- # (create the session table with "rails generate session_migration")
8
- # Dummy::Application.config.session_store :active_record_store
@@ -1,5 +0,0 @@
1
- # Sample localization file for English. Add more files in this directory for other locales.
2
- # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
-
4
- en:
5
- hello: "Hello world"
@@ -1,4 +0,0 @@
1
- Rails.application.routes.draw do
2
-
3
- mount Inbox::Engine => "/inbox"
4
- end
@@ -1,3641 +0,0 @@
1
-
2
-
3
- Started GET "/" for 127.0.0.1 at 2012-06-13 16:26:51 +0000
4
- Connecting to database specified by database.yml
5
-
6
- ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
7
- activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection'
8
- activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_specification.rb:168:in `retrieve_connection'
9
- activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_specification.rb:142:in `connection'
10
- activerecord (3.2.6) lib/active_record/query_cache.rb:67:in `rescue in call'
11
- activerecord (3.2.6) lib/active_record/query_cache.rb:61:in `call'
12
- activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
13
- actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
14
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__898540843895610776__call__4249813711378993270__callbacks'
15
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
16
- activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
17
- activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
18
- actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
19
- actionpack (3.2.6) lib/action_dispatch/middleware/reloader.rb:65:in `call'
20
- actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
21
- actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
22
- actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
23
- railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
24
- railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
25
- actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
26
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
27
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
28
- activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
29
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
30
- actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
31
- railties (3.2.6) lib/rails/engine.rb:479:in `call'
32
- railties (3.2.6) lib/rails/application.rb:220:in `call'
33
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
34
- railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
35
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
36
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
37
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
38
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
39
-
40
-
41
- Rendered /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
42
- Rendered /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms)
43
- Rendered /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (44.2ms)
44
-
45
-
46
- Started GET "/" for 127.0.0.1 at 2012-06-13 16:33:27 +0000
47
- Connecting to database specified by database.yml
48
-
49
- ActionController::RoutingError (No route matches [GET] "/"):
50
- actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
51
- actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
52
- railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
53
- railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
54
- actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
55
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
56
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
57
- activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
58
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
59
- actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
60
- railties (3.2.6) lib/rails/engine.rb:479:in `call'
61
- railties (3.2.6) lib/rails/application.rb:220:in `call'
62
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
63
- railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
64
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
65
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
66
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
67
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
68
-
69
-
70
- Rendered /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (14.7ms)
71
-
72
-
73
- Started GET "/inbox/robert.pankowecki@gmail.com/emails/new" for 127.0.0.1 at 2012-06-13 16:34:27 +0000
74
- Connecting to database specified by database.yml
75
- Processing by Inbox::EmailsController#new as HTML
76
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
77
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/new.html.erb within layouts/inbox/inbox (21.7ms)
78
- Compiled inbox/emails.css (0ms) (pid 28430)
79
- Compiled inbox/panel.css (3ms) (pid 28430)
80
- Compiled inbox/reset.css (0ms) (pid 28430)
81
- Compiled inbox/application.css (34ms) (pid 28430)
82
- Compiled inbox/emails.js (0ms) (pid 28430)
83
- Compiled inbox/application.js (23ms) (pid 28430)
84
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (122.6ms)
85
- Completed 200 OK in 168ms (Views: 167.3ms | ActiveRecord: 0.0ms)
86
-
87
-
88
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-06-13 16:34:28 +0000
89
- Served asset /inbox/application.css - 200 OK (33ms)
90
-
91
-
92
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-06-13 16:34:28 +0000
93
- Served asset /inbox/panel.css - 200 OK (3ms)
94
-
95
-
96
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-06-13 16:34:28 +0000
97
- Served asset /inbox/emails.css - 200 OK (3ms)
98
-
99
-
100
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-06-13 16:34:28 +0000
101
- Served asset /inbox/emails.js - 200 OK (2ms)
102
-
103
-
104
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-06-13 16:34:28 +0000
105
- Served asset /inbox/application.js - 200 OK (2ms)
106
-
107
-
108
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-06-13 16:34:28 +0000
109
- Served asset /inbox/reset.css - 200 OK (2ms)
110
-
111
-
112
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-06-13 16:34:28 +0000
113
- Served asset /inbox/results_bg.png - 200 OK (5ms)
114
-
115
-
116
- Started POST "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-06-13 16:34:55 +0000
117
- Processing by Inbox::EmailsController#create as HTML
118
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZequSLxwrItmFUm7WV4RXFm4iZF9d84UzZcyclBbAhk=", "email"=>{"from"=>"robert.pankowecki@gmail.com", "to"=>"robert.pankowecki@gmail.com", "cc"=>"", "bcc"=>"", "subject"=>"subject", "body"=>"body"}, "commit"=>"Create Email", "mail"=>"robert.pankowecki@gmail.com"}
119
- Rendered text template (0.0ms)
120
-
121
- Sent mail to robert.pankowecki@gmail.com (49ms)
122
- Date: Wed, 13 Jun 2012 16:34:55 +0000
123
- From: robert.pankowecki@gmail.com
124
- To: robert.pankowecki@gmail.com
125
- Message-ID: <4fd8c12f61d41_6f0e16855dc5703a@rupert-ThinkPad-T420.mail>
126
- Subject: subject
127
- Mime-Version: 1.0
128
- Content-Type: text/html;
129
- charset=UTF-8
130
- Content-Transfer-Encoding: 7bit
131
-
132
- body
133
- Redirected to http://localhost:3000/inbox/robert.pankowecki@gmail.com/emails
134
- Completed 302 Found in 140ms (ActiveRecord: 0.0ms)
135
-
136
-
137
- Started GET "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-06-13 16:34:55 +0000
138
- Processing by Inbox::EmailsController#index as HTML
139
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
140
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/index.html.erb within layouts/inbox/inbox (0.3ms)
141
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (2.0ms)
142
- Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
143
-
144
-
145
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-06-13 16:34:55 +0000
146
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
147
-
148
-
149
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-06-13 16:34:55 +0000
150
- Served asset /inbox/application.js - 304 Not Modified (0ms)
151
-
152
-
153
- Started GET "/inbox/robert.pankowecki@gmail.com/emails/4fd8c12f61d41_6f0e16855dc5703a@rupert-ThinkPad-T420.mail" for 127.0.0.1 at 2012-06-13 16:34:58 +0000
154
- Processing by Inbox::EmailsController#show as HTML
155
- Parameters: {"mail"=>"robert.pankowecki@gmail.com", "id"=>"4fd8c12f61d41_6f0e16855dc5703a@rupert-ThinkPad-T420.mail"}
156
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/show.html.erb within layouts/inbox/inbox (5.1ms)
157
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (1.9ms)
158
- Completed 200 OK in 12ms (Views: 10.8ms | ActiveRecord: 0.0ms)
159
-
160
-
161
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-06-13 16:34:58 +0000
162
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
163
-
164
-
165
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-06-13 16:34:58 +0000
166
- Served asset /inbox/application.js - 304 Not Modified (0ms)
167
-
168
-
169
- Started GET "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-06-13 17:05:27 +0000
170
- Connecting to database specified by database.yml
171
- Processing by Inbox::EmailsController#index as HTML
172
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
173
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/index.html.erb within layouts/inbox/inbox (1.4ms)
174
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (24.8ms)
175
- Completed 200 OK in 50ms (Views: 48.1ms | ActiveRecord: 0.0ms)
176
-
177
-
178
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-06-13 17:05:27 +0000
179
- Served asset /inbox/panel.css - 304 Not Modified (7ms)
180
-
181
-
182
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-06-13 17:05:27 +0000
183
- Served asset /inbox/reset.css - 304 Not Modified (2ms)
184
-
185
-
186
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-06-13 17:05:27 +0000
187
- Served asset /inbox/application.css - 304 Not Modified (3ms)
188
-
189
-
190
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-06-13 17:05:27 +0000
191
- Served asset /inbox/emails.css - 304 Not Modified (2ms)
192
-
193
-
194
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-06-13 17:05:27 +0000
195
- Served asset /inbox/emails.js - 304 Not Modified (3ms)
196
-
197
-
198
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-06-13 17:05:27 +0000
199
- Served asset /inbox/application.js - 304 Not Modified (5ms)
200
-
201
-
202
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-06-13 17:05:27 +0000
203
- Served asset /inbox/results_bg.png - 304 Not Modified (1ms)
204
-
205
-
206
- Started GET "/inbox/robert.pankowecki@gmail.com/emails/new" for 127.0.0.1 at 2012-06-13 17:05:30 +0000
207
- Processing by Inbox::EmailsController#new as HTML
208
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
209
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/new.html.erb within layouts/inbox/inbox (8.7ms)
210
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (3.2ms)
211
- Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.0ms)
212
-
213
-
214
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-06-13 17:05:30 +0000
215
- Served asset /inbox/application.css - 304 Not Modified (6ms)
216
-
217
-
218
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-06-13 17:05:30 +0000
219
- Served asset /inbox/panel.css - 304 Not Modified (0ms)
220
-
221
-
222
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-06-13 17:05:30 +0000
223
- Served asset /inbox/emails.css - 304 Not Modified (0ms)
224
-
225
-
226
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-06-13 17:05:30 +0000
227
- Served asset /inbox/application.js - 304 Not Modified (2ms)
228
-
229
-
230
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-06-13 17:05:30 +0000
231
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
232
-
233
-
234
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-06-13 17:05:30 +0000
235
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
236
-
237
-
238
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-06-13 17:05:30 +0000
239
- Served asset /inbox/results_bg.png - 304 Not Modified (0ms)
240
-
241
-
242
- Started POST "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-06-13 17:05:46 +0000
243
- Processing by Inbox::EmailsController#create as HTML
244
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZequSLxwrItmFUm7WV4RXFm4iZF9d84UzZcyclBbAhk=", "email"=>{"from"=>"robert.pankowecki@gmail.com", "to"=>"robert.pankowecki@gmail.com", "cc"=>"", "bcc"=>"", "subject"=>"subj", "body"=>"mess"}, "commit"=>"Create Email", "mail"=>"robert.pankowecki@gmail.com"}
245
- Rendered text template (0.0ms)
246
-
247
- Sent mail to robert.pankowecki@gmail.com (8ms)
248
- Date: Wed, 13 Jun 2012 17:05:46 +0000
249
- From: robert.pankowecki@gmail.com
250
- To: robert.pankowecki@gmail.com
251
- Message-ID: <4fd8c86a3032e_76383fafc4807ec0157a7@rupert-ThinkPad-T420.mail>
252
- Subject: subj
253
- Mime-Version: 1.0
254
- Content-Type: text/html;
255
- charset=UTF-8
256
- Content-Transfer-Encoding: 7bit
257
-
258
- mess
259
- Redirected to http://localhost:3000/inbox/robert.pankowecki@gmail.com/emails
260
- Completed 302 Found in 96ms (ActiveRecord: 0.0ms)
261
-
262
-
263
- Started GET "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-06-13 17:05:46 +0000
264
- Processing by Inbox::EmailsController#index as HTML
265
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
266
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/index.html.erb within layouts/inbox/inbox (0.0ms)
267
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (20.0ms)
268
- Completed 200 OK in 23ms (Views: 22.2ms | ActiveRecord: 0.0ms)
269
-
270
-
271
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-06-13 17:05:46 +0000
272
- Served asset /inbox/application.css - 304 Not Modified (1ms)
273
-
274
-
275
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-06-13 17:05:46 +0000
276
- Served asset /inbox/emails.css - 304 Not Modified (0ms)
277
-
278
-
279
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-06-13 17:05:46 +0000
280
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
281
-
282
-
283
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-06-13 17:05:46 +0000
284
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
285
-
286
-
287
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-06-13 17:05:46 +0000
288
- Served asset /inbox/application.js - 304 Not Modified (0ms)
289
-
290
-
291
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-06-13 17:05:46 +0000
292
- Served asset /inbox/panel.css - 304 Not Modified (0ms)
293
-
294
-
295
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-06-13 17:05:46 +0000
296
- Served asset /inbox/results_bg.png - 304 Not Modified (0ms)
297
-
298
-
299
- Started GET "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-06-13 17:05:47 +0000
300
- Processing by Inbox::EmailsController#index as HTML
301
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
302
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/index.html.erb within layouts/inbox/inbox (0.0ms)
303
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (3.1ms)
304
- Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.0ms)
305
-
306
-
307
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-06-13 17:05:47 +0000
308
- Served asset /inbox/application.css - 304 Not Modified (0ms)
309
-
310
-
311
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-06-13 17:05:47 +0000
312
- Served asset /inbox/emails.css - 304 Not Modified (0ms)
313
-
314
-
315
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-06-13 17:05:47 +0000
316
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
317
-
318
-
319
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-06-13 17:05:47 +0000
320
- Served asset /inbox/panel.css - 304 Not Modified (0ms)
321
-
322
-
323
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-06-13 17:05:47 +0000
324
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
325
-
326
-
327
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-06-13 17:05:47 +0000
328
- Served asset /inbox/application.js - 304 Not Modified (0ms)
329
-
330
-
331
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-06-13 17:05:47 +0000
332
- Served asset /inbox/results_bg.png - 304 Not Modified (0ms)
333
-
334
-
335
- Started GET "/inbox/robert.pankowecki@gmail.com/emails/4fd8c86a3032e_76383fafc4807ec0157a7@rupert-ThinkPad-T420.mail" for 127.0.0.1 at 2012-06-13 17:05:51 +0000
336
- Processing by Inbox::EmailsController#show as HTML
337
- Parameters: {"mail"=>"robert.pankowecki@gmail.com", "id"=>"4fd8c86a3032e_76383fafc4807ec0157a7@rupert-ThinkPad-T420.mail"}
338
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/show.html.erb within layouts/inbox/inbox (1.5ms)
339
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (2.3ms)
340
- Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.0ms)
341
-
342
-
343
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-06-13 17:05:51 +0000
344
- Served asset /inbox/application.css - 304 Not Modified (3ms)
345
-
346
-
347
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-06-13 17:05:51 +0000
348
- Served asset /inbox/emails.css - 304 Not Modified (0ms)
349
-
350
-
351
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-06-13 17:05:51 +0000
352
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
353
-
354
-
355
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-06-13 17:05:51 +0000
356
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
357
-
358
-
359
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-06-13 17:05:51 +0000
360
- Served asset /inbox/application.js - 304 Not Modified (0ms)
361
-
362
-
363
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-06-13 17:05:51 +0000
364
- Served asset /inbox/panel.css - 304 Not Modified (0ms)
365
-
366
-
367
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-06-13 17:05:51 +0000
368
- Served asset /inbox/results_bg.png - 304 Not Modified (0ms)
369
-
370
-
371
- Started GET "/inbox/robert.pankowecki@gmail.com/emails/" for 127.0.0.1 at 2012-06-13 17:06:05 +0000
372
- Processing by Inbox::EmailsController#index as HTML
373
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
374
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/index.html.erb within layouts/inbox/inbox (0.0ms)
375
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (4.3ms)
376
- Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.0ms)
377
-
378
-
379
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-06-13 17:06:05 +0000
380
- Served asset /inbox/application.css - 304 Not Modified (6ms)
381
-
382
-
383
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-06-13 17:06:05 +0000
384
- Served asset /inbox/application.js - 304 Not Modified (0ms)
385
-
386
-
387
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-06-13 17:06:05 +0000
388
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
389
-
390
-
391
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-06-13 17:06:05 +0000
392
- Served asset /inbox/panel.css - 304 Not Modified (0ms)
393
-
394
-
395
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-06-13 17:06:05 +0000
396
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
397
-
398
-
399
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-06-13 17:06:05 +0000
400
- Served asset /inbox/emails.css - 304 Not Modified (0ms)
401
-
402
-
403
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-06-13 17:06:05 +0000
404
- Served asset /inbox/results_bg.png - 304 Not Modified (0ms)
405
-
406
-
407
- Started GET "/inbox/robert.pankowecki@gmail.com/emails/4fd8c86a3032e_76383fafc4807ec0157a7@rupert-ThinkPad-T420.mail" for 127.0.0.1 at 2012-06-13 17:06:28 +0000
408
- Processing by Inbox::EmailsController#show as HTML
409
- Parameters: {"mail"=>"robert.pankowecki@gmail.com", "id"=>"4fd8c86a3032e_76383fafc4807ec0157a7@rupert-ThinkPad-T420.mail"}
410
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/show.html.erb within layouts/inbox/inbox (1.1ms)
411
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (2.2ms)
412
- Completed 200 OK in 27ms (Views: 26.4ms | ActiveRecord: 0.0ms)
413
-
414
-
415
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-06-13 17:06:29 +0000
416
- Served asset /inbox/application.css - 304 Not Modified (6ms)
417
-
418
-
419
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-06-13 17:06:29 +0000
420
- Served asset /inbox/emails.css - 304 Not Modified (0ms)
421
-
422
-
423
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-06-13 17:06:29 +0000
424
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
425
-
426
-
427
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-06-13 17:06:29 +0000
428
- Served asset /inbox/panel.css - 304 Not Modified (0ms)
429
-
430
-
431
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-06-13 17:06:29 +0000
432
- Served asset /inbox/application.js - 304 Not Modified (0ms)
433
-
434
-
435
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-06-13 17:06:29 +0000
436
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
437
-
438
-
439
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-06-13 17:06:29 +0000
440
- Served asset /inbox/results_bg.png - 304 Not Modified (0ms)
441
-
442
-
443
- Started GET "/inbox/robert.pankowecki@gmail.com/emails/4fd8c86a3032e_76383fafc4807ec0157a7@rupert-ThinkPad-T420.mail" for 127.0.0.1 at 2012-06-13 22:07:27 +0000
444
- Connecting to database specified by database.yml
445
- Processing by Inbox::EmailsController#show as HTML
446
- Parameters: {"mail"=>"robert.pankowecki@gmail.com", "id"=>"4fd8c86a3032e_76383fafc4807ec0157a7@rupert-ThinkPad-T420.mail"}
447
- Completed 500 Internal Server Error in 1ms
448
-
449
- NoMethodError (undefined method `multipart?' for nil:NilClass):
450
- /home/rupert/develop/inbox/app/controllers/inbox/emails_controller.rb:20:in `show'
451
- actionpack (3.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
452
- actionpack (3.2.6) lib/abstract_controller/base.rb:167:in `process_action'
453
- actionpack (3.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action'
454
- actionpack (3.2.6) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
455
- activesupport (3.2.6) lib/active_support/callbacks.rb:425:in `_run__4467859138411037632__process_action__3700757804054447972__callbacks'
456
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
457
- activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
458
- activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
459
- actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action'
460
- actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
461
- actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
462
- activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument'
463
- activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
464
- activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument'
465
- actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
466
- actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action'
467
- activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
468
- actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process'
469
- actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process'
470
- actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch'
471
- actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
472
- actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action'
473
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call'
474
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
475
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call'
476
- journey (1.0.3) lib/journey/router.rb:68:in `block in call'
477
- journey (1.0.3) lib/journey/router.rb:56:in `each'
478
- journey (1.0.3) lib/journey/router.rb:56:in `call'
479
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
480
- railties (3.2.6) lib/rails/engine.rb:479:in `call'
481
- railties (3.2.6) lib/rails/railtie/configurable.rb:30:in `method_missing'
482
- journey (1.0.3) lib/journey/router.rb:68:in `block in call'
483
- journey (1.0.3) lib/journey/router.rb:56:in `each'
484
- journey (1.0.3) lib/journey/router.rb:56:in `call'
485
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
486
- actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
487
- rack (1.4.1) lib/rack/etag.rb:23:in `call'
488
- rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
489
- actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call'
490
- actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
491
- actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call'
492
- rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
493
- rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
494
- actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call'
495
- activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call'
496
- activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
497
- actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
498
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__3140237402771815473__call__3602314838152895873__callbacks'
499
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
500
- activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
501
- activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
502
- actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
503
- actionpack (3.2.6) lib/action_dispatch/middleware/reloader.rb:65:in `call'
504
- actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
505
- actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
506
- actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
507
- railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
508
- railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
509
- actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
510
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
511
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
512
- activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
513
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
514
- actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
515
- railties (3.2.6) lib/rails/engine.rb:479:in `call'
516
- railties (3.2.6) lib/rails/application.rb:220:in `call'
517
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
518
- railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
519
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
520
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
521
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
522
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
523
-
524
-
525
- Rendered /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
526
- Rendered /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
527
- Rendered /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (24.3ms)
528
-
529
-
530
- Started GET "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-06-13 22:07:32 +0000
531
- Processing by Inbox::EmailsController#index as HTML
532
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
533
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/index.html.erb within layouts/inbox/inbox (0.3ms)
534
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (11.1ms)
535
- Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.0ms)
536
-
537
-
538
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-06-13 22:07:32 +0000
539
- Served asset /inbox/application.css - 304 Not Modified (10ms)
540
-
541
-
542
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-06-13 22:07:32 +0000
543
- Served asset /inbox/emails.css - 304 Not Modified (3ms)
544
-
545
-
546
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-06-13 22:07:32 +0000
547
- Served asset /inbox/emails.js - 304 Not Modified (3ms)
548
-
549
-
550
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-06-13 22:07:32 +0000
551
- Served asset /inbox/reset.css - 304 Not Modified (4ms)
552
-
553
-
554
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-06-13 22:07:32 +0000
555
- Served asset /inbox/panel.css - 304 Not Modified (2ms)
556
-
557
-
558
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-06-13 22:07:32 +0000
559
- Served asset /inbox/application.js - 304 Not Modified (2ms)
560
-
561
-
562
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-06-13 22:07:32 +0000
563
- Served asset /inbox/results_bg.png - 304 Not Modified (2ms)
564
-
565
-
566
- Started GET "/inbox/robert.pankowecki@gmail.com/emails/new" for 127.0.0.1 at 2012-06-13 22:07:36 +0000
567
- Processing by Inbox::EmailsController#new as HTML
568
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
569
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/new.html.erb within layouts/inbox/inbox (7.4ms)
570
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (2.1ms)
571
- Completed 200 OK in 12ms (Views: 11.6ms | ActiveRecord: 0.0ms)
572
-
573
-
574
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-06-13 22:07:36 +0000
575
- Served asset /inbox/application.css - 304 Not Modified (32ms)
576
-
577
-
578
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-06-13 22:07:36 +0000
579
- Served asset /inbox/panel.css - 304 Not Modified (1ms)
580
-
581
-
582
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-06-13 22:07:36 +0000
583
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
584
-
585
-
586
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-06-13 22:07:36 +0000
587
- Served asset /inbox/emails.css - 304 Not Modified (0ms)
588
-
589
-
590
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-06-13 22:07:36 +0000
591
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
592
-
593
-
594
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-06-13 22:07:37 +0000
595
- Served asset /inbox/application.js - 304 Not Modified (0ms)
596
-
597
-
598
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-06-13 22:07:37 +0000
599
- Served asset /inbox/results_bg.png - 304 Not Modified (0ms)
600
-
601
-
602
- Started POST "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-06-13 22:07:46 +0000
603
- Processing by Inbox::EmailsController#create as HTML
604
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZequSLxwrItmFUm7WV4RXFm4iZF9d84UzZcyclBbAhk=", "email"=>{"from"=>"robert.pankowecki@gmail.com", "to"=>"robert.pankowecki@gmail.com", "cc"=>"", "bcc"=>"", "subject"=>"subject", "body"=>"message"}, "commit"=>"Create Email", "mail"=>"robert.pankowecki@gmail.com"}
605
- Rendered text template (0.0ms)
606
-
607
- Sent mail to robert.pankowecki@gmail.com (24ms)
608
- Date: Wed, 13 Jun 2012 22:07:46 +0000
609
- From: robert.pankowecki@gmail.com
610
- To: robert.pankowecki@gmail.com
611
- Message-ID: <4fd90f3243b38_41d3fbca064f70c16c9@rupert-ThinkPad-T420.mail>
612
- Subject: subject
613
- Mime-Version: 1.0
614
- Content-Type: text/html;
615
- charset=UTF-8
616
- Content-Transfer-Encoding: 7bit
617
-
618
- message
619
- Redirected to http://localhost:3000/inbox/robert.pankowecki@gmail.com/emails
620
- Completed 302 Found in 114ms (ActiveRecord: 0.0ms)
621
-
622
-
623
- Started GET "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-06-13 22:07:46 +0000
624
- Processing by Inbox::EmailsController#index as HTML
625
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
626
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/index.html.erb within layouts/inbox/inbox (0.1ms)
627
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (2.1ms)
628
- Completed 200 OK in 9ms (Views: 8.1ms | ActiveRecord: 0.0ms)
629
-
630
-
631
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-06-13 22:07:46 +0000
632
- Served asset /inbox/application.css - 304 Not Modified (0ms)
633
-
634
-
635
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-06-13 22:07:46 +0000
636
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
637
-
638
-
639
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-06-13 22:07:46 +0000
640
- Served asset /inbox/panel.css - 304 Not Modified (0ms)
641
-
642
-
643
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-06-13 22:07:46 +0000
644
- Served asset /inbox/emails.css - 304 Not Modified (0ms)
645
-
646
-
647
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-06-13 22:07:46 +0000
648
- Served asset /inbox/application.js - 304 Not Modified (0ms)
649
-
650
-
651
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-06-13 22:07:46 +0000
652
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
653
-
654
-
655
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-06-13 22:07:46 +0000
656
- Served asset /inbox/results_bg.png - 304 Not Modified (0ms)
657
-
658
-
659
- Started GET "/inbox/robert.pankowecki@gmail.com/emails/4fd90f3243b38_41d3fbca064f70c16c9@rupert-ThinkPad-T420.mail" for 127.0.0.1 at 2012-06-13 22:07:50 +0000
660
- Processing by Inbox::EmailsController#show as HTML
661
- Parameters: {"mail"=>"robert.pankowecki@gmail.com", "id"=>"4fd90f3243b38_41d3fbca064f70c16c9@rupert-ThinkPad-T420.mail"}
662
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/show.html.erb within layouts/inbox/inbox (2.2ms)
663
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (5.3ms)
664
- Completed 200 OK in 12ms (Views: 11.9ms | ActiveRecord: 0.0ms)
665
-
666
-
667
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-06-13 22:07:50 +0000
668
- Served asset /inbox/application.css - 304 Not Modified (8ms)
669
-
670
-
671
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-06-13 22:07:50 +0000
672
- Served asset /inbox/panel.css - 304 Not Modified (0ms)
673
-
674
-
675
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-06-13 22:07:50 +0000
676
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
677
-
678
-
679
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-06-13 22:07:50 +0000
680
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
681
-
682
-
683
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-06-13 22:07:50 +0000
684
- Served asset /inbox/emails.css - 304 Not Modified (0ms)
685
-
686
-
687
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-06-13 22:07:50 +0000
688
- Served asset /inbox/application.js - 304 Not Modified (0ms)
689
-
690
-
691
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-06-13 22:07:50 +0000
692
- Served asset /inbox/results_bg.png - 304 Not Modified (0ms)
693
-
694
-
695
- Started GET "/" for 127.0.0.1 at 2012-06-14 10:21:05 +0000
696
- Connecting to database specified by database.yml
697
-
698
- ActionController::RoutingError (No route matches [GET] "/"):
699
- actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
700
- actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
701
- railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
702
- railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
703
- actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
704
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
705
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
706
- activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
707
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
708
- actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
709
- railties (3.2.6) lib/rails/engine.rb:479:in `call'
710
- railties (3.2.6) lib/rails/application.rb:220:in `call'
711
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
712
- railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
713
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
714
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
715
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
716
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
717
-
718
-
719
- Rendered /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.4ms)
720
-
721
-
722
- Started GET "/inbox/robert.pankowecki@gmail.com/emails/new" for 127.0.0.1 at 2012-06-14 10:21:07 +0000
723
- Processing by Inbox::EmailsController#new as HTML
724
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
725
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/new.html.erb within layouts/inbox/inbox (4.6ms)
726
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (8.2ms)
727
- Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.0ms)
728
-
729
-
730
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-06-14 10:21:07 +0000
731
- Served asset /inbox/application.css - 304 Not Modified (10ms)
732
-
733
-
734
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-06-14 10:21:07 +0000
735
- Served asset /inbox/emails.css - 304 Not Modified (1ms)
736
-
737
-
738
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-06-14 10:21:07 +0000
739
- Served asset /inbox/panel.css - 304 Not Modified (1ms)
740
-
741
-
742
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-06-14 10:21:07 +0000
743
- Served asset /inbox/emails.js - 304 Not Modified (1ms)
744
-
745
-
746
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-06-14 10:21:07 +0000
747
- Served asset /inbox/reset.css - 304 Not Modified (1ms)
748
-
749
-
750
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-06-14 10:21:07 +0000
751
- Served asset /inbox/application.js - 304 Not Modified (2ms)
752
-
753
-
754
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-06-14 10:21:08 +0000
755
- Served asset /inbox/results_bg.png - 304 Not Modified (1ms)
756
-
757
-
758
- Started POST "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-06-14 10:21:27 +0000
759
- Processing by Inbox::EmailsController#create as HTML
760
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZequSLxwrItmFUm7WV4RXFm4iZF9d84UzZcyclBbAhk=", "email"=>{"from"=>"robert.pankowecki@gmail.com", "to"=>"robert.pankowecki@gmail.com", "cc"=>"", "bcc"=>"", "subject"=>"subject", "body"=>"asd\r\n\r\nhttp://wykop.pl\r\n\r\nasd\r\nd\r\ndd"}, "commit"=>"Create Email", "mail"=>"robert.pankowecki@gmail.com"}
761
- Rendered text template (0.0ms)
762
-
763
- Sent mail to robert.pankowecki@gmail.com (25ms)
764
- Date: Thu, 14 Jun 2012 10:21:27 +0000
765
- From: robert.pankowecki@gmail.com
766
- To: robert.pankowecki@gmail.com
767
- Message-ID: <4fd9bb27c3abb_23093fcb7676a4407525@rupert-ThinkPad-T420.mail>
768
- Subject: subject
769
- Mime-Version: 1.0
770
- Content-Type: text/html;
771
- charset=UTF-8
772
- Content-Transfer-Encoding: 7bit
773
-
774
- asd
775
-
776
- http://wykop.pl
777
-
778
- asd
779
- d
780
- dd
781
- Redirected to http://localhost:3000/inbox/robert.pankowecki@gmail.com/emails
782
- Completed 302 Found in 110ms (ActiveRecord: 0.0ms)
783
-
784
-
785
- Started GET "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-06-14 10:21:27 +0000
786
- Processing by Inbox::EmailsController#index as HTML
787
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
788
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/index.html.erb within layouts/inbox/inbox (0.2ms)
789
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (2.2ms)
790
- Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
791
-
792
-
793
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-06-14 10:21:27 +0000
794
- Served asset /inbox/application.css - 304 Not Modified (0ms)
795
-
796
-
797
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-06-14 10:21:27 +0000
798
- Served asset /inbox/emails.css - 304 Not Modified (0ms)
799
-
800
-
801
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-06-14 10:21:27 +0000
802
- Served asset /inbox/emails.js - 304 Not Modified (1ms)
803
-
804
-
805
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-06-14 10:21:27 +0000
806
- Served asset /inbox/panel.css - 304 Not Modified (0ms)
807
-
808
-
809
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-06-14 10:21:27 +0000
810
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
811
-
812
-
813
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-06-14 10:21:27 +0000
814
- Served asset /inbox/application.js - 304 Not Modified (0ms)
815
-
816
-
817
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-06-14 10:21:27 +0000
818
- Served asset /inbox/results_bg.png - 304 Not Modified (0ms)
819
-
820
-
821
- Started GET "/inbox/robert.pankowecki@gmail.com/emails/4fd9bb27c3abb_23093fcb7676a4407525@rupert-ThinkPad-T420.mail" for 127.0.0.1 at 2012-06-14 10:21:31 +0000
822
- Processing by Inbox::EmailsController#show as HTML
823
- Parameters: {"mail"=>"robert.pankowecki@gmail.com", "id"=>"4fd9bb27c3abb_23093fcb7676a4407525@rupert-ThinkPad-T420.mail"}
824
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/show.html.erb within layouts/inbox/inbox (3.1ms)
825
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (2.5ms)
826
- Completed 200 OK in 14ms (Views: 10.7ms | ActiveRecord: 0.0ms)
827
-
828
-
829
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-06-14 10:21:31 +0000
830
- Served asset /inbox/application.css - 304 Not Modified (2ms)
831
-
832
-
833
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-06-14 10:21:31 +0000
834
- Served asset /inbox/emails.css - 304 Not Modified (2ms)
835
-
836
-
837
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-06-14 10:21:31 +0000
838
- Served asset /inbox/panel.css - 304 Not Modified (0ms)
839
-
840
-
841
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-06-14 10:21:31 +0000
842
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
843
-
844
-
845
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-06-14 10:21:31 +0000
846
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
847
-
848
-
849
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-06-14 10:21:31 +0000
850
- Served asset /inbox/application.js - 304 Not Modified (0ms)
851
-
852
-
853
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-06-14 10:21:31 +0000
854
- Served asset /inbox/results_bg.png - 304 Not Modified (0ms)
855
-
856
-
857
- Started GET "/" for 127.0.0.1 at 2012-06-14 11:18:11 +0000
858
- Connecting to database specified by database.yml
859
-
860
- ActionController::RoutingError (No route matches [GET] "/"):
861
- actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
862
- actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
863
- railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
864
- railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
865
- actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
866
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
867
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
868
- activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
869
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
870
- actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
871
- railties (3.2.6) lib/rails/engine.rb:479:in `call'
872
- railties (3.2.6) lib/rails/application.rb:220:in `call'
873
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
874
- railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
875
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
876
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
877
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
878
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
879
-
880
-
881
- Rendered /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.4ms)
882
-
883
-
884
- Started GET "/inbox/robert.pankowecki@gmail.com/emails/new" for 127.0.0.1 at 2012-06-14 11:18:17 +0000
885
- Processing by Inbox::EmailsController#new as HTML
886
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
887
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/new.html.erb within layouts/inbox/inbox (4.8ms)
888
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (8.5ms)
889
- Completed 200 OK in 17ms (Views: 15.6ms | ActiveRecord: 0.0ms)
890
-
891
-
892
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-06-14 11:18:17 +0000
893
- Served asset /inbox/emails.css - 304 Not Modified (6ms)
894
-
895
-
896
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-06-14 11:18:17 +0000
897
- Served asset /inbox/application.css - 304 Not Modified (2ms)
898
-
899
-
900
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-06-14 11:18:17 +0000
901
- Served asset /inbox/panel.css - 304 Not Modified (1ms)
902
-
903
-
904
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-06-14 11:18:17 +0000
905
- Served asset /inbox/reset.css - 304 Not Modified (5ms)
906
-
907
-
908
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-06-14 11:18:17 +0000
909
- Served asset /inbox/emails.js - 304 Not Modified (4ms)
910
-
911
-
912
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-06-14 11:18:17 +0000
913
- Served asset /inbox/application.js - 304 Not Modified (2ms)
914
-
915
-
916
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-06-14 11:18:17 +0000
917
- Served asset /inbox/results_bg.png - 304 Not Modified (1ms)
918
-
919
-
920
- Started POST "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-06-14 11:18:26 +0000
921
- Processing by Inbox::EmailsController#create as HTML
922
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZequSLxwrItmFUm7WV4RXFm4iZF9d84UzZcyclBbAhk=", "email"=>{"from"=>"robert.pankowecki@gmail.com", "to"=>"robert.pankowecki@gmail.com", "cc"=>"", "bcc"=>"", "subject"=>"sbj", "body"=>"msg"}, "commit"=>"Create Email", "mail"=>"robert.pankowecki@gmail.com"}
923
- Rendered text template (0.0ms)
924
-
925
- Sent mail to robert.pankowecki@gmail.com (25ms)
926
- Date: Thu, 14 Jun 2012 11:18:26 +0000
927
- From: robert.pankowecki@gmail.com
928
- To: robert.pankowecki@gmail.com
929
- Message-ID: <4fd9c88277de7_28d13f81f84b972c326f3@rupert-ThinkPad-T420.mail>
930
- Subject: sbj
931
- Mime-Version: 1.0
932
- Content-Type: text/html;
933
- charset=UTF-8
934
- Content-Transfer-Encoding: 7bit
935
-
936
- msg
937
- Redirected to http://localhost:3000/inbox/robert.pankowecki@gmail.com/emails
938
- Completed 302 Found in 113ms (ActiveRecord: 0.0ms)
939
-
940
-
941
- Started GET "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-06-14 11:18:26 +0000
942
- Processing by Inbox::EmailsController#index as HTML
943
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
944
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/index.html.erb within layouts/inbox/inbox (0.2ms)
945
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (2.3ms)
946
- Completed 200 OK in 8ms (Views: 5.9ms | ActiveRecord: 0.0ms)
947
-
948
-
949
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-06-14 11:18:26 +0000
950
- Served asset /inbox/application.css - 304 Not Modified (2ms)
951
-
952
-
953
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-06-14 11:18:26 +0000
954
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
955
-
956
-
957
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-06-14 11:18:26 +0000
958
- Served asset /inbox/emails.css - 304 Not Modified (0ms)
959
-
960
-
961
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-06-14 11:18:26 +0000
962
- Served asset /inbox/panel.css - 304 Not Modified (0ms)
963
-
964
-
965
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-06-14 11:18:26 +0000
966
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
967
-
968
-
969
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-06-14 11:18:26 +0000
970
- Served asset /inbox/application.js - 304 Not Modified (0ms)
971
-
972
-
973
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-06-14 11:18:26 +0000
974
- Served asset /inbox/results_bg.png - 304 Not Modified (0ms)
975
-
976
-
977
- Started GET "/inbox/robert.pankowecki@gmail.com/emails/4fd9c88277de7_28d13f81f84b972c326f3@rupert-ThinkPad-T420.mail" for 127.0.0.1 at 2012-06-14 11:18:36 +0000
978
- Processing by Inbox::EmailsController#show as HTML
979
- Parameters: {"mail"=>"robert.pankowecki@gmail.com", "id"=>"4fd9c88277de7_28d13f81f84b972c326f3@rupert-ThinkPad-T420.mail"}
980
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/show.html.erb within layouts/inbox/inbox (1.6ms)
981
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (2.5ms)
982
- Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.0ms)
983
-
984
-
985
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-06-14 11:18:36 +0000
986
- Served asset /inbox/application.css - 304 Not Modified (4ms)
987
-
988
-
989
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-06-14 11:18:36 +0000
990
- Served asset /inbox/emails.css - 304 Not Modified (0ms)
991
-
992
-
993
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-06-14 11:18:36 +0000
994
- Served asset /inbox/panel.css - 304 Not Modified (0ms)
995
-
996
-
997
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-06-14 11:18:36 +0000
998
- Served asset /inbox/application.js - 304 Not Modified (0ms)
999
-
1000
-
1001
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-06-14 11:18:36 +0000
1002
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
1003
-
1004
-
1005
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-06-14 11:18:36 +0000
1006
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
1007
-
1008
-
1009
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-06-14 11:18:36 +0000
1010
- Served asset /inbox/results_bg.png - 304 Not Modified (0ms)
1011
-
1012
-
1013
- Started GET "/inbox/robert.pankowecki@gmail.com/emsails/4fd9c88277de7_28d13f81f84b972c326f3@rupert-ThinkPad-T420.mail" for 127.0.0.1 at 2012-06-14 11:19:04 +0000
1014
-
1015
- ActionController::RoutingError (No route matches [GET] "/inbox/robert.pankowecki@gmail.com/emsails/4fd9c88277de7_28d13f81f84b972c326f3@rupert-ThinkPad-T420.mail"):
1016
- actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1017
- actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1018
- railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1019
- railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1020
- actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1021
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1022
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1023
- activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1024
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
1025
- actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1026
- railties (3.2.6) lib/rails/engine.rb:479:in `call'
1027
- railties (3.2.6) lib/rails/application.rb:220:in `call'
1028
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1029
- railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1030
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1031
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1032
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1033
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1034
-
1035
-
1036
- Rendered /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
1037
-
1038
-
1039
- Started GET "/inbox/robert.pankowecki@gmail.coms/emails/4fd9c88277de7_28d13f81f84b972c326f3@rupert-ThinkPad-T420.mail" for 127.0.0.1 at 2012-06-14 11:19:12 +0000
1040
- Processing by Inbox::EmailsController#show as HTML
1041
- Parameters: {"mail"=>"robert.pankowecki@gmail.coms", "id"=>"4fd9c88277de7_28d13f81f84b972c326f3@rupert-ThinkPad-T420.mail"}
1042
- Completed 500 Internal Server Error in 0ms
1043
-
1044
- NoMethodError (undefined method `multipart?' for nil:NilClass):
1045
- /home/rupert/develop/inbox/app/controllers/inbox/emails_controller.rb:20:in `show'
1046
- actionpack (3.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1047
- actionpack (3.2.6) lib/abstract_controller/base.rb:167:in `process_action'
1048
- actionpack (3.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action'
1049
- actionpack (3.2.6) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1050
- activesupport (3.2.6) lib/active_support/callbacks.rb:425:in `_run__3883016309517123949__process_action__4301422675263124786__callbacks'
1051
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
1052
- activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1053
- activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
1054
- actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action'
1055
- actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
1056
- actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1057
- activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument'
1058
- activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1059
- activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument'
1060
- actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1061
- actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action'
1062
- activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1063
- actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process'
1064
- actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process'
1065
- actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch'
1066
- actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1067
- actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action'
1068
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call'
1069
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1070
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call'
1071
- journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1072
- journey (1.0.3) lib/journey/router.rb:56:in `each'
1073
- journey (1.0.3) lib/journey/router.rb:56:in `call'
1074
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
1075
- railties (3.2.6) lib/rails/engine.rb:479:in `call'
1076
- railties (3.2.6) lib/rails/railtie/configurable.rb:30:in `method_missing'
1077
- journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1078
- journey (1.0.3) lib/journey/router.rb:56:in `each'
1079
- journey (1.0.3) lib/journey/router.rb:56:in `call'
1080
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
1081
- actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1082
- rack (1.4.1) lib/rack/etag.rb:23:in `call'
1083
- rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
1084
- actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call'
1085
- actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1086
- actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call'
1087
- rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1088
- rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1089
- actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call'
1090
- activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call'
1091
- activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
1092
- actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1093
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__2394159718737338149__call__2598255769285506405__callbacks'
1094
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
1095
- activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1096
- activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
1097
- actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1098
- actionpack (3.2.6) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1099
- actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1100
- actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1101
- actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1102
- railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1103
- railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1104
- actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1105
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1106
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1107
- activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1108
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
1109
- actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1110
- railties (3.2.6) lib/rails/engine.rb:479:in `call'
1111
- railties (3.2.6) lib/rails/application.rb:220:in `call'
1112
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1113
- railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1114
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1115
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1116
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1117
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1118
-
1119
-
1120
- Rendered /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.3ms)
1121
- Rendered /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
1122
- Rendered /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/gems/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (27.1ms)
1123
-
1124
-
1125
- Started GET "/inbox/robert.pankowecki@gmail.coms/emails/" for 127.0.0.1 at 2012-06-14 11:19:19 +0000
1126
- Processing by Inbox::EmailsController#index as HTML
1127
- Parameters: {"mail"=>"robert.pankowecki@gmail.coms"}
1128
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/index.html.erb within layouts/inbox/inbox (0.0ms)
1129
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (3.2ms)
1130
- Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
1131
-
1132
-
1133
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-06-14 11:19:19 +0000
1134
- Served asset /inbox/application.css - 304 Not Modified (6ms)
1135
-
1136
-
1137
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-06-14 11:19:19 +0000
1138
- Served asset /inbox/application.js - 304 Not Modified (0ms)
1139
-
1140
-
1141
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-06-14 11:19:20 +0000
1142
- Served asset /inbox/emails.css - 304 Not Modified (0ms)
1143
-
1144
-
1145
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-06-14 11:19:20 +0000
1146
- Served asset /inbox/panel.css - 304 Not Modified (0ms)
1147
-
1148
-
1149
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-06-14 11:19:20 +0000
1150
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
1151
-
1152
-
1153
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-06-14 11:19:20 +0000
1154
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
1155
-
1156
-
1157
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-06-14 11:19:20 +0000
1158
- Served asset /inbox/results_bg.png - 304 Not Modified (0ms)
1159
-
1160
-
1161
- Started GET "/inbox/robert.pankowecki@gmail.com/emails/" for 127.0.0.1 at 2012-06-14 11:23:10 +0000
1162
- Processing by Inbox::EmailsController#index as HTML
1163
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
1164
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/index.html.erb within layouts/inbox/inbox (0.1ms)
1165
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (2.5ms)
1166
- Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.0ms)
1167
-
1168
-
1169
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-06-14 11:23:10 +0000
1170
- Served asset /inbox/emails.css - 304 Not Modified (3ms)
1171
-
1172
-
1173
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-06-14 11:23:10 +0000
1174
- Served asset /inbox/application.css - 304 Not Modified (0ms)
1175
-
1176
-
1177
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-06-14 11:23:10 +0000
1178
- Served asset /inbox/panel.css - 304 Not Modified (0ms)
1179
-
1180
-
1181
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-06-14 11:23:10 +0000
1182
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
1183
-
1184
-
1185
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-06-14 11:23:10 +0000
1186
- Served asset /inbox/application.js - 304 Not Modified (0ms)
1187
-
1188
-
1189
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-06-14 11:23:10 +0000
1190
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
1191
-
1192
-
1193
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-06-14 11:23:10 +0000
1194
- Served asset /inbox/results_bg.png - 304 Not Modified (0ms)
1195
-
1196
-
1197
- Started GET "/inbox/robert.pankowecki@gmail.com/emails/4fd9c88277de7_28d13f81f84b972c326f3@rupert-ThinkPad-T420.mail" for 127.0.0.1 at 2012-06-14 11:23:11 +0000
1198
- Processing by Inbox::EmailsController#show as HTML
1199
- Parameters: {"mail"=>"robert.pankowecki@gmail.com", "id"=>"4fd9c88277de7_28d13f81f84b972c326f3@rupert-ThinkPad-T420.mail"}
1200
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/show.html.erb within layouts/inbox/inbox (0.8ms)
1201
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (2.2ms)
1202
- Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
1203
-
1204
-
1205
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-06-14 11:23:11 +0000
1206
- Served asset /inbox/application.css - 304 Not Modified (6ms)
1207
-
1208
-
1209
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-06-14 11:23:11 +0000
1210
- Served asset /inbox/emails.css - 304 Not Modified (0ms)
1211
-
1212
-
1213
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-06-14 11:23:11 +0000
1214
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
1215
-
1216
-
1217
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-06-14 11:23:11 +0000
1218
- Served asset /inbox/panel.css - 304 Not Modified (0ms)
1219
-
1220
-
1221
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-06-14 11:23:11 +0000
1222
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
1223
-
1224
-
1225
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-06-14 11:23:11 +0000
1226
- Served asset /inbox/application.js - 304 Not Modified (0ms)
1227
-
1228
-
1229
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-06-14 11:23:11 +0000
1230
- Served asset /inbox/results_bg.png - 304 Not Modified (0ms)
1231
-
1232
-
1233
- Started GET "/images/rails.png" for 127.0.0.1 at 2012-08-20 14:00:32 +0000
1234
- Connecting to database specified by database.yml
1235
-
1236
- ActionController::RoutingError (No route matches [GET] "/images/rails.png"):
1237
- actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1238
- actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1239
- railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1240
- railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1241
- actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1242
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1243
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1244
- activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1245
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
1246
- actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1247
- railties (3.2.6) lib/rails/engine.rb:479:in `call'
1248
- railties (3.2.6) lib/rails/application.rb:220:in `call'
1249
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1250
- railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1251
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1252
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1253
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1254
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1255
-
1256
-
1257
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.7ms)
1258
-
1259
-
1260
- Started GET "/emails" for 127.0.0.1 at 2012-08-20 14:00:36 +0000
1261
-
1262
- ActionController::RoutingError (No route matches [GET] "/emails"):
1263
- actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1264
- actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1265
- railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1266
- railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1267
- actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1268
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1269
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1270
- activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1271
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
1272
- actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1273
- railties (3.2.6) lib/rails/engine.rb:479:in `call'
1274
- railties (3.2.6) lib/rails/application.rb:220:in `call'
1275
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1276
- railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1277
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1278
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1279
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1280
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1281
-
1282
-
1283
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
1284
-
1285
-
1286
- Started GET "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-08-20 14:01:11 +0000
1287
- Processing by Inbox::EmailsController#index as HTML
1288
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
1289
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/index.html.erb within layouts/inbox/inbox (0.2ms)
1290
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (67.3ms)
1291
- Completed 200 OK in 81ms (Views: 80.4ms | ActiveRecord: 0.0ms)
1292
-
1293
-
1294
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-08-20 14:01:12 +0000
1295
- Served asset /inbox/application.css - 200 OK (9ms)
1296
-
1297
-
1298
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-08-20 14:01:12 +0000
1299
- Served asset /inbox/panel.css - 200 OK (2ms)
1300
-
1301
-
1302
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-08-20 14:01:12 +0000
1303
- Served asset /inbox/emails.css - 200 OK (1ms)
1304
-
1305
-
1306
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-08-20 14:01:12 +0000
1307
- Served asset /inbox/reset.css - 200 OK (1ms)
1308
-
1309
-
1310
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-08-20 14:01:12 +0000
1311
- Served asset /inbox/emails.js - 200 OK (1ms)
1312
-
1313
-
1314
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-08-20 14:01:12 +0000
1315
- Served asset /inbox/application.js - 200 OK (2ms)
1316
-
1317
-
1318
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-08-20 14:01:12 +0000
1319
- Served asset /inbox/results_bg.png - 200 OK (1ms)
1320
-
1321
-
1322
- Started GET "/inbox/new" for 127.0.0.1 at 2012-08-20 14:01:19 +0000
1323
-
1324
- ActionController::RoutingError (No route matches [GET] "/inbox/new"):
1325
- actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1326
- actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1327
- railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1328
- railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1329
- actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1330
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1331
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1332
- activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1333
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
1334
- actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1335
- railties (3.2.6) lib/rails/engine.rb:479:in `call'
1336
- railties (3.2.6) lib/rails/application.rb:220:in `call'
1337
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1338
- railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1339
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1340
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1341
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1342
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1343
-
1344
-
1345
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
1346
-
1347
-
1348
- Started GET "/inbox/emails" for 127.0.0.1 at 2012-08-20 14:01:22 +0000
1349
-
1350
- ActionController::RoutingError (No route matches [GET] "/inbox/emails"):
1351
- actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1352
- actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1353
- railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1354
- railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1355
- actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1356
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1357
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1358
- activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1359
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
1360
- actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1361
- railties (3.2.6) lib/rails/engine.rb:479:in `call'
1362
- railties (3.2.6) lib/rails/application.rb:220:in `call'
1363
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1364
- railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1365
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1366
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1367
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1368
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1369
-
1370
-
1371
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.3ms)
1372
-
1373
-
1374
- Started GET "/inbox/emails/new" for 127.0.0.1 at 2012-08-20 14:01:25 +0000
1375
-
1376
- ActionController::RoutingError (No route matches [GET] "/inbox/emails/new"):
1377
- actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1378
- actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1379
- railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1380
- railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1381
- actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1382
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1383
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1384
- activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1385
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
1386
- actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1387
- railties (3.2.6) lib/rails/engine.rb:479:in `call'
1388
- railties (3.2.6) lib/rails/application.rb:220:in `call'
1389
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1390
- railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1391
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1392
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1393
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1394
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1395
-
1396
-
1397
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
1398
-
1399
-
1400
- Started GET "/inbox/robert.pankowecki@gmail.com/emails/new" for 127.0.0.1 at 2012-08-20 14:01:39 +0000
1401
- Processing by Inbox::EmailsController#new as HTML
1402
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
1403
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/new.html.erb within layouts/inbox/inbox (46.5ms)
1404
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (21.5ms)
1405
- Completed 200 OK in 89ms (Views: 88.2ms | ActiveRecord: 0.0ms)
1406
-
1407
-
1408
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-08-20 14:01:39 +0000
1409
- Served asset /inbox/emails.css - 304 Not Modified (3ms)
1410
-
1411
-
1412
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-08-20 14:01:39 +0000
1413
- Served asset /inbox/application.css - 304 Not Modified (2ms)
1414
-
1415
-
1416
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-08-20 14:01:39 +0000
1417
- Served asset /inbox/application.js - 304 Not Modified (0ms)
1418
-
1419
-
1420
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-08-20 14:01:39 +0000
1421
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
1422
-
1423
-
1424
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-08-20 14:01:39 +0000
1425
- Served asset /inbox/panel.css - 304 Not Modified (0ms)
1426
-
1427
-
1428
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-08-20 14:01:39 +0000
1429
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
1430
-
1431
-
1432
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-08-20 14:01:39 +0000
1433
- Served asset /inbox/results_bg.png - 304 Not Modified (0ms)
1434
-
1435
-
1436
- Started POST "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-08-20 14:02:03 +0000
1437
- Processing by Inbox::EmailsController#create as HTML
1438
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZequSLxwrItmFUm7WV4RXFm4iZF9d84UzZcyclBbAhk=", "email"=>{"from"=>"robert.pankowecki@gmail.com", "to"=>"robert.pankowecki@gmail.com", "cc"=>"", "bcc"=>"", "subject"=>"sbj", "body"=>"sbj"}, "commit"=>"Create Email", "mail"=>"robert.pankowecki@gmail.com"}
1439
- Rendered text template (0.0ms)
1440
-
1441
- Sent mail to robert.pankowecki@gmail.com (64ms)
1442
- Date: Mon, 20 Aug 2012 14:02:03 +0000
1443
- From: robert.pankowecki@gmail.com
1444
- To: robert.pankowecki@gmail.com
1445
- Message-ID: <5032435b8e5b7_68043ff8dc732b243373@rupert-ThinkPad-T420.mail>
1446
- Subject: sbj
1447
- Mime-Version: 1.0
1448
- Content-Type: text/html;
1449
- charset=UTF-8
1450
- Content-Transfer-Encoding: 7bit
1451
-
1452
- sbj
1453
- Redirected to http://localhost:3000/inbox/robert.pankowecki@gmail.com/emails
1454
- Completed 302 Found in 171ms (ActiveRecord: 0.0ms)
1455
-
1456
-
1457
- Started GET "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-08-20 14:02:03 +0000
1458
- Processing by Inbox::EmailsController#index as HTML
1459
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
1460
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/index.html.erb within layouts/inbox/inbox (0.0ms)
1461
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (2.2ms)
1462
- Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
1463
-
1464
-
1465
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-08-20 14:02:03 +0000
1466
- Served asset /inbox/application.css - 304 Not Modified (7ms)
1467
-
1468
-
1469
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-08-20 14:02:03 +0000
1470
- Served asset /inbox/emails.css - 304 Not Modified (0ms)
1471
-
1472
-
1473
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-08-20 14:02:03 +0000
1474
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
1475
-
1476
-
1477
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-08-20 14:02:03 +0000
1478
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
1479
-
1480
-
1481
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-08-20 14:02:03 +0000
1482
- Served asset /inbox/panel.css - 304 Not Modified (0ms)
1483
-
1484
-
1485
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-08-20 14:02:03 +0000
1486
- Served asset /inbox/application.js - 304 Not Modified (0ms)
1487
-
1488
-
1489
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-08-20 14:02:03 +0000
1490
- Served asset /inbox/results_bg.png - 304 Not Modified (0ms)
1491
-
1492
-
1493
- Started GET "/inbox/robert.pankowecki@gmail.com/emails/new" for 127.0.0.1 at 2012-08-20 14:02:43 +0000
1494
- Processing by Inbox::EmailsController#new as HTML
1495
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
1496
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/new.html.erb within layouts/inbox/inbox (2.4ms)
1497
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (5.0ms)
1498
- Completed 200 OK in 10ms (Views: 9.7ms | ActiveRecord: 0.0ms)
1499
-
1500
-
1501
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-08-20 14:02:43 +0000
1502
- Served asset /inbox/application.css - 304 Not Modified (5ms)
1503
-
1504
-
1505
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-08-20 14:02:43 +0000
1506
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
1507
-
1508
-
1509
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-08-20 14:02:43 +0000
1510
- Served asset /inbox/emails.css - 304 Not Modified (0ms)
1511
-
1512
-
1513
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-08-20 14:02:43 +0000
1514
- Served asset /inbox/panel.css - 304 Not Modified (0ms)
1515
-
1516
-
1517
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-08-20 14:02:43 +0000
1518
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
1519
-
1520
-
1521
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-08-20 14:02:43 +0000
1522
- Served asset /inbox/application.js - 304 Not Modified (0ms)
1523
-
1524
-
1525
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-08-20 14:02:43 +0000
1526
- Served asset /inbox/results_bg.png - 304 Not Modified (0ms)
1527
-
1528
-
1529
- Started POST "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-08-20 14:02:55 +0000
1530
- Processing by Inbox::EmailsController#create as HTML
1531
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZequSLxwrItmFUm7WV4RXFm4iZF9d84UzZcyclBbAhk=", "email"=>{"from"=>"robert.pankowecki@gmail.com", "to"=>"robert.pankowecki@gmail.com", "cc"=>"", "bcc"=>"", "subject"=>"sbj", "body"=>"txt"}, "commit"=>"Create Email", "mail"=>"robert.pankowecki@gmail.com"}
1532
- Rendered text template (0.0ms)
1533
-
1534
- Sent mail to robert.pankowecki@gmail.com (5ms)
1535
- Date: Mon, 20 Aug 2012 14:02:55 +0000
1536
- From: robert.pankowecki@gmail.com
1537
- To: robert.pankowecki@gmail.com
1538
- Message-ID: <5032438f5491b_68043ff8dc43e9f433896@rupert-ThinkPad-T420.mail>
1539
- Subject: sbj
1540
- Mime-Version: 1.0
1541
- Content-Type: text/html;
1542
- charset=UTF-8
1543
- Content-Transfer-Encoding: 7bit
1544
-
1545
- txt
1546
- Redirected to http://localhost:3000/inbox/robert.pankowecki@gmail.com/emails
1547
- Completed 302 Found in 10ms (ActiveRecord: 0.0ms)
1548
-
1549
-
1550
- Started GET "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-08-20 14:02:55 +0000
1551
- Processing by Inbox::EmailsController#index as HTML
1552
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
1553
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/index.html.erb within layouts/inbox/inbox (0.0ms)
1554
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (2.2ms)
1555
- Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
1556
-
1557
-
1558
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-08-20 14:02:55 +0000
1559
- Served asset /inbox/application.css - 304 Not Modified (7ms)
1560
-
1561
-
1562
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-08-20 14:02:55 +0000
1563
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
1564
-
1565
-
1566
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-08-20 14:02:55 +0000
1567
- Served asset /inbox/panel.css - 304 Not Modified (0ms)
1568
-
1569
-
1570
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-08-20 14:02:55 +0000
1571
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
1572
-
1573
-
1574
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-08-20 14:02:55 +0000
1575
- Served asset /inbox/emails.css - 304 Not Modified (0ms)
1576
-
1577
-
1578
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-08-20 14:02:55 +0000
1579
- Served asset /inbox/application.js - 304 Not Modified (0ms)
1580
-
1581
-
1582
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-08-20 14:02:55 +0000
1583
- Served asset /inbox/results_bg.png - 304 Not Modified (0ms)
1584
-
1585
-
1586
- Started GET "/inbox/robert.pankowecki@gmail.com/emails/new" for 127.0.0.1 at 2012-08-20 14:28:28 +0000
1587
- Connecting to database specified by database.yml
1588
- Processing by Inbox::EmailsController#new as HTML
1589
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
1590
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/new.html.erb within layouts/inbox/inbox (5.9ms)
1591
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (8.8ms)
1592
- Completed 200 OK in 37ms (Views: 36.6ms | ActiveRecord: 0.0ms)
1593
-
1594
-
1595
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-08-20 14:28:29 +0000
1596
- Served asset /inbox/application.css - 304 Not Modified (5ms)
1597
-
1598
-
1599
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-08-20 14:28:29 +0000
1600
- Served asset /inbox/emails.js - 304 Not Modified (1ms)
1601
-
1602
-
1603
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-08-20 14:28:29 +0000
1604
- Served asset /inbox/reset.css - 304 Not Modified (2ms)
1605
-
1606
-
1607
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-08-20 14:28:29 +0000
1608
- Served asset /inbox/emails.css - 304 Not Modified (1ms)
1609
-
1610
-
1611
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-08-20 14:28:29 +0000
1612
- Served asset /inbox/panel.css - 304 Not Modified (1ms)
1613
-
1614
-
1615
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-08-20 14:28:29 +0000
1616
- Served asset /inbox/application.js - 304 Not Modified (2ms)
1617
-
1618
-
1619
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-08-20 14:28:29 +0000
1620
- Served asset /inbox/results_bg.png - 304 Not Modified (1ms)
1621
-
1622
-
1623
- Started POST "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-08-20 14:28:46 +0000
1624
- Processing by Inbox::EmailsController#create as HTML
1625
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZequSLxwrItmFUm7WV4RXFm4iZF9d84UzZcyclBbAhk=", "email"=>{"from"=>"robert.pankowecki@gmail.com", "to"=>"robert.pankowecki@gmail.com", "cc"=>"", "bcc"=>"", "subject"=>"Ala", "body"=>"ma kota"}, "commit"=>"Create Email", "mail"=>"robert.pankowecki@gmail.com"}
1626
- Rendered text template (0.0ms)
1627
-
1628
- Sent mail to robert.pankowecki@gmail.com (26ms)
1629
- Date: Mon, 20 Aug 2012 14:28:47 +0000
1630
- From: robert.pankowecki@gmail.com
1631
- To: robert.pankowecki@gmail.com
1632
- Message-ID: <5032499f379a_6cef3f9bb6074ef03143d@rupert-ThinkPad-T420.mail>
1633
- Subject: Ala
1634
- Mime-Version: 1.0
1635
- Content-Type: text/html;
1636
- charset=UTF-8
1637
- Content-Transfer-Encoding: 7bit
1638
-
1639
- ma kota
1640
- Completed 500 Internal Server Error in 62ms
1641
-
1642
- TypeError (can't convert Float into String):
1643
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/pathname.rb:363:in `initialize'
1644
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/pathname.rb:363:in `new'
1645
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/pathname.rb:363:in `join'
1646
- /home/rupert/develop/inbox/lib/inbox.rb:17:in `deliver!'
1647
- mail (2.4.4) lib/mail/message.rb:2034:in `do_delivery'
1648
- mail (2.4.4) lib/mail/message.rb:229:in `block in deliver'
1649
- actionmailer (3.2.6) lib/action_mailer/base.rb:415:in `block in deliver_mail'
1650
- activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument'
1651
- activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1652
- activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument'
1653
- actionmailer (3.2.6) lib/action_mailer/base.rb:413:in `deliver_mail'
1654
- mail (2.4.4) lib/mail/message.rb:229:in `deliver'
1655
- /home/rupert/develop/inbox/app/models/inbox/email.rb:47:in `deliver'
1656
- /home/rupert/develop/inbox/app/controllers/inbox/emails_controller.rb:34:in `create'
1657
- actionpack (3.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1658
- actionpack (3.2.6) lib/abstract_controller/base.rb:167:in `process_action'
1659
- actionpack (3.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action'
1660
- actionpack (3.2.6) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1661
- activesupport (3.2.6) lib/active_support/callbacks.rb:425:in `_run__3635724030468246412__process_action__4497923831010234875__callbacks'
1662
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
1663
- activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1664
- activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
1665
- actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action'
1666
- actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
1667
- actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1668
- activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument'
1669
- activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1670
- activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument'
1671
- actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1672
- actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action'
1673
- activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1674
- actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process'
1675
- actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process'
1676
- actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch'
1677
- actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1678
- actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action'
1679
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call'
1680
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1681
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call'
1682
- journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1683
- journey (1.0.3) lib/journey/router.rb:56:in `each'
1684
- journey (1.0.3) lib/journey/router.rb:56:in `call'
1685
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
1686
- railties (3.2.6) lib/rails/engine.rb:479:in `call'
1687
- railties (3.2.6) lib/rails/railtie/configurable.rb:30:in `method_missing'
1688
- journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1689
- journey (1.0.3) lib/journey/router.rb:56:in `each'
1690
- journey (1.0.3) lib/journey/router.rb:56:in `call'
1691
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
1692
- actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1693
- rack (1.4.1) lib/rack/etag.rb:23:in `call'
1694
- rack (1.4.1) lib/rack/conditionalget.rb:35:in `call'
1695
- actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call'
1696
- actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1697
- actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call'
1698
- rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1699
- rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1700
- actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call'
1701
- activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call'
1702
- activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
1703
- actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1704
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__2647712248597094673__call__2284354183235533177__callbacks'
1705
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
1706
- activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1707
- activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
1708
- actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1709
- actionpack (3.2.6) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1710
- actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1711
- actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1712
- actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1713
- railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1714
- railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1715
- actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1716
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1717
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1718
- activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1719
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
1720
- actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1721
- railties (3.2.6) lib/rails/engine.rb:479:in `call'
1722
- railties (3.2.6) lib/rails/application.rb:220:in `call'
1723
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1724
- railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1725
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1726
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1727
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1728
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1729
-
1730
-
1731
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.7ms)
1732
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
1733
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.0ms)
1734
-
1735
-
1736
- Started POST "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-08-20 14:29:05 +0000
1737
- Connecting to database specified by database.yml
1738
- Processing by Inbox::EmailsController#create as HTML
1739
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZequSLxwrItmFUm7WV4RXFm4iZF9d84UzZcyclBbAhk=", "email"=>{"from"=>"robert.pankowecki@gmail.com", "to"=>"robert.pankowecki@gmail.com", "cc"=>"", "bcc"=>"", "subject"=>"Ala", "body"=>"ma kota"}, "commit"=>"Create Email", "mail"=>"robert.pankowecki@gmail.com"}
1740
- Rendered text template (0.0ms)
1741
-
1742
- Sent mail to robert.pankowecki@gmail.com (25ms)
1743
- Date: Mon, 20 Aug 2012 14:29:05 +0000
1744
- From: robert.pankowecki@gmail.com
1745
- To: robert.pankowecki@gmail.com
1746
- Message-ID: <503249b1e0f6a_6d171c33ca45639@rupert-ThinkPad-T420.mail>
1747
- Subject: Ala
1748
- Mime-Version: 1.0
1749
- Content-Type: text/html;
1750
- charset=UTF-8
1751
- Content-Transfer-Encoding: 7bit
1752
-
1753
- ma kota
1754
- Completed 500 Internal Server Error in 98ms
1755
-
1756
- Errno::ENOENT (No such file or directory - /tmp/mails/1345472945.9410968):
1757
- /home/rupert/develop/inbox/lib/inbox.rb:17:in `initialize'
1758
- /home/rupert/develop/inbox/lib/inbox.rb:17:in `open'
1759
- /home/rupert/develop/inbox/lib/inbox.rb:17:in `open'
1760
- /home/rupert/develop/inbox/lib/inbox.rb:17:in `deliver!'
1761
- mail (2.4.4) lib/mail/message.rb:2034:in `do_delivery'
1762
- mail (2.4.4) lib/mail/message.rb:229:in `block in deliver'
1763
- actionmailer (3.2.6) lib/action_mailer/base.rb:415:in `block in deliver_mail'
1764
- activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument'
1765
- activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1766
- activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument'
1767
- actionmailer (3.2.6) lib/action_mailer/base.rb:413:in `deliver_mail'
1768
- mail (2.4.4) lib/mail/message.rb:229:in `deliver'
1769
- /home/rupert/develop/inbox/app/models/inbox/email.rb:47:in `deliver'
1770
- /home/rupert/develop/inbox/app/controllers/inbox/emails_controller.rb:34:in `create'
1771
- actionpack (3.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1772
- actionpack (3.2.6) lib/abstract_controller/base.rb:167:in `process_action'
1773
- actionpack (3.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action'
1774
- actionpack (3.2.6) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1775
- activesupport (3.2.6) lib/active_support/callbacks.rb:425:in `_run__3813954697633441258__process_action__2951613594301358998__callbacks'
1776
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
1777
- activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1778
- activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
1779
- actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action'
1780
- actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
1781
- actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1782
- activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument'
1783
- activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1784
- activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument'
1785
- actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1786
- actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action'
1787
- activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1788
- actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process'
1789
- actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process'
1790
- actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch'
1791
- actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1792
- actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action'
1793
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call'
1794
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1795
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call'
1796
- journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1797
- journey (1.0.3) lib/journey/router.rb:56:in `each'
1798
- journey (1.0.3) lib/journey/router.rb:56:in `call'
1799
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
1800
- railties (3.2.6) lib/rails/engine.rb:479:in `call'
1801
- railties (3.2.6) lib/rails/railtie/configurable.rb:30:in `method_missing'
1802
- journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1803
- journey (1.0.3) lib/journey/router.rb:56:in `each'
1804
- journey (1.0.3) lib/journey/router.rb:56:in `call'
1805
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
1806
- actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1807
- rack (1.4.1) lib/rack/etag.rb:23:in `call'
1808
- rack (1.4.1) lib/rack/conditionalget.rb:35:in `call'
1809
- actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call'
1810
- actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1811
- actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call'
1812
- rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1813
- rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1814
- actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call'
1815
- activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call'
1816
- activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
1817
- actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1818
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__1478556544933806291__call__1214830537015260126__callbacks'
1819
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
1820
- activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1821
- activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
1822
- actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1823
- actionpack (3.2.6) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1824
- actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1825
- actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1826
- actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1827
- railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1828
- railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1829
- actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1830
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1831
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1832
- activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1833
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
1834
- actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1835
- railties (3.2.6) lib/rails/engine.rb:479:in `call'
1836
- railties (3.2.6) lib/rails/application.rb:220:in `call'
1837
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1838
- railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1839
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1840
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1841
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1842
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1843
-
1844
-
1845
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.6ms)
1846
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
1847
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.7ms)
1848
-
1849
-
1850
- Started GET "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-08-20 14:38:05 +0000
1851
- Connecting to database specified by database.yml
1852
- Processing by Inbox::EmailsController#index as HTML
1853
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
1854
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/index.html.erb within layouts/inbox/inbox (16.9ms)
1855
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (8.6ms)
1856
- Completed 200 OK in 33ms (Views: 32.6ms | ActiveRecord: 0.0ms)
1857
-
1858
-
1859
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-08-20 14:38:05 +0000
1860
- Served asset /inbox/application.css - 304 Not Modified (14ms)
1861
-
1862
-
1863
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-08-20 14:38:05 +0000
1864
- Served asset /inbox/emails.css - 304 Not Modified (2ms)
1865
-
1866
-
1867
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-08-20 14:38:05 +0000
1868
- Served asset /inbox/reset.css - 304 Not Modified (3ms)
1869
-
1870
-
1871
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-08-20 14:38:05 +0000
1872
- Served asset /inbox/emails.js - 304 Not Modified (1ms)
1873
-
1874
-
1875
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-08-20 14:38:05 +0000
1876
- Served asset /inbox/panel.css - 304 Not Modified (2ms)
1877
-
1878
-
1879
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-08-20 14:38:05 +0000
1880
- Served asset /inbox/application.js - 304 Not Modified (3ms)
1881
-
1882
-
1883
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-08-20 14:38:05 +0000
1884
- Served asset /inbox/results_bg.png - 304 Not Modified (2ms)
1885
-
1886
-
1887
- Started GET "/inbox/robert.pankowecki@gmail.com/emails/new" for 127.0.0.1 at 2012-08-20 14:38:08 +0000
1888
- Processing by Inbox::EmailsController#new as HTML
1889
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
1890
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/new.html.erb within layouts/inbox/inbox (8.2ms)
1891
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (2.4ms)
1892
- Completed 200 OK in 13ms (Views: 12.4ms | ActiveRecord: 0.0ms)
1893
-
1894
-
1895
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-08-20 14:38:08 +0000
1896
- Served asset /inbox/application.css - 304 Not Modified (30ms)
1897
-
1898
-
1899
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-08-20 14:38:08 +0000
1900
- Served asset /inbox/emails.css - 304 Not Modified (0ms)
1901
-
1902
-
1903
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-08-20 14:38:08 +0000
1904
- Served asset /inbox/panel.css - 304 Not Modified (0ms)
1905
-
1906
-
1907
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-08-20 14:38:08 +0000
1908
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
1909
-
1910
-
1911
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-08-20 14:38:08 +0000
1912
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
1913
-
1914
-
1915
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-08-20 14:38:08 +0000
1916
- Served asset /inbox/application.js - 304 Not Modified (0ms)
1917
-
1918
-
1919
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-08-20 14:38:08 +0000
1920
- Served asset /inbox/results_bg.png - 304 Not Modified (0ms)
1921
-
1922
-
1923
- Started POST "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-08-20 14:38:17 +0000
1924
- Processing by Inbox::EmailsController#create as HTML
1925
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZequSLxwrItmFUm7WV4RXFm4iZF9d84UzZcyclBbAhk=", "email"=>{"from"=>"robert.pankowecki@gmail.com", "to"=>"robert.pankowecki@gmail.com", "cc"=>"", "bcc"=>"", "subject"=>"Ala", "body"=>"ma kota"}, "commit"=>"Create Email", "mail"=>"robert.pankowecki@gmail.com"}
1926
- Rendered text template (0.0ms)
1927
-
1928
- Sent mail to robert.pankowecki@gmail.com (10ms)
1929
- Date: Mon, 20 Aug 2012 14:38:17 +0000
1930
- From: robert.pankowecki@gmail.com
1931
- To: robert.pankowecki@gmail.com
1932
- Message-ID: <50324bd918392_6dfb1326d505465@rupert-ThinkPad-T420.mail>
1933
- Subject: Ala
1934
- Mime-Version: 1.0
1935
- Content-Type: text/html;
1936
- charset=UTF-8
1937
- Content-Transfer-Encoding: 7bit
1938
-
1939
- ma kota
1940
- Completed 500 Internal Server Error in 68ms
1941
-
1942
- Errno::ENOENT (No such file or directory - /home/rupert/develop/inbox/test/dummy/tmp/emails/1345473497.103126):
1943
- /home/rupert/develop/inbox/lib/inbox.rb:17:in `initialize'
1944
- /home/rupert/develop/inbox/lib/inbox.rb:17:in `open'
1945
- /home/rupert/develop/inbox/lib/inbox.rb:17:in `open'
1946
- /home/rupert/develop/inbox/lib/inbox.rb:17:in `deliver!'
1947
- mail (2.4.4) lib/mail/message.rb:2034:in `do_delivery'
1948
- mail (2.4.4) lib/mail/message.rb:229:in `block in deliver'
1949
- actionmailer (3.2.6) lib/action_mailer/base.rb:415:in `block in deliver_mail'
1950
- activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument'
1951
- activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1952
- activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument'
1953
- actionmailer (3.2.6) lib/action_mailer/base.rb:413:in `deliver_mail'
1954
- mail (2.4.4) lib/mail/message.rb:229:in `deliver'
1955
- /home/rupert/develop/inbox/app/models/inbox/email.rb:47:in `deliver'
1956
- /home/rupert/develop/inbox/app/controllers/inbox/emails_controller.rb:34:in `create'
1957
- actionpack (3.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1958
- actionpack (3.2.6) lib/abstract_controller/base.rb:167:in `process_action'
1959
- actionpack (3.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action'
1960
- actionpack (3.2.6) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1961
- activesupport (3.2.6) lib/active_support/callbacks.rb:425:in `_run__2727006553110782864__process_action__3180982602062749408__callbacks'
1962
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
1963
- activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1964
- activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
1965
- actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action'
1966
- actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
1967
- actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1968
- activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument'
1969
- activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1970
- activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument'
1971
- actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1972
- actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action'
1973
- activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1974
- actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process'
1975
- actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process'
1976
- actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch'
1977
- actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1978
- actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action'
1979
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call'
1980
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1981
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call'
1982
- journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1983
- journey (1.0.3) lib/journey/router.rb:56:in `each'
1984
- journey (1.0.3) lib/journey/router.rb:56:in `call'
1985
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
1986
- railties (3.2.6) lib/rails/engine.rb:479:in `call'
1987
- railties (3.2.6) lib/rails/railtie/configurable.rb:30:in `method_missing'
1988
- journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1989
- journey (1.0.3) lib/journey/router.rb:56:in `each'
1990
- journey (1.0.3) lib/journey/router.rb:56:in `call'
1991
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
1992
- actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1993
- rack (1.4.1) lib/rack/etag.rb:23:in `call'
1994
- rack (1.4.1) lib/rack/conditionalget.rb:35:in `call'
1995
- actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call'
1996
- actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1997
- actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call'
1998
- rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1999
- rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
2000
- actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call'
2001
- activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call'
2002
- activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
2003
- actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
2004
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__1258811841170909944__call__2238467382768316924__callbacks'
2005
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
2006
- activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
2007
- activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
2008
- actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2009
- actionpack (3.2.6) lib/action_dispatch/middleware/reloader.rb:65:in `call'
2010
- actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2011
- actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2012
- actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2013
- railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
2014
- railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
2015
- actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2016
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2017
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2018
- activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2019
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
2020
- actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
2021
- railties (3.2.6) lib/rails/engine.rb:479:in `call'
2022
- railties (3.2.6) lib/rails/application.rb:220:in `call'
2023
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2024
- railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
2025
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2026
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2027
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2028
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2029
-
2030
-
2031
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.8ms)
2032
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
2033
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (23.9ms)
2034
-
2035
-
2036
- Started POST "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-08-20 14:40:27 +0000
2037
- Connecting to database specified by database.yml
2038
- Processing by Inbox::EmailsController#create as HTML
2039
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZequSLxwrItmFUm7WV4RXFm4iZF9d84UzZcyclBbAhk=", "email"=>{"from"=>"robert.pankowecki@gmail.com", "to"=>"robert.pankowecki@gmail.com", "cc"=>"", "bcc"=>"", "subject"=>"Ala", "body"=>"ma kota"}, "commit"=>"Create Email", "mail"=>"robert.pankowecki@gmail.com"}
2040
- Rendered text template (0.0ms)
2041
-
2042
- Sent mail to robert.pankowecki@gmail.com (25ms)
2043
- Date: Mon, 20 Aug 2012 14:40:27 +0000
2044
- From: robert.pankowecki@gmail.com
2045
- To: robert.pankowecki@gmail.com
2046
- Message-ID: <50324c5be003d_6e711e9ac18800c0@rupert-ThinkPad-T420.mail>
2047
- Subject: Ala
2048
- Mime-Version: 1.0
2049
- Content-Type: text/html;
2050
- charset=UTF-8
2051
- Content-Transfer-Encoding: 7bit
2052
-
2053
- ma kota
2054
- Redirected to http://localhost:3000/inbox/robert.pankowecki@gmail.com/emails
2055
- Completed 302 Found in 99ms (ActiveRecord: 0.0ms)
2056
-
2057
-
2058
- Started GET "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-08-20 14:40:27 +0000
2059
- Processing by Inbox::EmailsController#index as HTML
2060
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
2061
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/index.html.erb within layouts/inbox/inbox (1.4ms)
2062
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (10.0ms)
2063
- Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.0ms)
2064
-
2065
-
2066
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-08-20 14:40:27 +0000
2067
- Served asset /inbox/application.css - 304 Not Modified (8ms)
2068
-
2069
-
2070
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-08-20 14:40:27 +0000
2071
- Served asset /inbox/reset.css - 304 Not Modified (1ms)
2072
-
2073
-
2074
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-08-20 14:40:27 +0000
2075
- Served asset /inbox/emails.css - 304 Not Modified (2ms)
2076
-
2077
-
2078
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-08-20 14:40:27 +0000
2079
- Served asset /inbox/emails.js - 304 Not Modified (1ms)
2080
-
2081
-
2082
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-08-20 14:40:28 +0000
2083
- Served asset /inbox/panel.css - 304 Not Modified (2ms)
2084
-
2085
-
2086
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-08-20 14:40:28 +0000
2087
- Served asset /inbox/application.js - 304 Not Modified (2ms)
2088
-
2089
-
2090
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-08-20 14:40:28 +0000
2091
- Served asset /inbox/results_bg.png - 304 Not Modified (1ms)
2092
- Connecting to database specified by database.yml
2093
- Connecting to database specified by database.yml
2094
-
2095
-
2096
- Started GET "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-08-20 14:54:53 +0000
2097
- Connecting to database specified by database.yml
2098
- Processing by Inbox::EmailsController#index as HTML
2099
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
2100
- Completed 500 Internal Server Error in 0ms
2101
-
2102
- Errno::ENOENT (No such file or directory - /home/rupert/develop/inbox/test/dummy/tmp/mails):
2103
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/pathname.rb:397:in `open'
2104
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/pathname.rb:397:in `foreach'
2105
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/pathname.rb:397:in `children'
2106
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/pathname.rb:435:in `each_child'
2107
- /home/rupert/develop/inbox/app/controllers/inbox/emails_controller.rb:14:in `block in <class:EmailsController>'
2108
- activesupport (3.2.6) lib/active_support/callbacks.rb:418:in `_run__2690780725380345840__process_action__2563478081841984849__callbacks'
2109
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
2110
- activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
2111
- activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
2112
- actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action'
2113
- actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
2114
- actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
2115
- activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument'
2116
- activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2117
- activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument'
2118
- actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
2119
- actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action'
2120
- activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2121
- actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process'
2122
- actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process'
2123
- actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch'
2124
- actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2125
- actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action'
2126
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call'
2127
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
2128
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call'
2129
- journey (1.0.3) lib/journey/router.rb:68:in `block in call'
2130
- journey (1.0.3) lib/journey/router.rb:56:in `each'
2131
- journey (1.0.3) lib/journey/router.rb:56:in `call'
2132
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
2133
- railties (3.2.6) lib/rails/engine.rb:479:in `call'
2134
- railties (3.2.6) lib/rails/railtie/configurable.rb:30:in `method_missing'
2135
- journey (1.0.3) lib/journey/router.rb:68:in `block in call'
2136
- journey (1.0.3) lib/journey/router.rb:56:in `each'
2137
- journey (1.0.3) lib/journey/router.rb:56:in `call'
2138
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
2139
- actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2140
- rack (1.4.1) lib/rack/etag.rb:23:in `call'
2141
- rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
2142
- actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call'
2143
- actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2144
- actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call'
2145
- rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
2146
- rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
2147
- actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call'
2148
- activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call'
2149
- activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
2150
- actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
2151
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__542463363832961498__call__688994589751673381__callbacks'
2152
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
2153
- activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
2154
- activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
2155
- actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2156
- actionpack (3.2.6) lib/action_dispatch/middleware/reloader.rb:65:in `call'
2157
- actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2158
- actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2159
- actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2160
- railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
2161
- railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
2162
- actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2163
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2164
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2165
- activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2166
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
2167
- actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
2168
- railties (3.2.6) lib/rails/engine.rb:479:in `call'
2169
- railties (3.2.6) lib/rails/application.rb:220:in `call'
2170
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2171
- railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
2172
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2173
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2174
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2175
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2176
-
2177
-
2178
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (17.8ms)
2179
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
2180
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (24.6ms)
2181
-
2182
-
2183
- Started GET "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-08-20 14:55:32 +0000
2184
- Connecting to database specified by database.yml
2185
- Processing by Inbox::EmailsController#index as HTML
2186
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
2187
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/index.html.erb within layouts/inbox/inbox (1.2ms)
2188
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (8.9ms)
2189
- Completed 200 OK in 33ms (Views: 32.4ms | ActiveRecord: 0.0ms)
2190
-
2191
-
2192
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-08-20 14:55:33 +0000
2193
- Served asset /inbox/application.css - 304 Not Modified (11ms)
2194
-
2195
-
2196
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-08-20 14:55:33 +0000
2197
- Served asset /inbox/reset.css - 304 Not Modified (1ms)
2198
-
2199
-
2200
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-08-20 14:55:33 +0000
2201
- Served asset /inbox/emails.css - 304 Not Modified (1ms)
2202
-
2203
-
2204
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-08-20 14:55:33 +0000
2205
- Served asset /inbox/panel.css - 304 Not Modified (1ms)
2206
-
2207
-
2208
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-08-20 14:55:33 +0000
2209
- Served asset /inbox/emails.js - 304 Not Modified (1ms)
2210
-
2211
-
2212
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-08-20 14:55:33 +0000
2213
- Served asset /inbox/application.js - 304 Not Modified (2ms)
2214
-
2215
-
2216
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-08-20 14:55:33 +0000
2217
- Served asset /inbox/results_bg.png - 304 Not Modified (1ms)
2218
-
2219
-
2220
- Started GET "/inbox/robert.pankowecki@gmail.com/emails/new" for 127.0.0.1 at 2012-08-20 14:55:36 +0000
2221
- Processing by Inbox::EmailsController#new as HTML
2222
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
2223
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/new.html.erb within layouts/inbox/inbox (8.5ms)
2224
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (2.2ms)
2225
- Completed 200 OK in 13ms (Views: 12.8ms | ActiveRecord: 0.0ms)
2226
-
2227
-
2228
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-08-20 14:55:36 +0000
2229
- Served asset /inbox/application.css - 304 Not Modified (5ms)
2230
-
2231
-
2232
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-08-20 14:55:36 +0000
2233
- Served asset /inbox/panel.css - 304 Not Modified (0ms)
2234
-
2235
-
2236
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-08-20 14:55:36 +0000
2237
- Served asset /inbox/emails.css - 304 Not Modified (2ms)
2238
-
2239
-
2240
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-08-20 14:55:36 +0000
2241
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
2242
-
2243
-
2244
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-08-20 14:55:36 +0000
2245
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
2246
-
2247
-
2248
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-08-20 14:55:36 +0000
2249
- Served asset /inbox/application.js - 304 Not Modified (0ms)
2250
-
2251
-
2252
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-08-20 14:55:36 +0000
2253
- Served asset /inbox/results_bg.png - 304 Not Modified (0ms)
2254
-
2255
-
2256
- Started POST "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-08-20 14:57:24 +0000
2257
- Connecting to database specified by database.yml
2258
- Processing by Inbox::EmailsController#create as HTML
2259
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZequSLxwrItmFUm7WV4RXFm4iZF9d84UzZcyclBbAhk=", "email"=>{"from"=>"robert.pankowecki@gmail.com", "to"=>"robert.pankowecki@gmail.com", "cc"=>"", "bcc"=>"", "subject"=>"Ala", "body"=>"ma kota\r\n"}, "commit"=>"Create Email", "mail"=>"robert.pankowecki@gmail.com"}
2260
- Rendered text template (0.0ms)
2261
-
2262
- Sent mail to robert.pankowecki@gmail.com (26ms)
2263
- Date: Mon, 20 Aug 2012 14:57:25 +0000
2264
- From: robert.pankowecki@gmail.com
2265
- To: robert.pankowecki@gmail.com
2266
- Message-ID: <5032505517d20_71441aa6bac78665@rupert-ThinkPad-T420.mail>
2267
- Subject: Ala
2268
- Mime-Version: 1.0
2269
- Content-Type: text/html;
2270
- charset=UTF-8
2271
- Content-Transfer-Encoding: 7bit
2272
-
2273
- ma kota
2274
-
2275
- Redirected to http://localhost:3000/inbox/robert.pankowecki@gmail.com/emails
2276
- Completed 302 Found in 84ms (ActiveRecord: 0.0ms)
2277
-
2278
-
2279
- Started GET "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-08-20 14:57:25 +0000
2280
- Processing by Inbox::EmailsController#index as HTML
2281
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
2282
- Completed 500 Internal Server Error in 0ms
2283
-
2284
- Errno::ENOENT (No such file or directory - 1345474645.1013217):
2285
- mail (2.4.4) lib/mail/mail.rb:176:in `initialize'
2286
- mail (2.4.4) lib/mail/mail.rb:176:in `open'
2287
- mail (2.4.4) lib/mail/mail.rb:176:in `read'
2288
- /home/rupert/develop/inbox/app/controllers/inbox/emails_controller.rb:16:in `block (2 levels) in <class:EmailsController>'
2289
- /home/rupert/develop/inbox/app/controllers/inbox/emails_controller.rb:15:in `each'
2290
- /home/rupert/develop/inbox/app/controllers/inbox/emails_controller.rb:15:in `each'
2291
- /home/rupert/develop/inbox/app/controllers/inbox/emails_controller.rb:15:in `map'
2292
- /home/rupert/develop/inbox/app/controllers/inbox/emails_controller.rb:15:in `block in <class:EmailsController>'
2293
- activesupport (3.2.6) lib/active_support/callbacks.rb:418:in `_run__3646346294933515347__process_action__2306387246161677834__callbacks'
2294
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
2295
- activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
2296
- activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
2297
- actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action'
2298
- actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
2299
- actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
2300
- activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument'
2301
- activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2302
- activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument'
2303
- actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
2304
- actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action'
2305
- activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2306
- actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process'
2307
- actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process'
2308
- actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch'
2309
- actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2310
- actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action'
2311
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call'
2312
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
2313
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call'
2314
- journey (1.0.3) lib/journey/router.rb:68:in `block in call'
2315
- journey (1.0.3) lib/journey/router.rb:56:in `each'
2316
- journey (1.0.3) lib/journey/router.rb:56:in `call'
2317
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
2318
- railties (3.2.6) lib/rails/engine.rb:479:in `call'
2319
- railties (3.2.6) lib/rails/railtie/configurable.rb:30:in `method_missing'
2320
- journey (1.0.3) lib/journey/router.rb:68:in `block in call'
2321
- journey (1.0.3) lib/journey/router.rb:56:in `each'
2322
- journey (1.0.3) lib/journey/router.rb:56:in `call'
2323
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
2324
- actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2325
- rack (1.4.1) lib/rack/etag.rb:23:in `call'
2326
- rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
2327
- actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call'
2328
- actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2329
- actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call'
2330
- rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
2331
- rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
2332
- actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call'
2333
- activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call'
2334
- activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
2335
- actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
2336
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__221653763135486328__call__1203373169670107212__callbacks'
2337
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
2338
- activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
2339
- activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
2340
- actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2341
- actionpack (3.2.6) lib/action_dispatch/middleware/reloader.rb:65:in `call'
2342
- actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2343
- actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2344
- actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2345
- railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
2346
- railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
2347
- actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2348
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2349
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2350
- activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2351
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
2352
- actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
2353
- railties (3.2.6) lib/rails/engine.rb:479:in `call'
2354
- railties (3.2.6) lib/rails/application.rb:220:in `call'
2355
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2356
- railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
2357
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2358
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2359
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2360
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2361
-
2362
-
2363
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.1ms)
2364
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
2365
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.3ms)
2366
-
2367
-
2368
- Started GET "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-08-20 14:59:17 +0000
2369
- Processing by Inbox::EmailsController#index as HTML
2370
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
2371
- Completed 500 Internal Server Error in 0ms
2372
-
2373
- Errno::ENOENT (No such file or directory - /home/rupert/develop/inbox/test/dummy/1345474645.1013217):
2374
- /home/rupert/develop/inbox/app/controllers/inbox/emails_controller.rb:16:in `realpath'
2375
- /home/rupert/develop/inbox/app/controllers/inbox/emails_controller.rb:16:in `realpath'
2376
- /home/rupert/develop/inbox/app/controllers/inbox/emails_controller.rb:16:in `block (2 levels) in <class:EmailsController>'
2377
- /home/rupert/develop/inbox/app/controllers/inbox/emails_controller.rb:15:in `each'
2378
- /home/rupert/develop/inbox/app/controllers/inbox/emails_controller.rb:15:in `each'
2379
- /home/rupert/develop/inbox/app/controllers/inbox/emails_controller.rb:15:in `map'
2380
- /home/rupert/develop/inbox/app/controllers/inbox/emails_controller.rb:15:in `block in <class:EmailsController>'
2381
- activesupport (3.2.6) lib/active_support/callbacks.rb:418:in `_run__3646346294933515347__process_action__2306387246161677834__callbacks'
2382
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
2383
- activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
2384
- activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
2385
- actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action'
2386
- actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
2387
- actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
2388
- activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument'
2389
- activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2390
- activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument'
2391
- actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
2392
- actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action'
2393
- activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2394
- actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process'
2395
- actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process'
2396
- actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch'
2397
- actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2398
- actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action'
2399
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call'
2400
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
2401
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call'
2402
- journey (1.0.3) lib/journey/router.rb:68:in `block in call'
2403
- journey (1.0.3) lib/journey/router.rb:56:in `each'
2404
- journey (1.0.3) lib/journey/router.rb:56:in `call'
2405
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
2406
- railties (3.2.6) lib/rails/engine.rb:479:in `call'
2407
- railties (3.2.6) lib/rails/railtie/configurable.rb:30:in `method_missing'
2408
- journey (1.0.3) lib/journey/router.rb:68:in `block in call'
2409
- journey (1.0.3) lib/journey/router.rb:56:in `each'
2410
- journey (1.0.3) lib/journey/router.rb:56:in `call'
2411
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
2412
- actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2413
- rack (1.4.1) lib/rack/etag.rb:23:in `call'
2414
- rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
2415
- actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call'
2416
- actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2417
- actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call'
2418
- rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
2419
- rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
2420
- actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call'
2421
- activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call'
2422
- activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
2423
- actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
2424
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__221653763135486328__call__1203373169670107212__callbacks'
2425
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
2426
- activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
2427
- activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
2428
- actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2429
- actionpack (3.2.6) lib/action_dispatch/middleware/reloader.rb:65:in `call'
2430
- actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2431
- actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2432
- actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2433
- railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
2434
- railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
2435
- actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2436
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2437
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2438
- activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2439
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
2440
- actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
2441
- railties (3.2.6) lib/rails/engine.rb:479:in `call'
2442
- railties (3.2.6) lib/rails/application.rb:220:in `call'
2443
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2444
- railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
2445
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2446
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2447
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2448
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2449
-
2450
-
2451
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (28.2ms)
2452
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
2453
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (33.1ms)
2454
-
2455
-
2456
- Started GET "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-08-20 14:59:54 +0000
2457
- Processing by Inbox::EmailsController#index as HTML
2458
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
2459
- Completed 500 Internal Server Error in 0ms
2460
-
2461
- RuntimeError (#<Pathname:1345474645.1013217>):
2462
- /home/rupert/develop/inbox/app/controllers/inbox/emails_controller.rb:16:in `block (2 levels) in <class:EmailsController>'
2463
- /home/rupert/develop/inbox/app/controllers/inbox/emails_controller.rb:15:in `each'
2464
- /home/rupert/develop/inbox/app/controllers/inbox/emails_controller.rb:15:in `each'
2465
- /home/rupert/develop/inbox/app/controllers/inbox/emails_controller.rb:15:in `map'
2466
- /home/rupert/develop/inbox/app/controllers/inbox/emails_controller.rb:15:in `block in <class:EmailsController>'
2467
- activesupport (3.2.6) lib/active_support/callbacks.rb:418:in `_run__3646346294933515347__process_action__2306387246161677834__callbacks'
2468
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
2469
- activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
2470
- activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
2471
- actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action'
2472
- actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
2473
- actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
2474
- activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument'
2475
- activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2476
- activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument'
2477
- actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
2478
- actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action'
2479
- activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2480
- actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process'
2481
- actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process'
2482
- actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch'
2483
- actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2484
- actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action'
2485
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call'
2486
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
2487
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call'
2488
- journey (1.0.3) lib/journey/router.rb:68:in `block in call'
2489
- journey (1.0.3) lib/journey/router.rb:56:in `each'
2490
- journey (1.0.3) lib/journey/router.rb:56:in `call'
2491
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
2492
- railties (3.2.6) lib/rails/engine.rb:479:in `call'
2493
- railties (3.2.6) lib/rails/railtie/configurable.rb:30:in `method_missing'
2494
- journey (1.0.3) lib/journey/router.rb:68:in `block in call'
2495
- journey (1.0.3) lib/journey/router.rb:56:in `each'
2496
- journey (1.0.3) lib/journey/router.rb:56:in `call'
2497
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
2498
- actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2499
- rack (1.4.1) lib/rack/etag.rb:23:in `call'
2500
- rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
2501
- actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call'
2502
- actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2503
- actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call'
2504
- rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
2505
- rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
2506
- actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call'
2507
- activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call'
2508
- activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
2509
- actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
2510
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__221653763135486328__call__1203373169670107212__callbacks'
2511
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
2512
- activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
2513
- activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
2514
- actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2515
- actionpack (3.2.6) lib/action_dispatch/middleware/reloader.rb:65:in `call'
2516
- actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2517
- actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2518
- actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2519
- railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
2520
- railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
2521
- actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2522
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2523
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2524
- activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2525
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
2526
- actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
2527
- railties (3.2.6) lib/rails/engine.rb:479:in `call'
2528
- railties (3.2.6) lib/rails/application.rb:220:in `call'
2529
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2530
- railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
2531
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2532
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2533
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2534
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2535
-
2536
-
2537
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
2538
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
2539
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.7ms)
2540
-
2541
-
2542
- Started GET "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-08-20 15:00:49 +0000
2543
- Processing by Inbox::EmailsController#index as HTML
2544
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
2545
- Completed 500 Internal Server Error in 0ms
2546
-
2547
- RuntimeError (#<Pathname:/home/rupert/develop/inbox/test/dummy/tmp/mails>):
2548
- /home/rupert/develop/inbox/app/controllers/inbox/emails_controller.rb:15:in `block in <class:EmailsController>'
2549
- activesupport (3.2.6) lib/active_support/callbacks.rb:418:in `_run__3646346294933515347__process_action__2306387246161677834__callbacks'
2550
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
2551
- activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
2552
- activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
2553
- actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action'
2554
- actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
2555
- actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
2556
- activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument'
2557
- activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2558
- activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument'
2559
- actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
2560
- actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action'
2561
- activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2562
- actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process'
2563
- actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process'
2564
- actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch'
2565
- actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2566
- actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action'
2567
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call'
2568
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
2569
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call'
2570
- journey (1.0.3) lib/journey/router.rb:68:in `block in call'
2571
- journey (1.0.3) lib/journey/router.rb:56:in `each'
2572
- journey (1.0.3) lib/journey/router.rb:56:in `call'
2573
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
2574
- railties (3.2.6) lib/rails/engine.rb:479:in `call'
2575
- railties (3.2.6) lib/rails/railtie/configurable.rb:30:in `method_missing'
2576
- journey (1.0.3) lib/journey/router.rb:68:in `block in call'
2577
- journey (1.0.3) lib/journey/router.rb:56:in `each'
2578
- journey (1.0.3) lib/journey/router.rb:56:in `call'
2579
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
2580
- actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2581
- rack (1.4.1) lib/rack/etag.rb:23:in `call'
2582
- rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
2583
- actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call'
2584
- actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2585
- actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call'
2586
- rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
2587
- rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
2588
- actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call'
2589
- activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call'
2590
- activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
2591
- actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
2592
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__221653763135486328__call__1203373169670107212__callbacks'
2593
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
2594
- activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
2595
- activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
2596
- actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2597
- actionpack (3.2.6) lib/action_dispatch/middleware/reloader.rb:65:in `call'
2598
- actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2599
- actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2600
- actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2601
- railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
2602
- railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
2603
- actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2604
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2605
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2606
- activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2607
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
2608
- actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
2609
- railties (3.2.6) lib/rails/engine.rb:479:in `call'
2610
- railties (3.2.6) lib/rails/application.rb:220:in `call'
2611
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2612
- railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
2613
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2614
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2615
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2616
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2617
-
2618
-
2619
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
2620
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
2621
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.4ms)
2622
-
2623
-
2624
- Started GET "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-08-20 15:04:01 +0000
2625
- Processing by Inbox::EmailsController#index as HTML
2626
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
2627
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/index.html.erb within layouts/inbox/inbox (0.2ms)
2628
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (30.1ms)
2629
- Completed 200 OK in 59ms (Views: 33.6ms | ActiveRecord: 0.0ms)
2630
-
2631
-
2632
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-08-20 15:04:01 +0000
2633
- Served asset /inbox/application.css - 304 Not Modified (12ms)
2634
-
2635
-
2636
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-08-20 15:04:01 +0000
2637
- Served asset /inbox/emails.css - 304 Not Modified (2ms)
2638
-
2639
-
2640
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-08-20 15:04:01 +0000
2641
- Served asset /inbox/panel.css - 304 Not Modified (2ms)
2642
-
2643
-
2644
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-08-20 15:04:01 +0000
2645
- Served asset /inbox/reset.css - 304 Not Modified (1ms)
2646
-
2647
-
2648
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-08-20 15:04:01 +0000
2649
- Served asset /inbox/application.js - 304 Not Modified (2ms)
2650
-
2651
-
2652
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-08-20 15:04:01 +0000
2653
- Served asset /inbox/emails.js - 304 Not Modified (1ms)
2654
-
2655
-
2656
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-08-20 15:04:01 +0000
2657
- Served asset /inbox/results_bg.png - 304 Not Modified (1ms)
2658
-
2659
-
2660
- Started GET "/inbox/robert.pankowecki@gmail.com/emails/5032505517d20_71441aa6bac78665@rupert-ThinkPad-T420.mail" for 127.0.0.1 at 2012-08-20 15:04:05 +0000
2661
- Processing by Inbox::EmailsController#show as HTML
2662
- Parameters: {"mail"=>"robert.pankowecki@gmail.com", "id"=>"5032505517d20_71441aa6bac78665@rupert-ThinkPad-T420.mail"}
2663
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/show.html.erb within layouts/inbox/inbox (1.5ms)
2664
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (2.5ms)
2665
- Completed 200 OK in 27ms (Views: 19.3ms | ActiveRecord: 0.0ms)
2666
-
2667
-
2668
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-08-20 15:04:05 +0000
2669
- Served asset /inbox/application.css - 304 Not Modified (2ms)
2670
-
2671
-
2672
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-08-20 15:04:05 +0000
2673
- Served asset /inbox/panel.css - 304 Not Modified (1ms)
2674
-
2675
-
2676
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-08-20 15:04:05 +0000
2677
- Served asset /inbox/emails.css - 304 Not Modified (0ms)
2678
-
2679
-
2680
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-08-20 15:04:05 +0000
2681
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
2682
-
2683
-
2684
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-08-20 15:04:05 +0000
2685
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
2686
-
2687
-
2688
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-08-20 15:04:05 +0000
2689
- Served asset /inbox/application.js - 304 Not Modified (0ms)
2690
-
2691
-
2692
- Started POST "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-08-20 15:05:31 +0000
2693
- Connecting to database specified by database.yml
2694
- Processing by Inbox::EmailsController#create as HTML
2695
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZequSLxwrItmFUm7WV4RXFm4iZF9d84UzZcyclBbAhk=", "email"=>{"from"=>"wojtek@wo.com", "to"=>"robert.pankowecki@gmail.com", "cc"=>"", "bcc"=>"", "subject"=>"another", "body"=>"email"}, "commit"=>"Create Email", "mail"=>"robert.pankowecki@gmail.com"}
2696
- Rendered text template (0.0ms)
2697
-
2698
- Sent mail to robert.pankowecki@gmail.com (4ms)
2699
- Date: Mon, 20 Aug 2012 15:05:32 +0000
2700
- From: wojtek@wo.com
2701
- To: robert.pankowecki@gmail.com
2702
- Message-ID: <5032523c2634a_7201135225c240a4@rupert-ThinkPad-T420.mail>
2703
- Subject: another
2704
- Mime-Version: 1.0
2705
- Content-Type: text/html;
2706
- charset=UTF-8
2707
- Content-Transfer-Encoding: 7bit
2708
-
2709
- email
2710
- Redirected to http://localhost:3000/inbox/robert.pankowecki@gmail.com/emails
2711
- Completed 302 Found in 108ms (ActiveRecord: 0.0ms)
2712
-
2713
-
2714
- Started GET "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-08-20 15:05:32 +0000
2715
- Processing by Inbox::EmailsController#index as HTML
2716
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
2717
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/index.html.erb within layouts/inbox/inbox (1.9ms)
2718
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (9.4ms)
2719
- Completed 200 OK in 27ms (Views: 16.0ms | ActiveRecord: 0.0ms)
2720
-
2721
-
2722
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-08-20 15:05:32 +0000
2723
- Served asset /inbox/application.css - 304 Not Modified (30ms)
2724
-
2725
-
2726
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-08-20 15:05:32 +0000
2727
- Served asset /inbox/emails.css - 304 Not Modified (1ms)
2728
-
2729
-
2730
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-08-20 15:05:32 +0000
2731
- Served asset /inbox/reset.css - 304 Not Modified (1ms)
2732
-
2733
-
2734
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-08-20 15:05:32 +0000
2735
- Served asset /inbox/panel.css - 304 Not Modified (1ms)
2736
-
2737
-
2738
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-08-20 15:05:32 +0000
2739
- Served asset /inbox/emails.js - 304 Not Modified (1ms)
2740
-
2741
-
2742
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-08-20 15:05:32 +0000
2743
- Served asset /inbox/application.js - 304 Not Modified (2ms)
2744
-
2745
-
2746
- Started GET "/inbox/robert.pankowecki@gmail.com/emails/5032505517d20_71441aa6bac78665@rupert-ThinkPad-T420.mail" for 127.0.0.1 at 2012-08-20 15:05:36 +0000
2747
- Processing by Inbox::EmailsController#show as HTML
2748
- Parameters: {"mail"=>"robert.pankowecki@gmail.com", "id"=>"5032505517d20_71441aa6bac78665@rupert-ThinkPad-T420.mail"}
2749
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/show.html.erb within layouts/inbox/inbox (1.5ms)
2750
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (2.2ms)
2751
- Completed 200 OK in 21ms (Views: 6.4ms | ActiveRecord: 0.0ms)
2752
-
2753
-
2754
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-08-20 15:05:36 +0000
2755
- Served asset /inbox/application.css - 304 Not Modified (3ms)
2756
-
2757
-
2758
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-08-20 15:05:36 +0000
2759
- Served asset /inbox/emails.css - 304 Not Modified (0ms)
2760
-
2761
-
2762
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-08-20 15:05:36 +0000
2763
- Served asset /inbox/panel.css - 304 Not Modified (1ms)
2764
-
2765
-
2766
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-08-20 15:05:36 +0000
2767
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
2768
-
2769
-
2770
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-08-20 15:05:36 +0000
2771
- Served asset /inbox/application.js - 304 Not Modified (0ms)
2772
-
2773
-
2774
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-08-20 15:05:36 +0000
2775
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
2776
-
2777
-
2778
- Started GET "/inbox/robert.pankowecki@gmail.com/emails/5032523c2634a_7201135225c240a4@rupert-ThinkPad-T420.mail" for 127.0.0.1 at 2012-08-20 15:05:37 +0000
2779
- Processing by Inbox::EmailsController#show as HTML
2780
- Parameters: {"mail"=>"robert.pankowecki@gmail.com", "id"=>"5032523c2634a_7201135225c240a4@rupert-ThinkPad-T420.mail"}
2781
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/show.html.erb within layouts/inbox/inbox (0.8ms)
2782
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (2.7ms)
2783
- Completed 200 OK in 18ms (Views: 6.5ms | ActiveRecord: 0.0ms)
2784
-
2785
-
2786
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-08-20 15:05:37 +0000
2787
- Served asset /inbox/application.css - 304 Not Modified (31ms)
2788
-
2789
-
2790
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-08-20 15:05:37 +0000
2791
- Served asset /inbox/emails.css - 304 Not Modified (0ms)
2792
-
2793
-
2794
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-08-20 15:05:37 +0000
2795
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
2796
-
2797
-
2798
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-08-20 15:05:37 +0000
2799
- Served asset /inbox/panel.css - 304 Not Modified (0ms)
2800
-
2801
-
2802
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-08-20 15:05:37 +0000
2803
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
2804
-
2805
-
2806
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-08-20 15:05:37 +0000
2807
- Served asset /inbox/application.js - 304 Not Modified (0ms)
2808
-
2809
-
2810
- Started GET "/inbox/robert.pankowecki@gmail.com/emails/5032505517d20_71441aa6bac78665@rupert-ThinkPad-T420.mail" for 127.0.0.1 at 2012-08-20 15:05:38 +0000
2811
- Processing by Inbox::EmailsController#show as HTML
2812
- Parameters: {"mail"=>"robert.pankowecki@gmail.com", "id"=>"5032505517d20_71441aa6bac78665@rupert-ThinkPad-T420.mail"}
2813
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/show.html.erb within layouts/inbox/inbox (0.8ms)
2814
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (7.4ms)
2815
- Completed 200 OK in 47ms (Views: 37.0ms | ActiveRecord: 0.0ms)
2816
-
2817
-
2818
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-08-20 15:05:38 +0000
2819
- Served asset /inbox/application.css - 304 Not Modified (4ms)
2820
-
2821
-
2822
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-08-20 15:05:38 +0000
2823
- Served asset /inbox/panel.css - 304 Not Modified (0ms)
2824
-
2825
-
2826
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-08-20 15:05:38 +0000
2827
- Served asset /inbox/emails.css - 304 Not Modified (0ms)
2828
-
2829
-
2830
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-08-20 15:05:38 +0000
2831
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
2832
-
2833
-
2834
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-08-20 15:05:38 +0000
2835
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
2836
-
2837
-
2838
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-08-20 15:05:38 +0000
2839
- Served asset /inbox/application.js - 304 Not Modified (0ms)
2840
-
2841
-
2842
- Started GET "/inbox/robert.pankowecki@gmail.com/emails/5032523c2634a_7201135225c240a4@rupert-ThinkPad-T420.mail" for 127.0.0.1 at 2012-08-20 15:05:38 +0000
2843
- Processing by Inbox::EmailsController#show as HTML
2844
- Parameters: {"mail"=>"robert.pankowecki@gmail.com", "id"=>"5032523c2634a_7201135225c240a4@rupert-ThinkPad-T420.mail"}
2845
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/show.html.erb within layouts/inbox/inbox (0.9ms)
2846
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (2.5ms)
2847
- Completed 200 OK in 23ms (Views: 6.1ms | ActiveRecord: 0.0ms)
2848
-
2849
-
2850
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-08-20 15:05:38 +0000
2851
- Served asset /inbox/application.css - 304 Not Modified (1ms)
2852
-
2853
-
2854
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-08-20 15:05:38 +0000
2855
- Served asset /inbox/panel.css - 304 Not Modified (0ms)
2856
-
2857
-
2858
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-08-20 15:05:38 +0000
2859
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
2860
-
2861
-
2862
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-08-20 15:05:38 +0000
2863
- Served asset /inbox/application.js - 304 Not Modified (0ms)
2864
-
2865
-
2866
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-08-20 15:05:38 +0000
2867
- Served asset /inbox/emails.css - 304 Not Modified (0ms)
2868
-
2869
-
2870
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-08-20 15:05:38 +0000
2871
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
2872
-
2873
-
2874
- Started GET "/inbox/robert.pankowecki@gmail.com/emails/new" for 127.0.0.1 at 2012-08-21 08:43:23 +0000
2875
- Connecting to database specified by database.yml
2876
- Processing by Inbox::EmailsController#new as HTML
2877
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
2878
- Completed 500 Internal Server Error in 0ms
2879
-
2880
- TypeError (can't convert Pathname into Hash):
2881
- /home/rupert/develop/inbox/lib/inbox.rb:10:in `merge'
2882
- /home/rupert/develop/inbox/lib/inbox.rb:10:in `initialize'
2883
- /home/rupert/develop/inbox/app/controllers/inbox/emails_controller.rb:14:in `new'
2884
- /home/rupert/develop/inbox/app/controllers/inbox/emails_controller.rb:14:in `block in <class:EmailsController>'
2885
- activesupport (3.2.6) lib/active_support/callbacks.rb:418:in `_run__4385571770072853028__process_action__489169867916145723__callbacks'
2886
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
2887
- activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
2888
- activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
2889
- actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action'
2890
- actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
2891
- actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
2892
- activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument'
2893
- activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2894
- activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument'
2895
- actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
2896
- actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action'
2897
- activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2898
- actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process'
2899
- actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process'
2900
- actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch'
2901
- actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2902
- actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action'
2903
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call'
2904
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
2905
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call'
2906
- journey (1.0.3) lib/journey/router.rb:68:in `block in call'
2907
- journey (1.0.3) lib/journey/router.rb:56:in `each'
2908
- journey (1.0.3) lib/journey/router.rb:56:in `call'
2909
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
2910
- railties (3.2.6) lib/rails/engine.rb:479:in `call'
2911
- railties (3.2.6) lib/rails/railtie/configurable.rb:30:in `method_missing'
2912
- journey (1.0.3) lib/journey/router.rb:68:in `block in call'
2913
- journey (1.0.3) lib/journey/router.rb:56:in `each'
2914
- journey (1.0.3) lib/journey/router.rb:56:in `call'
2915
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
2916
- actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2917
- rack (1.4.1) lib/rack/etag.rb:23:in `call'
2918
- rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
2919
- actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call'
2920
- actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2921
- actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call'
2922
- rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
2923
- rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
2924
- actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call'
2925
- activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call'
2926
- activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
2927
- actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
2928
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__1869389284729484579__call__3553740450613615356__callbacks'
2929
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
2930
- activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
2931
- activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
2932
- actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2933
- actionpack (3.2.6) lib/action_dispatch/middleware/reloader.rb:65:in `call'
2934
- actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2935
- actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2936
- actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2937
- railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
2938
- railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
2939
- actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2940
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2941
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2942
- activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2943
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
2944
- actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
2945
- railties (3.2.6) lib/rails/engine.rb:479:in `call'
2946
- railties (3.2.6) lib/rails/application.rb:220:in `call'
2947
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2948
- railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
2949
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2950
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2951
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2952
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2953
-
2954
-
2955
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
2956
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
2957
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.7ms)
2958
-
2959
-
2960
- Started GET "/inbox/robert.pankowecki@gmail.com/emails/new" for 127.0.0.1 at 2012-08-21 08:45:34 +0000
2961
- Connecting to database specified by database.yml
2962
- Processing by Inbox::EmailsController#new as HTML
2963
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
2964
- Completed 500 Internal Server Error in 0ms
2965
-
2966
- NoMethodError (undefined method `[]' for #<Pathname:/home/rupert/develop/inbox/test/dummy/tmp/mails>):
2967
- /home/rupert/develop/inbox/app/controllers/inbox/emails_controller.rb:14:in `block in <class:EmailsController>'
2968
- activesupport (3.2.6) lib/active_support/callbacks.rb:418:in `_run__4596776966157454944__process_action__1713409369776300329__callbacks'
2969
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
2970
- activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
2971
- activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
2972
- actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action'
2973
- actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
2974
- actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
2975
- activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument'
2976
- activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2977
- activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument'
2978
- actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
2979
- actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action'
2980
- activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2981
- actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process'
2982
- actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process'
2983
- actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch'
2984
- actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2985
- actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action'
2986
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call'
2987
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
2988
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call'
2989
- journey (1.0.3) lib/journey/router.rb:68:in `block in call'
2990
- journey (1.0.3) lib/journey/router.rb:56:in `each'
2991
- journey (1.0.3) lib/journey/router.rb:56:in `call'
2992
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
2993
- railties (3.2.6) lib/rails/engine.rb:479:in `call'
2994
- railties (3.2.6) lib/rails/railtie/configurable.rb:30:in `method_missing'
2995
- journey (1.0.3) lib/journey/router.rb:68:in `block in call'
2996
- journey (1.0.3) lib/journey/router.rb:56:in `each'
2997
- journey (1.0.3) lib/journey/router.rb:56:in `call'
2998
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
2999
- actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
3000
- rack (1.4.1) lib/rack/etag.rb:23:in `call'
3001
- rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
3002
- actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call'
3003
- actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
3004
- actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call'
3005
- rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
3006
- rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
3007
- actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call'
3008
- activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call'
3009
- activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
3010
- actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
3011
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__1378637702033455629__call__2292514500111667281__callbacks'
3012
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
3013
- activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
3014
- activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
3015
- actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3016
- actionpack (3.2.6) lib/action_dispatch/middleware/reloader.rb:65:in `call'
3017
- actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
3018
- actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
3019
- actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
3020
- railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
3021
- railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
3022
- actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
3023
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
3024
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
3025
- activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
3026
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
3027
- actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
3028
- railties (3.2.6) lib/rails/engine.rb:479:in `call'
3029
- railties (3.2.6) lib/rails/application.rb:220:in `call'
3030
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
3031
- railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
3032
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
3033
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
3034
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
3035
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
3036
-
3037
-
3038
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
3039
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
3040
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.1ms)
3041
-
3042
-
3043
- Started GET "/inbox/robert.pankowecki@gmail.com/emails/new" for 127.0.0.1 at 2012-08-21 08:46:01 +0000
3044
- Processing by Inbox::EmailsController#new as HTML
3045
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
3046
- Completed 500 Internal Server Error in 0ms
3047
-
3048
- NoMethodError (undefined method `each_child' for nil:NilClass):
3049
- /home/rupert/develop/inbox/lib/inbox.rb:22:in `deliveries'
3050
- /home/rupert/develop/inbox/app/controllers/inbox/emails_controller.rb:19:in `block in <class:EmailsController>'
3051
- activesupport (3.2.6) lib/active_support/callbacks.rb:418:in `_run__4596776966157454944__process_action__1713409369776300329__callbacks'
3052
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
3053
- activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
3054
- activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
3055
- actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action'
3056
- actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
3057
- actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
3058
- activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument'
3059
- activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3060
- activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument'
3061
- actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
3062
- actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action'
3063
- activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
3064
- actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process'
3065
- actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process'
3066
- actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch'
3067
- actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
3068
- actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action'
3069
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call'
3070
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
3071
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call'
3072
- journey (1.0.3) lib/journey/router.rb:68:in `block in call'
3073
- journey (1.0.3) lib/journey/router.rb:56:in `each'
3074
- journey (1.0.3) lib/journey/router.rb:56:in `call'
3075
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
3076
- railties (3.2.6) lib/rails/engine.rb:479:in `call'
3077
- railties (3.2.6) lib/rails/railtie/configurable.rb:30:in `method_missing'
3078
- journey (1.0.3) lib/journey/router.rb:68:in `block in call'
3079
- journey (1.0.3) lib/journey/router.rb:56:in `each'
3080
- journey (1.0.3) lib/journey/router.rb:56:in `call'
3081
- actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
3082
- actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
3083
- rack (1.4.1) lib/rack/etag.rb:23:in `call'
3084
- rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
3085
- actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call'
3086
- actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
3087
- actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call'
3088
- rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
3089
- rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
3090
- actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call'
3091
- activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call'
3092
- activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
3093
- actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
3094
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__1378637702033455629__call__2292514500111667281__callbacks'
3095
- activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
3096
- activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
3097
- activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
3098
- actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3099
- actionpack (3.2.6) lib/action_dispatch/middleware/reloader.rb:65:in `call'
3100
- actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
3101
- actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
3102
- actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
3103
- railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
3104
- railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
3105
- actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
3106
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
3107
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
3108
- activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
3109
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
3110
- actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
3111
- railties (3.2.6) lib/rails/engine.rb:479:in `call'
3112
- railties (3.2.6) lib/rails/application.rb:220:in `call'
3113
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
3114
- railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
3115
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
3116
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
3117
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
3118
- /home/rupert/binary/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
3119
-
3120
-
3121
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
3122
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
3123
- Rendered /home/rupert/develop/inbox/.bundle/ruby/1.9.1/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.5ms)
3124
-
3125
-
3126
- Started GET "/inbox/robert.pankowecki@gmail.com/emails/new" for 127.0.0.1 at 2012-08-21 08:48:31 +0000
3127
- Connecting to database specified by database.yml
3128
- Processing by Inbox::EmailsController#new as HTML
3129
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
3130
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/new.html.erb within layouts/inbox/inbox (5.9ms)
3131
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (8.6ms)
3132
- Completed 200 OK in 114ms (Views: 37.0ms | ActiveRecord: 0.0ms)
3133
-
3134
-
3135
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-08-21 08:48:32 +0000
3136
- Served asset /inbox/application.css - 304 Not Modified (11ms)
3137
-
3138
-
3139
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-08-21 08:48:32 +0000
3140
- Served asset /inbox/panel.css - 304 Not Modified (2ms)
3141
-
3142
-
3143
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-08-21 08:48:32 +0000
3144
- Served asset /inbox/emails.css - 304 Not Modified (4ms)
3145
-
3146
-
3147
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-08-21 08:48:32 +0000
3148
- Served asset /inbox/reset.css - 304 Not Modified (4ms)
3149
-
3150
-
3151
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-08-21 08:48:32 +0000
3152
- Served asset /inbox/application.js - 304 Not Modified (2ms)
3153
-
3154
-
3155
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-08-21 08:48:32 +0000
3156
- Served asset /inbox/emails.js - 304 Not Modified (1ms)
3157
-
3158
-
3159
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-08-21 08:48:32 +0000
3160
- Served asset /inbox/results_bg.png - 304 Not Modified (1ms)
3161
-
3162
-
3163
- Started GET "/inbox/robert.pankowecki@gmail.com/emails/5032523c2634a_7201135225c240a4@rupert-ThinkPad-T420.mail" for 127.0.0.1 at 2012-08-21 08:48:36 +0000
3164
- Processing by Inbox::EmailsController#show as HTML
3165
- Parameters: {"mail"=>"robert.pankowecki@gmail.com", "id"=>"5032523c2634a_7201135225c240a4@rupert-ThinkPad-T420.mail"}
3166
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/show.html.erb within layouts/inbox/inbox (1.5ms)
3167
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (19.7ms)
3168
- Completed 200 OK in 57ms (Views: 24.1ms | ActiveRecord: 0.0ms)
3169
-
3170
-
3171
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-08-21 08:48:36 +0000
3172
- Served asset /inbox/application.css - 304 Not Modified (0ms)
3173
-
3174
-
3175
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-08-21 08:48:36 +0000
3176
- Served asset /inbox/panel.css - 304 Not Modified (0ms)
3177
-
3178
-
3179
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-08-21 08:48:36 +0000
3180
- Served asset /inbox/emails.css - 304 Not Modified (0ms)
3181
-
3182
-
3183
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-08-21 08:48:36 +0000
3184
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
3185
-
3186
-
3187
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-08-21 08:48:36 +0000
3188
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
3189
-
3190
-
3191
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-08-21 08:48:36 +0000
3192
- Served asset /inbox/application.js - 304 Not Modified (0ms)
3193
-
3194
-
3195
- Started GET "/inbox/robert.pankowecki@gmail.com/emails/5032505517d20_71441aa6bac78665@rupert-ThinkPad-T420.mail" for 127.0.0.1 at 2012-08-21 08:48:36 +0000
3196
- Processing by Inbox::EmailsController#show as HTML
3197
- Parameters: {"mail"=>"robert.pankowecki@gmail.com", "id"=>"5032505517d20_71441aa6bac78665@rupert-ThinkPad-T420.mail"}
3198
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/show.html.erb within layouts/inbox/inbox (0.7ms)
3199
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (2.4ms)
3200
- Completed 200 OK in 17ms (Views: 6.1ms | ActiveRecord: 0.0ms)
3201
-
3202
-
3203
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-08-21 08:48:36 +0000
3204
- Served asset /inbox/application.css - 304 Not Modified (6ms)
3205
-
3206
-
3207
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-08-21 08:48:36 +0000
3208
- Served asset /inbox/emails.css - 304 Not Modified (0ms)
3209
-
3210
-
3211
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-08-21 08:48:36 +0000
3212
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
3213
-
3214
-
3215
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-08-21 08:48:36 +0000
3216
- Served asset /inbox/panel.css - 304 Not Modified (1ms)
3217
-
3218
-
3219
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-08-21 08:48:36 +0000
3220
- Served asset /inbox/application.js - 304 Not Modified (2ms)
3221
-
3222
-
3223
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-08-21 08:48:36 +0000
3224
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
3225
-
3226
-
3227
- Started GET "/inbox/robert.pankowecki@gmail.com/emails/5032523c2634a_7201135225c240a4@rupert-ThinkPad-T420.mail" for 127.0.0.1 at 2012-08-21 08:48:37 +0000
3228
- Processing by Inbox::EmailsController#show as HTML
3229
- Parameters: {"mail"=>"robert.pankowecki@gmail.com", "id"=>"5032523c2634a_7201135225c240a4@rupert-ThinkPad-T420.mail"}
3230
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/show.html.erb within layouts/inbox/inbox (0.9ms)
3231
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (2.4ms)
3232
- Completed 200 OK in 24ms (Views: 6.5ms | ActiveRecord: 0.0ms)
3233
-
3234
-
3235
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-08-21 08:48:37 +0000
3236
- Served asset /inbox/application.css - 304 Not Modified (6ms)
3237
-
3238
-
3239
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-08-21 08:48:37 +0000
3240
- Served asset /inbox/emails.css - 304 Not Modified (0ms)
3241
-
3242
-
3243
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-08-21 08:48:37 +0000
3244
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
3245
-
3246
-
3247
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-08-21 08:48:37 +0000
3248
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
3249
-
3250
-
3251
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-08-21 08:48:37 +0000
3252
- Served asset /inbox/panel.css - 304 Not Modified (0ms)
3253
-
3254
-
3255
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-08-21 08:48:37 +0000
3256
- Served asset /inbox/application.js - 304 Not Modified (0ms)
3257
-
3258
-
3259
- Started GET "/inbox/robert.pankowecki@gmail.com/emails/new" for 127.0.0.1 at 2012-08-21 08:48:41 +0000
3260
- Processing by Inbox::EmailsController#new as HTML
3261
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
3262
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/new.html.erb within layouts/inbox/inbox (2.0ms)
3263
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (2.3ms)
3264
- Completed 200 OK in 21ms (Views: 7.5ms | ActiveRecord: 0.0ms)
3265
-
3266
-
3267
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-08-21 08:48:41 +0000
3268
- Served asset /inbox/application.css - 304 Not Modified (14ms)
3269
-
3270
-
3271
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-08-21 08:48:41 +0000
3272
- Served asset /inbox/panel.css - 304 Not Modified (0ms)
3273
-
3274
-
3275
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-08-21 08:48:41 +0000
3276
- Served asset /inbox/emails.css - 304 Not Modified (0ms)
3277
-
3278
-
3279
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-08-21 08:48:41 +0000
3280
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
3281
-
3282
-
3283
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-08-21 08:48:41 +0000
3284
- Served asset /inbox/application.js - 304 Not Modified (0ms)
3285
-
3286
-
3287
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-08-21 08:48:41 +0000
3288
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
3289
-
3290
-
3291
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-08-21 08:48:41 +0000
3292
- Served asset /inbox/results_bg.png - 304 Not Modified (0ms)
3293
-
3294
-
3295
- Started POST "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-08-21 08:49:05 +0000
3296
- Processing by Inbox::EmailsController#create as HTML
3297
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZequSLxwrItmFUm7WV4RXFm4iZF9d84UzZcyclBbAhk=", "email"=>{"from"=>"robert.pankowecki@gmail.com", "to"=>"abc@gmail.com", "cc"=>"", "bcc"=>"", "subject"=>"temat", "body"=>"tresc"}, "commit"=>"Create Email", "mail"=>"robert.pankowecki@gmail.com"}
3298
- Rendered text template (0.0ms)
3299
-
3300
- Sent mail to abc@gmail.com (4ms)
3301
- Date: Tue, 21 Aug 2012 08:49:05 +0000
3302
- From: robert.pankowecki@gmail.com
3303
- To: abc@gmail.com
3304
- Message-ID: <50334b815969d_88117f1cf41508e@rupert-ThinkPad-T420.mail>
3305
- Subject: temat
3306
- Mime-Version: 1.0
3307
- Content-Type: text/html;
3308
- charset=UTF-8
3309
- Content-Transfer-Encoding: 7bit
3310
-
3311
- tresc
3312
- Redirected to http://localhost:3000/inbox/robert.pankowecki@gmail.com/emails
3313
- Completed 302 Found in 29ms (ActiveRecord: 0.0ms)
3314
-
3315
-
3316
- Started GET "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-08-21 08:49:05 +0000
3317
- Processing by Inbox::EmailsController#index as HTML
3318
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
3319
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/index.html.erb within layouts/inbox/inbox (0.2ms)
3320
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (2.3ms)
3321
- Completed 200 OK in 41ms (Views: 5.5ms | ActiveRecord: 0.0ms)
3322
-
3323
-
3324
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-08-21 08:49:05 +0000
3325
- Served asset /inbox/panel.css - 304 Not Modified (5ms)
3326
-
3327
-
3328
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-08-21 08:49:05 +0000
3329
- Served asset /inbox/emails.css - 304 Not Modified (2ms)
3330
-
3331
-
3332
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-08-21 08:49:05 +0000
3333
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
3334
-
3335
-
3336
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-08-21 08:49:05 +0000
3337
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
3338
-
3339
-
3340
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-08-21 08:49:05 +0000
3341
- Served asset /inbox/application.css - 304 Not Modified (1ms)
3342
-
3343
-
3344
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-08-21 08:49:05 +0000
3345
- Served asset /inbox/application.js - 304 Not Modified (0ms)
3346
-
3347
-
3348
- Started GET "/inbox/abc@gmail.com/emails" for 127.0.0.1 at 2012-08-21 08:51:45 +0000
3349
- Processing by Inbox::EmailsController#index as HTML
3350
- Parameters: {"mail"=>"abc@gmail.com"}
3351
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/index.html.erb within layouts/inbox/inbox (0.0ms)
3352
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (2.7ms)
3353
- Completed 200 OK in 40ms (Views: 5.7ms | ActiveRecord: 0.0ms)
3354
-
3355
-
3356
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-08-21 08:51:45 +0000
3357
- Served asset /inbox/panel.css - 304 Not Modified (5ms)
3358
-
3359
-
3360
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-08-21 08:51:45 +0000
3361
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
3362
-
3363
-
3364
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-08-21 08:51:45 +0000
3365
- Served asset /inbox/application.css - 304 Not Modified (0ms)
3366
-
3367
-
3368
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-08-21 08:51:45 +0000
3369
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
3370
-
3371
-
3372
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-08-21 08:51:45 +0000
3373
- Served asset /inbox/application.js - 304 Not Modified (0ms)
3374
-
3375
-
3376
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-08-21 08:51:45 +0000
3377
- Served asset /inbox/emails.css - 304 Not Modified (0ms)
3378
-
3379
-
3380
- Started GET "/inbox/abc@gmail.com/emails/50334b815969d_88117f1cf41508e@rupert-ThinkPad-T420.mail" for 127.0.0.1 at 2012-08-21 08:51:49 +0000
3381
- Processing by Inbox::EmailsController#show as HTML
3382
- Parameters: {"mail"=>"abc@gmail.com", "id"=>"50334b815969d_88117f1cf41508e@rupert-ThinkPad-T420.mail"}
3383
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/show.html.erb within layouts/inbox/inbox (0.8ms)
3384
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (2.3ms)
3385
- Completed 200 OK in 41ms (Views: 5.4ms | ActiveRecord: 0.0ms)
3386
-
3387
-
3388
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-08-21 08:51:49 +0000
3389
- Served asset /inbox/application.css - 304 Not Modified (0ms)
3390
-
3391
-
3392
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-08-21 08:51:49 +0000
3393
- Served asset /inbox/emails.css - 304 Not Modified (0ms)
3394
-
3395
-
3396
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-08-21 08:51:49 +0000
3397
- Served asset /inbox/panel.css - 304 Not Modified (2ms)
3398
-
3399
-
3400
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-08-21 08:51:49 +0000
3401
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
3402
-
3403
-
3404
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-08-21 08:51:49 +0000
3405
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
3406
-
3407
-
3408
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-08-21 08:51:49 +0000
3409
- Served asset /inbox/application.js - 304 Not Modified (0ms)
3410
-
3411
-
3412
- Started GET "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-08-21 09:06:00 +0000
3413
- Processing by Inbox::EmailsController#index as HTML
3414
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
3415
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/index.html.erb within layouts/inbox/inbox (0.0ms)
3416
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (2.4ms)
3417
- Completed 200 OK in 39ms (Views: 5.2ms | ActiveRecord: 0.0ms)
3418
-
3419
-
3420
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-08-21 09:06:00 +0000
3421
- Served asset /inbox/emails.css - 304 Not Modified (0ms)
3422
-
3423
-
3424
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-08-21 09:06:00 +0000
3425
- Served asset /inbox/panel.css - 304 Not Modified (0ms)
3426
-
3427
-
3428
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-08-21 09:06:00 +0000
3429
- Served asset /inbox/reset.css - 304 Not Modified (4ms)
3430
-
3431
-
3432
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-08-21 09:06:00 +0000
3433
- Served asset /inbox/application.js - 304 Not Modified (0ms)
3434
-
3435
-
3436
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-08-21 09:06:00 +0000
3437
- Served asset /inbox/application.css - 304 Not Modified (3ms)
3438
-
3439
-
3440
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-08-21 09:06:00 +0000
3441
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
3442
-
3443
-
3444
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-08-21 09:06:00 +0000
3445
- Served asset /inbox/results_bg.png - 304 Not Modified (0ms)
3446
-
3447
-
3448
- Started GET "/inbox/robert.pankowecki@gmail.com/emails/5032523c2634a_7201135225c240a4@rupert-ThinkPad-T420.mail" for 127.0.0.1 at 2012-08-21 09:06:03 +0000
3449
- Processing by Inbox::EmailsController#show as HTML
3450
- Parameters: {"mail"=>"robert.pankowecki@gmail.com", "id"=>"5032523c2634a_7201135225c240a4@rupert-ThinkPad-T420.mail"}
3451
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/show.html.erb within layouts/inbox/inbox (0.7ms)
3452
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (2.4ms)
3453
- Completed 200 OK in 36ms (Views: 6.1ms | ActiveRecord: 0.0ms)
3454
-
3455
-
3456
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-08-21 09:06:03 +0000
3457
- Served asset /inbox/emails.css - 304 Not Modified (5ms)
3458
-
3459
-
3460
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-08-21 09:06:03 +0000
3461
- Served asset /inbox/application.css - 304 Not Modified (2ms)
3462
-
3463
-
3464
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-08-21 09:06:03 +0000
3465
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
3466
-
3467
-
3468
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-08-21 09:06:03 +0000
3469
- Served asset /inbox/application.js - 304 Not Modified (0ms)
3470
-
3471
-
3472
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-08-21 09:06:03 +0000
3473
- Served asset /inbox/panel.css - 304 Not Modified (0ms)
3474
-
3475
-
3476
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-08-21 09:06:03 +0000
3477
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
3478
-
3479
-
3480
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-08-21 09:06:03 +0000
3481
- Served asset /inbox/results_bg.png - 304 Not Modified (0ms)
3482
-
3483
-
3484
- Started GET "/inbox/robert.pankowecki@gmail.com/emails/new" for 127.0.0.1 at 2012-08-21 09:14:28 +0000
3485
- Processing by Inbox::EmailsController#new as HTML
3486
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
3487
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/new.html.erb within layouts/inbox/inbox (1.8ms)
3488
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (2.4ms)
3489
- Completed 200 OK in 39ms (Views: 7.2ms | ActiveRecord: 0.0ms)
3490
-
3491
-
3492
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-08-21 09:14:28 +0000
3493
- Served asset /inbox/application.css - 304 Not Modified (7ms)
3494
-
3495
-
3496
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-08-21 09:14:28 +0000
3497
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
3498
-
3499
-
3500
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-08-21 09:14:28 +0000
3501
- Served asset /inbox/emails.css - 304 Not Modified (0ms)
3502
-
3503
-
3504
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-08-21 09:14:28 +0000
3505
- Served asset /inbox/panel.css - 304 Not Modified (0ms)
3506
-
3507
-
3508
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-08-21 09:14:28 +0000
3509
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
3510
-
3511
-
3512
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-08-21 09:14:28 +0000
3513
- Served asset /inbox/application.js - 304 Not Modified (1ms)
3514
-
3515
-
3516
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-08-21 09:14:28 +0000
3517
- Served asset /inbox/results_bg.png - 304 Not Modified (0ms)
3518
- Connecting to database specified by database.yml
3519
-
3520
-
3521
- Started GET "/inbox/robert.pankowecki@gmail.com/emails/new" for 127.0.0.1 at 2012-08-21 09:35:46 +0000
3522
- Connecting to database specified by database.yml
3523
- Processing by Inbox::EmailsController#new as HTML
3524
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
3525
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/new.html.erb within layouts/inbox/inbox (21.0ms)
3526
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (8.4ms)
3527
- Completed 200 OK in 36ms (Views: 35.7ms | ActiveRecord: 0.0ms)
3528
-
3529
-
3530
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-08-21 09:35:46 +0000
3531
- Served asset /inbox/application.css - 304 Not Modified (13ms)
3532
-
3533
-
3534
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-08-21 09:35:46 +0000
3535
- Served asset /inbox/emails.css - 304 Not Modified (1ms)
3536
-
3537
-
3538
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-08-21 09:35:46 +0000
3539
- Served asset /inbox/application.js - 304 Not Modified (3ms)
3540
-
3541
-
3542
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-08-21 09:35:46 +0000
3543
- Served asset /inbox/emails.js - 304 Not Modified (1ms)
3544
-
3545
-
3546
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-08-21 09:35:46 +0000
3547
- Served asset /inbox/panel.css - 304 Not Modified (1ms)
3548
-
3549
-
3550
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-08-21 09:35:46 +0000
3551
- Served asset /inbox/reset.css - 304 Not Modified (1ms)
3552
-
3553
-
3554
- Started GET "/assets/inbox/results_bg.png" for 127.0.0.1 at 2012-08-21 09:35:46 +0000
3555
- Served asset /inbox/results_bg.png - 304 Not Modified (1ms)
3556
-
3557
-
3558
- Started POST "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-08-21 09:35:56 +0000
3559
- Processing by Inbox::EmailsController#create as HTML
3560
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZequSLxwrItmFUm7WV4RXFm4iZF9d84UzZcyclBbAhk=", "email"=>{"from"=>"robert.pankowecki@gmail.com", "to"=>"robert.pankowecki@gmail.com", "cc"=>"", "bcc"=>"", "subject"=>"temat", "body"=>"ii"}, "commit"=>"Create Email", "mail"=>"robert.pankowecki@gmail.com"}
3561
- Rendered text template (0.0ms)
3562
-
3563
- Sent mail to robert.pankowecki@gmail.com (26ms)
3564
- Date: Tue, 21 Aug 2012 09:35:56 +0000
3565
- From: robert.pankowecki@gmail.com
3566
- To: robert.pankowecki@gmail.com
3567
- Message-ID: <5033567c6fc6b_1104191874068988@rupert-ThinkPad-T420.mail>
3568
- Subject: temat
3569
- Mime-Version: 1.0
3570
- Content-Type: text/html;
3571
- charset=UTF-8
3572
- Content-Transfer-Encoding: 7bit
3573
-
3574
- ii
3575
- Redirected to http://localhost:3000/inbox/robert.pankowecki@gmail.com/emails
3576
- Completed 302 Found in 96ms (ActiveRecord: 0.0ms)
3577
-
3578
-
3579
- Started GET "/inbox/robert.pankowecki@gmail.com/emails" for 127.0.0.1 at 2012-08-21 09:35:56 +0000
3580
- Processing by Inbox::EmailsController#index as HTML
3581
- Parameters: {"mail"=>"robert.pankowecki@gmail.com"}
3582
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/index.html.erb within layouts/inbox/inbox (0.2ms)
3583
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (2.1ms)
3584
- Completed 200 OK in 14ms (Views: 4.7ms | ActiveRecord: 0.0ms)
3585
-
3586
-
3587
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-08-21 09:35:56 +0000
3588
- Served asset /inbox/application.css - 304 Not Modified (6ms)
3589
-
3590
-
3591
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-08-21 09:35:56 +0000
3592
- Served asset /inbox/emails.css - 304 Not Modified (0ms)
3593
-
3594
-
3595
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-08-21 09:35:56 +0000
3596
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
3597
-
3598
-
3599
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-08-21 09:35:56 +0000
3600
- Served asset /inbox/panel.css - 304 Not Modified (0ms)
3601
-
3602
-
3603
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-08-21 09:35:56 +0000
3604
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
3605
-
3606
-
3607
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-08-21 09:35:56 +0000
3608
- Served asset /inbox/application.js - 304 Not Modified (0ms)
3609
-
3610
-
3611
- Started GET "/inbox/robert.pankowecki@gmail.com/emails/5033567c6fc6b_1104191874068988@rupert-ThinkPad-T420.mail" for 127.0.0.1 at 2012-08-21 09:35:58 +0000
3612
- Processing by Inbox::EmailsController#show as HTML
3613
- Parameters: {"mail"=>"robert.pankowecki@gmail.com", "id"=>"5033567c6fc6b_1104191874068988@rupert-ThinkPad-T420.mail"}
3614
- Rendered /home/rupert/develop/inbox/app/views/inbox/emails/show.html.erb within layouts/inbox/inbox (1.7ms)
3615
- Rendered /home/rupert/develop/inbox/app/views/layouts/inbox/application.html.erb (19.8ms)
3616
- Completed 200 OK in 44ms (Views: 24.2ms | ActiveRecord: 0.0ms)
3617
-
3618
-
3619
- Started GET "/assets/inbox/application.css?body=1" for 127.0.0.1 at 2012-08-21 09:35:58 +0000
3620
- Served asset /inbox/application.css - 304 Not Modified (4ms)
3621
-
3622
-
3623
- Started GET "/assets/inbox/emails.css?body=1" for 127.0.0.1 at 2012-08-21 09:35:58 +0000
3624
- Served asset /inbox/emails.css - 304 Not Modified (0ms)
3625
-
3626
-
3627
- Started GET "/assets/inbox/panel.css?body=1" for 127.0.0.1 at 2012-08-21 09:35:58 +0000
3628
- Served asset /inbox/panel.css - 304 Not Modified (0ms)
3629
-
3630
-
3631
- Started GET "/assets/inbox/reset.css?body=1" for 127.0.0.1 at 2012-08-21 09:35:58 +0000
3632
- Served asset /inbox/reset.css - 304 Not Modified (0ms)
3633
-
3634
-
3635
- Started GET "/assets/inbox/application.js?body=1" for 127.0.0.1 at 2012-08-21 09:35:58 +0000
3636
- Served asset /inbox/application.js - 304 Not Modified (0ms)
3637
-
3638
-
3639
- Started GET "/assets/inbox/emails.js?body=1" for 127.0.0.1 at 2012-08-21 09:35:58 +0000
3640
- Served asset /inbox/emails.js - 304 Not Modified (0ms)
3641
- Connecting to database specified by database.yml