blogrrr 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (114) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +34 -0
  5. data/app/assets/javascripts/blogrrr/application.js +13 -0
  6. data/app/assets/javascripts/blogrrr/articles.js +2 -0
  7. data/app/assets/javascripts/blogrrr/tags.js +2 -0
  8. data/app/assets/stylesheets/blogrrr/application.css +13 -0
  9. data/app/assets/stylesheets/blogrrr/articles.css +4 -0
  10. data/app/assets/stylesheets/blogrrr/tags.css +4 -0
  11. data/app/controllers/blogrrr/application_controller.rb +5 -0
  12. data/app/controllers/blogrrr/articles_controller.rb +44 -0
  13. data/app/controllers/blogrrr/tags_controller.rb +13 -0
  14. data/app/helpers/blogrrr/application_helper.rb +4 -0
  15. data/app/helpers/blogrrr/articles_helper.rb +4 -0
  16. data/app/helpers/blogrrr/tags_helper.rb +4 -0
  17. data/app/models/blogrrr/article.rb +26 -0
  18. data/app/models/blogrrr/tag.rb +10 -0
  19. data/app/models/blogrrr/tagging.rb +6 -0
  20. data/app/views/blogrrr/articles/_form.html.erb +23 -0
  21. data/app/views/blogrrr/articles/create.html.erb +1 -0
  22. data/app/views/blogrrr/articles/destroy.html.erb +2 -0
  23. data/app/views/blogrrr/articles/edit.html.erb +2 -0
  24. data/app/views/blogrrr/articles/index.html.erb +16 -0
  25. data/app/views/blogrrr/articles/new.html.erb +2 -0
  26. data/app/views/blogrrr/articles/show.html.erb +8 -0
  27. data/app/views/blogrrr/tags/index.html.erb +10 -0
  28. data/app/views/blogrrr/tags/show.html.erb +7 -0
  29. data/config/routes.rb +6 -0
  30. data/db/migrate/20140208164100_create_blogrrr_articles.rb +10 -0
  31. data/db/migrate/20140208164852_create_blogrrr_tags.rb +9 -0
  32. data/db/migrate/20140208164929_create_blogrrr_taggings.rb +10 -0
  33. data/lib/blogrrr/engine.rb +5 -0
  34. data/lib/blogrrr/version.rb +3 -0
  35. data/lib/blogrrr.rb +13 -0
  36. data/lib/tasks/blogrrr_tasks.rake +4 -0
  37. data/test/blogr_test.rb +7 -0
  38. data/test/controllers/blogr/articles_controller_test.rb +31 -0
  39. data/test/controllers/blogr/tags_controller_test.rb +16 -0
  40. data/test/dummy/README.rdoc +28 -0
  41. data/test/dummy/Rakefile +6 -0
  42. data/test/dummy/app/assets/javascripts/application.js +13 -0
  43. data/test/dummy/app/assets/stylesheets/application.css +25 -0
  44. data/test/dummy/app/controllers/application_controller.rb +5 -0
  45. data/test/dummy/app/helpers/application_helper.rb +2 -0
  46. data/test/dummy/app/models/user.rb +2 -0
  47. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  48. data/test/dummy/app/views/layouts/blog.html.erb +14 -0
  49. data/test/dummy/bin/bundle +3 -0
  50. data/test/dummy/bin/rails +4 -0
  51. data/test/dummy/bin/rake +4 -0
  52. data/test/dummy/config/application.rb +23 -0
  53. data/test/dummy/config/boot.rb +5 -0
  54. data/test/dummy/config/database.yml +25 -0
  55. data/test/dummy/config/environment.rb +5 -0
  56. data/test/dummy/config/environments/development.rb +29 -0
  57. data/test/dummy/config/environments/production.rb +80 -0
  58. data/test/dummy/config/environments/test.rb +36 -0
  59. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  60. data/test/dummy/config/initializers/blogrrr.rb +1 -0
  61. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  62. data/test/dummy/config/initializers/inflections.rb +16 -0
  63. data/test/dummy/config/initializers/mime_types.rb +5 -0
  64. data/test/dummy/config/initializers/secret_token.rb +12 -0
  65. data/test/dummy/config/initializers/session_store.rb +3 -0
  66. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  67. data/test/dummy/config/locales/en.yml +23 -0
  68. data/test/dummy/config/routes.rb +4 -0
  69. data/test/dummy/config.ru +4 -0
  70. data/test/dummy/db/development.sqlite3 +0 -0
  71. data/test/dummy/db/migrate/20140208201115_create_users.rb +9 -0
  72. data/test/dummy/db/schema.rb +45 -0
  73. data/test/dummy/log/development.log +4369 -0
  74. data/test/dummy/public/404.html +58 -0
  75. data/test/dummy/public/422.html +58 -0
  76. data/test/dummy/public/500.html +57 -0
  77. data/test/dummy/public/favicon.ico +0 -0
  78. data/test/dummy/test/fixtures/users.yml +11 -0
  79. data/test/dummy/test/models/user_test.rb +7 -0
  80. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  81. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  82. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  83. data/test/dummy/tmp/cache/assets/development/sprockets/396799be516a0b7eee6ec514d8bf28df +0 -0
  84. data/test/dummy/tmp/cache/assets/development/sprockets/567dd1f4697a7e32c101ca530015b849 +0 -0
  85. data/test/dummy/tmp/cache/assets/development/sprockets/6cff6f5b7142269f0282fd83753a6765 +0 -0
  86. data/test/dummy/tmp/cache/assets/development/sprockets/7624cfe9007ffc6cc6887aabf31ce1b7 +0 -0
  87. data/test/dummy/tmp/cache/assets/development/sprockets/77a3a42c96c00c10aae7b059d2ab3017 +0 -0
  88. data/test/dummy/tmp/cache/assets/development/sprockets/786032e739bc7a00e253c171b975bc51 +0 -0
  89. data/test/dummy/tmp/cache/assets/development/sprockets/8c133a3b035cff335111120d0f9a87ed +0 -0
  90. data/test/dummy/tmp/cache/assets/development/sprockets/92a1743093159b460f714d473c579f06 +0 -0
  91. data/test/dummy/tmp/cache/assets/development/sprockets/948462236a83fbc594ebe64f5c6d238e +0 -0
  92. data/test/dummy/tmp/cache/assets/development/sprockets/aaf89f726841064b6789dd0083c9aff8 +0 -0
  93. data/test/dummy/tmp/cache/assets/development/sprockets/b079c83f872af1c968a85e53d8e6ecec +0 -0
  94. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  95. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  96. data/test/dummy/tmp/cache/assets/development/sprockets/e74bfb2d6826a7cd982cec24e55f2149 +0 -0
  97. data/test/dummy/tmp/cache/assets/development/sprockets/ec38531776cee7e8d01a752cdd5d3d06 +0 -0
  98. data/test/dummy/tmp/cache/assets/development/sprockets/ed5b1b21c91518a2dbc6110a14d3afe6 +0 -0
  99. data/test/dummy/tmp/cache/assets/development/sprockets/ee7a95e8d5509b075146c83791d38d1a +0 -0
  100. data/test/dummy/tmp/cache/assets/development/sprockets/f28e885743408daa42c255e742baedcf +0 -0
  101. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  102. data/test/dummy/tmp/cache/assets/development/sprockets/f814870b219eaafb5fcd8b3b5c7f2b55 +0 -0
  103. data/test/dummy/tmp/cache/assets/development/sprockets/fd7681d5618249e15146205370b9e854 +0 -0
  104. data/test/fixtures/blogr/articles.yml +9 -0
  105. data/test/fixtures/blogr/taggings.yml +9 -0
  106. data/test/fixtures/blogr/tags.yml +7 -0
  107. data/test/helpers/blogr/articles_helper_test.rb +6 -0
  108. data/test/helpers/blogr/tags_helper_test.rb +6 -0
  109. data/test/integration/navigation_test.rb +10 -0
  110. data/test/models/blogr/article_test.rb +9 -0
  111. data/test/models/blogr/tag_test.rb +9 -0
  112. data/test/models/blogr/tagging_test.rb +9 -0
  113. data/test/test_helper.rb +15 -0
  114. metadata +266 -0
@@ -0,0 +1,4369 @@
1
+  (146.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2
+  (134.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
4
+ Migrating to CreateBlogrArticles (20140208164100)
5
+  (0.2ms) begin transaction
6
+  (1.0ms) CREATE TABLE "blogr_articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "created_at" datetime, "updated_at" datetime) 
7
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140208164100"]]
8
+  (119.5ms) commit transaction
9
+ ActiveRecord::SchemaMigration Load (1.8ms) SELECT "schema_migrations".* FROM "schema_migrations"
10
+
11
+
12
+ Started GET "/" for 127.0.0.1 at 2014-02-08 17:47:23 +0100
13
+ Processing by Rails::WelcomeController#index as HTML
14
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/railties-4.0.2/lib/rails/templates/rails/welcome/index.html.erb (2.0ms)
15
+ Completed 200 OK in 19ms (Views: 18.5ms | ActiveRecord: 0.0ms)
16
+
17
+
18
+ Started GET "/blogr" for 127.0.0.1 at 2014-02-08 17:47:27 +0100
19
+ Processing by Blogr::ArticlesController#index as HTML
20
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/index.html.erb within layouts/blogr/application (0.5ms)
21
+ Completed 200 OK in 50ms (Views: 49.3ms | ActiveRecord: 0.0ms)
22
+
23
+
24
+ Started GET "/assets/blogr/application.css?body=1" for 127.0.0.1 at 2014-02-08 17:47:27 +0100
25
+
26
+
27
+ Started GET "/assets/blogr/articles.css?body=1" for 127.0.0.1 at 2014-02-08 17:47:27 +0100
28
+
29
+
30
+ Started GET "/assets/blogr/articles.js?body=1" for 127.0.0.1 at 2014-02-08 17:47:27 +0100
31
+
32
+
33
+ Started GET "/assets/blogr/application.js?body=1" for 127.0.0.1 at 2014-02-08 17:47:27 +0100
34
+
35
+
36
+ Started GET "/blogr" for 127.0.0.1 at 2014-02-08 17:54:07 +0100
37
+ Processing by Blogr::ArticlesController#index as HTML
38
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/index.html.erb within layouts/blogr/application (0.1ms)
39
+ Completed 200 OK in 30ms (Views: 26.1ms | ActiveRecord: 0.0ms)
40
+
41
+
42
+ Started GET "/assets/blogr/application.css?body=1" for 127.0.0.1 at 2014-02-08 17:54:07 +0100
43
+
44
+
45
+ Started GET "/assets/blogr/articles.css?body=1" for 127.0.0.1 at 2014-02-08 17:54:07 +0100
46
+
47
+
48
+ Started GET "/assets/blogr/tags.css?body=1" for 127.0.0.1 at 2014-02-08 17:54:07 +0100
49
+
50
+
51
+ Started GET "/assets/blogr/articles.js?body=1" for 127.0.0.1 at 2014-02-08 17:54:07 +0100
52
+
53
+
54
+ Started GET "/assets/blogr/tags.js?body=1" for 127.0.0.1 at 2014-02-08 17:54:07 +0100
55
+
56
+
57
+ Started GET "/assets/blogr/application.js?body=1" for 127.0.0.1 at 2014-02-08 17:54:07 +0100
58
+
59
+
60
+ Started GET "/blogr" for 127.0.0.1 at 2014-02-08 17:54:08 +0100
61
+ Processing by Blogr::ArticlesController#index as HTML
62
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/index.html.erb within layouts/blogr/application (0.0ms)
63
+ Completed 200 OK in 6ms (Views: 6.0ms | ActiveRecord: 0.0ms)
64
+
65
+
66
+ Started GET "/assets/blogr/application.css?body=1" for 127.0.0.1 at 2014-02-08 17:54:08 +0100
67
+
68
+
69
+ Started GET "/assets/blogr/articles.css?body=1" for 127.0.0.1 at 2014-02-08 17:54:08 +0100
70
+
71
+
72
+ Started GET "/assets/blogr/tags.css?body=1" for 127.0.0.1 at 2014-02-08 17:54:08 +0100
73
+
74
+
75
+ Started GET "/assets/blogr/articles.js?body=1" for 127.0.0.1 at 2014-02-08 17:54:08 +0100
76
+
77
+
78
+ Started GET "/assets/blogr/tags.js?body=1" for 127.0.0.1 at 2014-02-08 17:54:08 +0100
79
+
80
+
81
+ Started GET "/assets/blogr/application.js?body=1" for 127.0.0.1 at 2014-02-08 17:54:08 +0100
82
+
83
+
84
+ Started GET "/blogr" for 127.0.0.1 at 2014-02-08 17:54:49 +0100
85
+ Processing by Blogr::ArticlesController#index as HTML
86
+  (0.2ms) SELECT COUNT(*) FROM "blogr_articles"
87
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/index.html.erb within layouts/blogr/application (5.4ms)
88
+ Completed 200 OK in 11ms (Views: 8.5ms | ActiveRecord: 2.1ms)
89
+
90
+
91
+ Started GET "/assets/blogr/application.css?body=1" for 127.0.0.1 at 2014-02-08 17:54:49 +0100
92
+
93
+
94
+ Started GET "/assets/blogr/articles.css?body=1" for 127.0.0.1 at 2014-02-08 17:54:49 +0100
95
+
96
+
97
+ Started GET "/assets/blogr/tags.css?body=1" for 127.0.0.1 at 2014-02-08 17:54:49 +0100
98
+
99
+
100
+ Started GET "/assets/blogr/articles.js?body=1" for 127.0.0.1 at 2014-02-08 17:54:49 +0100
101
+
102
+
103
+ Started GET "/assets/blogr/tags.js?body=1" for 127.0.0.1 at 2014-02-08 17:54:49 +0100
104
+
105
+
106
+ Started GET "/assets/blogr/application.js?body=1" for 127.0.0.1 at 2014-02-08 17:54:49 +0100
107
+
108
+
109
+ Started GET "/blogr/articles/new" for 127.0.0.1 at 2014-02-08 17:55:30 +0100
110
+ Processing by Blogr::ArticlesController#new as HTML
111
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/new.html.erb within layouts/blogr/application (0.8ms)
112
+ Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
113
+
114
+
115
+ Started GET "/assets/blogr/application.css?body=1" for 127.0.0.1 at 2014-02-08 17:55:30 +0100
116
+
117
+
118
+ Started GET "/assets/blogr/articles.css?body=1" for 127.0.0.1 at 2014-02-08 17:55:30 +0100
119
+
120
+
121
+ Started GET "/assets/blogr/tags.css?body=1" for 127.0.0.1 at 2014-02-08 17:55:30 +0100
122
+
123
+
124
+ Started GET "/assets/blogr/articles.js?body=1" for 127.0.0.1 at 2014-02-08 17:55:30 +0100
125
+
126
+
127
+ Started GET "/assets/blogr/application.js?body=1" for 127.0.0.1 at 2014-02-08 17:55:30 +0100
128
+
129
+
130
+ Started GET "/assets/blogr/tags.js?body=1" for 127.0.0.1 at 2014-02-08 17:55:30 +0100
131
+
132
+
133
+ Started GET "/blogr/articles/new" for 127.0.0.1 at 2014-02-08 17:56:14 +0100
134
+ Processing by Blogr::ArticlesController#new as HTML
135
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/new.html.erb within layouts/blogr/application (0.1ms)
136
+ Completed 200 OK in 6ms (Views: 6.1ms | ActiveRecord: 0.0ms)
137
+
138
+
139
+ Started GET "/assets/blogr/application.css?body=1" for 127.0.0.1 at 2014-02-08 17:56:14 +0100
140
+
141
+
142
+ Started GET "/assets/blogr/articles.css?body=1" for 127.0.0.1 at 2014-02-08 17:56:14 +0100
143
+
144
+
145
+ Started GET "/assets/blogr/tags.css?body=1" for 127.0.0.1 at 2014-02-08 17:56:14 +0100
146
+
147
+
148
+ Started GET "/assets/blogr/articles.js?body=1" for 127.0.0.1 at 2014-02-08 17:56:14 +0100
149
+
150
+
151
+ Started GET "/assets/blogr/tags.js?body=1" for 127.0.0.1 at 2014-02-08 17:56:14 +0100
152
+
153
+
154
+ Started GET "/assets/blogr/application.js?body=1" for 127.0.0.1 at 2014-02-08 17:56:14 +0100
155
+
156
+
157
+ Started GET "/blogr/articles/new" for 127.0.0.1 at 2014-02-08 17:56:15 +0100
158
+ Processing by Blogr::ArticlesController#new as HTML
159
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/new.html.erb within layouts/blogr/application (0.1ms)
160
+ Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
161
+
162
+
163
+ Started GET "/assets/blogr/application.css?body=1" for 127.0.0.1 at 2014-02-08 17:56:15 +0100
164
+
165
+
166
+ Started GET "/assets/blogr/articles.css?body=1" for 127.0.0.1 at 2014-02-08 17:56:15 +0100
167
+
168
+
169
+ Started GET "/assets/blogr/tags.css?body=1" for 127.0.0.1 at 2014-02-08 17:56:15 +0100
170
+
171
+
172
+ Started GET "/assets/blogr/articles.js?body=1" for 127.0.0.1 at 2014-02-08 17:56:15 +0100
173
+
174
+
175
+ Started GET "/assets/blogr/tags.js?body=1" for 127.0.0.1 at 2014-02-08 17:56:15 +0100
176
+
177
+
178
+ Started GET "/assets/blogr/application.js?body=1" for 127.0.0.1 at 2014-02-08 17:56:15 +0100
179
+
180
+
181
+ Started GET "/blogr/articles/new" for 127.0.0.1 at 2014-02-08 17:56:28 +0100
182
+ Processing by Blogr::ArticlesController#new as HTML
183
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/new.html.erb within layouts/blogr/application (0.1ms)
184
+ Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.0ms)
185
+
186
+
187
+ Started GET "/assets/blogr/application.css?body=1" for 127.0.0.1 at 2014-02-08 17:56:28 +0100
188
+
189
+
190
+ Started GET "/assets/blogr/articles.css?body=1" for 127.0.0.1 at 2014-02-08 17:56:28 +0100
191
+
192
+
193
+ Started GET "/assets/blogr/articles.js?body=1" for 127.0.0.1 at 2014-02-08 17:56:28 +0100
194
+
195
+
196
+ Started GET "/assets/blogr/tags.js?body=1" for 127.0.0.1 at 2014-02-08 17:56:28 +0100
197
+
198
+
199
+ Started GET "/assets/blogr/tags.css?body=1" for 127.0.0.1 at 2014-02-08 17:56:28 +0100
200
+
201
+
202
+ Started GET "/assets/blogr/application.js?body=1" for 127.0.0.1 at 2014-02-08 17:56:28 +0100
203
+
204
+
205
+ Started GET "/blogr/articles/new" for 127.0.0.1 at 2014-02-08 17:56:42 +0100
206
+ Processing by Blogr::ArticlesController#new as HTML
207
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/new.html.erb within layouts/blogr/application (0.0ms)
208
+ Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
209
+
210
+
211
+ Started GET "/assets/blogr/application.css?body=1" for 127.0.0.1 at 2014-02-08 17:56:42 +0100
212
+
213
+
214
+ Started GET "/assets/blogr/articles.css?body=1" for 127.0.0.1 at 2014-02-08 17:56:42 +0100
215
+
216
+
217
+ Started GET "/assets/blogr/tags.css?body=1" for 127.0.0.1 at 2014-02-08 17:56:42 +0100
218
+
219
+
220
+ Started GET "/assets/blogr/articles.js?body=1" for 127.0.0.1 at 2014-02-08 17:56:42 +0100
221
+
222
+
223
+ Started GET "/assets/blogr/tags.js?body=1" for 127.0.0.1 at 2014-02-08 17:56:42 +0100
224
+
225
+
226
+ Started GET "/assets/blogr/application.js?body=1" for 127.0.0.1 at 2014-02-08 17:56:42 +0100
227
+
228
+
229
+ Started GET "/blogr/articles/new" for 127.0.0.1 at 2014-02-08 17:57:02 +0100
230
+ Processing by Blogr::ArticlesController#new as HTML
231
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/new.html.erb within layouts/blogr/application (0.1ms)
232
+ Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
233
+
234
+
235
+ Started GET "/assets/blogr/application.css?body=1" for 127.0.0.1 at 2014-02-08 17:57:02 +0100
236
+
237
+
238
+ Started GET "/assets/blogr/articles.css?body=1" for 127.0.0.1 at 2014-02-08 17:57:02 +0100
239
+
240
+
241
+ Started GET "/assets/blogr/tags.css?body=1" for 127.0.0.1 at 2014-02-08 17:57:02 +0100
242
+
243
+
244
+ Started GET "/assets/blogr/articles.js?body=1" for 127.0.0.1 at 2014-02-08 17:57:02 +0100
245
+
246
+
247
+ Started GET "/assets/blogr/tags.js?body=1" for 127.0.0.1 at 2014-02-08 17:57:02 +0100
248
+
249
+
250
+ Started GET "/assets/blogr/application.js?body=1" for 127.0.0.1 at 2014-02-08 17:57:02 +0100
251
+
252
+
253
+ Started GET "/blogr/articles/new" for 127.0.0.1 at 2014-02-08 17:57:26 +0100
254
+ Processing by Blogr::ArticlesController#new as HTML
255
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/new.html.erb within layouts/blogr/application (0.1ms)
256
+ Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
257
+
258
+
259
+ Started GET "/assets/blogr/application.css?body=1" for 127.0.0.1 at 2014-02-08 17:57:26 +0100
260
+
261
+
262
+ Started GET "/assets/blogr/articles.css?body=1" for 127.0.0.1 at 2014-02-08 17:57:26 +0100
263
+
264
+
265
+ Started GET "/assets/blogr/tags.css?body=1" for 127.0.0.1 at 2014-02-08 17:57:26 +0100
266
+
267
+
268
+ Started GET "/assets/blogr/articles.js?body=1" for 127.0.0.1 at 2014-02-08 17:57:26 +0100
269
+
270
+
271
+ Started GET "/assets/blogr/tags.js?body=1" for 127.0.0.1 at 2014-02-08 17:57:26 +0100
272
+
273
+
274
+ Started GET "/assets/blogr/application.js?body=1" for 127.0.0.1 at 2014-02-08 17:57:26 +0100
275
+
276
+
277
+ Started GET "/blogr/articles/new" for 127.0.0.1 at 2014-02-08 17:57:26 +0100
278
+ Processing by Blogr::ArticlesController#new as HTML
279
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/new.html.erb within layouts/blogr/application (0.1ms)
280
+ Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.0ms)
281
+
282
+
283
+ Started GET "/assets/blogr/application.css?body=1" for 127.0.0.1 at 2014-02-08 17:57:26 +0100
284
+
285
+
286
+ Started GET "/assets/blogr/articles.css?body=1" for 127.0.0.1 at 2014-02-08 17:57:26 +0100
287
+
288
+
289
+ Started GET "/assets/blogr/tags.css?body=1" for 127.0.0.1 at 2014-02-08 17:57:26 +0100
290
+
291
+
292
+ Started GET "/assets/blogr/articles.js?body=1" for 127.0.0.1 at 2014-02-08 17:57:26 +0100
293
+
294
+
295
+ Started GET "/assets/blogr/tags.js?body=1" for 127.0.0.1 at 2014-02-08 17:57:26 +0100
296
+
297
+
298
+ Started GET "/assets/blogr/application.js?body=1" for 127.0.0.1 at 2014-02-08 17:57:26 +0100
299
+
300
+
301
+ Started GET "/blogr/articles/new" for 127.0.0.1 at 2014-02-08 17:57:27 +0100
302
+ Processing by Blogr::ArticlesController#new as HTML
303
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/new.html.erb within layouts/blogr/application (0.0ms)
304
+ Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.0ms)
305
+
306
+
307
+ Started GET "/assets/blogr/application.css?body=1" for 127.0.0.1 at 2014-02-08 17:57:27 +0100
308
+
309
+
310
+ Started GET "/assets/blogr/articles.css?body=1" for 127.0.0.1 at 2014-02-08 17:57:27 +0100
311
+
312
+
313
+ Started GET "/assets/blogr/tags.css?body=1" for 127.0.0.1 at 2014-02-08 17:57:27 +0100
314
+
315
+
316
+ Started GET "/assets/blogr/tags.js?body=1" for 127.0.0.1 at 2014-02-08 17:57:27 +0100
317
+
318
+
319
+ Started GET "/assets/blogr/articles.js?body=1" for 127.0.0.1 at 2014-02-08 17:57:27 +0100
320
+
321
+
322
+ Started GET "/assets/blogr/application.js?body=1" for 127.0.0.1 at 2014-02-08 17:57:27 +0100
323
+
324
+
325
+ Started GET "/blogr/articles/new" for 127.0.0.1 at 2014-02-08 17:57:57 +0100
326
+ Processing by Blogr::ArticlesController#new as HTML
327
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/_form.html.erb (37.8ms)
328
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/new.html.erb within layouts/blogr/application (42.4ms)
329
+ Completed 500 Internal Server Error in 45ms
330
+
331
+ ActionView::Template::Error (Could not find table 'blogr_taggings'):
332
+ 14: </p>
333
+ 15: <p>
334
+ 16: <%= f.label :tag_list %><br />
335
+ 17: <%= f.text_field :tag_list %>
336
+ 18: </p>
337
+ 19:
338
+ 20: <p>
339
+ activerecord (4.0.2) lib/active_record/connection_adapters/sqlite3_adapter.rb:512:in `table_structure'
340
+ activerecord (4.0.2) lib/active_record/connection_adapters/sqlite3_adapter.rb:399:in `columns'
341
+ activerecord (4.0.2) lib/active_record/connection_adapters/schema_cache.rb:114:in `block in prepare_default_proc'
342
+ activerecord (4.0.2) lib/active_record/connection_adapters/schema_cache.rb:56:in `yield'
343
+ activerecord (4.0.2) lib/active_record/connection_adapters/schema_cache.rb:56:in `columns'
344
+ activerecord (4.0.2) lib/active_record/connection_adapters/schema_cache.rb:118:in `block in prepare_default_proc'
345
+ activerecord (4.0.2) lib/active_record/connection_adapters/schema_cache.rb:67:in `yield'
346
+ activerecord (4.0.2) lib/active_record/connection_adapters/schema_cache.rb:67:in `columns_hash'
347
+ activerecord (4.0.2) lib/active_record/associations/association_scope.rb:25:in `column_for'
348
+ activerecord (4.0.2) lib/active_record/associations/association_scope.rb:37:in `bind'
349
+ activerecord (4.0.2) lib/active_record/associations/association_scope.rb:73:in `block in add_constraints'
350
+ activerecord (4.0.2) lib/active_record/associations/association_scope.rb:44:in `each'
351
+ activerecord (4.0.2) lib/active_record/associations/association_scope.rb:44:in `each_with_index'
352
+ activerecord (4.0.2) lib/active_record/associations/association_scope.rb:44:in `add_constraints'
353
+ activerecord (4.0.2) lib/active_record/associations/association_scope.rb:19:in `scope'
354
+ activerecord (4.0.2) lib/active_record/associations/association.rb:103:in `association_scope'
355
+ activerecord (4.0.2) lib/active_record/associations/association.rb:87:in `scope'
356
+ activerecord (4.0.2) lib/active_record/associations/collection_association.rb:382:in `scope'
357
+ activerecord (4.0.2) lib/active_record/associations/collection_proxy.rb:37:in `initialize'
358
+ activerecord (4.0.2) lib/active_record/relation/delegation.rb:78:in `new'
359
+ activerecord (4.0.2) lib/active_record/associations/collection_association.rb:37:in `reader'
360
+ activerecord (4.0.2) lib/active_record/associations/builder/association.rb:70:in `tags'
361
+ /home/ayo/Desktop/apps/blogr/app/models/blogr/article.rb:7:in `tag_list'
362
+ actionpack (4.0.2) lib/action_view/helpers/tags/base.rb:28:in `value'
363
+ actionpack (4.0.2) lib/action_view/helpers/tags/base.rb:37:in `value_before_type_cast'
364
+ actionpack (4.0.2) lib/action_view/helpers/tags/text_field.rb:9:in `block in render'
365
+ actionpack (4.0.2) lib/action_view/helpers/tags/text_field.rb:9:in `fetch'
366
+ actionpack (4.0.2) lib/action_view/helpers/tags/text_field.rb:9:in `render'
367
+ actionpack (4.0.2) lib/action_view/helpers/form_helper.rb:771:in `text_field'
368
+ actionpack (4.0.2) lib/action_view/helpers/form_helper.rb:1262:in `text_field'
369
+ /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/_form.html.erb:17:in `block in __home_ayo__esktop_apps_blogr_app_views_blogr_articles__form_html_erb___325713076_82318140'
370
+ actionpack (4.0.2) lib/action_view/helpers/capture_helper.rb:38:in `block in capture'
371
+ actionpack (4.0.2) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer'
372
+ actionpack (4.0.2) lib/action_view/helpers/capture_helper.rb:38:in `capture'
373
+ actionpack (4.0.2) lib/action_view/helpers/form_helper.rb:435:in `form_for'
374
+ /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/_form.html.erb:1:in `__home_ayo__esktop_apps_blogr_app_views_blogr_articles__form_html_erb___325713076_82318140'
375
+ actionpack (4.0.2) lib/action_view/template.rb:143:in `block in render'
376
+ activesupport (4.0.2) lib/active_support/notifications.rb:161:in `instrument'
377
+ actionpack (4.0.2) lib/action_view/template.rb:141:in `render'
378
+ actionpack (4.0.2) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial'
379
+ actionpack (4.0.2) lib/action_view/renderer/partial_renderer.rb:279:in `block in render'
380
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
381
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
382
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
383
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
384
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
385
+ actionpack (4.0.2) lib/action_view/renderer/partial_renderer.rb:278:in `render'
386
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:47:in `render_partial'
387
+ actionpack (4.0.2) lib/action_view/helpers/rendering_helper.rb:27:in `render'
388
+ /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/new.html.erb:3:in `__home_ayo__esktop_apps_blogr_app_views_blogr_articles_new_html_erb__1028006681_82515490'
389
+ actionpack (4.0.2) lib/action_view/template.rb:143:in `block in render'
390
+ activesupport (4.0.2) lib/active_support/notifications.rb:161:in `instrument'
391
+ actionpack (4.0.2) lib/action_view/template.rb:141:in `render'
392
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
393
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
394
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
395
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
396
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
397
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
398
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
399
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
400
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
401
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:17:in `render'
402
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:42:in `render_template'
403
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:23:in `render'
404
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:127:in `_render_template'
405
+ actionpack (4.0.2) lib/action_controller/metal/streaming.rb:219:in `_render_template'
406
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:120:in `render_to_body'
407
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
408
+ actionpack (4.0.2) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
409
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:97:in `render'
410
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:16:in `render'
411
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
412
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
413
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
414
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `ms'
415
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
416
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
417
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
418
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:40:in `render'
419
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
420
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
421
+ actionpack (4.0.2) lib/abstract_controller/base.rb:189:in `process_action'
422
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
423
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
424
+ activesupport (4.0.2) lib/active_support/callbacks.rb:383:in `_run__561240520__process_action__callbacks'
425
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
426
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
427
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
428
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
429
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
430
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
431
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
432
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
433
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
434
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
435
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
436
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
437
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
438
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
439
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
440
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
441
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
442
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
443
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
444
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
445
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
446
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
447
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
448
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
449
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
450
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
451
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
452
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
453
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
454
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
455
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
456
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
457
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
458
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
459
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
460
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
461
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
462
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
463
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
464
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
465
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__104905090__call__callbacks'
466
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
467
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
468
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
469
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
470
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
471
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
472
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
473
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
474
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
475
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
476
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
477
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
478
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
479
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
480
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
481
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
482
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
483
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
484
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
485
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
486
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
487
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
488
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
489
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
490
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
491
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
492
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
493
+
494
+
495
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
496
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
497
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.9ms)
498
+
499
+
500
+ Started GET "/blogr/articles/new" for 127.0.0.1 at 2014-02-08 17:58:03 +0100
501
+ Processing by Blogr::ArticlesController#new as HTML
502
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/_form.html.erb (3.0ms)
503
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/new.html.erb within layouts/blogr/application (4.1ms)
504
+ Completed 500 Internal Server Error in 10ms
505
+
506
+ ActionView::Template::Error (Could not find table 'blogr_taggings'):
507
+ 14: </p>
508
+ 15: <p>
509
+ 16: <%= f.label :tag_list %><br />
510
+ 17: <%= f.text_field :tag_list %>
511
+ 18: </p>
512
+ 19:
513
+ 20: <p>
514
+ activerecord (4.0.2) lib/active_record/connection_adapters/sqlite3_adapter.rb:512:in `table_structure'
515
+ activerecord (4.0.2) lib/active_record/connection_adapters/sqlite3_adapter.rb:399:in `columns'
516
+ activerecord (4.0.2) lib/active_record/connection_adapters/schema_cache.rb:114:in `block in prepare_default_proc'
517
+ activerecord (4.0.2) lib/active_record/connection_adapters/schema_cache.rb:56:in `yield'
518
+ activerecord (4.0.2) lib/active_record/connection_adapters/schema_cache.rb:56:in `columns'
519
+ activerecord (4.0.2) lib/active_record/connection_adapters/schema_cache.rb:118:in `block in prepare_default_proc'
520
+ activerecord (4.0.2) lib/active_record/connection_adapters/schema_cache.rb:67:in `yield'
521
+ activerecord (4.0.2) lib/active_record/connection_adapters/schema_cache.rb:67:in `columns_hash'
522
+ activerecord (4.0.2) lib/active_record/associations/association_scope.rb:25:in `column_for'
523
+ activerecord (4.0.2) lib/active_record/associations/association_scope.rb:37:in `bind'
524
+ activerecord (4.0.2) lib/active_record/associations/association_scope.rb:73:in `block in add_constraints'
525
+ activerecord (4.0.2) lib/active_record/associations/association_scope.rb:44:in `each'
526
+ activerecord (4.0.2) lib/active_record/associations/association_scope.rb:44:in `each_with_index'
527
+ activerecord (4.0.2) lib/active_record/associations/association_scope.rb:44:in `add_constraints'
528
+ activerecord (4.0.2) lib/active_record/associations/association_scope.rb:19:in `scope'
529
+ activerecord (4.0.2) lib/active_record/associations/association.rb:103:in `association_scope'
530
+ activerecord (4.0.2) lib/active_record/associations/association.rb:87:in `scope'
531
+ activerecord (4.0.2) lib/active_record/associations/collection_association.rb:382:in `scope'
532
+ activerecord (4.0.2) lib/active_record/associations/collection_proxy.rb:37:in `initialize'
533
+ activerecord (4.0.2) lib/active_record/relation/delegation.rb:78:in `new'
534
+ activerecord (4.0.2) lib/active_record/associations/collection_association.rb:37:in `reader'
535
+ activerecord (4.0.2) lib/active_record/associations/builder/association.rb:70:in `tags'
536
+ /home/ayo/Desktop/apps/blogr/app/models/blogr/article.rb:7:in `tag_list'
537
+ actionpack (4.0.2) lib/action_view/helpers/tags/base.rb:28:in `value'
538
+ actionpack (4.0.2) lib/action_view/helpers/tags/base.rb:37:in `value_before_type_cast'
539
+ actionpack (4.0.2) lib/action_view/helpers/tags/text_field.rb:9:in `block in render'
540
+ actionpack (4.0.2) lib/action_view/helpers/tags/text_field.rb:9:in `fetch'
541
+ actionpack (4.0.2) lib/action_view/helpers/tags/text_field.rb:9:in `render'
542
+ actionpack (4.0.2) lib/action_view/helpers/form_helper.rb:771:in `text_field'
543
+ actionpack (4.0.2) lib/action_view/helpers/form_helper.rb:1262:in `text_field'
544
+ /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/_form.html.erb:17:in `block in __home_ayo__esktop_apps_blogr_app_views_blogr_articles__form_html_erb___325713076_82318140'
545
+ actionpack (4.0.2) lib/action_view/helpers/capture_helper.rb:38:in `block in capture'
546
+ actionpack (4.0.2) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer'
547
+ actionpack (4.0.2) lib/action_view/helpers/capture_helper.rb:38:in `capture'
548
+ actionpack (4.0.2) lib/action_view/helpers/form_helper.rb:435:in `form_for'
549
+ /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/_form.html.erb:1:in `__home_ayo__esktop_apps_blogr_app_views_blogr_articles__form_html_erb___325713076_82318140'
550
+ actionpack (4.0.2) lib/action_view/template.rb:143:in `block in render'
551
+ activesupport (4.0.2) lib/active_support/notifications.rb:161:in `instrument'
552
+ actionpack (4.0.2) lib/action_view/template.rb:141:in `render'
553
+ actionpack (4.0.2) lib/action_view/renderer/partial_renderer.rb:306:in `render_partial'
554
+ actionpack (4.0.2) lib/action_view/renderer/partial_renderer.rb:279:in `block in render'
555
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
556
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
557
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
558
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
559
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
560
+ actionpack (4.0.2) lib/action_view/renderer/partial_renderer.rb:278:in `render'
561
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:47:in `render_partial'
562
+ actionpack (4.0.2) lib/action_view/helpers/rendering_helper.rb:27:in `render'
563
+ /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/new.html.erb:2:in `__home_ayo__esktop_apps_blogr_app_views_blogr_articles_new_html_erb__1028006681_82163490'
564
+ actionpack (4.0.2) lib/action_view/template.rb:143:in `block in render'
565
+ activesupport (4.0.2) lib/active_support/notifications.rb:161:in `instrument'
566
+ actionpack (4.0.2) lib/action_view/template.rb:141:in `render'
567
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
568
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
569
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
570
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
571
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
572
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
573
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
574
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
575
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
576
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:17:in `render'
577
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:42:in `render_template'
578
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:23:in `render'
579
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:127:in `_render_template'
580
+ actionpack (4.0.2) lib/action_controller/metal/streaming.rb:219:in `_render_template'
581
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:120:in `render_to_body'
582
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
583
+ actionpack (4.0.2) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
584
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:97:in `render'
585
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:16:in `render'
586
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
587
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
588
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
589
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `ms'
590
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
591
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
592
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
593
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:40:in `render'
594
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
595
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
596
+ actionpack (4.0.2) lib/abstract_controller/base.rb:189:in `process_action'
597
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
598
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
599
+ activesupport (4.0.2) lib/active_support/callbacks.rb:383:in `_run__561240520__process_action__callbacks'
600
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
601
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
602
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
603
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
604
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
605
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
606
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
607
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
608
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
609
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
610
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
611
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
612
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
613
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
614
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
615
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
616
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
617
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
618
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
619
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
620
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
621
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
622
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
623
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
624
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
625
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
626
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
627
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
628
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
629
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
630
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
631
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
632
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
633
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
634
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
635
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
636
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
637
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
638
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
639
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
640
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__104905090__call__callbacks'
641
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
642
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
643
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
644
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
645
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
646
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
647
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
648
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
649
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
650
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
651
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
652
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
653
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
654
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
655
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
656
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
657
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
658
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
659
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
660
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
661
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
662
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
663
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
664
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
665
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
666
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
667
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
668
+
669
+
670
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
671
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
672
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.4ms)
673
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
674
+ Migrating to CreateBlogrTags (20140208164852)
675
+  (0.1ms) begin transaction
676
+  (0.3ms) CREATE TABLE "blogr_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
677
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140208164852"]]
678
+  (170.9ms) commit transaction
679
+ Migrating to CreateBlogrTaggings (20140208164929)
680
+  (0.2ms) begin transaction
681
+  (0.2ms) rollback transaction
682
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
683
+ Migrating to CreateBlogrTaggings (20140208164929)
684
+  (0.1ms) begin transaction
685
+  (0.4ms) CREATE TABLE "blogr_taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tag_id" integer, "article_id" integer, "created_at" datetime, "updated_at" datetime) 
686
+  (0.1ms) CREATE INDEX "index_blogr_taggings_on_tag_id" ON "blogr_taggings" ("tag_id")
687
+  (0.1ms) CREATE INDEX "index_blogr_taggings_on_article_id" ON "blogr_taggings" ("article_id")
688
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140208164929"]]
689
+  (194.1ms) commit transaction
690
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
691
+
692
+
693
+ Started GET "/blogr/articles/new" for 127.0.0.1 at 2014-02-08 17:59:51 +0100
694
+ Processing by Blogr::ArticlesController#new as HTML
695
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/_form.html.erb (11.8ms)
696
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/new.html.erb within layouts/blogr/application (12.5ms)
697
+ Completed 200 OK in 20ms (Views: 16.0ms | ActiveRecord: 0.8ms)
698
+
699
+
700
+ Started GET "/assets/blogr/application.css?body=1" for 127.0.0.1 at 2014-02-08 17:59:51 +0100
701
+
702
+
703
+ Started GET "/assets/blogr/articles.css?body=1" for 127.0.0.1 at 2014-02-08 17:59:51 +0100
704
+
705
+
706
+ Started GET "/assets/blogr/tags.css?body=1" for 127.0.0.1 at 2014-02-08 17:59:51 +0100
707
+
708
+
709
+ Started GET "/assets/blogr/articles.js?body=1" for 127.0.0.1 at 2014-02-08 17:59:51 +0100
710
+
711
+
712
+ Started GET "/assets/blogr/tags.js?body=1" for 127.0.0.1 at 2014-02-08 17:59:51 +0100
713
+
714
+
715
+ Started GET "/assets/blogr/application.js?body=1" for 127.0.0.1 at 2014-02-08 17:59:51 +0100
716
+
717
+
718
+ Started POST "/blogr/articles" for 127.0.0.1 at 2014-02-08 18:00:24 +0100
719
+ Processing by Blogr::ArticlesController#create as HTML
720
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"bY80DKsgksacKMmzBNnHmTo2TaUIaMT85z7hWMltXzM=", "article"=>{"title"=>"", "body"=>"", "tag_list"=>""}, "commit"=>"Submit"}
721
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/create.html.erb within layouts/blogr/application (0.6ms)
722
+ Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.0ms)
723
+
724
+
725
+ Started GET "/assets/blogr/application.css?body=1" for 127.0.0.1 at 2014-02-08 18:00:24 +0100
726
+
727
+
728
+ Started GET "/assets/blogr/articles.css?body=1" for 127.0.0.1 at 2014-02-08 18:00:24 +0100
729
+
730
+
731
+ Started GET "/assets/blogr/tags.css?body=1" for 127.0.0.1 at 2014-02-08 18:00:24 +0100
732
+
733
+
734
+ Started GET "/assets/blogr/articles.js?body=1" for 127.0.0.1 at 2014-02-08 18:00:24 +0100
735
+
736
+
737
+ Started GET "/assets/blogr/tags.js?body=1" for 127.0.0.1 at 2014-02-08 18:00:24 +0100
738
+
739
+
740
+ Started GET "/assets/blogr/application.js?body=1" for 127.0.0.1 at 2014-02-08 18:00:24 +0100
741
+
742
+
743
+ Started GET "/assets/blogr/application.css?body=1" for 127.0.0.1 at 2014-02-08 18:01:52 +0100
744
+
745
+
746
+ Started GET "/assets/blogr/articles.css?body=1" for 127.0.0.1 at 2014-02-08 18:01:52 +0100
747
+
748
+
749
+ Started GET "/assets/blogr/tags.css?body=1" for 127.0.0.1 at 2014-02-08 18:01:52 +0100
750
+
751
+
752
+ Started GET "/assets/blogr/articles.js?body=1" for 127.0.0.1 at 2014-02-08 18:01:52 +0100
753
+
754
+
755
+ Started GET "/assets/blogr/tags.js?body=1" for 127.0.0.1 at 2014-02-08 18:01:52 +0100
756
+
757
+
758
+ Started GET "/assets/blogr/application.js?body=1" for 127.0.0.1 at 2014-02-08 18:01:52 +0100
759
+
760
+
761
+ Started GET "/blogr/articles/new" for 127.0.0.1 at 2014-02-08 18:01:54 +0100
762
+ Processing by Blogr::ArticlesController#new as HTML
763
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/_form.html.erb (4.1ms)
764
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/new.html.erb within layouts/blogr/application (4.8ms)
765
+ Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)
766
+
767
+
768
+ Started GET "/assets/blogr/application.css?body=1" for 127.0.0.1 at 2014-02-08 18:01:54 +0100
769
+
770
+
771
+ Started GET "/assets/blogr/articles.css?body=1" for 127.0.0.1 at 2014-02-08 18:01:54 +0100
772
+
773
+
774
+ Started GET "/assets/blogr/tags.css?body=1" for 127.0.0.1 at 2014-02-08 18:01:54 +0100
775
+
776
+
777
+ Started GET "/assets/blogr/articles.js?body=1" for 127.0.0.1 at 2014-02-08 18:01:54 +0100
778
+
779
+
780
+ Started GET "/assets/blogr/tags.js?body=1" for 127.0.0.1 at 2014-02-08 18:01:54 +0100
781
+
782
+
783
+ Started GET "/assets/blogr/application.js?body=1" for 127.0.0.1 at 2014-02-08 18:01:54 +0100
784
+
785
+
786
+ Started GET "/blogr/articles/new" for 127.0.0.1 at 2014-02-08 18:01:55 +0100
787
+ Processing by Blogr::ArticlesController#new as HTML
788
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/_form.html.erb (2.6ms)
789
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/new.html.erb within layouts/blogr/application (3.3ms)
790
+ Completed 200 OK in 7ms (Views: 7.1ms | ActiveRecord: 0.0ms)
791
+
792
+
793
+ Started GET "/assets/blogr/application.css?body=1" for 127.0.0.1 at 2014-02-08 18:01:55 +0100
794
+
795
+
796
+ Started GET "/assets/blogr/articles.css?body=1" for 127.0.0.1 at 2014-02-08 18:01:55 +0100
797
+
798
+
799
+ Started GET "/assets/blogr/tags.css?body=1" for 127.0.0.1 at 2014-02-08 18:01:55 +0100
800
+
801
+
802
+ Started GET "/assets/blogr/articles.js?body=1" for 127.0.0.1 at 2014-02-08 18:01:55 +0100
803
+
804
+
805
+ Started GET "/assets/blogr/application.js?body=1" for 127.0.0.1 at 2014-02-08 18:01:55 +0100
806
+
807
+
808
+ Started GET "/assets/blogr/tags.js?body=1" for 127.0.0.1 at 2014-02-08 18:01:55 +0100
809
+
810
+
811
+ Started GET "/assets/blogr/application.js?body=1" for 127.0.0.1 at 2014-02-08 18:02:00 +0100
812
+
813
+
814
+ Started GET "/assets/blogr/application.css?body=1" for 127.0.0.1 at 2014-02-08 18:02:02 +0100
815
+
816
+
817
+ Started GET "/blogr/articles/new" for 127.0.0.1 at 2014-02-08 19:19:49 +0100
818
+ Processing by Blogr::ArticlesController#new as HTML
819
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/_form.html.erb (2.5ms)
820
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/new.html.erb within layouts/blogr/application (3.3ms)
821
+ Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
822
+
823
+
824
+ Started GET "/assets/blogr/application.css?body=1" for 127.0.0.1 at 2014-02-08 19:19:50 +0100
825
+
826
+
827
+ Started GET "/assets/blogr/articles.css?body=1" for 127.0.0.1 at 2014-02-08 19:19:50 +0100
828
+
829
+
830
+ Started GET "/assets/blogr/tags.css?body=1" for 127.0.0.1 at 2014-02-08 19:19:50 +0100
831
+
832
+
833
+ Started GET "/assets/blogr/articles.js?body=1" for 127.0.0.1 at 2014-02-08 19:19:50 +0100
834
+
835
+
836
+ Started GET "/assets/blogr/tags.js?body=1" for 127.0.0.1 at 2014-02-08 19:19:50 +0100
837
+
838
+
839
+ Started GET "/assets/blogr/application.js?body=1" for 127.0.0.1 at 2014-02-08 19:19:50 +0100
840
+
841
+
842
+ Started GET "/blogr/articles/new" for 127.0.0.1 at 2014-02-08 20:39:08 +0100
843
+ Processing by Blogr::ArticlesController#new as HTML
844
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/_form.html.erb (4.0ms)
845
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/new.html.erb within layouts/blogr/application (5.1ms)
846
+ Completed 200 OK in 11ms (Views: 10.9ms | ActiveRecord: 0.0ms)
847
+
848
+
849
+ Started GET "/assets/blogr/application.css?body=1" for 127.0.0.1 at 2014-02-08 20:39:08 +0100
850
+
851
+
852
+ Started GET "/assets/blogr/articles.css?body=1" for 127.0.0.1 at 2014-02-08 20:39:08 +0100
853
+
854
+
855
+ Started GET "/assets/blogr/tags.css?body=1" for 127.0.0.1 at 2014-02-08 20:39:08 +0100
856
+
857
+
858
+ Started GET "/assets/blogr/articles.js?body=1" for 127.0.0.1 at 2014-02-08 20:39:08 +0100
859
+
860
+
861
+ Started GET "/assets/blogr/tags.js?body=1" for 127.0.0.1 at 2014-02-08 20:39:08 +0100
862
+
863
+
864
+ Started GET "/assets/blogr/application.js?body=1" for 127.0.0.1 at 2014-02-08 20:39:08 +0100
865
+
866
+
867
+ Started GET "/blogr/articles/new" for 127.0.0.1 at 2014-02-08 20:40:05 +0100
868
+ Processing by Blogr::ArticlesController#new as HTML
869
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/_form.html.erb (2.9ms)
870
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/new.html.erb within layouts/blogr/application (3.6ms)
871
+ Completed 200 OK in 8ms (Views: 7.8ms | ActiveRecord: 0.0ms)
872
+
873
+
874
+ Started GET "/assets/blogr/application.css?body=1" for 127.0.0.1 at 2014-02-08 20:40:06 +0100
875
+
876
+
877
+ Started GET "/assets/blogr/articles.css?body=1" for 127.0.0.1 at 2014-02-08 20:40:06 +0100
878
+
879
+
880
+ Started GET "/assets/blogr/tags.css?body=1" for 127.0.0.1 at 2014-02-08 20:40:06 +0100
881
+
882
+
883
+ Started GET "/assets/blogr/articles.js?body=1" for 127.0.0.1 at 2014-02-08 20:40:06 +0100
884
+
885
+
886
+ Started GET "/assets/blogr/tags.js?body=1" for 127.0.0.1 at 2014-02-08 20:40:06 +0100
887
+
888
+
889
+ Started GET "/assets/blogr/application.js?body=1" for 127.0.0.1 at 2014-02-08 20:40:06 +0100
890
+
891
+
892
+ Started GET "/blogr/articles/new" for 127.0.0.1 at 2014-02-08 20:42:19 +0100
893
+ Processing by Blogr::ArticlesController#new as HTML
894
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/_form.html.erb (6.9ms)
895
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/new.html.erb within layouts/blogr/application (8.1ms)
896
+ Completed 200 OK in 21ms (Views: 20.9ms | ActiveRecord: 0.0ms)
897
+
898
+
899
+ Started GET "/blogr/articles/new" for 127.0.0.1 at 2014-02-08 20:42:23 +0100
900
+ Processing by Blogr::ArticlesController#new as HTML
901
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/_form.html.erb (2.7ms)
902
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/new.html.erb within layouts/blogr/application (3.4ms)
903
+ Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.0ms)
904
+
905
+
906
+ Started GET "/assets/blogr/application.css?body=1" for 127.0.0.1 at 2014-02-08 20:42:23 +0100
907
+
908
+
909
+ Started GET "/assets/blogr/articles.css?body=1" for 127.0.0.1 at 2014-02-08 20:42:23 +0100
910
+
911
+
912
+ Started GET "/assets/blogr/tags.css?body=1" for 127.0.0.1 at 2014-02-08 20:42:23 +0100
913
+
914
+
915
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-02-08 20:42:23 +0100
916
+
917
+
918
+ Started GET "/assets/blogr/articles.js?body=1" for 127.0.0.1 at 2014-02-08 20:42:23 +0100
919
+
920
+
921
+ Started GET "/assets/blogr/tags.js?body=1" for 127.0.0.1 at 2014-02-08 20:42:23 +0100
922
+
923
+
924
+ Started GET "/assets/blogr/application.js?body=1" for 127.0.0.1 at 2014-02-08 20:42:23 +0100
925
+
926
+
927
+ Started GET "/blogr/articles/new" for 127.0.0.1 at 2014-02-08 20:44:17 +0100
928
+ Processing by Blogr::ArticlesController#new as HTML
929
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/_form.html.erb (2.6ms)
930
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/new.html.erb within layouts/blogr/application (3.3ms)
931
+ Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.0ms)
932
+
933
+
934
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-02-08 20:44:17 +0100
935
+
936
+
937
+ Started GET "/blogr/articles/new" for 127.0.0.1 at 2014-02-08 20:44:36 +0100
938
+ Processing by Blogr::ArticlesController#new as HTML
939
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/_form.html.erb (2.5ms)
940
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/new.html.erb within layouts/blogr/application (3.2ms)
941
+ Completed 200 OK in 16ms (Views: 16.1ms | ActiveRecord: 0.0ms)
942
+
943
+
944
+ Started GET "/blogr/articles/new" for 127.0.0.1 at 2014-02-08 20:44:39 +0100
945
+ Processing by Blogr::ArticlesController#new as HTML
946
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/_form.html.erb (5.9ms)
947
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/new.html.erb within layouts/blogr/application (6.7ms)
948
+ Completed 200 OK in 10ms (Views: 10.0ms | ActiveRecord: 0.0ms)
949
+
950
+
951
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-02-08 20:44:39 +0100
952
+
953
+
954
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-02-08 20:44:39 +0100
955
+
956
+
957
+ Started GET "/blogr/articles/new" for 127.0.0.1 at 2014-02-08 20:52:54 +0100
958
+ Processing by Blogr::ArticlesController#new as HTML
959
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/_form.html.erb (6.7ms)
960
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/new.html.erb (7.5ms)
961
+ Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.0ms)
962
+
963
+
964
+ Started GET "/blogr/articles/new" for 127.0.0.1 at 2014-02-08 20:55:08 +0100
965
+ Processing by Blogr::ArticlesController#new as HTML
966
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/_form.html.erb (12.6ms)
967
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/new.html.erb within layouts/application (13.4ms)
968
+ Completed 200 OK in 22ms (Views: 16.4ms | ActiveRecord: 1.2ms)
969
+
970
+
971
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-02-08 20:55:08 +0100
972
+
973
+
974
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-02-08 20:55:08 +0100
975
+
976
+
977
+ Started GET "/blogr/articles/new" for 127.0.0.1 at 2014-02-08 20:55:47 +0100
978
+ Processing by Blogr::ArticlesController#new as HTML
979
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/_form.html.erb (4.5ms)
980
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/new.html.erb within layouts/application (5.6ms)
981
+ Completed 200 OK in 10ms (Views: 9.2ms | ActiveRecord: 0.0ms)
982
+
983
+
984
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-02-08 20:55:47 +0100
985
+
986
+
987
+ Started GET "/blogr/articles/new" for 127.0.0.1 at 2014-02-08 20:55:51 +0100
988
+ Processing by Blogr::ArticlesController#new as HTML
989
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/_form.html.erb (6.3ms)
990
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/new.html.erb within layouts/application (7.3ms)
991
+ Completed 200 OK in 13ms (Views: 12.9ms | ActiveRecord: 0.0ms)
992
+
993
+
994
+ Started GET "/" for 127.0.0.1 at 2014-02-08 20:56:34 +0100
995
+ Processing by Rails::WelcomeController#index as HTML
996
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/railties-4.0.2/lib/rails/templates/rails/welcome/index.html.erb (0.2ms)
997
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
998
+
999
+
1000
+ Started GET "/blogr" for 127.0.0.1 at 2014-02-08 20:56:40 +0100
1001
+ Processing by Blogr::ArticlesController#index as HTML
1002
+  (0.2ms) SELECT COUNT(*) FROM "blogr_articles"
1003
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/index.html.erb within layouts/application (0.9ms)
1004
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms)
1005
+
1006
+
1007
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-02-08 20:56:40 +0100
1008
+
1009
+
1010
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-02-08 20:56:40 +0100
1011
+
1012
+
1013
+ Started GET "/blogr" for 127.0.0.1 at 2014-02-08 21:09:32 +0100
1014
+ Processing by Blogr::ArticlesController#index as HTML
1015
+ Completed 500 Internal Server Error in 4ms
1016
+
1017
+ NameError (uninitialized constant Blogr::Article::Blorgh):
1018
+ /home/ayo/Desktop/apps/blogr/app/models/blogr/article.rb:7:in `<class:Article>'
1019
+ /home/ayo/Desktop/apps/blogr/app/models/blogr/article.rb:2:in `<module:Blogr>'
1020
+ /home/ayo/Desktop/apps/blogr/app/models/blogr/article.rb:1:in `<top (required)>'
1021
+ /home/ayo/Desktop/apps/blogr/app/controllers/blogr/articles_controller.rb:18:in `index'
1022
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1023
+ actionpack (4.0.2) lib/abstract_controller/base.rb:189:in `process_action'
1024
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
1025
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1026
+ activesupport (4.0.2) lib/active_support/callbacks.rb:383:in `_run__561240520__process_action__callbacks'
1027
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1028
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
1029
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
1030
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1031
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
1032
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1033
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
1034
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1035
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1036
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1037
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
1038
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
1039
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
1040
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1041
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
1042
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
1043
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1044
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
1045
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1046
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1047
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1048
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1049
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1050
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
1051
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1052
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1053
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1054
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1055
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1056
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1057
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1058
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1059
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
1060
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1061
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1062
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1063
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
1064
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1065
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
1066
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1067
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__104905090__call__callbacks'
1068
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1069
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1070
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1071
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1072
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1073
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1074
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1075
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1076
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1077
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1078
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1079
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1080
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1081
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1082
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1083
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1084
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1085
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1086
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1087
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1088
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
1089
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1090
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1091
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1092
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1093
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1094
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1095
+
1096
+
1097
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
1098
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
1099
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
1100
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.2ms)
1101
+
1102
+
1103
+ Started GET "/blogr" for 127.0.0.1 at 2014-02-08 21:09:51 +0100
1104
+ Processing by Blogr::ArticlesController#index as HTML
1105
+ Completed 500 Internal Server Error in 7ms
1106
+
1107
+ NameError (uninitialized constant Blogr::Article::Blorgh):
1108
+ /home/ayo/Desktop/apps/blogr/app/models/blogr/article.rb:7:in `<class:Article>'
1109
+ /home/ayo/Desktop/apps/blogr/app/models/blogr/article.rb:2:in `<module:Blogr>'
1110
+ /home/ayo/Desktop/apps/blogr/app/models/blogr/article.rb:1:in `<top (required)>'
1111
+ /home/ayo/Desktop/apps/blogr/app/controllers/blogr/articles_controller.rb:18:in `index'
1112
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1113
+ actionpack (4.0.2) lib/abstract_controller/base.rb:189:in `process_action'
1114
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
1115
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1116
+ activesupport (4.0.2) lib/active_support/callbacks.rb:383:in `_run__561240520__process_action__callbacks'
1117
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1118
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
1119
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
1120
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1121
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
1122
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1123
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
1124
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1125
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1126
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1127
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
1128
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
1129
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
1130
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1131
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
1132
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
1133
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1134
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
1135
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1136
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1137
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1138
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1139
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1140
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
1141
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1142
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1143
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1144
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1145
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1146
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1147
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1148
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1149
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
1150
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1151
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1152
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1153
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
1154
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1155
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
1156
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1157
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__104905090__call__callbacks'
1158
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1159
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1160
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1161
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1162
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1163
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1164
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1165
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1166
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1167
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1168
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1169
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1170
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1171
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1172
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1173
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1174
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1175
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1176
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1177
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1178
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
1179
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1180
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1181
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1182
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1183
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1184
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1185
+
1186
+
1187
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.9ms)
1188
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
1189
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
1190
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (18.7ms)
1191
+
1192
+
1193
+ Started GET "/blogr" for 127.0.0.1 at 2014-02-08 21:10:11 +0100
1194
+ Processing by Blogr::ArticlesController#index as HTML
1195
+ Completed 500 Internal Server Error in 3ms
1196
+
1197
+ NoMethodError (undefined method `author_class' for Blogr:Module):
1198
+ /home/ayo/Desktop/apps/blogr/app/models/blogr/article.rb:7:in `<class:Article>'
1199
+ /home/ayo/Desktop/apps/blogr/app/models/blogr/article.rb:2:in `<module:Blogr>'
1200
+ /home/ayo/Desktop/apps/blogr/app/models/blogr/article.rb:1:in `<top (required)>'
1201
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
1202
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
1203
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
1204
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
1205
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
1206
+ activesupport (4.0.2) lib/active_support/dependencies.rb:463:in `load_missing_constant'
1207
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
1208
+ activesupport (4.0.2) lib/active_support/dependencies.rb:495:in `load_missing_constant'
1209
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
1210
+ /home/ayo/Desktop/apps/blogr/app/controllers/blogr/articles_controller.rb:18:in `index'
1211
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1212
+ actionpack (4.0.2) lib/abstract_controller/base.rb:189:in `process_action'
1213
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
1214
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1215
+ activesupport (4.0.2) lib/active_support/callbacks.rb:383:in `_run__561240520__process_action__callbacks'
1216
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1217
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
1218
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
1219
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1220
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
1221
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1222
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
1223
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1224
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1225
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1226
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
1227
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
1228
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
1229
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1230
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
1231
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
1232
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1233
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
1234
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1235
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1236
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1237
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1238
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1239
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
1240
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1241
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1242
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1243
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1244
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1245
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1246
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1247
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1248
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
1249
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1250
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1251
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1252
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
1253
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1254
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
1255
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1256
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__104905090__call__callbacks'
1257
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1258
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1259
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1260
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1261
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1262
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1263
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1264
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1265
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1266
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1267
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1268
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1269
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1270
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1271
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1272
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1273
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1274
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1275
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1276
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1277
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
1278
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1279
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1280
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1281
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1282
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1283
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1284
+
1285
+
1286
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
1287
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
1288
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
1289
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.6ms)
1290
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1291
+ Migrating to CreateUsers (20140208201115)
1292
+  (0.1ms) begin transaction
1293
+  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
1294
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140208201115"]]
1295
+  (169.6ms) commit transaction
1296
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1297
+
1298
+
1299
+ Started GET "/blogr" for 127.0.0.1 at 2014-02-08 21:13:30 +0100
1300
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1301
+ Processing by Blogr::ArticlesController#index as HTML
1302
+ Completed 500 Internal Server Error in 3ms
1303
+
1304
+ NoMethodError (undefined method `author_class' for Blogr:Module):
1305
+ /home/ayo/Desktop/apps/blogr/app/models/blogr/article.rb:7:in `<class:Article>'
1306
+ /home/ayo/Desktop/apps/blogr/app/models/blogr/article.rb:2:in `<module:Blogr>'
1307
+ /home/ayo/Desktop/apps/blogr/app/models/blogr/article.rb:1:in `<top (required)>'
1308
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
1309
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
1310
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
1311
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
1312
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
1313
+ activesupport (4.0.2) lib/active_support/dependencies.rb:463:in `load_missing_constant'
1314
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
1315
+ activesupport (4.0.2) lib/active_support/dependencies.rb:495:in `load_missing_constant'
1316
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
1317
+ /home/ayo/Desktop/apps/blogr/app/controllers/blogr/articles_controller.rb:18:in `index'
1318
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1319
+ actionpack (4.0.2) lib/abstract_controller/base.rb:189:in `process_action'
1320
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
1321
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1322
+ activesupport (4.0.2) lib/active_support/callbacks.rb:383:in `_run__561240520__process_action__callbacks'
1323
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1324
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
1325
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
1326
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1327
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
1328
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1329
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
1330
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1331
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1332
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1333
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
1334
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
1335
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
1336
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1337
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
1338
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
1339
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1340
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
1341
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1342
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1343
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1344
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1345
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1346
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
1347
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1348
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1349
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1350
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1351
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1352
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1353
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1354
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1355
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
1356
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1357
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1358
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1359
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
1360
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1361
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
1362
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1363
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__104905090__call__callbacks'
1364
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1365
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1366
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1367
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1368
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1369
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1370
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1371
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1372
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1373
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1374
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1375
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1376
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1377
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1378
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1379
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1380
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1381
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1382
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1383
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1384
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
1385
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1386
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1387
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1388
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1389
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1390
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1391
+
1392
+
1393
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
1394
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
1395
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
1396
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.0ms)
1397
+
1398
+
1399
+ Started GET "/blogr" for 127.0.0.1 at 2014-02-08 21:13:44 +0100
1400
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1401
+ Processing by Blogr::ArticlesController#index as HTML
1402
+  (0.1ms) SELECT COUNT(*) FROM "blogr_articles"
1403
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/index.html.erb within layouts/application (2.9ms)
1404
+ Completed 200 OK in 42ms (Views: 36.0ms | ActiveRecord: 0.4ms)
1405
+
1406
+
1407
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-02-08 21:13:44 +0100
1408
+
1409
+
1410
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-02-08 21:13:44 +0100
1411
+
1412
+
1413
+ Started GET "/blogr" for 127.0.0.1 at 2014-02-08 21:14:07 +0100
1414
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1415
+ Processing by Blogr::ArticlesController#index as HTML
1416
+ Completed 500 Internal Server Error in 4ms
1417
+
1418
+ NoMethodError (undefined method `constantize' for nil:NilClass):
1419
+ /home/ayo/Desktop/apps/blogr/lib/blogr.rb:11:in `author_class'
1420
+ /home/ayo/Desktop/apps/blogr/app/models/blogr/article.rb:7:in `<class:Article>'
1421
+ /home/ayo/Desktop/apps/blogr/app/models/blogr/article.rb:2:in `<module:Blogr>'
1422
+ /home/ayo/Desktop/apps/blogr/app/models/blogr/article.rb:1:in `<top (required)>'
1423
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
1424
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
1425
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
1426
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
1427
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
1428
+ activesupport (4.0.2) lib/active_support/dependencies.rb:463:in `load_missing_constant'
1429
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
1430
+ activesupport (4.0.2) lib/active_support/dependencies.rb:495:in `load_missing_constant'
1431
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
1432
+ /home/ayo/Desktop/apps/blogr/app/controllers/blogr/articles_controller.rb:18:in `index'
1433
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1434
+ actionpack (4.0.2) lib/abstract_controller/base.rb:189:in `process_action'
1435
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
1436
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1437
+ activesupport (4.0.2) lib/active_support/callbacks.rb:383:in `_run__582023081__process_action__callbacks'
1438
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1439
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
1440
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
1441
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1442
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
1443
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1444
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
1445
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1446
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1447
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1448
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
1449
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
1450
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
1451
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1452
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
1453
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
1454
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1455
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
1456
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1457
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1458
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1459
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1460
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1461
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
1462
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1463
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1464
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1465
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1466
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1467
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1468
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1469
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1470
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
1471
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1472
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1473
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1474
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
1475
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1476
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
1477
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1478
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__627978217__call__callbacks'
1479
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1480
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1481
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1482
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1483
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1484
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1485
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1486
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1487
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1488
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1489
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1490
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1491
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1492
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1493
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1494
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1495
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1496
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1497
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1498
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1499
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
1500
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1501
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1502
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1503
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1504
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1505
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1506
+
1507
+
1508
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
1509
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
1510
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (20.2ms)
1511
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (31.4ms)
1512
+
1513
+
1514
+ Started GET "/blogr" for 127.0.0.1 at 2014-02-08 21:14:27 +0100
1515
+ Processing by Blogr::ArticlesController#index as HTML
1516
+ Completed 500 Internal Server Error in 4ms
1517
+
1518
+ NoMethodError (undefined method `constantize' for nil:NilClass):
1519
+ /home/ayo/Desktop/apps/blogr/lib/blogr.rb:11:in `author_class'
1520
+ /home/ayo/Desktop/apps/blogr/app/models/blogr/article.rb:7:in `<class:Article>'
1521
+ /home/ayo/Desktop/apps/blogr/app/models/blogr/article.rb:2:in `<module:Blogr>'
1522
+ /home/ayo/Desktop/apps/blogr/app/models/blogr/article.rb:1:in `<top (required)>'
1523
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
1524
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
1525
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
1526
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
1527
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
1528
+ activesupport (4.0.2) lib/active_support/dependencies.rb:463:in `load_missing_constant'
1529
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
1530
+ activesupport (4.0.2) lib/active_support/dependencies.rb:495:in `load_missing_constant'
1531
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
1532
+ /home/ayo/Desktop/apps/blogr/app/controllers/blogr/articles_controller.rb:18:in `index'
1533
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1534
+ actionpack (4.0.2) lib/abstract_controller/base.rb:189:in `process_action'
1535
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
1536
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1537
+ activesupport (4.0.2) lib/active_support/callbacks.rb:383:in `_run__582023081__process_action__callbacks'
1538
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1539
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
1540
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
1541
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1542
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
1543
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1544
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
1545
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1546
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1547
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1548
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
1549
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
1550
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
1551
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1552
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
1553
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
1554
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1555
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
1556
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1557
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1558
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1559
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1560
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1561
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
1562
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1563
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1564
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1565
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1566
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1567
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1568
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1569
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1570
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
1571
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1572
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1573
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1574
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
1575
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1576
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
1577
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1578
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__627978217__call__callbacks'
1579
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1580
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1581
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1582
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1583
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1584
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1585
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1586
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1587
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1588
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1589
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1590
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1591
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1592
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1593
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1594
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1595
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1596
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1597
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1598
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1599
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
1600
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1601
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1602
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1603
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1604
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1605
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1606
+
1607
+
1608
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
1609
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
1610
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms)
1611
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.8ms)
1612
+
1613
+
1614
+ Started GET "/blogr" for 127.0.0.1 at 2014-02-08 21:14:38 +0100
1615
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1616
+ Processing by Blogr::ArticlesController#index as HTML
1617
+  (0.1ms) SELECT COUNT(*) FROM "blogr_articles"
1618
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/index.html.erb within layouts/application (3.7ms)
1619
+ Completed 200 OK in 42ms (Views: 36.1ms | ActiveRecord: 0.5ms)
1620
+
1621
+
1622
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-02-08 21:14:38 +0100
1623
+
1624
+
1625
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-02-08 21:14:38 +0100
1626
+
1627
+
1628
+ Started GET "/blogr" for 127.0.0.1 at 2014-02-08 21:15:44 +0100
1629
+ Processing by Blogr::ArticlesController#index as HTML
1630
+  (0.2ms) SELECT COUNT(*) FROM "blogr_articles"
1631
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/index.html.erb within layouts/application (1.0ms)
1632
+ Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.2ms)
1633
+
1634
+
1635
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-02-08 21:15:44 +0100
1636
+
1637
+
1638
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-02-08 21:15:44 +0100
1639
+
1640
+
1641
+ Started GET "/articles/1" for 127.0.0.1 at 2014-02-08 21:16:10 +0100
1642
+
1643
+ ActionController::RoutingError (No route matches [GET] "/articles/1"):
1644
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1645
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1646
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1647
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1648
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1649
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1650
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1651
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1652
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1653
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1654
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1655
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1656
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1657
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1658
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1659
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1660
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
1661
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1662
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1663
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1664
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1665
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1666
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1667
+
1668
+
1669
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
1670
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms)
1671
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
1672
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (8.0ms)
1673
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (53.4ms)
1674
+
1675
+
1676
+ Started GET "/blogr" for 127.0.0.1 at 2014-02-08 21:16:15 +0100
1677
+ Processing by Blogr::ArticlesController#index as HTML
1678
+  (0.2ms) SELECT COUNT(*) FROM "blogr_articles"
1679
+ Rendered /home/ayo/Desktop/apps/blogr/app/views/blogr/articles/index.html.erb within layouts/application (0.8ms)
1680
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
1681
+
1682
+
1683
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-02-08 21:16:15 +0100
1684
+
1685
+
1686
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-02-08 21:16:15 +0100
1687
+
1688
+
1689
+ Started GET "/" for 127.0.0.1 at 2014-02-10 00:12:03 +0100
1690
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1691
+ Processing by Rails::WelcomeController#index as HTML
1692
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/railties-4.0.2/lib/rails/templates/rails/welcome/index.html.erb (3.0ms)
1693
+ Completed 200 OK in 25ms (Views: 24.7ms | ActiveRecord: 0.0ms)
1694
+
1695
+
1696
+ Started GET "/blogr" for 127.0.0.1 at 2014-02-10 00:12:07 +0100
1697
+ Processing by Blogr::ArticlesController#index as HTML
1698
+ Completed 500 Internal Server Error in 45ms
1699
+
1700
+ ActionView::MissingTemplate (Missing template layouts/blog with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
1701
+ * "/home/ayo/Desktop/apps/blogrrr/test/dummy/app/views"
1702
+ * "/home/ayo/Desktop/apps/blogrrr/app/views"
1703
+ ):
1704
+ actionpack (4.0.2) lib/action_view/path_set.rb:46:in `find'
1705
+ actionpack (4.0.2) lib/action_view/lookup_context.rb:122:in `find'
1706
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
1707
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:81:in `resolve_layout'
1708
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:88:in `resolve_layout'
1709
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:71:in `block in find_layout'
1710
+ actionpack (4.0.2) lib/action_view/lookup_context.rb:235:in `with_layout_format'
1711
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:18:in `with_layout_format'
1712
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:71:in `find_layout'
1713
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:55:in `render_with_layout'
1714
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
1715
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:17:in `render'
1716
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:42:in `render_template'
1717
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:23:in `render'
1718
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:127:in `_render_template'
1719
+ actionpack (4.0.2) lib/action_controller/metal/streaming.rb:219:in `_render_template'
1720
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:120:in `render_to_body'
1721
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
1722
+ actionpack (4.0.2) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
1723
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:97:in `render'
1724
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:16:in `render'
1725
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
1726
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
1727
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
1728
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `ms'
1729
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
1730
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
1731
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
1732
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:40:in `render'
1733
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
1734
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
1735
+ actionpack (4.0.2) lib/abstract_controller/base.rb:189:in `process_action'
1736
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
1737
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1738
+ activesupport (4.0.2) lib/active_support/callbacks.rb:383:in `_run__249519337__process_action__callbacks'
1739
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1740
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
1741
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
1742
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1743
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
1744
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1745
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
1746
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1747
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
1748
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1749
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
1750
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
1751
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
1752
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1753
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
1754
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
1755
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1756
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
1757
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1758
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1759
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1760
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1761
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1762
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
1763
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1764
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
1765
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
1766
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
1767
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1768
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1769
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1770
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1771
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
1772
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1773
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1774
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1775
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
1776
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1777
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
1778
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1779
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__332269703__call__callbacks'
1780
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1781
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1782
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1783
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1784
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1785
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1786
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1787
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1788
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1789
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1790
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1791
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1792
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1793
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1794
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1795
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1796
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1797
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1798
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1799
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1800
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
1801
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1802
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1803
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1804
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1805
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1806
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1807
+
1808
+
1809
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (1.0ms)
1810
+
1811
+
1812
+ Started GET "/blogrrrr" for 127.0.0.1 at 2014-02-10 00:12:12 +0100
1813
+
1814
+ ActionController::RoutingError (No route matches [GET] "/blogrrrr"):
1815
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1816
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1817
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1818
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1819
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1820
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1821
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1822
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1823
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1824
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1825
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1826
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1827
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1828
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1829
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1830
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1831
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
1832
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1833
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1834
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1835
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1836
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1837
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1838
+
1839
+
1840
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
1841
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms)
1842
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.2ms)
1843
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (36.8ms)
1844
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (64.9ms)
1845
+
1846
+
1847
+ Started GET "/blogrrr" for 127.0.0.1 at 2014-02-10 00:12:14 +0100
1848
+
1849
+ ActionController::RoutingError (No route matches [GET] "/blogrrr"):
1850
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1851
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1852
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1853
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1854
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1855
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1856
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1857
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1858
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1859
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1860
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1861
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1862
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1863
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1864
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1865
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1866
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
1867
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1868
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1869
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1870
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1871
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1872
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1873
+
1874
+
1875
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
1876
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
1877
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.4ms)
1878
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.7ms)
1879
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (33.5ms)
1880
+
1881
+
1882
+ Started GET "/" for 127.0.0.1 at 2014-02-10 00:18:15 +0100
1883
+
1884
+ NameError (uninitialized constant Blogrrr::Engine):
1885
+ /home/ayo/Desktop/apps/blogrrr/config/routes.rb:1:in `<top (required)>'
1886
+ railties (4.0.2) lib/rails/application/routes_reloader.rb:40:in `block in load_paths'
1887
+ railties (4.0.2) lib/rails/application/routes_reloader.rb:40:in `each'
1888
+ railties (4.0.2) lib/rails/application/routes_reloader.rb:40:in `load_paths'
1889
+ railties (4.0.2) lib/rails/application/routes_reloader.rb:16:in `reload!'
1890
+ railties (4.0.2) lib/rails/application/routes_reloader.rb:26:in `block in updater'
1891
+ activesupport (4.0.2) lib/active_support/file_update_checker.rb:75:in `call'
1892
+ activesupport (4.0.2) lib/active_support/file_update_checker.rb:75:in `execute'
1893
+ railties (4.0.2) lib/rails/application/routes_reloader.rb:7:in `execute'
1894
+ railties (4.0.2) lib/rails/application/finisher.rb:81:in `block (2 levels) in <module:Finisher>'
1895
+ activesupport (4.0.2) lib/active_support/callbacks.rb:397:in `_run__540989486__prepare__callbacks'
1896
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
1897
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:74:in `prepare!'
1898
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:62:in `call'
1899
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1900
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1901
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1902
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1903
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1904
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1905
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1906
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1907
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1908
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1909
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1910
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1911
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1912
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1913
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1914
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1915
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1916
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
1917
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1918
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1919
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1920
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1921
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1922
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1923
+
1924
+
1925
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
1926
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
1927
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
1928
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (83.0ms)
1929
+
1930
+
1931
+ Started GET "/" for 127.0.0.1 at 2014-02-10 00:22:31 +0100
1932
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1933
+ Processing by Rails::WelcomeController#index as HTML
1934
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/railties-4.0.2/lib/rails/templates/rails/welcome/index.html.erb (1.7ms)
1935
+ Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
1936
+
1937
+
1938
+ Started GET "/blog" for 127.0.0.1 at 2014-02-10 00:22:40 +0100
1939
+
1940
+ ActionController::RoutingError (No route matches [GET] "/blog"):
1941
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1942
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1943
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1944
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1945
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1946
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1947
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1948
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1949
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1950
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1951
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1952
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1953
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1954
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1955
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1956
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1957
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
1958
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1959
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1960
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1961
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1962
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1963
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1964
+
1965
+
1966
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
1967
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms)
1968
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
1969
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.1ms)
1970
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (29.8ms)
1971
+
1972
+
1973
+ Started GET "/articles/1" for 127.0.0.1 at 2014-02-10 00:22:47 +0100
1974
+
1975
+ ActionController::RoutingError (No route matches [GET] "/articles/1"):
1976
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1977
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1978
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
1979
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
1980
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1981
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
1982
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
1983
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
1984
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1985
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1986
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1987
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1988
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1989
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1990
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1991
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
1992
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
1993
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1994
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1995
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1996
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1997
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1998
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1999
+
2000
+
2001
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
2002
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
2003
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms)
2004
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms)
2005
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (29.9ms)
2006
+
2007
+
2008
+ Started GET "/" for 127.0.0.1 at 2014-02-10 00:23:36 +0100
2009
+ Processing by Rails::WelcomeController#index as HTML
2010
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/railties-4.0.2/lib/rails/templates/rails/welcome/index.html.erb (0.1ms)
2011
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
2012
+
2013
+
2014
+ Started GET "/blog" for 127.0.0.1 at 2014-02-10 00:23:46 +0100
2015
+
2016
+ ActionController::RoutingError (No route matches [GET] "/blog"):
2017
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2018
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2019
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
2020
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
2021
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
2022
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
2023
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
2024
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
2025
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2026
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2027
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2028
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
2029
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2030
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
2031
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2032
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
2033
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
2034
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2035
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2036
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2037
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2038
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2039
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2040
+
2041
+
2042
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
2043
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
2044
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms)
2045
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.9ms)
2046
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (24.6ms)
2047
+
2048
+
2049
+ Started GET "/blog" for 127.0.0.1 at 2014-02-10 00:24:02 +0100
2050
+
2051
+ RuntimeError (Circular dependency detected while autoloading constant Blogrrr::ApplicationHelper):
2052
+ activesupport (4.0.2) lib/active_support/dependencies.rb:461:in `load_missing_constant'
2053
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
2054
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `const_get'
2055
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `block in constantize'
2056
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
2057
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
2058
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
2059
+ activesupport (4.0.2) lib/active_support/core_ext/string/inflections.rb:66:in `constantize'
2060
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:139:in `block in modules_for_helpers'
2061
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:130:in `map!'
2062
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:130:in `modules_for_helpers'
2063
+ actionpack (4.0.2) lib/action_controller/metal/helpers.rb:89:in `modules_for_helpers'
2064
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:94:in `helper'
2065
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:176:in `default_helper_module!'
2066
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `block in inherited'
2067
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `class_eval'
2068
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `inherited'
2069
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:226:in `inherited'
2070
+ actionpack (4.0.2) lib/abstract_controller/railties/routes_helpers.rb:7:in `block (2 levels) in with'
2071
+ actionpack (4.0.2) lib/action_controller/railties/helpers.rb:5:in `inherited'
2072
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/application_controller.rb:2:in `<module:Blogrrr>'
2073
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/application_controller.rb:1:in `<top (required)>'
2074
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
2075
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
2076
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
2077
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
2078
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
2079
+ activesupport (4.0.2) lib/active_support/dependencies.rb:289:in `depend_on'
2080
+ activesupport (4.0.2) lib/active_support/dependencies.rb:207:in `require_dependency'
2081
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/articles_controller.rb:1:in `<top (required)>'
2082
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
2083
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
2084
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
2085
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
2086
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
2087
+ activesupport (4.0.2) lib/active_support/dependencies.rb:463:in `load_missing_constant'
2088
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
2089
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `const_get'
2090
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `block in constantize'
2091
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
2092
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
2093
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
2094
+ activesupport (4.0.2) lib/active_support/dependencies.rb:535:in `get'
2095
+ activesupport (4.0.2) lib/active_support/dependencies.rb:566:in `constantize'
2096
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
2097
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:66:in `controller'
2098
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:44:in `call'
2099
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
2100
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
2101
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
2102
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
2103
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
2104
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
2105
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
2106
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
2107
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
2108
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
2109
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
2110
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
2111
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
2112
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2113
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
2114
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
2115
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
2116
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
2117
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
2118
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
2119
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
2120
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2121
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__62586543__call__callbacks'
2122
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
2123
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2124
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
2125
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
2126
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2127
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2128
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
2129
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
2130
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
2131
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
2132
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
2133
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
2134
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2135
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2136
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2137
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
2138
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2139
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
2140
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2141
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
2142
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
2143
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2144
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2145
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2146
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2147
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2148
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2149
+
2150
+
2151
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
2152
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
2153
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (20.2ms)
2154
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (32.1ms)
2155
+
2156
+
2157
+ Started GET "/blog" for 127.0.0.1 at 2014-02-10 00:25:33 +0100
2158
+
2159
+ RuntimeError (Circular dependency detected while autoloading constant Blogrrr::ApplicationHelper):
2160
+ activesupport (4.0.2) lib/active_support/dependencies.rb:461:in `load_missing_constant'
2161
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
2162
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `const_get'
2163
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `block in constantize'
2164
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
2165
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
2166
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
2167
+ activesupport (4.0.2) lib/active_support/core_ext/string/inflections.rb:66:in `constantize'
2168
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:139:in `block in modules_for_helpers'
2169
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:130:in `map!'
2170
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:130:in `modules_for_helpers'
2171
+ actionpack (4.0.2) lib/action_controller/metal/helpers.rb:89:in `modules_for_helpers'
2172
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:94:in `helper'
2173
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:176:in `default_helper_module!'
2174
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `block in inherited'
2175
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `class_eval'
2176
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `inherited'
2177
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:226:in `inherited'
2178
+ actionpack (4.0.2) lib/abstract_controller/railties/routes_helpers.rb:7:in `block (2 levels) in with'
2179
+ actionpack (4.0.2) lib/action_controller/railties/helpers.rb:5:in `inherited'
2180
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/application_controller.rb:2:in `<module:Blogrrr>'
2181
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/application_controller.rb:1:in `<top (required)>'
2182
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
2183
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
2184
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
2185
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
2186
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
2187
+ activesupport (4.0.2) lib/active_support/dependencies.rb:289:in `depend_on'
2188
+ activesupport (4.0.2) lib/active_support/dependencies.rb:207:in `require_dependency'
2189
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/articles_controller.rb:1:in `<top (required)>'
2190
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
2191
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
2192
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
2193
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
2194
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
2195
+ activesupport (4.0.2) lib/active_support/dependencies.rb:463:in `load_missing_constant'
2196
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
2197
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `const_get'
2198
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `block in constantize'
2199
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
2200
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
2201
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
2202
+ activesupport (4.0.2) lib/active_support/dependencies.rb:535:in `get'
2203
+ activesupport (4.0.2) lib/active_support/dependencies.rb:566:in `constantize'
2204
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
2205
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:66:in `controller'
2206
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:44:in `call'
2207
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
2208
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
2209
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
2210
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
2211
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
2212
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
2213
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
2214
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
2215
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
2216
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
2217
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
2218
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
2219
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
2220
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2221
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
2222
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
2223
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
2224
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
2225
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
2226
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
2227
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
2228
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2229
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__62586543__call__callbacks'
2230
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
2231
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2232
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
2233
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
2234
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2235
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2236
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
2237
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
2238
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
2239
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
2240
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
2241
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
2242
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2243
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2244
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2245
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
2246
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2247
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
2248
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2249
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
2250
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
2251
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2252
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2253
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2254
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2255
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2256
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2257
+
2258
+
2259
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.2ms)
2260
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
2261
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
2262
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.2ms)
2263
+
2264
+
2265
+ Started GET "/blog" for 127.0.0.1 at 2014-02-10 00:26:38 +0100
2266
+
2267
+ RuntimeError (Circular dependency detected while autoloading constant Blogrrr::ApplicationHelper):
2268
+ activesupport (4.0.2) lib/active_support/dependencies.rb:461:in `load_missing_constant'
2269
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
2270
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `const_get'
2271
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `block in constantize'
2272
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
2273
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
2274
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
2275
+ activesupport (4.0.2) lib/active_support/core_ext/string/inflections.rb:66:in `constantize'
2276
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:139:in `block in modules_for_helpers'
2277
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:130:in `map!'
2278
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:130:in `modules_for_helpers'
2279
+ actionpack (4.0.2) lib/action_controller/metal/helpers.rb:89:in `modules_for_helpers'
2280
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:94:in `helper'
2281
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:176:in `default_helper_module!'
2282
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `block in inherited'
2283
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `class_eval'
2284
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `inherited'
2285
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:226:in `inherited'
2286
+ actionpack (4.0.2) lib/abstract_controller/railties/routes_helpers.rb:7:in `block (2 levels) in with'
2287
+ actionpack (4.0.2) lib/action_controller/railties/helpers.rb:5:in `inherited'
2288
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/application_controller.rb:2:in `<module:Blogrrr>'
2289
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/application_controller.rb:1:in `<top (required)>'
2290
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
2291
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
2292
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
2293
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
2294
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
2295
+ activesupport (4.0.2) lib/active_support/dependencies.rb:289:in `depend_on'
2296
+ activesupport (4.0.2) lib/active_support/dependencies.rb:207:in `require_dependency'
2297
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/articles_controller.rb:1:in `<top (required)>'
2298
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
2299
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
2300
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
2301
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
2302
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
2303
+ activesupport (4.0.2) lib/active_support/dependencies.rb:463:in `load_missing_constant'
2304
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
2305
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `const_get'
2306
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `block in constantize'
2307
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
2308
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
2309
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
2310
+ activesupport (4.0.2) lib/active_support/dependencies.rb:535:in `get'
2311
+ activesupport (4.0.2) lib/active_support/dependencies.rb:566:in `constantize'
2312
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
2313
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:66:in `controller'
2314
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:44:in `call'
2315
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
2316
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
2317
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
2318
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
2319
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
2320
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
2321
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
2322
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
2323
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
2324
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
2325
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
2326
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
2327
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
2328
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2329
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
2330
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
2331
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
2332
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
2333
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
2334
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
2335
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
2336
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2337
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__62586543__call__callbacks'
2338
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
2339
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2340
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
2341
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
2342
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2343
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2344
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
2345
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
2346
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
2347
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
2348
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
2349
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
2350
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2351
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2352
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2353
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
2354
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2355
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
2356
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2357
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
2358
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
2359
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2360
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2361
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2362
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2363
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2364
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2365
+
2366
+
2367
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.9ms)
2368
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
2369
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
2370
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.4ms)
2371
+
2372
+
2373
+ Started GET "/blog" for 127.0.0.1 at 2014-02-10 00:29:02 +0100
2374
+
2375
+ RuntimeError (Circular dependency detected while autoloading constant Blogrrr::ApplicationHelper):
2376
+ activesupport (4.0.2) lib/active_support/dependencies.rb:461:in `load_missing_constant'
2377
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
2378
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `const_get'
2379
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `block in constantize'
2380
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
2381
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
2382
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
2383
+ activesupport (4.0.2) lib/active_support/core_ext/string/inflections.rb:66:in `constantize'
2384
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:139:in `block in modules_for_helpers'
2385
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:130:in `map!'
2386
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:130:in `modules_for_helpers'
2387
+ actionpack (4.0.2) lib/action_controller/metal/helpers.rb:89:in `modules_for_helpers'
2388
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:94:in `helper'
2389
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:176:in `default_helper_module!'
2390
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `block in inherited'
2391
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `class_eval'
2392
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `inherited'
2393
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:226:in `inherited'
2394
+ actionpack (4.0.2) lib/abstract_controller/railties/routes_helpers.rb:7:in `block (2 levels) in with'
2395
+ actionpack (4.0.2) lib/action_controller/railties/helpers.rb:5:in `inherited'
2396
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/application_controller.rb:2:in `<module:Blogrrr>'
2397
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/application_controller.rb:1:in `<top (required)>'
2398
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
2399
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
2400
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
2401
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
2402
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
2403
+ activesupport (4.0.2) lib/active_support/dependencies.rb:289:in `depend_on'
2404
+ activesupport (4.0.2) lib/active_support/dependencies.rb:207:in `require_dependency'
2405
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/articles_controller.rb:1:in `<top (required)>'
2406
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
2407
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
2408
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
2409
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
2410
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
2411
+ activesupport (4.0.2) lib/active_support/dependencies.rb:463:in `load_missing_constant'
2412
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
2413
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `const_get'
2414
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `block in constantize'
2415
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
2416
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
2417
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
2418
+ activesupport (4.0.2) lib/active_support/dependencies.rb:535:in `get'
2419
+ activesupport (4.0.2) lib/active_support/dependencies.rb:566:in `constantize'
2420
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
2421
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:66:in `controller'
2422
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:44:in `call'
2423
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
2424
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
2425
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
2426
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
2427
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
2428
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
2429
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
2430
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
2431
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
2432
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
2433
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
2434
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
2435
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
2436
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2437
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
2438
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
2439
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
2440
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
2441
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
2442
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
2443
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
2444
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2445
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__62586543__call__callbacks'
2446
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
2447
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2448
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
2449
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
2450
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2451
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2452
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
2453
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
2454
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
2455
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
2456
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
2457
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
2458
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2459
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2460
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2461
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
2462
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2463
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
2464
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2465
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
2466
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
2467
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2468
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2469
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2470
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2471
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2472
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2473
+
2474
+
2475
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
2476
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
2477
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
2478
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.1ms)
2479
+
2480
+
2481
+ Started GET "/blog" for 127.0.0.1 at 2014-02-10 00:29:03 +0100
2482
+
2483
+ RuntimeError (Circular dependency detected while autoloading constant Blogrrr::ApplicationHelper):
2484
+ activesupport (4.0.2) lib/active_support/dependencies.rb:461:in `load_missing_constant'
2485
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
2486
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `const_get'
2487
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `block in constantize'
2488
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
2489
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
2490
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
2491
+ activesupport (4.0.2) lib/active_support/core_ext/string/inflections.rb:66:in `constantize'
2492
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:139:in `block in modules_for_helpers'
2493
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:130:in `map!'
2494
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:130:in `modules_for_helpers'
2495
+ actionpack (4.0.2) lib/action_controller/metal/helpers.rb:89:in `modules_for_helpers'
2496
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:94:in `helper'
2497
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:176:in `default_helper_module!'
2498
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `block in inherited'
2499
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `class_eval'
2500
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `inherited'
2501
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:226:in `inherited'
2502
+ actionpack (4.0.2) lib/abstract_controller/railties/routes_helpers.rb:7:in `block (2 levels) in with'
2503
+ actionpack (4.0.2) lib/action_controller/railties/helpers.rb:5:in `inherited'
2504
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/application_controller.rb:2:in `<module:Blogrrr>'
2505
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/application_controller.rb:1:in `<top (required)>'
2506
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
2507
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
2508
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
2509
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
2510
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
2511
+ activesupport (4.0.2) lib/active_support/dependencies.rb:289:in `depend_on'
2512
+ activesupport (4.0.2) lib/active_support/dependencies.rb:207:in `require_dependency'
2513
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/articles_controller.rb:1:in `<top (required)>'
2514
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
2515
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
2516
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
2517
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
2518
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
2519
+ activesupport (4.0.2) lib/active_support/dependencies.rb:463:in `load_missing_constant'
2520
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
2521
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `const_get'
2522
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `block in constantize'
2523
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
2524
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
2525
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
2526
+ activesupport (4.0.2) lib/active_support/dependencies.rb:535:in `get'
2527
+ activesupport (4.0.2) lib/active_support/dependencies.rb:566:in `constantize'
2528
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
2529
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:66:in `controller'
2530
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:44:in `call'
2531
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
2532
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
2533
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
2534
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
2535
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
2536
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
2537
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
2538
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
2539
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
2540
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
2541
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
2542
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
2543
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
2544
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2545
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
2546
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
2547
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
2548
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
2549
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
2550
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
2551
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
2552
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2553
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__62586543__call__callbacks'
2554
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
2555
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2556
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
2557
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
2558
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2559
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2560
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
2561
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
2562
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
2563
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
2564
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
2565
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
2566
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2567
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2568
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2569
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
2570
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2571
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
2572
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2573
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
2574
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
2575
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2576
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2577
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2578
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2579
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2580
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2581
+
2582
+
2583
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
2584
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
2585
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.3ms)
2586
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.3ms)
2587
+
2588
+
2589
+ Started GET "/blog/articles" for 127.0.0.1 at 2014-02-10 00:29:07 +0100
2590
+
2591
+ RuntimeError (Circular dependency detected while autoloading constant Blogrrr::ApplicationHelper):
2592
+ activesupport (4.0.2) lib/active_support/dependencies.rb:461:in `load_missing_constant'
2593
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
2594
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `const_get'
2595
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `block in constantize'
2596
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
2597
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
2598
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
2599
+ activesupport (4.0.2) lib/active_support/core_ext/string/inflections.rb:66:in `constantize'
2600
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:139:in `block in modules_for_helpers'
2601
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:130:in `map!'
2602
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:130:in `modules_for_helpers'
2603
+ actionpack (4.0.2) lib/action_controller/metal/helpers.rb:89:in `modules_for_helpers'
2604
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:94:in `helper'
2605
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:176:in `default_helper_module!'
2606
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `block in inherited'
2607
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `class_eval'
2608
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `inherited'
2609
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:226:in `inherited'
2610
+ actionpack (4.0.2) lib/abstract_controller/railties/routes_helpers.rb:7:in `block (2 levels) in with'
2611
+ actionpack (4.0.2) lib/action_controller/railties/helpers.rb:5:in `inherited'
2612
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/application_controller.rb:2:in `<module:Blogrrr>'
2613
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/application_controller.rb:1:in `<top (required)>'
2614
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
2615
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
2616
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
2617
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
2618
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
2619
+ activesupport (4.0.2) lib/active_support/dependencies.rb:289:in `depend_on'
2620
+ activesupport (4.0.2) lib/active_support/dependencies.rb:207:in `require_dependency'
2621
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/articles_controller.rb:1:in `<top (required)>'
2622
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
2623
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
2624
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
2625
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
2626
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
2627
+ activesupport (4.0.2) lib/active_support/dependencies.rb:463:in `load_missing_constant'
2628
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
2629
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `const_get'
2630
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `block in constantize'
2631
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
2632
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
2633
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
2634
+ activesupport (4.0.2) lib/active_support/dependencies.rb:535:in `get'
2635
+ activesupport (4.0.2) lib/active_support/dependencies.rb:566:in `constantize'
2636
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
2637
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:66:in `controller'
2638
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:44:in `call'
2639
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
2640
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
2641
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
2642
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
2643
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
2644
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
2645
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
2646
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
2647
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
2648
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
2649
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
2650
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
2651
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
2652
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2653
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
2654
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
2655
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
2656
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
2657
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
2658
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
2659
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
2660
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2661
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__62586543__call__callbacks'
2662
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
2663
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2664
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
2665
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
2666
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2667
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2668
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
2669
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
2670
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
2671
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
2672
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
2673
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
2674
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2675
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2676
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2677
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
2678
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2679
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
2680
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2681
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
2682
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
2683
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2684
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2685
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2686
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2687
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2688
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2689
+
2690
+
2691
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
2692
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
2693
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
2694
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.4ms)
2695
+
2696
+
2697
+ Started GET "/" for 127.0.0.1 at 2014-02-10 00:29:11 +0100
2698
+ Processing by Rails::WelcomeController#index as HTML
2699
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/railties-4.0.2/lib/rails/templates/rails/welcome/index.html.erb (0.1ms)
2700
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
2701
+
2702
+
2703
+ Started GET "/articles/1" for 127.0.0.1 at 2014-02-10 00:29:14 +0100
2704
+
2705
+ ActionController::RoutingError (No route matches [GET] "/articles/1"):
2706
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2707
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2708
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
2709
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
2710
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
2711
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
2712
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
2713
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
2714
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2715
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2716
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2717
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
2718
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2719
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
2720
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2721
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
2722
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
2723
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2724
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2725
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2726
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2727
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2728
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2729
+
2730
+
2731
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
2732
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
2733
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
2734
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.5ms)
2735
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (23.9ms)
2736
+
2737
+
2738
+ Started GET "/articles/" for 127.0.0.1 at 2014-02-10 00:29:18 +0100
2739
+
2740
+ ActionController::RoutingError (No route matches [GET] "/articles"):
2741
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2742
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2743
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
2744
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
2745
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
2746
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
2747
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
2748
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
2749
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2750
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2751
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2752
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
2753
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2754
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
2755
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2756
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
2757
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
2758
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2759
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2760
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2761
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2762
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2763
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2764
+
2765
+
2766
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
2767
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
2768
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms)
2769
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.9ms)
2770
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (27.7ms)
2771
+
2772
+
2773
+ Started GET "/articles/new" for 127.0.0.1 at 2014-02-10 00:29:21 +0100
2774
+
2775
+ ActionController::RoutingError (No route matches [GET] "/articles/new"):
2776
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2777
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2778
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
2779
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
2780
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
2781
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
2782
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
2783
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
2784
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2785
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2786
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2787
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
2788
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2789
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
2790
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2791
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
2792
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
2793
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2794
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2795
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2796
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2797
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2798
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2799
+
2800
+
2801
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
2802
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
2803
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms)
2804
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms)
2805
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (23.7ms)
2806
+
2807
+
2808
+ Started GET "/blog" for 127.0.0.1 at 2014-02-10 00:29:32 +0100
2809
+
2810
+ RuntimeError (Circular dependency detected while autoloading constant Blogrrr::ApplicationHelper):
2811
+ activesupport (4.0.2) lib/active_support/dependencies.rb:461:in `load_missing_constant'
2812
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
2813
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `const_get'
2814
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `block in constantize'
2815
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
2816
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
2817
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
2818
+ activesupport (4.0.2) lib/active_support/core_ext/string/inflections.rb:66:in `constantize'
2819
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:139:in `block in modules_for_helpers'
2820
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:130:in `map!'
2821
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:130:in `modules_for_helpers'
2822
+ actionpack (4.0.2) lib/action_controller/metal/helpers.rb:89:in `modules_for_helpers'
2823
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:94:in `helper'
2824
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:176:in `default_helper_module!'
2825
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `block in inherited'
2826
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `class_eval'
2827
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `inherited'
2828
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:226:in `inherited'
2829
+ actionpack (4.0.2) lib/abstract_controller/railties/routes_helpers.rb:7:in `block (2 levels) in with'
2830
+ actionpack (4.0.2) lib/action_controller/railties/helpers.rb:5:in `inherited'
2831
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/application_controller.rb:2:in `<module:Blogrrr>'
2832
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/application_controller.rb:1:in `<top (required)>'
2833
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
2834
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
2835
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
2836
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
2837
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
2838
+ activesupport (4.0.2) lib/active_support/dependencies.rb:289:in `depend_on'
2839
+ activesupport (4.0.2) lib/active_support/dependencies.rb:207:in `require_dependency'
2840
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/articles_controller.rb:1:in `<top (required)>'
2841
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
2842
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
2843
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
2844
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
2845
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
2846
+ activesupport (4.0.2) lib/active_support/dependencies.rb:463:in `load_missing_constant'
2847
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
2848
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `const_get'
2849
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `block in constantize'
2850
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
2851
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
2852
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
2853
+ activesupport (4.0.2) lib/active_support/dependencies.rb:535:in `get'
2854
+ activesupport (4.0.2) lib/active_support/dependencies.rb:566:in `constantize'
2855
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
2856
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:66:in `controller'
2857
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:44:in `call'
2858
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
2859
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
2860
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
2861
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
2862
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
2863
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
2864
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
2865
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
2866
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
2867
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
2868
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
2869
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
2870
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
2871
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2872
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
2873
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
2874
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
2875
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
2876
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
2877
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
2878
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
2879
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2880
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__62586543__call__callbacks'
2881
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
2882
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2883
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
2884
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
2885
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2886
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2887
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
2888
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
2889
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
2890
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
2891
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
2892
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
2893
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2894
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2895
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2896
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
2897
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2898
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
2899
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2900
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
2901
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
2902
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2903
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2904
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2905
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2906
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2907
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2908
+
2909
+
2910
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
2911
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
2912
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
2913
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.7ms)
2914
+
2915
+
2916
+ Started GET "/blog" for 127.0.0.1 at 2014-02-10 00:31:23 +0100
2917
+
2918
+ RuntimeError (Circular dependency detected while autoloading constant Blogrrr::ApplicationHelper):
2919
+ activesupport (4.0.2) lib/active_support/dependencies.rb:461:in `load_missing_constant'
2920
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
2921
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `const_get'
2922
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `block in constantize'
2923
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
2924
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
2925
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
2926
+ activesupport (4.0.2) lib/active_support/core_ext/string/inflections.rb:66:in `constantize'
2927
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:139:in `block in modules_for_helpers'
2928
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:130:in `map!'
2929
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:130:in `modules_for_helpers'
2930
+ actionpack (4.0.2) lib/action_controller/metal/helpers.rb:89:in `modules_for_helpers'
2931
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:94:in `helper'
2932
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:176:in `default_helper_module!'
2933
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `block in inherited'
2934
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `class_eval'
2935
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `inherited'
2936
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:226:in `inherited'
2937
+ actionpack (4.0.2) lib/abstract_controller/railties/routes_helpers.rb:7:in `block (2 levels) in with'
2938
+ actionpack (4.0.2) lib/action_controller/railties/helpers.rb:5:in `inherited'
2939
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/application_controller.rb:2:in `<module:Blogrrr>'
2940
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/application_controller.rb:1:in `<top (required)>'
2941
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
2942
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
2943
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
2944
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
2945
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
2946
+ activesupport (4.0.2) lib/active_support/dependencies.rb:289:in `depend_on'
2947
+ activesupport (4.0.2) lib/active_support/dependencies.rb:207:in `require_dependency'
2948
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/articles_controller.rb:1:in `<top (required)>'
2949
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
2950
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
2951
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
2952
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
2953
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
2954
+ activesupport (4.0.2) lib/active_support/dependencies.rb:463:in `load_missing_constant'
2955
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
2956
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `const_get'
2957
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `block in constantize'
2958
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
2959
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
2960
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
2961
+ activesupport (4.0.2) lib/active_support/dependencies.rb:535:in `get'
2962
+ activesupport (4.0.2) lib/active_support/dependencies.rb:566:in `constantize'
2963
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
2964
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:66:in `controller'
2965
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:44:in `call'
2966
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
2967
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
2968
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
2969
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
2970
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
2971
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
2972
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
2973
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
2974
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
2975
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
2976
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
2977
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
2978
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
2979
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2980
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
2981
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
2982
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
2983
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
2984
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
2985
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
2986
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
2987
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2988
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__62586543__call__callbacks'
2989
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
2990
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2991
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
2992
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
2993
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2994
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2995
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
2996
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
2997
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
2998
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
2999
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
3000
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
3001
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3002
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3003
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3004
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3005
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3006
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
3007
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3008
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
3009
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
3010
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3011
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3012
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3013
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
3014
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
3015
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
3016
+
3017
+
3018
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
3019
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
3020
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
3021
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.9ms)
3022
+
3023
+
3024
+ Started GET "/blog" for 127.0.0.1 at 2014-02-10 00:32:10 +0100
3025
+
3026
+ ActionController::RoutingError (No route matches [GET] "/blog"):
3027
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
3028
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3029
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
3030
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
3031
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
3032
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
3033
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
3034
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
3035
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3036
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3037
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3038
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3039
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3040
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
3041
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3042
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
3043
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
3044
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3045
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3046
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3047
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
3048
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
3049
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
3050
+
3051
+
3052
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
3053
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
3054
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
3055
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms)
3056
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (21.4ms)
3057
+
3058
+
3059
+ Started GET "/blogr" for 127.0.0.1 at 2014-02-10 00:32:16 +0100
3060
+
3061
+ RuntimeError (Circular dependency detected while autoloading constant Blogrrr::ApplicationHelper):
3062
+ activesupport (4.0.2) lib/active_support/dependencies.rb:461:in `load_missing_constant'
3063
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
3064
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `const_get'
3065
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `block in constantize'
3066
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
3067
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
3068
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
3069
+ activesupport (4.0.2) lib/active_support/core_ext/string/inflections.rb:66:in `constantize'
3070
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:139:in `block in modules_for_helpers'
3071
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:130:in `map!'
3072
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:130:in `modules_for_helpers'
3073
+ actionpack (4.0.2) lib/action_controller/metal/helpers.rb:89:in `modules_for_helpers'
3074
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:94:in `helper'
3075
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:176:in `default_helper_module!'
3076
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `block in inherited'
3077
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `class_eval'
3078
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `inherited'
3079
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:226:in `inherited'
3080
+ actionpack (4.0.2) lib/abstract_controller/railties/routes_helpers.rb:7:in `block (2 levels) in with'
3081
+ actionpack (4.0.2) lib/action_controller/railties/helpers.rb:5:in `inherited'
3082
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/application_controller.rb:2:in `<module:Blogrrr>'
3083
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/application_controller.rb:1:in `<top (required)>'
3084
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
3085
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
3086
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
3087
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
3088
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
3089
+ activesupport (4.0.2) lib/active_support/dependencies.rb:289:in `depend_on'
3090
+ activesupport (4.0.2) lib/active_support/dependencies.rb:207:in `require_dependency'
3091
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/articles_controller.rb:1:in `<top (required)>'
3092
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
3093
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
3094
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
3095
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
3096
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
3097
+ activesupport (4.0.2) lib/active_support/dependencies.rb:463:in `load_missing_constant'
3098
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
3099
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `const_get'
3100
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `block in constantize'
3101
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
3102
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
3103
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
3104
+ activesupport (4.0.2) lib/active_support/dependencies.rb:535:in `get'
3105
+ activesupport (4.0.2) lib/active_support/dependencies.rb:566:in `constantize'
3106
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
3107
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:66:in `controller'
3108
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:44:in `call'
3109
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
3110
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
3111
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
3112
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
3113
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
3114
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
3115
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
3116
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
3117
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
3118
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
3119
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
3120
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
3121
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
3122
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
3123
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
3124
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
3125
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
3126
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
3127
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
3128
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
3129
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
3130
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
3131
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__62586543__call__callbacks'
3132
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
3133
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3134
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
3135
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
3136
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
3137
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3138
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
3139
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
3140
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
3141
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
3142
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
3143
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
3144
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3145
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3146
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3147
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3148
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3149
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
3150
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3151
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
3152
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
3153
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3154
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3155
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3156
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
3157
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
3158
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
3159
+
3160
+
3161
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.1ms)
3162
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
3163
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.2ms)
3164
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.3ms)
3165
+
3166
+
3167
+ Started GET "/blogr" for 127.0.0.1 at 2014-02-10 00:32:29 +0100
3168
+
3169
+ ActionController::RoutingError (No route matches [GET] "/blogr"):
3170
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
3171
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3172
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
3173
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
3174
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
3175
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
3176
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
3177
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
3178
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3179
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3180
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3181
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3182
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3183
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
3184
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3185
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
3186
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
3187
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3188
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3189
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3190
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
3191
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
3192
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
3193
+
3194
+
3195
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
3196
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
3197
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms)
3198
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms)
3199
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (29.2ms)
3200
+
3201
+
3202
+ Started GET "/blog" for 127.0.0.1 at 2014-02-10 00:32:31 +0100
3203
+
3204
+ RuntimeError (Circular dependency detected while autoloading constant Blogrrr::ApplicationHelper):
3205
+ activesupport (4.0.2) lib/active_support/dependencies.rb:461:in `load_missing_constant'
3206
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
3207
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `const_get'
3208
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `block in constantize'
3209
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
3210
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
3211
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
3212
+ activesupport (4.0.2) lib/active_support/core_ext/string/inflections.rb:66:in `constantize'
3213
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:139:in `block in modules_for_helpers'
3214
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:130:in `map!'
3215
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:130:in `modules_for_helpers'
3216
+ actionpack (4.0.2) lib/action_controller/metal/helpers.rb:89:in `modules_for_helpers'
3217
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:94:in `helper'
3218
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:176:in `default_helper_module!'
3219
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `block in inherited'
3220
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `class_eval'
3221
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `inherited'
3222
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:226:in `inherited'
3223
+ actionpack (4.0.2) lib/abstract_controller/railties/routes_helpers.rb:7:in `block (2 levels) in with'
3224
+ actionpack (4.0.2) lib/action_controller/railties/helpers.rb:5:in `inherited'
3225
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/application_controller.rb:2:in `<module:Blogrrr>'
3226
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/application_controller.rb:1:in `<top (required)>'
3227
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
3228
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
3229
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
3230
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
3231
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
3232
+ activesupport (4.0.2) lib/active_support/dependencies.rb:289:in `depend_on'
3233
+ activesupport (4.0.2) lib/active_support/dependencies.rb:207:in `require_dependency'
3234
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/articles_controller.rb:1:in `<top (required)>'
3235
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
3236
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
3237
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
3238
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
3239
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
3240
+ activesupport (4.0.2) lib/active_support/dependencies.rb:463:in `load_missing_constant'
3241
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
3242
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `const_get'
3243
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `block in constantize'
3244
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
3245
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
3246
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
3247
+ activesupport (4.0.2) lib/active_support/dependencies.rb:535:in `get'
3248
+ activesupport (4.0.2) lib/active_support/dependencies.rb:566:in `constantize'
3249
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
3250
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:66:in `controller'
3251
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:44:in `call'
3252
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
3253
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
3254
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
3255
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
3256
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
3257
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
3258
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
3259
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
3260
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
3261
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
3262
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
3263
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
3264
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
3265
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
3266
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
3267
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
3268
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
3269
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
3270
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
3271
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
3272
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
3273
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
3274
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__62586543__call__callbacks'
3275
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
3276
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3277
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
3278
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
3279
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
3280
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3281
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
3282
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
3283
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
3284
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
3285
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
3286
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
3287
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3288
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3289
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3290
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3291
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3292
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
3293
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3294
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
3295
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
3296
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3297
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3298
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3299
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
3300
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
3301
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
3302
+
3303
+
3304
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
3305
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
3306
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
3307
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.7ms)
3308
+
3309
+
3310
+ Started GET "/blog" for 127.0.0.1 at 2014-02-10 00:33:29 +0100
3311
+
3312
+ RuntimeError (Circular dependency detected while autoloading constant Blogrrr::ApplicationHelper):
3313
+ activesupport (4.0.2) lib/active_support/dependencies.rb:461:in `load_missing_constant'
3314
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
3315
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `const_get'
3316
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `block in constantize'
3317
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
3318
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
3319
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
3320
+ activesupport (4.0.2) lib/active_support/core_ext/string/inflections.rb:66:in `constantize'
3321
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:139:in `block in modules_for_helpers'
3322
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:130:in `map!'
3323
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:130:in `modules_for_helpers'
3324
+ actionpack (4.0.2) lib/action_controller/metal/helpers.rb:89:in `modules_for_helpers'
3325
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:94:in `helper'
3326
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:176:in `default_helper_module!'
3327
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `block in inherited'
3328
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `class_eval'
3329
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `inherited'
3330
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:226:in `inherited'
3331
+ actionpack (4.0.2) lib/abstract_controller/railties/routes_helpers.rb:7:in `block (2 levels) in with'
3332
+ actionpack (4.0.2) lib/action_controller/railties/helpers.rb:5:in `inherited'
3333
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/application_controller.rb:2:in `<module:Blogrrr>'
3334
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/application_controller.rb:1:in `<top (required)>'
3335
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
3336
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
3337
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
3338
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
3339
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
3340
+ activesupport (4.0.2) lib/active_support/dependencies.rb:289:in `depend_on'
3341
+ activesupport (4.0.2) lib/active_support/dependencies.rb:207:in `require_dependency'
3342
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/articles_controller.rb:1:in `<top (required)>'
3343
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
3344
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
3345
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
3346
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
3347
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
3348
+ activesupport (4.0.2) lib/active_support/dependencies.rb:463:in `load_missing_constant'
3349
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
3350
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `const_get'
3351
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `block in constantize'
3352
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
3353
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
3354
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
3355
+ activesupport (4.0.2) lib/active_support/dependencies.rb:535:in `get'
3356
+ activesupport (4.0.2) lib/active_support/dependencies.rb:566:in `constantize'
3357
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
3358
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:66:in `controller'
3359
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:44:in `call'
3360
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
3361
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
3362
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
3363
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
3364
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
3365
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
3366
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
3367
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
3368
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
3369
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
3370
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
3371
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
3372
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
3373
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
3374
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
3375
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
3376
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
3377
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
3378
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
3379
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
3380
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
3381
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
3382
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__62586543__call__callbacks'
3383
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
3384
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3385
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
3386
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
3387
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
3388
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3389
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
3390
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
3391
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
3392
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
3393
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
3394
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
3395
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3396
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3397
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3398
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3399
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3400
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
3401
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3402
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
3403
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
3404
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3405
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3406
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3407
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
3408
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
3409
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
3410
+
3411
+
3412
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
3413
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
3414
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
3415
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.7ms)
3416
+
3417
+
3418
+ Started GET "/blog" for 127.0.0.1 at 2014-02-10 00:34:06 +0100
3419
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3420
+
3421
+ RuntimeError (Circular dependency detected while autoloading constant Blogrrr::ApplicationHelper):
3422
+ activesupport (4.0.2) lib/active_support/dependencies.rb:461:in `load_missing_constant'
3423
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
3424
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `const_get'
3425
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `block in constantize'
3426
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
3427
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
3428
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
3429
+ activesupport (4.0.2) lib/active_support/core_ext/string/inflections.rb:66:in `constantize'
3430
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:139:in `block in modules_for_helpers'
3431
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:130:in `map!'
3432
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:130:in `modules_for_helpers'
3433
+ actionpack (4.0.2) lib/action_controller/metal/helpers.rb:89:in `modules_for_helpers'
3434
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:94:in `helper'
3435
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:176:in `default_helper_module!'
3436
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `block in inherited'
3437
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `class_eval'
3438
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `inherited'
3439
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:226:in `inherited'
3440
+ actionpack (4.0.2) lib/abstract_controller/railties/routes_helpers.rb:7:in `block (2 levels) in with'
3441
+ actionpack (4.0.2) lib/action_controller/railties/helpers.rb:5:in `inherited'
3442
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/application_controller.rb:2:in `<module:Blogrrr>'
3443
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/application_controller.rb:1:in `<top (required)>'
3444
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
3445
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
3446
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
3447
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
3448
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
3449
+ activesupport (4.0.2) lib/active_support/dependencies.rb:289:in `depend_on'
3450
+ activesupport (4.0.2) lib/active_support/dependencies.rb:207:in `require_dependency'
3451
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/articles_controller.rb:1:in `<top (required)>'
3452
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
3453
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
3454
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
3455
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
3456
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
3457
+ activesupport (4.0.2) lib/active_support/dependencies.rb:463:in `load_missing_constant'
3458
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
3459
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `const_get'
3460
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `block in constantize'
3461
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
3462
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
3463
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
3464
+ activesupport (4.0.2) lib/active_support/dependencies.rb:535:in `get'
3465
+ activesupport (4.0.2) lib/active_support/dependencies.rb:566:in `constantize'
3466
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
3467
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:66:in `controller'
3468
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:44:in `call'
3469
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
3470
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
3471
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
3472
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
3473
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
3474
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
3475
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
3476
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
3477
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
3478
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
3479
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
3480
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
3481
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
3482
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
3483
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
3484
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
3485
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
3486
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
3487
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
3488
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
3489
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
3490
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
3491
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__59998923__call__callbacks'
3492
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
3493
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3494
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
3495
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
3496
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
3497
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3498
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
3499
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
3500
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
3501
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
3502
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
3503
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
3504
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3505
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3506
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3507
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3508
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3509
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
3510
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3511
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
3512
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
3513
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3514
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3515
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3516
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
3517
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
3518
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
3519
+
3520
+
3521
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
3522
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
3523
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (19.7ms)
3524
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (33.0ms)
3525
+
3526
+
3527
+ Started GET "/blog" for 127.0.0.1 at 2014-02-10 00:34:07 +0100
3528
+
3529
+ RuntimeError (Circular dependency detected while autoloading constant Blogrrr::ApplicationHelper):
3530
+ activesupport (4.0.2) lib/active_support/dependencies.rb:461:in `load_missing_constant'
3531
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
3532
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `const_get'
3533
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `block in constantize'
3534
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
3535
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
3536
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
3537
+ activesupport (4.0.2) lib/active_support/core_ext/string/inflections.rb:66:in `constantize'
3538
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:139:in `block in modules_for_helpers'
3539
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:130:in `map!'
3540
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:130:in `modules_for_helpers'
3541
+ actionpack (4.0.2) lib/action_controller/metal/helpers.rb:89:in `modules_for_helpers'
3542
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:94:in `helper'
3543
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:176:in `default_helper_module!'
3544
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `block in inherited'
3545
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `class_eval'
3546
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `inherited'
3547
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:226:in `inherited'
3548
+ actionpack (4.0.2) lib/abstract_controller/railties/routes_helpers.rb:7:in `block (2 levels) in with'
3549
+ actionpack (4.0.2) lib/action_controller/railties/helpers.rb:5:in `inherited'
3550
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/application_controller.rb:2:in `<module:Blogrrr>'
3551
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/application_controller.rb:1:in `<top (required)>'
3552
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
3553
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
3554
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
3555
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
3556
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
3557
+ activesupport (4.0.2) lib/active_support/dependencies.rb:289:in `depend_on'
3558
+ activesupport (4.0.2) lib/active_support/dependencies.rb:207:in `require_dependency'
3559
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/articles_controller.rb:1:in `<top (required)>'
3560
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
3561
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
3562
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
3563
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
3564
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
3565
+ activesupport (4.0.2) lib/active_support/dependencies.rb:463:in `load_missing_constant'
3566
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
3567
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `const_get'
3568
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `block in constantize'
3569
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
3570
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
3571
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
3572
+ activesupport (4.0.2) lib/active_support/dependencies.rb:535:in `get'
3573
+ activesupport (4.0.2) lib/active_support/dependencies.rb:566:in `constantize'
3574
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
3575
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:66:in `controller'
3576
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:44:in `call'
3577
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
3578
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
3579
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
3580
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
3581
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
3582
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
3583
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
3584
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
3585
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
3586
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
3587
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
3588
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
3589
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
3590
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
3591
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
3592
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
3593
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
3594
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
3595
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
3596
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
3597
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
3598
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
3599
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__59998923__call__callbacks'
3600
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
3601
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3602
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
3603
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
3604
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
3605
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3606
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
3607
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
3608
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
3609
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
3610
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
3611
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
3612
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3613
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3614
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3615
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3616
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3617
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
3618
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3619
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
3620
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
3621
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3622
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3623
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3624
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
3625
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
3626
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
3627
+
3628
+
3629
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms)
3630
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
3631
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
3632
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.3ms)
3633
+
3634
+
3635
+ Started GET "/blog" for 127.0.0.1 at 2014-02-10 00:35:33 +0100
3636
+
3637
+ ActionController::RoutingError (No route matches [GET] "/blog"):
3638
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
3639
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3640
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
3641
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
3642
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
3643
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
3644
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
3645
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
3646
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3647
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3648
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3649
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3650
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3651
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
3652
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3653
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
3654
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
3655
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3656
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3657
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3658
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
3659
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
3660
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
3661
+
3662
+
3663
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
3664
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms)
3665
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (13.1ms)
3666
+
3667
+
3668
+ Started GET "/blog" for 127.0.0.1 at 2014-02-10 00:35:38 +0100
3669
+
3670
+ RuntimeError (Circular dependency detected while autoloading constant Blogrrr::ApplicationHelper):
3671
+ activesupport (4.0.2) lib/active_support/dependencies.rb:461:in `load_missing_constant'
3672
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
3673
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `const_get'
3674
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `block in constantize'
3675
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
3676
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
3677
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
3678
+ activesupport (4.0.2) lib/active_support/core_ext/string/inflections.rb:66:in `constantize'
3679
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:139:in `block in modules_for_helpers'
3680
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:130:in `map!'
3681
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:130:in `modules_for_helpers'
3682
+ actionpack (4.0.2) lib/action_controller/metal/helpers.rb:89:in `modules_for_helpers'
3683
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:94:in `helper'
3684
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:176:in `default_helper_module!'
3685
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `block in inherited'
3686
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `class_eval'
3687
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `inherited'
3688
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:226:in `inherited'
3689
+ actionpack (4.0.2) lib/abstract_controller/railties/routes_helpers.rb:7:in `block (2 levels) in with'
3690
+ actionpack (4.0.2) lib/action_controller/railties/helpers.rb:5:in `inherited'
3691
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/application_controller.rb:2:in `<module:Blogrrr>'
3692
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/application_controller.rb:1:in `<top (required)>'
3693
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
3694
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
3695
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
3696
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
3697
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
3698
+ activesupport (4.0.2) lib/active_support/dependencies.rb:289:in `depend_on'
3699
+ activesupport (4.0.2) lib/active_support/dependencies.rb:207:in `require_dependency'
3700
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/articles_controller.rb:1:in `<top (required)>'
3701
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
3702
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
3703
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
3704
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
3705
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
3706
+ activesupport (4.0.2) lib/active_support/dependencies.rb:463:in `load_missing_constant'
3707
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
3708
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `const_get'
3709
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `block in constantize'
3710
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
3711
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
3712
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
3713
+ activesupport (4.0.2) lib/active_support/dependencies.rb:535:in `get'
3714
+ activesupport (4.0.2) lib/active_support/dependencies.rb:566:in `constantize'
3715
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
3716
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:66:in `controller'
3717
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:44:in `call'
3718
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
3719
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
3720
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
3721
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
3722
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
3723
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
3724
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
3725
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
3726
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
3727
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
3728
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
3729
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
3730
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
3731
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
3732
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
3733
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
3734
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
3735
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
3736
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
3737
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
3738
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
3739
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
3740
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__59998923__call__callbacks'
3741
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
3742
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3743
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
3744
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
3745
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
3746
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3747
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
3748
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
3749
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
3750
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
3751
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
3752
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
3753
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3754
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3755
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3756
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3757
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3758
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
3759
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3760
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
3761
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
3762
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3763
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3764
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3765
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
3766
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
3767
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
3768
+
3769
+
3770
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
3771
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
3772
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
3773
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.3ms)
3774
+
3775
+
3776
+ Started GET "/blog" for 127.0.0.1 at 2014-02-10 00:37:38 +0100
3777
+
3778
+ ActionController::RoutingError (No route matches [GET] "/blog"):
3779
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
3780
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3781
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
3782
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
3783
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
3784
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
3785
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
3786
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
3787
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3788
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3789
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3790
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3791
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3792
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
3793
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3794
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
3795
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
3796
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3797
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3798
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3799
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
3800
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
3801
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
3802
+
3803
+
3804
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
3805
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms)
3806
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
3807
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms)
3808
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (22.0ms)
3809
+
3810
+
3811
+ Started GET "/blog" for 127.0.0.1 at 2014-02-10 00:37:47 +0100
3812
+
3813
+ RuntimeError (Circular dependency detected while autoloading constant Blogrrr::ApplicationHelper):
3814
+ activesupport (4.0.2) lib/active_support/dependencies.rb:461:in `load_missing_constant'
3815
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
3816
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `const_get'
3817
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `block in constantize'
3818
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
3819
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
3820
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
3821
+ activesupport (4.0.2) lib/active_support/core_ext/string/inflections.rb:66:in `constantize'
3822
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:139:in `block in modules_for_helpers'
3823
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:130:in `map!'
3824
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:130:in `modules_for_helpers'
3825
+ actionpack (4.0.2) lib/action_controller/metal/helpers.rb:89:in `modules_for_helpers'
3826
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:94:in `helper'
3827
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:176:in `default_helper_module!'
3828
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `block in inherited'
3829
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `class_eval'
3830
+ actionpack (4.0.2) lib/abstract_controller/helpers.rb:22:in `inherited'
3831
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:226:in `inherited'
3832
+ actionpack (4.0.2) lib/abstract_controller/railties/routes_helpers.rb:7:in `block (2 levels) in with'
3833
+ actionpack (4.0.2) lib/action_controller/railties/helpers.rb:5:in `inherited'
3834
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/application_controller.rb:2:in `<module:Blogrrr>'
3835
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/application_controller.rb:1:in `<top (required)>'
3836
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
3837
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
3838
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
3839
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
3840
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
3841
+ activesupport (4.0.2) lib/active_support/dependencies.rb:289:in `depend_on'
3842
+ activesupport (4.0.2) lib/active_support/dependencies.rb:207:in `require_dependency'
3843
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/articles_controller.rb:1:in `<top (required)>'
3844
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
3845
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
3846
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
3847
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
3848
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
3849
+ activesupport (4.0.2) lib/active_support/dependencies.rb:463:in `load_missing_constant'
3850
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
3851
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `const_get'
3852
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:228:in `block in constantize'
3853
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `each'
3854
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `inject'
3855
+ activesupport (4.0.2) lib/active_support/inflector/methods.rb:224:in `constantize'
3856
+ activesupport (4.0.2) lib/active_support/dependencies.rb:535:in `get'
3857
+ activesupport (4.0.2) lib/active_support/dependencies.rb:566:in `constantize'
3858
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
3859
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:66:in `controller'
3860
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:44:in `call'
3861
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
3862
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
3863
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
3864
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
3865
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
3866
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
3867
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
3868
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
3869
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
3870
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
3871
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
3872
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
3873
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
3874
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
3875
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
3876
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
3877
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
3878
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
3879
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
3880
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
3881
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
3882
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
3883
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__59998923__call__callbacks'
3884
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
3885
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3886
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
3887
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
3888
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
3889
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3890
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
3891
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
3892
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
3893
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
3894
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
3895
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
3896
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3897
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3898
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3899
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3900
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3901
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
3902
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3903
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
3904
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
3905
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3906
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3907
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3908
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
3909
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
3910
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
3911
+
3912
+
3913
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
3914
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
3915
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
3916
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.8ms)
3917
+
3918
+
3919
+ Started GET "/blog" for 127.0.0.1 at 2014-02-10 00:39:22 +0100
3920
+ Processing by Blogrrr::ArticlesController#index as HTML
3921
+ Completed 500 Internal Server Error in 4ms
3922
+
3923
+ NoMethodError (undefined method `author_class' for Blogr:Module):
3924
+ /home/ayo/Desktop/apps/blogrrr/app/models/blogrrr/article.rb:7:in `<class:Article>'
3925
+ /home/ayo/Desktop/apps/blogrrr/app/models/blogrrr/article.rb:2:in `<module:Blogr>'
3926
+ /home/ayo/Desktop/apps/blogrrr/app/models/blogrrr/article.rb:1:in `<top (required)>'
3927
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
3928
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
3929
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
3930
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
3931
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
3932
+ activesupport (4.0.2) lib/active_support/dependencies.rb:463:in `load_missing_constant'
3933
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
3934
+ activesupport (4.0.2) lib/active_support/dependencies.rb:495:in `load_missing_constant'
3935
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
3936
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/articles_controller.rb:18:in `index'
3937
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
3938
+ actionpack (4.0.2) lib/abstract_controller/base.rb:189:in `process_action'
3939
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
3940
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
3941
+ activesupport (4.0.2) lib/active_support/callbacks.rb:383:in `_run__1057976067__process_action__callbacks'
3942
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
3943
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
3944
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
3945
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
3946
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
3947
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3948
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
3949
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
3950
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
3951
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
3952
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
3953
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
3954
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
3955
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
3956
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
3957
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
3958
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
3959
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
3960
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
3961
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
3962
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
3963
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
3964
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
3965
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
3966
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
3967
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
3968
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
3969
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
3970
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
3971
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
3972
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
3973
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
3974
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
3975
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
3976
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
3977
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
3978
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
3979
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
3980
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
3981
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
3982
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__59998923__call__callbacks'
3983
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
3984
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3985
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
3986
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
3987
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
3988
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3989
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
3990
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
3991
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
3992
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
3993
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
3994
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
3995
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3996
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3997
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3998
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3999
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
4000
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
4001
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
4002
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
4003
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
4004
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
4005
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
4006
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
4007
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
4008
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
4009
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
4010
+
4011
+
4012
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms)
4013
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
4014
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
4015
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.4ms)
4016
+
4017
+
4018
+ Started GET "/blog" for 127.0.0.1 at 2014-02-10 00:40:52 +0100
4019
+ Processing by Blogrrr::ArticlesController#index as HTML
4020
+ Completed 500 Internal Server Error in 3ms
4021
+
4022
+ NoMethodError (undefined method `author_class' for Blogr:Module):
4023
+ /home/ayo/Desktop/apps/blogrrr/app/models/blogrrr/article.rb:7:in `<class:Article>'
4024
+ /home/ayo/Desktop/apps/blogrrr/app/models/blogrrr/article.rb:2:in `<module:Blogrrr>'
4025
+ /home/ayo/Desktop/apps/blogrrr/app/models/blogrrr/article.rb:1:in `<top (required)>'
4026
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `load'
4027
+ activesupport (4.0.2) lib/active_support/dependencies.rb:424:in `block in load_file'
4028
+ activesupport (4.0.2) lib/active_support/dependencies.rb:616:in `new_constants_in'
4029
+ activesupport (4.0.2) lib/active_support/dependencies.rb:423:in `load_file'
4030
+ activesupport (4.0.2) lib/active_support/dependencies.rb:324:in `require_or_load'
4031
+ activesupport (4.0.2) lib/active_support/dependencies.rb:463:in `load_missing_constant'
4032
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
4033
+ activesupport (4.0.2) lib/active_support/dependencies.rb:495:in `load_missing_constant'
4034
+ activesupport (4.0.2) lib/active_support/dependencies.rb:184:in `const_missing'
4035
+ /home/ayo/Desktop/apps/blogrrr/app/controllers/blogrrr/articles_controller.rb:18:in `index'
4036
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
4037
+ actionpack (4.0.2) lib/abstract_controller/base.rb:189:in `process_action'
4038
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
4039
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
4040
+ activesupport (4.0.2) lib/active_support/callbacks.rb:383:in `_run__1057976067__process_action__callbacks'
4041
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
4042
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
4043
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
4044
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
4045
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
4046
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
4047
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
4048
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
4049
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
4050
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
4051
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
4052
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
4053
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
4054
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
4055
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
4056
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
4057
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
4058
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
4059
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
4060
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
4061
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
4062
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
4063
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
4064
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
4065
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
4066
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
4067
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
4068
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
4069
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
4070
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
4071
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
4072
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
4073
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
4074
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
4075
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
4076
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
4077
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
4078
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
4079
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
4080
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
4081
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__59998923__call__callbacks'
4082
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
4083
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
4084
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
4085
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
4086
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
4087
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
4088
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
4089
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
4090
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
4091
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
4092
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
4093
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
4094
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
4095
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
4096
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
4097
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
4098
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
4099
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
4100
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
4101
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
4102
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
4103
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
4104
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
4105
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
4106
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
4107
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
4108
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
4109
+
4110
+
4111
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
4112
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
4113
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms)
4114
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.8ms)
4115
+
4116
+
4117
+ Started GET "/blog" for 127.0.0.1 at 2014-02-10 00:41:07 +0100
4118
+ Processing by Blogrrr::ArticlesController#index as HTML
4119
+ Completed 500 Internal Server Error in 15ms
4120
+
4121
+ ActionView::MissingTemplate (Missing template layouts/blog with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
4122
+ * "/home/ayo/Desktop/apps/blogrrr/test/dummy/app/views"
4123
+ * "/home/ayo/Desktop/apps/blogrrr/app/views"
4124
+ ):
4125
+ actionpack (4.0.2) lib/action_view/path_set.rb:46:in `find'
4126
+ actionpack (4.0.2) lib/action_view/lookup_context.rb:122:in `find'
4127
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
4128
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:81:in `resolve_layout'
4129
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:88:in `resolve_layout'
4130
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:71:in `block in find_layout'
4131
+ actionpack (4.0.2) lib/action_view/lookup_context.rb:235:in `with_layout_format'
4132
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:18:in `with_layout_format'
4133
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:71:in `find_layout'
4134
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:55:in `render_with_layout'
4135
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
4136
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:17:in `render'
4137
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:42:in `render_template'
4138
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:23:in `render'
4139
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:127:in `_render_template'
4140
+ actionpack (4.0.2) lib/action_controller/metal/streaming.rb:219:in `_render_template'
4141
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:120:in `render_to_body'
4142
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
4143
+ actionpack (4.0.2) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
4144
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:97:in `render'
4145
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:16:in `render'
4146
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
4147
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
4148
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
4149
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `ms'
4150
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
4151
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
4152
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
4153
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:40:in `render'
4154
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
4155
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
4156
+ actionpack (4.0.2) lib/abstract_controller/base.rb:189:in `process_action'
4157
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
4158
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
4159
+ activesupport (4.0.2) lib/active_support/callbacks.rb:383:in `_run__1057976067__process_action__callbacks'
4160
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
4161
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
4162
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
4163
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
4164
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
4165
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
4166
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
4167
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
4168
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
4169
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
4170
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
4171
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
4172
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
4173
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
4174
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
4175
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
4176
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
4177
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
4178
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
4179
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
4180
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
4181
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
4182
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
4183
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
4184
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
4185
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
4186
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
4187
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
4188
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
4189
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
4190
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
4191
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
4192
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
4193
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
4194
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
4195
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
4196
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
4197
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
4198
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
4199
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
4200
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__59998923__call__callbacks'
4201
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
4202
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
4203
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
4204
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
4205
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
4206
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
4207
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
4208
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
4209
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
4210
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
4211
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
4212
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
4213
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
4214
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
4215
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
4216
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
4217
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
4218
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
4219
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
4220
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
4221
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
4222
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
4223
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
4224
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
4225
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
4226
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
4227
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
4228
+
4229
+
4230
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.8ms)
4231
+
4232
+
4233
+ Started GET "/blog" for 127.0.0.1 at 2014-02-10 00:42:33 +0100
4234
+ Processing by Blogrrr::ArticlesController#index as HTML
4235
+ Rendered /home/ayo/Desktop/apps/blogrrr/app/views/blogrrr/articles/index.html.erb within layouts/blog (3.2ms)
4236
+ Completed 500 Internal Server Error in 8ms
4237
+
4238
+ ActionView::Template::Error (Could not find table 'blogrrr_articles'):
4239
+ 1: <h1>Articles</h1>
4240
+ 2:
4241
+ 3:
4242
+ 4: <% if @articles.empty? || @articles.blank? %>
4243
+ 5: <%= content_tag :p, 'No articles' %>
4244
+ 6: <% else %>
4245
+ 7: <% @articles.each do |article| %>
4246
+ activerecord (4.0.2) lib/active_record/connection_adapters/sqlite3_adapter.rb:512:in `table_structure'
4247
+ activerecord (4.0.2) lib/active_record/connection_adapters/sqlite3_adapter.rb:399:in `columns'
4248
+ activerecord (4.0.2) lib/active_record/connection_adapters/schema_cache.rb:114:in `block in prepare_default_proc'
4249
+ activerecord (4.0.2) lib/active_record/connection_adapters/schema_cache.rb:56:in `yield'
4250
+ activerecord (4.0.2) lib/active_record/connection_adapters/schema_cache.rb:56:in `columns'
4251
+ activerecord (4.0.2) lib/active_record/model_schema.rb:208:in `columns'
4252
+ activerecord (4.0.2) lib/active_record/model_schema.rb:254:in `column_names'
4253
+ activerecord (4.0.2) lib/active_record/relation/calculations.rb:229:in `aggregate_column'
4254
+ activerecord (4.0.2) lib/active_record/relation/calculations.rb:252:in `execute_simple_calculation'
4255
+ activerecord (4.0.2) lib/active_record/relation/calculations.rb:224:in `perform_calculation'
4256
+ activerecord (4.0.2) lib/active_record/relation/calculations.rb:108:in `calculate'
4257
+ activerecord-deprecated_finders (1.0.3) lib/active_record/deprecated_finders/relation.rb:84:in `calculate'
4258
+ activerecord (4.0.2) lib/active_record/relation/calculations.rb:24:in `count'
4259
+ activerecord (4.0.2) lib/active_record/relation.rb:237:in `empty?'
4260
+ /home/ayo/Desktop/apps/blogrrr/app/views/blogrrr/articles/index.html.erb:4:in `__home_ayo__esktop_apps_blogrrr_app_views_blogrrr_articles_index_html_erb___1069011425_88437470'
4261
+ actionpack (4.0.2) lib/action_view/template.rb:143:in `block in render'
4262
+ activesupport (4.0.2) lib/active_support/notifications.rb:161:in `instrument'
4263
+ actionpack (4.0.2) lib/action_view/template.rb:141:in `render'
4264
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
4265
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
4266
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
4267
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
4268
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
4269
+ actionpack (4.0.2) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
4270
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
4271
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
4272
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:47:in `render_template'
4273
+ actionpack (4.0.2) lib/action_view/renderer/template_renderer.rb:17:in `render'
4274
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:42:in `render_template'
4275
+ actionpack (4.0.2) lib/action_view/renderer/renderer.rb:23:in `render'
4276
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:127:in `_render_template'
4277
+ actionpack (4.0.2) lib/action_controller/metal/streaming.rb:219:in `_render_template'
4278
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:120:in `render_to_body'
4279
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
4280
+ actionpack (4.0.2) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
4281
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:97:in `render'
4282
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:16:in `render'
4283
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
4284
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
4285
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
4286
+ activesupport (4.0.2) lib/active_support/core_ext/benchmark.rb:12:in `ms'
4287
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
4288
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
4289
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
4290
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:40:in `render'
4291
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
4292
+ actionpack (4.0.2) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
4293
+ actionpack (4.0.2) lib/abstract_controller/base.rb:189:in `process_action'
4294
+ actionpack (4.0.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
4295
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
4296
+ activesupport (4.0.2) lib/active_support/callbacks.rb:383:in `_run__1057976067__process_action__callbacks'
4297
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
4298
+ actionpack (4.0.2) lib/abstract_controller/callbacks.rb:17:in `process_action'
4299
+ actionpack (4.0.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
4300
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
4301
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `block in instrument'
4302
+ activesupport (4.0.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
4303
+ activesupport (4.0.2) lib/active_support/notifications.rb:159:in `instrument'
4304
+ actionpack (4.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
4305
+ actionpack (4.0.2) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
4306
+ activerecord (4.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
4307
+ actionpack (4.0.2) lib/abstract_controller/base.rb:136:in `process'
4308
+ actionpack (4.0.2) lib/abstract_controller/rendering.rb:44:in `process'
4309
+ actionpack (4.0.2) lib/action_controller/metal.rb:195:in `dispatch'
4310
+ actionpack (4.0.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
4311
+ actionpack (4.0.2) lib/action_controller/metal.rb:231:in `block in action'
4312
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `call'
4313
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
4314
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:48:in `call'
4315
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
4316
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
4317
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
4318
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
4319
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
4320
+ railties (4.0.2) lib/rails/railtie/configurable.rb:30:in `method_missing'
4321
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
4322
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `each'
4323
+ actionpack (4.0.2) lib/action_dispatch/journey/router.rb:59:in `call'
4324
+ actionpack (4.0.2) lib/action_dispatch/routing/route_set.rb:680:in `call'
4325
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
4326
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
4327
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
4328
+ actionpack (4.0.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
4329
+ actionpack (4.0.2) lib/action_dispatch/middleware/flash.rb:241:in `call'
4330
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
4331
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
4332
+ actionpack (4.0.2) lib/action_dispatch/middleware/cookies.rb:486:in `call'
4333
+ activerecord (4.0.2) lib/active_record/query_cache.rb:36:in `call'
4334
+ activerecord (4.0.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
4335
+ activerecord (4.0.2) lib/active_record/migration.rb:369:in `call'
4336
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
4337
+ activesupport (4.0.2) lib/active_support/callbacks.rb:373:in `_run__59998923__call__callbacks'
4338
+ activesupport (4.0.2) lib/active_support/callbacks.rb:80:in `run_callbacks'
4339
+ actionpack (4.0.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
4340
+ actionpack (4.0.2) lib/action_dispatch/middleware/reloader.rb:64:in `call'
4341
+ actionpack (4.0.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
4342
+ actionpack (4.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
4343
+ actionpack (4.0.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
4344
+ railties (4.0.2) lib/rails/rack/logger.rb:38:in `call_app'
4345
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `block in call'
4346
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `block in tagged'
4347
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:25:in `tagged'
4348
+ activesupport (4.0.2) lib/active_support/tagged_logging.rb:67:in `tagged'
4349
+ railties (4.0.2) lib/rails/rack/logger.rb:20:in `call'
4350
+ actionpack (4.0.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
4351
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
4352
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
4353
+ activesupport (4.0.2) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
4354
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
4355
+ actionpack (4.0.2) lib/action_dispatch/middleware/static.rb:64:in `call'
4356
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
4357
+ railties (4.0.2) lib/rails/engine.rb:511:in `call'
4358
+ railties (4.0.2) lib/rails/application.rb:97:in `call'
4359
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
4360
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
4361
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
4362
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
4363
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
4364
+ /home/ayo/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
4365
+
4366
+
4367
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
4368
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
4369
+ Rendered /home/ayo/.rvm/gems/ruby-2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.0ms)