dougui_users 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (87) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +3 -0
  3. data/Rakefile +39 -0
  4. data/app/assets/javascripts/dougui_users/application.js +9 -0
  5. data/app/assets/stylesheets/dougui_users/application.css +7 -0
  6. data/app/assets/stylesheets/scaffold.css +56 -0
  7. data/app/controllers/dougui_users/application_controller.rb +27 -0
  8. data/app/controllers/dougui_users/user_activates_controller.rb +13 -0
  9. data/app/controllers/dougui_users/user_reset_passwords_controller.rb +41 -0
  10. data/app/controllers/dougui_users/user_sessions_controller.rb +34 -0
  11. data/app/controllers/dougui_users/users_controller.rb +51 -0
  12. data/app/helpers/dougui_users/user_mailer_helper.rb +13 -0
  13. data/app/mailers/dougui_users/user_mailer.rb +15 -0
  14. data/app/models/dougui_users/user.rb +16 -0
  15. data/app/models/dougui_users/user_session.rb +11 -0
  16. data/app/models/user_session.rb +2 -0
  17. data/app/views/dougui_users/user_mailer/activation.html.erb +1 -0
  18. data/app/views/dougui_users/user_mailer/reset_password.html.erb +1 -0
  19. data/app/views/dougui_users/user_reset_passwords/edit.html.erb +16 -0
  20. data/app/views/dougui_users/user_reset_passwords/new.html.erb +11 -0
  21. data/app/views/dougui_users/user_sessions/new.html.erb +22 -0
  22. data/app/views/dougui_users/users/edit.html.erb +16 -0
  23. data/app/views/dougui_users/users/new.html.erb +25 -0
  24. data/app/views/layouts/dougui_users/application.html.erb +12 -0
  25. data/config/cucumber.yml +8 -0
  26. data/config/locales/en.yml +5 -0
  27. data/config/locales/fr.yml +50 -0
  28. data/config/routes.rb +13 -0
  29. data/db/migrate/20110916144049_create_dougui_users_users.rb +20 -0
  30. data/features/step_definitions/custom_web_steps.rb +3 -0
  31. data/features/step_definitions/email_steps.rb +206 -0
  32. data/features/step_definitions/user_steps.rb +90 -0
  33. data/features/step_definitions/web_steps.rb +211 -0
  34. data/features/support/env.rb +88 -0
  35. data/features/support/paths.rb +49 -0
  36. data/features/support/selectors.rb +39 -0
  37. data/features/user.feature +86 -0
  38. data/features/user_activates.feature +13 -0
  39. data/features/user_reset_passwords.feature +56 -0
  40. data/features/user_session.feature +35 -0
  41. data/lib/dougui_users/engine.rb +5 -0
  42. data/lib/dougui_users/version.rb +3 -0
  43. data/lib/dougui_users.rb +7 -0
  44. data/lib/tasks/cucumber.rake +65 -0
  45. data/lib/tasks/dougui_users_tasks.rake +4 -0
  46. data/spec/controllers/dougui_users/user_activates_controller_spec.rb +32 -0
  47. data/spec/controllers/dougui_users/user_reset_passwords_controller_spec.rb +59 -0
  48. data/spec/controllers/dougui_users/user_sessions_controller_spec.rb +57 -0
  49. data/spec/controllers/dougui_users/users_controller_spec.rb +98 -0
  50. data/spec/dummy/Rakefile +7 -0
  51. data/spec/dummy/app/assets/javascripts/application.js +9 -0
  52. data/spec/dummy/app/assets/stylesheets/application.css +7 -0
  53. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  54. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  55. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  56. data/spec/dummy/config/application.rb +45 -0
  57. data/spec/dummy/config/boot.rb +10 -0
  58. data/spec/dummy/config/database.yml +25 -0
  59. data/spec/dummy/config/environment.rb +5 -0
  60. data/spec/dummy/config/environments/development.rb +30 -0
  61. data/spec/dummy/config/environments/production.rb +60 -0
  62. data/spec/dummy/config/environments/test.rb +42 -0
  63. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  64. data/spec/dummy/config/initializers/inflections.rb +10 -0
  65. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  66. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  67. data/spec/dummy/config/initializers/session_store.rb +8 -0
  68. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  69. data/spec/dummy/config/locales/en.yml +5 -0
  70. data/spec/dummy/config/locales/fr.yml +269 -0
  71. data/spec/dummy/config/routes.rb +4 -0
  72. data/spec/dummy/config.ru +4 -0
  73. data/spec/dummy/db/development.sqlite3 +0 -0
  74. data/spec/dummy/db/schema.rb +28 -0
  75. data/spec/dummy/db/test.sqlite3 +0 -0
  76. data/spec/dummy/log/development.log +1340 -0
  77. data/spec/dummy/log/test.log +15056 -0
  78. data/spec/dummy/public/404.html +26 -0
  79. data/spec/dummy/public/422.html +26 -0
  80. data/spec/dummy/public/500.html +26 -0
  81. data/spec/dummy/public/favicon.ico +0 -0
  82. data/spec/dummy/script/rails +6 -0
  83. data/spec/dummy/tmp/cache/assets/D0B/620/sprockets%2F5fe8057c4691686098ead34f79e79e8f +0 -0
  84. data/spec/factories/dougui_users/user_factory.rb +9 -0
  85. data/spec/models/dougui_users/user_spec.rb +30 -0
  86. data/spec/spec_helper.rb +65 -0
  87. metadata +326 -0
@@ -0,0 +1,1340 @@
1
+  (0.1ms) select sqlite_version(*)
2
+  (5.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3
+  (0.1ms) PRAGMA index_list("schema_migrations")
4
+  (6.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
+  (2.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
6
+ Migrating to CreateDouguiUsersUsers (20110916144049)
7
+  (5.0ms) CREATE TABLE "dougui_users_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
8
+  (1.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110916144049')
9
+  (1.5ms) select sqlite_version(*)
10
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
11
+  (0.0ms) PRAGMA index_list("dougui_users_users")
12
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
13
+ Migrating to CreateDouguiUsersUsers (20110916144049)
14
+  (1.4ms) select sqlite_version(*)
15
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
16
+  (0.0ms) PRAGMA index_list("dougui_users_users")
17
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
18
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
19
+ Migrating to CreateDouguiUsersUsers (20110916144049)
20
+  (0.1ms) select sqlite_version(*)
21
+  (5.2ms) DROP TABLE "dougui_users_users"
22
+  (1.7ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20110916144049'
23
+  (2.2ms) select sqlite_version(*)
24
+  (1.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
25
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
26
+ Migrating to CreateDouguiUsersUsers (20110916144049)
27
+  (0.1ms) select sqlite_version(*)
28
+  (4.8ms) CREATE TABLE "dougui_users_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255) NOT NULL, "email" varchar(255) NOT NULL, "crypted_password" varchar(255), "password_salt" varchar(255), "persistence_token" varchar(255), "active" boolean DEFAULT 'f' NOT NULL, "perishable_token" varchar(255) DEFAULT '' NOT NULL, "created_at" datetime, "updated_at" datetime) 
29
+  (1.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110916144049')
30
+  (2.2ms) select sqlite_version(*)
31
+  (2.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
32
+  (0.1ms) PRAGMA index_list("dougui_users_users")
33
+
34
+
35
+ Started GET "/" for 127.0.0.1 at 2011-09-16 13:37:36 -0400
36
+
37
+ ActionController::RoutingError (No route matches [GET] "/"):
38
+
39
+
40
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (64.4ms)
41
+
42
+
43
+ Started GET "/blabla/" for 127.0.0.1 at 2011-09-16 13:37:45 -0400
44
+
45
+ ActionController::RoutingError (No route matches [GET] "/blabla"):
46
+
47
+
48
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
49
+
50
+
51
+ Started GET "/blabla/index" for 127.0.0.1 at 2011-09-16 13:37:54 -0400
52
+
53
+ ActionController::RoutingError (No route matches [GET] "/blabla/index"):
54
+
55
+
56
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
57
+
58
+
59
+ Started GET "/blabla/" for 127.0.0.1 at 2011-09-16 13:39:44 -0400
60
+
61
+ ActionController::RoutingError (No route matches [GET] "/blabla"):
62
+
63
+
64
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.5ms)
65
+
66
+
67
+ Started GET "/blabla/" for 127.0.0.1 at 2011-09-16 13:40:51 -0400
68
+
69
+ ActionController::RoutingError (No route matches [GET] "/blabla"):
70
+
71
+
72
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
73
+
74
+
75
+ Started GET "/dougui_users/blabla/" for 127.0.0.1 at 2011-09-16 13:40:58 -0400
76
+
77
+ ActionController::RoutingError (No route matches [GET] "/dougui_users/blabla"):
78
+
79
+
80
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.4ms)
81
+
82
+
83
+ Started GET "/dougui_users/blabla/" for 127.0.0.1 at 2011-09-16 13:41:03 -0400
84
+
85
+ ActionController::RoutingError (No route matches [GET] "/dougui_users/blabla"):
86
+
87
+
88
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
89
+
90
+
91
+ Started GET "/dougui_users/" for 127.0.0.1 at 2011-09-16 13:41:07 -0400
92
+
93
+ ActionController::RoutingError (No route matches [GET] "/dougui_users"):
94
+
95
+
96
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.4ms)
97
+
98
+
99
+ Started GET "/dougui_users/users/" for 127.0.0.1 at 2011-09-16 13:41:10 -0400
100
+
101
+ AbstractController::ActionNotFound (The action 'index' could not be found for DouguiUsers::UsersController):
102
+
103
+
104
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.7ms)
105
+
106
+
107
+ Started GET "/dougui_users/users/edit/" for 127.0.0.1 at 2011-09-16 13:41:28 -0400
108
+
109
+ ActionController::RoutingError (uninitialized constant UsersController):
110
+
111
+
112
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
113
+
114
+
115
+ Started GET "/dougui_users/users/edit/" for 127.0.0.1 at 2011-09-16 13:45:58 -0400
116
+
117
+ ActionController::RoutingError (uninitialized constant UsersController):
118
+
119
+
120
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.2ms)
121
+
122
+
123
+ Started GET "/dougui_users/users/edit/" for 127.0.0.1 at 2011-09-16 13:46:49 -0400
124
+
125
+ ArgumentError (missing :action):
126
+
127
+
128
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.4ms)
129
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (106.5ms)
130
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (117.2ms)
131
+
132
+
133
+ Started GET "/dougui_users/users/edit/" for 127.0.0.1 at 2011-09-16 13:48:15 -0400
134
+
135
+ ArgumentError (missing :action):
136
+
137
+
138
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
139
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
140
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.4ms)
141
+
142
+
143
+ Started GET "/dougui_users/users/" for 127.0.0.1 at 2011-09-16 13:48:18 -0400
144
+
145
+ ActionController::RoutingError (No route matches [GET] "/dougui_users/users"):
146
+
147
+
148
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
149
+
150
+
151
+ Started GET "/dougui_users/users/" for 127.0.0.1 at 2011-09-16 13:50:16 -0400
152
+
153
+ AbstractController::ActionNotFound (The action 'index' could not be found for DouguiUsers::UsersController):
154
+
155
+
156
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (61.5ms)
157
+
158
+
159
+ Started GET "/dougui_users/users/" for 127.0.0.1 at 2011-09-16 13:55:40 -0400
160
+
161
+ AbstractController::ActionNotFound (The action 'index' could not be found for DouguiUsers::UsersController):
162
+
163
+
164
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (72.5ms)
165
+
166
+
167
+ Started GET "/dougui_users/" for 127.0.0.1 at 2011-09-16 13:55:53 -0400
168
+ Processing by DouguiUsers::UserSessionsController#new as HTML
169
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (299.9ms)
170
+ Completed 500 Internal Server Error in 449ms
171
+
172
+ ActionView::Template::Error (undefined method `dougui_users_user_sessions_path' for #<#<Class:0x91960dc>:0x91939e0>):
173
+ 1: <%= form_for(@user_session) do |f| %>
174
+ 2: <% if @user_session.errors[:base].any? %>
175
+ 3: <div id="error_explanation">
176
+ 4: <% @user_session.errors[:base].each do |message| %>
177
+
178
+
179
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.6ms)
180
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
181
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (15.4ms)
182
+
183
+
184
+ Started GET "/dougui_users/" for 127.0.0.1 at 2011-09-16 13:58:17 -0400
185
+ Processing by DouguiUsers::UserSessionsController#new as HTML
186
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (352.2ms)
187
+ Completed 500 Internal Server Error in 1027ms
188
+
189
+ ActionView::Template::Error (undefined method `dougui_users_user_sessions_path' for #<#<Class:0xac60df4>:0xac492bc>):
190
+ 1: <%= form_for(@user_session) do |f| %>
191
+ 2: <% if @user_session.errors[:base].any? %>
192
+ 3: <div id="error_explanation">
193
+ 4: <% @user_session.errors[:base].each do |message| %>
194
+
195
+
196
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
197
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
198
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.6ms)
199
+
200
+
201
+ Started GET "/dougui_users/" for 127.0.0.1 at 2011-09-16 13:58:50 -0400
202
+ Processing by DouguiUsers::UserSessionsController#new as HTML
203
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (177.4ms)
204
+ Completed 500 Internal Server Error in 356ms
205
+
206
+ ActionView::Template::Error (undefined method `dougui_users_user_sessions_path' for #<#<Class:0xb657d1c>:0xb62ce64>):
207
+ 1: <%= form_for(@user_session) do |f| %>
208
+ 2: <% if @user_session.errors[:base].any? %>
209
+ 3: <div id="error_explanation">
210
+ 4: <% @user_session.errors[:base].each do |message| %>
211
+
212
+
213
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
214
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
215
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.8ms)
216
+
217
+
218
+ Started GET "/dougui_users/" for 127.0.0.1 at 2011-09-16 13:59:19 -0400
219
+ Processing by DouguiUsers::UserSessionsController#new as HTML
220
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (145.0ms)
221
+ Completed 500 Internal Server Error in 279ms
222
+
223
+ ActionView::Template::Error (undefined method `dougui_users_user_sessions_path' for #<#<Class:0xb50a5e0>:0xb4f84f8>):
224
+ 1: <%= form_for(@user_session) do |f| %>
225
+ 2: <% if @user_session.errors[:base].any? %>
226
+ 3: <div id="error_explanation">
227
+ 4: <% @user_session.errors[:base].each do |message| %>
228
+
229
+
230
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
231
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.4ms)
232
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.3ms)
233
+
234
+
235
+ Started GET "/dougui_users/" for 127.0.0.1 at 2011-09-16 13:59:41 -0400
236
+ Processing by DouguiUsers::UserSessionsController#new as HTML
237
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (102.2ms)
238
+ Completed 500 Internal Server Error in 332ms
239
+
240
+ ActionView::Template::Error (undefined method `dougui_users_user_sessions_path' for #<#<Class:0xb8afccc>:0xb8adef4>):
241
+ 1: <%= form_for(@user_session) do |f| %>
242
+ 2: <% if @user_session.errors[:base].any? %>
243
+ 3: <div id="error_explanation">
244
+ 4: <% @user_session.errors[:base].each do |message| %>
245
+
246
+
247
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
248
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (58.9ms)
249
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (67.9ms)
250
+
251
+
252
+ Started GET "/" for 127.0.0.1 at 2011-09-16 17:31:11 -0400
253
+
254
+ ActionController::RoutingError (No route matches [GET] "/"):
255
+
256
+
257
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (67.1ms)
258
+
259
+
260
+ Started GET "/dougui_users/" for 127.0.0.1 at 2011-09-16 17:31:18 -0400
261
+ Processing by DouguiUsers::UserSessionsController#new as HTML
262
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (253.2ms)
263
+ Completed 500 Internal Server Error in 732ms
264
+
265
+ ActionView::Template::Error (undefined method `dougui_users_user_sessions_path' for #<#<Class:0xaec80ec>:0xaeb64dc>):
266
+ 1: <%= form_for(@user_session) do |f| %>
267
+ 2: <% if @user_session.errors[:base].any? %>
268
+ 3: <div id="error_explanation">
269
+ 4: <% @user_session.errors[:base].each do |message| %>
270
+
271
+
272
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
273
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
274
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.7ms)
275
+
276
+
277
+ Started GET "/dougui_users/" for 127.0.0.1 at 2011-09-16 17:36:22 -0400
278
+ Processing by DouguiUsers::UserSessionsController#new as HTML
279
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (136.9ms)
280
+ Completed 500 Internal Server Error in 252ms
281
+
282
+ ActionView::Template::Error (undefined method `dougui_users_user_sessions_path' for #<#<Class:0xa4783bc>:0xa433870>):
283
+ 1: <%= form_for(@user_session) do |f| %>
284
+ 2: <% if @user_session.errors[:base].any? %>
285
+ 3: <div id="error_explanation">
286
+ 4: <% @user_session.errors[:base].each do |message| %>
287
+
288
+
289
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms)
290
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
291
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.7ms)
292
+
293
+
294
+ Started GET "/dougui_users/" for 127.0.0.1 at 2011-09-16 17:37:15 -0400
295
+ Processing by DouguiUsers::UserSessionsController#new as HTML
296
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (136.9ms)
297
+ Completed 500 Internal Server Error in 323ms
298
+
299
+ ActionView::Template::Error (undefined method `dougui_users_user_sessions_path' for #<#<Class:0xafc88d4>:0xafc67c8>):
300
+ 1: <%= form_for(@user_session) do |f| %>
301
+ 2: <% if @user_session.errors[:base].any? %>
302
+ 3: <div id="error_explanation">
303
+ 4: <% @user_session.errors[:base].each do |message| %>
304
+
305
+
306
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms)
307
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
308
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.5ms)
309
+
310
+
311
+ Started GET "/dougui_users/" for 127.0.0.1 at 2011-09-16 17:45:39 -0400
312
+ Processing by DouguiUsers::UserSessionsController#new as HTML
313
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (360.0ms)
314
+ Completed 500 Internal Server Error in 1066ms
315
+
316
+ ActionView::Template::Error (undefined method `dougui_users_user_sessions_path' for #<#<Class:0xa1e5104>:0xa1a18f0>):
317
+ 1: <%= form_for(@user_session) do |f| %>
318
+ 2: <% if @user_session.errors[:base].any? %>
319
+ 3: <div id="error_explanation">
320
+ 4: <% @user_session.errors[:base].each do |message| %>
321
+
322
+
323
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
324
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.8ms)
325
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.3ms)
326
+
327
+
328
+ Started GET "/dougui_users/" for 127.0.0.1 at 2011-09-16 17:45:46 -0400
329
+ Processing by DouguiUsers::UserSessionsController#new as HTML
330
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (131.9ms)
331
+ Completed 500 Internal Server Error in 280ms
332
+
333
+ ActionView::Template::Error (undefined method `dougui_users_user_sessions_path' for #<#<Class:0xa1e61e4>:0xa1cde78>):
334
+ 1: <%= form_for(@user_session) do |f| %>
335
+ 2: <% if @user_session.errors[:base].any? %>
336
+ 3: <div id="error_explanation">
337
+ 4: <% @user_session.errors[:base].each do |message| %>
338
+
339
+
340
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
341
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.8ms)
342
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.5ms)
343
+
344
+
345
+ Started GET "/dougui_users/" for 127.0.0.1 at 2011-09-16 17:50:23 -0400
346
+ Processing by DouguiUsers::UserSessionsController#new as HTML
347
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (345.1ms)
348
+ Completed 500 Internal Server Error in 1009ms
349
+
350
+ ActionView::Template::Error (undefined method `dougui_users_user_sessions_path' for #<#<Class:0x9c6f6c0>:0x9c45244>):
351
+ 1: <%= form_for(@user_session) do |f| %>
352
+ 2: <% if @user_session.errors[:base].any? %>
353
+ 3: <div id="error_explanation">
354
+ 4: <% @user_session.errors[:base].each do |message| %>
355
+
356
+
357
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
358
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.8ms)
359
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.4ms)
360
+
361
+
362
+ Started GET "/dougui_users/users/" for 127.0.0.1 at 2011-09-16 17:50:46 -0400
363
+
364
+ AbstractController::ActionNotFound (The action 'index' could not be found for DouguiUsers::UsersController):
365
+
366
+
367
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.8ms)
368
+
369
+
370
+ Started GET "/dougui_users/users/edit/" for 127.0.0.1 at 2011-09-16 17:50:50 -0400
371
+
372
+ ActionController::RoutingError (uninitialized constant UsersController):
373
+
374
+
375
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
376
+
377
+
378
+ Started GET "/dougui_users/users/edit/" for 127.0.0.1 at 2011-09-16 17:51:30 -0400
379
+
380
+ AbstractController::ActionNotFound (The action 'show' could not be found for DouguiUsers::UsersController):
381
+
382
+
383
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.7ms)
384
+
385
+
386
+ Started GET "/dougui_users/users/new/" for 127.0.0.1 at 2011-09-16 17:51:44 -0400
387
+ Processing by DouguiUsers::UsersController#new as HTML
388
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/users/new.html.erb within layouts/dougui_users/application (27.0ms)
389
+ Compiled dougui_users/application.css (4ms) (pid 30864)
390
+ Completed 500 Internal Server Error in 208ms
391
+
392
+ ActionView::Template::Error (Operation not permitted - /media/win/Users/Oscar/workspace/RoR/dougui_users/spec/dummy/tmp/cache/assets/D0B/620/sprockets%2F5fe8057c4691686098ead34f79e79e8f):
393
+ 2: <html>
394
+ 3: <head>
395
+ 4: <title>DouguiUsers</title>
396
+ 5: <%= stylesheet_link_tag "dougui_users/application" %>
397
+ 6: <%= javascript_include_tag "dougui_users/application" %>
398
+ 7: <%= csrf_meta_tags %>
399
+ 8: </head>
400
+
401
+
402
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms)
403
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
404
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.7ms)
405
+
406
+
407
+ Started GET "/dougui_users/users/new/" for 127.0.0.1 at 2011-09-16 17:52:12 -0400
408
+ Processing by DouguiUsers::UsersController#new as HTML
409
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/users/new.html.erb within layouts/dougui_users/application (31.6ms)
410
+ Completed 500 Internal Server Error in 198ms
411
+
412
+ ActionView::Template::Error (couldn't find file 'jquery'
413
+ (in /media/win/Users/Oscar/workspace/RoR/dougui_users/app/assets/javascripts/dougui_users/application.js:7)):
414
+ 3: <head>
415
+ 4: <title>DouguiUsers</title>
416
+ 5: <%= stylesheet_link_tag "dougui_users/application" %>
417
+ 6: <%= javascript_include_tag "dougui_users/application" %>
418
+ 7: <%= csrf_meta_tags %>
419
+ 8: </head>
420
+ 9: <body>
421
+
422
+
423
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
424
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.8ms)
425
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.6ms)
426
+
427
+
428
+ Started GET "/dougui_users/users/new/" for 127.0.0.1 at 2011-09-16 17:54:24 -0400
429
+ Processing by DouguiUsers::UsersController#new as HTML
430
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/users/new.html.erb within layouts/dougui_users/application (29.7ms)
431
+ Completed 200 OK in 116ms (Views: 113.0ms | ActiveRecord: 2.2ms)
432
+
433
+
434
+ Started POST "/dougui_users/users" for 127.0.0.1 at 2011-09-16 17:54:35 -0400
435
+ Processing by DouguiUsers::UsersController#create as HTML
436
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"7IJe/m36Xb0MVPFVKrokPBuJy3C7p2qbOVRO27OYck0=", "user"=>{"username"=>"test", "email"=>"test", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"<span class="}
437
+  (0.2ms) SELECT 1 FROM "dougui_users_users" WHERE LOWER("dougui_users_users"."email") = LOWER('test') LIMIT 1
438
+  (0.2ms) SELECT 1 FROM "dougui_users_users" WHERE LOWER("dougui_users_users"."username") = LOWER('test') LIMIT 1
439
+  (0.2ms) SELECT 1 FROM "dougui_users_users" WHERE "dougui_users_users"."persistence_token" = '3705c5a2fee9ef2dfe8fab620444aa545c68972640aa21a8a28ba8c552a4f7e8cb9cbce03b8b99dda0da218fcec6ef0b68d539237fe0ef9cf048373436ace55a' LIMIT 1
440
+ CACHE (0.0ms) SELECT 1 FROM "dougui_users_users" WHERE LOWER("dougui_users_users"."email") = LOWER('test') LIMIT 1
441
+ CACHE (0.0ms) SELECT 1 FROM "dougui_users_users" WHERE LOWER("dougui_users_users"."username") = LOWER('test') LIMIT 1
442
+ CACHE (0.0ms) SELECT 1 FROM "dougui_users_users" WHERE "dougui_users_users"."persistence_token" = '3705c5a2fee9ef2dfe8fab620444aa545c68972640aa21a8a28ba8c552a4f7e8cb9cbce03b8b99dda0da218fcec6ef0b68d539237fe0ef9cf048373436ace55a' LIMIT 1
443
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/users/new.html.erb within layouts/dougui_users/application (5.2ms)
444
+ Completed 200 OK in 328ms (Views: 42.2ms | ActiveRecord: 2.9ms)
445
+
446
+
447
+ Started POST "/dougui_users/users" for 127.0.0.1 at 2011-09-16 17:55:00 -0400
448
+ Processing by DouguiUsers::UsersController#create as HTML
449
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"7IJe/m36Xb0MVPFVKrokPBuJy3C7p2qbOVRO27OYck0=", "user"=>{"username"=>"test", "email"=>"test@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"<span class="}
450
+  (0.2ms) SELECT 1 FROM "dougui_users_users" WHERE LOWER("dougui_users_users"."email") = LOWER('test@test.com') LIMIT 1
451
+  (0.2ms) SELECT 1 FROM "dougui_users_users" WHERE LOWER("dougui_users_users"."username") = LOWER('test') LIMIT 1
452
+  (0.2ms) SELECT 1 FROM "dougui_users_users" WHERE "dougui_users_users"."persistence_token" = 'b573e8143cbb86b4d6de2eefcd17e837bfd55ea3e6afe7dd69729278f7fb61ffbab6ac9ba8c656b3eae6bd9423ec0caffe5f9a14276d32ae3f3ab1730369603b' LIMIT 1
453
+ CACHE (0.0ms) SELECT 1 FROM "dougui_users_users" WHERE LOWER("dougui_users_users"."email") = LOWER('test@test.com') LIMIT 1
454
+ CACHE (0.0ms) SELECT 1 FROM "dougui_users_users" WHERE LOWER("dougui_users_users"."username") = LOWER('test') LIMIT 1
455
+ CACHE (0.0ms) SELECT 1 FROM "dougui_users_users" WHERE "dougui_users_users"."persistence_token" = 'b573e8143cbb86b4d6de2eefcd17e837bfd55ea3e6afe7dd69729278f7fb61ffbab6ac9ba8c656b3eae6bd9423ec0caffe5f9a14276d32ae3f3ab1730369603b' LIMIT 1
456
+ SQL (19.2ms) INSERT INTO "dougui_users_users" ("active", "created_at", "crypted_password", "email", "password_salt", "perishable_token", "persistence_token", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["active", false], ["created_at", Fri, 16 Sep 2011 21:55:00 UTC +00:00], ["crypted_password", "c274d9158bf066ca4c8d3d20b07d33c8d35da4e99bf4680f187f82479b8d83ac13bef24a7028caf459df982a2eb48792e8d15dfa92fcbf94748c76fe06fc711b"], ["email", "test@test.com"], ["password_salt", "FIHOI9bSGHrIca7ZN0YT"], ["perishable_token", "vGFAKc4cZ7WdI4uMSl"], ["persistence_token", "b573e8143cbb86b4d6de2eefcd17e837bfd55ea3e6afe7dd69729278f7fb61ffbab6ac9ba8c656b3eae6bd9423ec0caffe5f9a14276d32ae3f3ab1730369603b"], ["updated_at", Fri, 16 Sep 2011 21:55:00 UTC +00:00], ["username", "test"]]
457
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_mailer/activation.html.erb (25.4ms)
458
+ Completed 500 Internal Server Error in 4223ms
459
+
460
+ ActionView::Template::Error (No route matches {:controller=>"user_activates", :action=>"new", :id=>"vGFAKc4cZ7WdI4uMSl"}):
461
+ 1: <%= raw t(".message", :user => @user, :link_for_activate => link_for_activate(@user) ) %>
462
+
463
+
464
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
465
+
466
+
467
+ Started GET "/dougui_users/user_actives/new" for 127.0.0.1 at 2011-09-16 17:55:55 -0400
468
+
469
+ ActionController::RoutingError (No route matches [GET] "/dougui_users/user_actives/new"):
470
+
471
+
472
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.4ms)
473
+
474
+
475
+ Started GET "/dougui_users/user_activates/new" for 127.0.0.1 at 2011-09-16 17:56:01 -0400
476
+ Processing by DouguiUsers::UserActivatesController#new as HTML
477
+ DouguiUsers::User Load (1.3ms) SELECT "dougui_users_users".* FROM "dougui_users_users" WHERE "dougui_users_users"."perishable_token" IS NULL LIMIT 1
478
+ Completed 500 Internal Server Error in 201ms
479
+
480
+ NoMethodError (undefined method `active=' for nil:NilClass):
481
+
482
+
483
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
484
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
485
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.5ms)
486
+
487
+
488
+ Started POST "/dougui_users/users" for 127.0.0.1 at 2011-09-16 18:03:00 -0400
489
+ Processing by DouguiUsers::UsersController#create as HTML
490
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"7IJe/m36Xb0MVPFVKrokPBuJy3C7p2qbOVRO27OYck0=", "user"=>{"username"=>"test", "email"=>"test@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"<span class="}
491
+  (0.1ms) SELECT 1 FROM "dougui_users_users" WHERE LOWER("dougui_users_users"."email") = LOWER('test@test.com') LIMIT 1
492
+  (0.2ms) SELECT 1 FROM "dougui_users_users" WHERE LOWER("dougui_users_users"."username") = LOWER('test') LIMIT 1
493
+  (0.2ms) SELECT 1 FROM "dougui_users_users" WHERE "dougui_users_users"."persistence_token" = 'de3bb105648507f8270c7b9f152aaec85fccbb00cfe6217e9c0920be6d4f75f132e90149a731396d7bd9e1f0fd71d600a1d134e5f5d072f55b5bc01d2d7ed8c4' LIMIT 1
494
+ CACHE (0.0ms) SELECT 1 FROM "dougui_users_users" WHERE LOWER("dougui_users_users"."email") = LOWER('test@test.com') LIMIT 1
495
+ CACHE (0.0ms) SELECT 1 FROM "dougui_users_users" WHERE LOWER("dougui_users_users"."username") = LOWER('test') LIMIT 1
496
+ CACHE (0.0ms) SELECT 1 FROM "dougui_users_users" WHERE "dougui_users_users"."persistence_token" = 'de3bb105648507f8270c7b9f152aaec85fccbb00cfe6217e9c0920be6d4f75f132e90149a731396d7bd9e1f0fd71d600a1d134e5f5d072f55b5bc01d2d7ed8c4' LIMIT 1
497
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/users/new.html.erb within layouts/dougui_users/application (10.1ms)
498
+ Completed 200 OK in 154ms (Views: 107.0ms | ActiveRecord: 8.2ms)
499
+
500
+
501
+ Started GET "/dougui_users/user_activates/edit/1" for 127.0.0.1 at 2011-09-16 18:03:20 -0400
502
+
503
+ ActionController::RoutingError (No route matches [GET] "/dougui_users/user_activates/edit/1"):
504
+
505
+
506
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
507
+
508
+
509
+ Started GET "/dougui_users/user_activates/1/edit" for 127.0.0.1 at 2011-09-16 18:03:25 -0400
510
+
511
+ AbstractController::ActionNotFound (The action 'edit' could not be found for DouguiUsers::UserActivatesController):
512
+
513
+
514
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.8ms)
515
+
516
+
517
+ Started GET "/dougui_users/user_activates/1/new" for 127.0.0.1 at 2011-09-16 18:03:35 -0400
518
+
519
+ ActionController::RoutingError (No route matches [GET] "/dougui_users/user_activates/1/new"):
520
+
521
+
522
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
523
+
524
+
525
+ Started GET "/dougui_users/user_activates/new" for 127.0.0.1 at 2011-09-16 18:03:45 -0400
526
+ Processing by DouguiUsers::UserActivatesController#new as HTML
527
+ DouguiUsers::User Load (1.2ms) SELECT "dougui_users_users".* FROM "dougui_users_users" WHERE "dougui_users_users"."perishable_token" IS NULL LIMIT 1
528
+ Completed 500 Internal Server Error in 64ms
529
+
530
+ NoMethodError (undefined method `active=' for nil:NilClass):
531
+
532
+
533
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
534
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms)
535
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.1ms)
536
+
537
+
538
+ Started GET "/dougui_users/users/edit/1" for 127.0.0.1 at 2011-09-16 18:04:04 -0400
539
+
540
+ ActionController::RoutingError (No route matches [GET] "/dougui_users/users/edit/1"):
541
+
542
+
543
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (3.4ms)
544
+
545
+
546
+ Started GET "/dougui_users/users/edit/" for 127.0.0.1 at 2011-09-16 18:04:15 -0400
547
+
548
+ AbstractController::ActionNotFound (The action 'show' could not be found for DouguiUsers::UsersController):
549
+
550
+
551
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.8ms)
552
+
553
+
554
+ Started GET "/dougui_users/users/1/edit/" for 127.0.0.1 at 2011-09-16 18:04:23 -0400
555
+ Processing by DouguiUsers::UsersController#edit as HTML
556
+ Parameters: {"id"=>"1"}
557
+ Completed 500 Internal Server Error in 49ms
558
+
559
+ NameError (undefined local variable or method `restrict_access' for #<DouguiUsers::UsersController:0xaef153c>):
560
+
561
+
562
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
563
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
564
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.7ms)
565
+
566
+
567
+ Started GET "/dougui_users/users/1/edit/" for 127.0.0.1 at 2011-09-16 18:05:20 -0400
568
+ Processing by DouguiUsers::UsersController#edit as HTML
569
+ Parameters: {"id"=>"1"}
570
+ Completed 500 Internal Server Error in 114ms
571
+
572
+ NameError (undefined local variable or method `restrict_access' for #<DouguiUsers::UsersController:0xa75ffa8>):
573
+
574
+
575
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
576
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
577
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.2ms)
578
+
579
+
580
+ Started GET "/dougui_users/users/1/edit/" for 127.0.0.1 at 2011-09-16 18:05:22 -0400
581
+ Processing by DouguiUsers::UsersController#edit as HTML
582
+ Parameters: {"id"=>"1"}
583
+ Completed 500 Internal Server Error in 114ms
584
+
585
+ NameError (undefined local variable or method `restrict_access' for #<DouguiUsers::UsersController:0x9d1b394>):
586
+
587
+
588
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
589
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
590
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.7ms)
591
+
592
+
593
+ Started GET "/dougui_users/users/1/edit/" for 127.0.0.1 at 2011-09-16 18:06:09 -0400
594
+ Processing by DouguiUsers::UsersController#edit as HTML
595
+ Parameters: {"id"=>"1"}
596
+ Completed 500 Internal Server Error in 46ms
597
+
598
+ NameError (undefined local variable or method `restrict_access' for #<DouguiUsers::UsersController:0xb20212c>):
599
+
600
+
601
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
602
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
603
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.5ms)
604
+
605
+
606
+ Started GET "/dougui_users/users/1/edit/" for 127.0.0.1 at 2011-09-16 18:06:29 -0400
607
+ Processing by DouguiUsers::UsersController#edit as HTML
608
+ Parameters: {"id"=>"1"}
609
+ Completed 500 Internal Server Error in 34ms
610
+
611
+ NameError (uninitialized constant DouguiUsers::ApplicationController::Users):
612
+
613
+
614
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.7ms)
615
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.6ms)
616
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.2ms)
617
+
618
+
619
+ Started GET "/dougui_users/users/1/edit/" for 127.0.0.1 at 2011-09-16 18:09:39 -0400
620
+ Processing by DouguiUsers::UsersController#edit as HTML
621
+ Parameters: {"id"=>"1"}
622
+ Completed 500 Internal Server Error in 42ms
623
+
624
+ NameError (uninitialized constant DouguiUsers::ApplicationController::Users):
625
+
626
+
627
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
628
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
629
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.3ms)
630
+
631
+
632
+ Started GET "/dougui_users/users/1/edit/" for 127.0.0.1 at 2011-09-16 18:09:49 -0400
633
+ Processing by DouguiUsers::UsersController#edit as HTML
634
+ Parameters: {"id"=>"1"}
635
+ Completed 500 Internal Server Error in 38ms
636
+
637
+ NameError (uninitialized constant DouguiUsers::ApplicationController::Users):
638
+
639
+
640
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.2ms)
641
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.6ms)
642
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.7ms)
643
+
644
+
645
+ Started GET "/dougui_users/users/1/edit/" for 127.0.0.1 at 2011-09-16 18:11:14 -0400
646
+ Processing by DouguiUsers::UsersController#edit as HTML
647
+ Parameters: {"id"=>"1"}
648
+ Completed 500 Internal Server Error in 73ms
649
+
650
+ NameError (uninitialized constant DouguiUsers::ApplicationController::Users):
651
+
652
+
653
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
654
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
655
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.1ms)
656
+
657
+
658
+ Started GET "/dougui_users/users/1/edit/" for 127.0.0.1 at 2011-09-16 18:11:57 -0400
659
+ Processing by DouguiUsers::UsersController#edit as HTML
660
+ Parameters: {"id"=>"1"}
661
+ Completed 500 Internal Server Error in 41ms
662
+
663
+ NameError (uninitialized constant DouguiUsers::ApplicationController::Users):
664
+
665
+
666
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
667
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.1ms)
668
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.8ms)
669
+
670
+
671
+ Started GET "/dougui_users/users/1/edit/" for 127.0.0.1 at 2011-09-16 18:12:13 -0400
672
+ Processing by DouguiUsers::UsersController#edit as HTML
673
+ Parameters: {"id"=>"1"}
674
+ Completed 500 Internal Server Error in 147ms
675
+
676
+ NameError (undefined local variable or method `restrict_access' for #<DouguiUsers::UsersController:0x956a7f8>):
677
+
678
+
679
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.6ms)
680
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
681
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.9ms)
682
+
683
+
684
+ Started GET "/dougui_users/users/1/edit/" for 127.0.0.1 at 2011-09-16 18:13:16 -0400
685
+ Processing by DouguiUsers::UsersController#edit as HTML
686
+ Parameters: {"id"=>"1"}
687
+ Completed 500 Internal Server Error in 62ms
688
+
689
+ NameError (uninitialized constant DouguiUsers::ApplicationController::Users):
690
+
691
+
692
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
693
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
694
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.8ms)
695
+
696
+
697
+ Started GET "/dougui_users/users/1/edit/" for 127.0.0.1 at 2011-09-16 18:13:59 -0400
698
+ Processing by DouguiUsers::UsersController#edit as HTML
699
+ Parameters: {"id"=>"1"}
700
+ DouguiUsers::User Load (1.1ms) SELECT "dougui_users_users".* FROM "dougui_users_users" WHERE "dougui_users_users"."id" = ? LIMIT 1 [["id", "1"]]
701
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/users/edit.html.erb within layouts/dougui_users/application (92.9ms)
702
+ Completed 200 OK in 166ms (Views: 158.4ms | ActiveRecord: 3.3ms)
703
+
704
+
705
+ Started GET "/dougui_users/users/1/edit/" for 127.0.0.1 at 2011-09-16 18:14:12 -0400
706
+ Processing by DouguiUsers::UsersController#edit as HTML
707
+ Parameters: {"id"=>"1"}
708
+ DouguiUsers::User Load (1.4ms) SELECT "dougui_users_users".* FROM "dougui_users_users" WHERE "dougui_users_users"."id" = ? LIMIT 1 [["id", "1"]]
709
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/users/edit.html.erb within layouts/dougui_users/application (46.3ms)
710
+ Completed 200 OK in 115ms (Views: 103.4ms | ActiveRecord: 6.6ms)
711
+
712
+
713
+ Started GET "/dougui_users/users/1/edit/" for 127.0.0.1 at 2011-09-16 18:14:29 -0400
714
+ Processing by DouguiUsers::UsersController#edit as HTML
715
+ Parameters: {"id"=>"1"}
716
+ Redirected to http://localhost:3000/dougui_users/login
717
+ Completed 302 Found in 3ms
718
+
719
+
720
+ Started GET "/dougui_users/login" for 127.0.0.1 at 2011-09-16 18:14:30 -0400
721
+ Processing by DouguiUsers::UserSessionsController#new as HTML
722
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (148.8ms)
723
+ Completed 500 Internal Server Error in 396ms
724
+
725
+ ActionView::Template::Error (undefined method `dougui_users_user_sessions_path' for #<#<Class:0xafb7930>:0xafb5a90>):
726
+ 1: <%= form_for(@user_session) do |f| %>
727
+ 2: <% if @user_session.errors[:base].any? %>
728
+ 3: <div id="error_explanation">
729
+ 4: <% @user_session.errors[:base].each do |message| %>
730
+
731
+
732
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
733
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
734
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.9ms)
735
+
736
+
737
+ Started GET "/dougui_users/users/new" for 127.0.0.1 at 2011-09-16 18:16:56 -0400
738
+ Processing by DouguiUsers::UsersController#new as HTML
739
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/users/new.html.erb within layouts/dougui_users/application (31.4ms)
740
+ Completed 200 OK in 105ms (Views: 100.7ms | ActiveRecord: 3.2ms)
741
+
742
+
743
+ Started GET "/dougui_users/users/new" for 127.0.0.1 at 2011-09-16 18:17:25 -0400
744
+ Processing by DouguiUsers::UsersController#new as HTML
745
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/users/new.html.erb within layouts/dougui_users/application (37.6ms)
746
+ Completed 200 OK in 138ms (Views: 134.2ms | ActiveRecord: 2.2ms)
747
+
748
+
749
+ Started GET "/dougui_users/users/new" for 127.0.0.1 at 2011-09-16 18:17:38 -0400
750
+ Processing by DouguiUsers::UsersController#new as HTML
751
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/users/new.html.erb within layouts/dougui_users/application (36.7ms)
752
+ Completed 200 OK in 127ms (Views: 119.6ms | ActiveRecord: 6.1ms)
753
+
754
+
755
+ Started GET "/dougui_users/users/new" for 127.0.0.1 at 2011-09-16 18:18:16 -0400
756
+ Processing by DouguiUsers::UsersController#new as HTML
757
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/users/new.html.erb within layouts/dougui_users/application (197.4ms)
758
+ Completed 500 Internal Server Error in 256ms
759
+
760
+ ActionView::Template::Error (undefined local variable or method `new_session_path' for #<#<Class:0x946cd74>:0x94499dc>):
761
+ 1: <%= new_session_path %>
762
+ 2:
763
+ 3: <%= form_for(@user) do |f| %>
764
+ 4: <div class="field">
765
+
766
+
767
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms)
768
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
769
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.1ms)
770
+
771
+
772
+ Started GET "/dougui_users/users/new" for 127.0.0.1 at 2011-09-16 18:18:30 -0400
773
+ Processing by DouguiUsers::UsersController#new as HTML
774
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/users/new.html.erb within layouts/dougui_users/application (30.2ms)
775
+ Completed 200 OK in 93ms (Views: 82.0ms | ActiveRecord: 8.9ms)
776
+
777
+
778
+ Started GET "/dougui_users/users/new" for 127.0.0.1 at 2011-09-16 18:19:18 -0400
779
+ Processing by DouguiUsers::UsersController#new as HTML
780
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/users/new.html.erb within layouts/dougui_users/application (19.0ms)
781
+ Completed 500 Internal Server Error in 56ms
782
+
783
+ ActionView::Template::Error (No route matches {:action=>"show", :controller=>"dougui_users/user_sessions"}):
784
+ 1: <%= user_session_path %>
785
+ 2:
786
+ 3: <%= form_for(@user) do |f| %>
787
+ 4: <div class="field">
788
+
789
+
790
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.3ms)
791
+
792
+
793
+ Started GET "/dougui_users/users/new" for 127.0.0.1 at 2011-09-16 18:19:44 -0400
794
+ Processing by DouguiUsers::UsersController#new as HTML
795
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/users/new.html.erb within layouts/dougui_users/application (27.7ms)
796
+ Completed 200 OK in 199ms (Views: 195.3ms | ActiveRecord: 1.7ms)
797
+
798
+
799
+ Started GET "/dougui_users/login" for 127.0.0.1 at 2011-09-16 18:23:21 -0400
800
+ Processing by DouguiUsers::UserSessionsController#new as HTML
801
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (171.2ms)
802
+ Completed 500 Internal Server Error in 284ms
803
+
804
+ ActionView::Template::Error (undefined method `dougui_users_user_sessions_path' for #<#<Class:0x9a75374>:0x9a29460>):
805
+ 1: <%= form_for(@user_session) do |f| %>
806
+ 2: <% if @user_session.errors[:base].any? %>
807
+ 3: <div id="error_explanation">
808
+ 4: <% @user_session.errors[:base].each do |message| %>
809
+
810
+
811
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.6ms)
812
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
813
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.0ms)
814
+
815
+
816
+ Started GET "/dougui_users/login" for 127.0.0.1 at 2011-09-16 18:23:54 -0400
817
+ Processing by DouguiUsers::UserSessionsController#new as HTML
818
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (152.3ms)
819
+ Completed 500 Internal Server Error in 277ms
820
+
821
+ ActionView::Template::Error (undefined method `dougui_users_user_sessions_path' for #<#<Class:0xa081b3c>:0xa07f058>):
822
+ 1: <%= form_for(@user_session) do |f| %>
823
+ 2: <% if @user_session.errors[:base].any? %>
824
+ 3: <div id="error_explanation">
825
+ 4: <% @user_session.errors[:base].each do |message| %>
826
+
827
+
828
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms)
829
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
830
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.2ms)
831
+
832
+
833
+ Started GET "/dougui_users/login" for 127.0.0.1 at 2011-09-16 18:24:06 -0400
834
+
835
+ ActionController::RoutingError (No route matches [GET] "/dougui_users/login"):
836
+
837
+
838
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
839
+
840
+
841
+ Started GET "/dougui_users/user_sessions/new" for 127.0.0.1 at 2011-09-16 18:24:19 -0400
842
+ Processing by DouguiUsers::UserSessionsController#new as HTML
843
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (166.6ms)
844
+ Completed 500 Internal Server Error in 335ms
845
+
846
+ ActionView::Template::Error (undefined method `dougui_users_user_sessions_path' for #<#<Class:0xa9ff7e0>:0xa9f6ca8>):
847
+ 1: <%= form_for(@user_session) do |f| %>
848
+ 2: <% if @user_session.errors[:base].any? %>
849
+ 3: <div id="error_explanation">
850
+ 4: <% @user_session.errors[:base].each do |message| %>
851
+
852
+
853
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
854
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
855
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.1ms)
856
+
857
+
858
+ Started GET "/dougui_users/user_sessions/new" for 127.0.0.1 at 2011-09-16 18:24:28 -0400
859
+ Processing by DouguiUsers::UserSessionsController#new as HTML
860
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (97.7ms)
861
+ Completed 500 Internal Server Error in 347ms
862
+
863
+ ActionView::Template::Error (undefined method `dougui_users_user_sessions_path' for #<#<Class:0xb084214>:0xb07d234>):
864
+ 1: <%= form_for(@user_session) do |f| %>
865
+ 2: <% if @user_session.errors[:base].any? %>
866
+ 3: <div id="error_explanation">
867
+ 4: <% @user_session.errors[:base].each do |message| %>
868
+
869
+
870
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
871
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
872
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.9ms)
873
+
874
+
875
+ Started GET "/dougui_users/user_reset_passwords/new" for 127.0.0.1 at 2011-09-16 18:33:48 -0400
876
+ Processing by DouguiUsers::UserResetPasswordsController#new as HTML
877
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_reset_passwords/new.html.erb within layouts/dougui_users/application (6.4ms)
878
+ Completed 200 OK in 94ms (Views: 93.3ms | ActiveRecord: 0.0ms)
879
+
880
+
881
+ Started GET "/dougui_users/user_reset_passwords/new" for 127.0.0.1 at 2011-09-16 18:48:18 -0400
882
+ Processing by DouguiUsers::UserResetPasswordsController#new as HTML
883
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_reset_passwords/new.html.erb within layouts/dougui_users/application (4.6ms)
884
+ Completed 200 OK in 101ms (Views: 99.8ms | ActiveRecord: 0.0ms)
885
+
886
+
887
+ Started GET "/dougui_users/user_reset_passwords/new" for 127.0.0.1 at 2011-09-16 18:48:56 -0400
888
+ Processing by DouguiUsers::UserResetPasswordsController#new as HTML
889
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_reset_passwords/new.html.erb within layouts/dougui_users/application (2.5ms)
890
+ Completed 200 OK in 94ms (Views: 92.7ms | ActiveRecord: 0.0ms)
891
+
892
+
893
+ Started GET "/dougui_users/user_reset_passwords/new" for 127.0.0.1 at 2011-09-16 18:48:58 -0400
894
+ Processing by DouguiUsers::UserResetPasswordsController#new as HTML
895
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_reset_passwords/new.html.erb within layouts/dougui_users/application (4.5ms)
896
+ Completed 200 OK in 160ms (Views: 159.0ms | ActiveRecord: 0.0ms)
897
+
898
+
899
+ Started GET "/dougui_users/user_reset_passwords/new" for 127.0.0.1 at 2011-09-16 18:49:29 -0400
900
+ Processing by DouguiUsers::UserResetPasswordsController#new as HTML
901
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_reset_passwords/new.html.erb within layouts/dougui_users/application (76.0ms)
902
+ Completed 200 OK in 382ms (Views: 381.4ms | ActiveRecord: 0.0ms)
903
+
904
+
905
+ Started GET "/dougui_users/user_sessions/new" for 127.0.0.1 at 2011-09-16 18:50:08 -0400
906
+ Processing by DouguiUsers::UserSessionsController#new as HTML
907
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (259.0ms)
908
+ Completed 500 Internal Server Error in 727ms
909
+
910
+ ActionView::Template::Error (undefined method `dougui_users_user_sessions_path' for #<#<Class:0xa77e228>:0xaaac864>):
911
+ 1: <%= form_for(@user_session) do |f| %>
912
+ 2: <% if @user_session.errors[:base].any? %>
913
+ 3: <div id="error_explanation">
914
+ 4: <% @user_session.errors[:base].each do |message| %>
915
+
916
+
917
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
918
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.8ms)
919
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.0ms)
920
+
921
+
922
+ Started GET "/dougui_users/user_sessions/new" for 127.0.0.1 at 2011-09-16 18:52:39 -0400
923
+ Processing by DouguiUsers::UserSessionsController#new as HTML
924
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (23.2ms)
925
+ Completed 200 OK in 214ms (Views: 81.3ms | ActiveRecord: 6.2ms)
926
+
927
+
928
+ Started GET "/dougui_users/user_sessions/new" for 127.0.0.1 at 2011-09-16 18:53:07 -0400
929
+ Processing by DouguiUsers::UserSessionsController#new as HTML
930
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (78.8ms)
931
+ Completed 500 Internal Server Error in 266ms
932
+
933
+ ActionView::Template::Error (undefined method `dougui_users_user_sessions_path' for #<#<Class:0xa6312bc>:0xa620b60>):
934
+ 1: <%= form_for(@user_session) do |f| %>
935
+ 2: <% if @user_session.errors[:base].any? %>
936
+ 3: <div id="error_explanation">
937
+ 4: <% @user_session.errors[:base].each do |message| %>
938
+
939
+
940
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms)
941
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
942
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.7ms)
943
+
944
+
945
+ Started GET "/dougui_users/user_sessions/new" for 127.0.0.1 at 2011-09-16 19:00:41 -0400
946
+ Processing by DouguiUsers::UserSessionsController#new as HTML
947
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (14.1ms)
948
+ Completed 500 Internal Server Error in 144ms
949
+
950
+ ActionView::Template::Error (No route matches {:action=>"show", :controller=>"dougui_users/user_sessions"}):
951
+ 1: <%= form_for(@user_session, :url => user_session_path) do |f| %>
952
+ 2: <% if @user_session.errors[:base].any? %>
953
+ 3: <div id="error_explanation">
954
+ 4: <% @user_session.errors[:base].each do |message| %>
955
+
956
+
957
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
958
+
959
+
960
+ Started GET "/dougui_users/user_sessions/new" for 127.0.0.1 at 2011-09-16 19:02:22 -0400
961
+ Processing by DouguiUsers::UserSessionsController#new as HTML
962
+ Completed 404 Not Found in 2ms
963
+
964
+ ActionController::RoutingError (No route matches {:action=>"show", :controller=>"dougui_users/user_sessions"}):
965
+
966
+
967
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.2ms)
968
+
969
+
970
+ Started GET "/dougui_users/user_sessions/new" for 127.0.0.1 at 2011-09-16 19:02:38 -0400
971
+ Processing by DouguiUsers::UserSessionsController#new as HTML
972
+ Completed 404 Not Found in 2ms
973
+
974
+ ActionController::RoutingError (No route matches {:action=>"show", :controller=>"dougui_users/user_sessions"}):
975
+
976
+
977
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.2ms)
978
+
979
+
980
+ Started GET "/dougui_users/user_sessions/new" for 127.0.0.1 at 2011-09-16 19:04:53 -0400
981
+ Processing by DouguiUsers::UserSessionsController#new as HTML
982
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (26.2ms)
983
+ Completed 500 Internal Server Error in 233ms
984
+
985
+ ActionView::Template::Error (No route matches {:action=>"show", :controller=>"dougui_users/user_sessions"}):
986
+ 1: <%= form_for(@user_session, :url => user_session_path) do |f| %>
987
+ 2: <% if @user_session.errors[:base].any? %>
988
+ 3: <div id="error_explanation">
989
+ 4: <% @user_session.errors[:base].each do |message| %>
990
+
991
+
992
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
993
+
994
+
995
+ Started GET "/dougui_users/user_sessions/new" for 127.0.0.1 at 2011-09-16 19:04:54 -0400
996
+ Processing by DouguiUsers::UserSessionsController#new as HTML
997
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (13.1ms)
998
+ Completed 500 Internal Server Error in 138ms
999
+
1000
+ ActionView::Template::Error (No route matches {:action=>"show", :controller=>"dougui_users/user_sessions"}):
1001
+ 1: <%= form_for(@user_session, :url => user_session_path) do |f| %>
1002
+ 2: <% if @user_session.errors[:base].any? %>
1003
+ 3: <div id="error_explanation">
1004
+ 4: <% @user_session.errors[:base].each do |message| %>
1005
+
1006
+
1007
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
1008
+
1009
+
1010
+ Started GET "/dougui_users/user_sessions/new" for 127.0.0.1 at 2011-09-16 19:04:57 -0400
1011
+ Processing by DouguiUsers::UserSessionsController#new as HTML
1012
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (8.1ms)
1013
+ Completed 500 Internal Server Error in 187ms
1014
+
1015
+ ActionView::Template::Error (No route matches {:action=>"show", :controller=>"dougui_users/user_sessions"}):
1016
+ 1: <%= form_for(@user_session, :url => user_session_path) do |f| %>
1017
+ 2: <% if @user_session.errors[:base].any? %>
1018
+ 3: <div id="error_explanation">
1019
+ 4: <% @user_session.errors[:base].each do |message| %>
1020
+
1021
+
1022
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.2ms)
1023
+
1024
+
1025
+ Started GET "/dougui_users/user_sessions/new" for 127.0.0.1 at 2011-09-16 19:05:41 -0400
1026
+ Processing by DouguiUsers::UserSessionsController#new as HTML
1027
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (88.5ms)
1028
+ Completed 500 Internal Server Error in 272ms
1029
+
1030
+ ActionView::Template::Error (undefined method `dougui_users_user_sessions_path' for #<#<Class:0xa810f88>:0xa7e6684>):
1031
+ 1: <%= form_for(@user_session) do |f| %>
1032
+ 2: <% if @user_session.errors[:base].any? %>
1033
+ 3: <div id="error_explanation">
1034
+ 4: <% @user_session.errors[:base].each do |message| %>
1035
+
1036
+
1037
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (52.1ms)
1038
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
1039
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (59.3ms)
1040
+
1041
+
1042
+ Started GET "/dougui_users/user_sessions/new" for 127.0.0.1 at 2011-09-16 19:06:20 -0400
1043
+ Processing by DouguiUsers::UserSessionsController#new as HTML
1044
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (153.3ms)
1045
+ Completed 500 Internal Server Error in 323ms
1046
+
1047
+ ActionView::Template::Error (undefined method `dougui_users_user_sessions_path' for #<#<Class:0xa06a4f0>:0xa0410dc>):
1048
+ 1: <%= form_for(@user_session) do |f| %>
1049
+ 2: <% if @user_session.errors[:base].any? %>
1050
+ 3: <div id="error_explanation">
1051
+ 4: <% @user_session.errors[:base].each do |message| %>
1052
+
1053
+
1054
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.6ms)
1055
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
1056
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.4ms)
1057
+
1058
+
1059
+ Started GET "/dougui_users/user_sessions/new" for 127.0.0.1 at 2011-09-16 19:07:10 -0400
1060
+ Processing by DouguiUsers::UserSessionsController#new as HTML
1061
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (92.5ms)
1062
+ Completed 500 Internal Server Error in 301ms
1063
+
1064
+ ActionView::Template::Error (undefined local variable or method `f' for #<#<Class:0xa745040>:0xa7374f4>):
1065
+ 7: </div>
1066
+ 8: <% end %>
1067
+ 9: <div class="field">
1068
+ 10: <%= f.label :username %><br />
1069
+ 11: <%= f.text_field :username %>
1070
+ 12: <%= f.error_message_on :username %>
1071
+ 13: </div>
1072
+
1073
+
1074
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
1075
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
1076
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.7ms)
1077
+
1078
+
1079
+ Started GET "/dougui_users/user_sessions/new" for 127.0.0.1 at 2011-09-16 19:07:30 -0400
1080
+ Processing by DouguiUsers::UserSessionsController#new as HTML
1081
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (155.1ms)
1082
+ Completed 500 Internal Server Error in 299ms
1083
+
1084
+ ActionView::Template::Error (undefined method `dougui_users_user_sessions_path' for #<#<Class:0x995000c>:0x994e220>):
1085
+ 1: <%= user_sessions_path %>
1086
+ 2: <%= form_for(@user_session) do |f| %>
1087
+ 3: <% if @user_session.errors[:base].any? %>
1088
+ 4: <div id="error_explanation">
1089
+ 5: <% @user_session.errors[:base].each do |message| %>
1090
+
1091
+
1092
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
1093
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
1094
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.7ms)
1095
+
1096
+
1097
+ Started GET "/dougui_users/user_sessions/new" for 127.0.0.1 at 2011-09-16 19:07:37 -0400
1098
+ Processing by DouguiUsers::UserSessionsController#new as HTML
1099
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (1.6ms)
1100
+ Completed 200 OK in 220ms (Views: 60.8ms | ActiveRecord: 1.2ms)
1101
+
1102
+
1103
+ Started GET "/dougui_users/user_sessions/new" for 127.0.0.1 at 2011-09-16 19:08:11 -0400
1104
+ Processing by DouguiUsers::UserSessionsController#new as HTML
1105
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (1.9ms)
1106
+ Completed 200 OK in 128ms (Views: 59.5ms | ActiveRecord: 1.2ms)
1107
+
1108
+
1109
+ Started GET "/dougui_users/user_sessions" for 127.0.0.1 at 2011-09-16 19:08:12 -0400
1110
+
1111
+ AbstractController::ActionNotFound (The action 'index' could not be found for DouguiUsers::UserSessionsController):
1112
+
1113
+
1114
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.8ms)
1115
+
1116
+
1117
+ Started GET "/dougui_users/user_sessions" for 127.0.0.1 at 2011-09-16 19:08:21 -0400
1118
+
1119
+ AbstractController::ActionNotFound (The action 'index' could not be found for DouguiUsers::UserSessionsController):
1120
+
1121
+
1122
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.8ms)
1123
+
1124
+
1125
+ Started GET "/dougui_users/user_sessions/new" for 127.0.0.1 at 2011-09-16 19:11:07 -0400
1126
+ Processing by DouguiUsers::UserSessionsController#new as HTML
1127
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (88.1ms)
1128
+ Completed 500 Internal Server Error in 278ms
1129
+
1130
+ ActionView::Template::Error (undefined method `dougui_users_user_sessions_path' for #<#<Class:0xab13870>:0xab1196c>):
1131
+ 1: <%= form_for(@user_session) do |f| %>
1132
+ 2: <% if @user_session.errors[:base].any? %>
1133
+ 3: <div id="error_explanation">
1134
+ 4: <% @user_session.errors[:base].each do |message| %>
1135
+
1136
+
1137
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
1138
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.8ms)
1139
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.6ms)
1140
+
1141
+
1142
+ Started GET "/dougui_users/user_sessions/new" for 127.0.0.1 at 2011-09-16 19:12:06 -0400
1143
+ Processing by DouguiUsers::UserSessionsController#new as HTML
1144
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (6.8ms)
1145
+ Completed 200 OK in 124ms (Views: 59.3ms | ActiveRecord: 1.2ms)
1146
+
1147
+
1148
+ Started GET "/dougui_users/user_sessions/new" for 127.0.0.1 at 2011-09-16 19:12:27 -0400
1149
+ Processing by DouguiUsers::UserSessionsController#new as HTML
1150
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (7.6ms)
1151
+ Completed 200 OK in 203ms (Views: 82.1ms | ActiveRecord: 1.4ms)
1152
+
1153
+
1154
+ Started GET "/dougui_users/user_sessions/new" for 127.0.0.1 at 2011-09-16 19:21:07 -0400
1155
+
1156
+ Errno::ENOENT (No such file or directory - /media/win/Users/Oscar/workspace/RoR/dougui_users/config/locales/en.yml):
1157
+
1158
+
1159
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
1160
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.8ms)
1161
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.5ms)
1162
+
1163
+
1164
+ Started GET "/dougui_users/user_sessions/new" for 127.0.0.1 at 2011-09-16 19:22:42 -0400
1165
+ Processing by DouguiUsers::UserSessionsController#new as HTML
1166
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (86.0ms)
1167
+ Completed 200 OK in 927ms (Views: 432.3ms | ActiveRecord: 9.5ms)
1168
+
1169
+
1170
+ Started GET "/dougui_users/user_sessions/new" for 127.0.0.1 at 2011-09-16 19:22:47 -0400
1171
+ Processing by DouguiUsers::UserSessionsController#new as HTML
1172
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (5.9ms)
1173
+ Completed 200 OK in 214ms (Views: 77.6ms | ActiveRecord: 1.7ms)
1174
+
1175
+
1176
+ Started GET "/dougui_users/user_sessions/new" for 127.0.0.1 at 2011-09-16 19:23:08 -0400
1177
+ Processing by DouguiUsers::UserSessionsController#new as HTML
1178
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (8.7ms)
1179
+ Completed 200 OK in 219ms (Views: 80.9ms | ActiveRecord: 2.5ms)
1180
+
1181
+
1182
+ Started GET "/dougui_users/user_sessions/new" for 127.0.0.1 at 2011-09-16 19:23:10 -0400
1183
+ Processing by DouguiUsers::UserSessionsController#new as HTML
1184
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (7.6ms)
1185
+ Completed 200 OK in 168ms (Views: 83.7ms | ActiveRecord: 2.5ms)
1186
+
1187
+
1188
+ Started POST "/dougui_users/user_sessions" for 127.0.0.1 at 2011-09-16 19:23:12 -0400
1189
+ Processing by DouguiUsers::UserSessionsController#create as HTML
1190
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"7IJe/m36Xb0MVPFVKrokPBuJy3C7p2qbOVRO27OYck0=", "dougui_users_user_session"=>{"username"=>"", "password"=>"[FILTERED]"}, "commit"=>"<span class="}
1191
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (4.6ms)
1192
+ Completed 200 OK in 129ms (Views: 67.2ms | ActiveRecord: 1.7ms)
1193
+
1194
+
1195
+ Started POST "/dougui_users/user_sessions" for 127.0.0.1 at 2011-09-16 19:31:27 -0400
1196
+ Processing by DouguiUsers::UserSessionsController#create as HTML
1197
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"7IJe/m36Xb0MVPFVKrokPBuJy3C7p2qbOVRO27OYck0=", "dougui_users_user_session"=>{"username"=>"", "password"=>"[FILTERED]"}, "commit"=>"<span class="}
1198
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (4.5ms)
1199
+ Completed 200 OK in 143ms (Views: 74.6ms | ActiveRecord: 1.6ms)
1200
+
1201
+
1202
+ Started POST "/dougui_users/user_sessions" for 127.0.0.1 at 2011-09-16 19:31:37 -0400
1203
+ Processing by DouguiUsers::UserSessionsController#create as HTML
1204
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"7IJe/m36Xb0MVPFVKrokPBuJy3C7p2qbOVRO27OYck0=", "dougui_users_user_session"=>{"username"=>"", "password"=>"[FILTERED]"}, "commit"=>"<span class="}
1205
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (4.3ms)
1206
+ Completed 200 OK in 195ms (Views: 57.8ms | ActiveRecord: 1.4ms)
1207
+
1208
+
1209
+ Started GET "/dougui_users/" for 127.0.0.1 at 2011-09-16 19:31:41 -0400
1210
+ Processing by DouguiUsers::UserSessionsController#new as HTML
1211
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (4.4ms)
1212
+ Completed 200 OK in 110ms (Views: 37.8ms | ActiveRecord: 1.1ms)
1213
+
1214
+
1215
+ Started GET "/dougui_users/users/edit/" for 127.0.0.1 at 2011-09-16 19:31:45 -0400
1216
+
1217
+ AbstractController::ActionNotFound (The action 'show' could not be found for DouguiUsers::UsersController):
1218
+
1219
+
1220
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.8ms)
1221
+
1222
+
1223
+ Started GET "/dougui_users/users/1/edit/" for 127.0.0.1 at 2011-09-16 19:31:50 -0400
1224
+ Processing by DouguiUsers::UsersController#edit as HTML
1225
+ Parameters: {"id"=>"1"}
1226
+ Redirected to http://localhost:3000/dougui_users/login
1227
+ Completed 302 Found in 2ms
1228
+
1229
+
1230
+ Started GET "/dougui_users/login" for 127.0.0.1 at 2011-09-16 19:31:50 -0400
1231
+ Processing by DouguiUsers::UserSessionsController#new as HTML
1232
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (7.7ms)
1233
+ Completed 200 OK in 220ms (Views: 82.0ms | ActiveRecord: 1.1ms)
1234
+
1235
+
1236
+ Started POST "/dougui_users/user_sessions" for 127.0.0.1 at 2011-09-16 19:31:58 -0400
1237
+ Processing by DouguiUsers::UserSessionsController#create as HTML
1238
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"7IJe/m36Xb0MVPFVKrokPBuJy3C7p2qbOVRO27OYck0=", "dougui_users_user_session"=>{"username"=>"", "password"=>"[FILTERED]"}, "commit"=>"<span class="}
1239
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/user_sessions/new.html.erb within layouts/dougui_users/application (5.2ms)
1240
+ Completed 200 OK in 134ms (Views: 65.1ms | ActiveRecord: 6.3ms)
1241
+
1242
+
1243
+ Started GET "/dougui_users/users/new" for 127.0.0.1 at 2011-09-16 19:32:06 -0400
1244
+ Processing by DouguiUsers::UsersController#new as HTML
1245
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/users/new.html.erb within layouts/dougui_users/application (32.2ms)
1246
+ Completed 200 OK in 89ms (Views: 86.5ms | ActiveRecord: 1.2ms)
1247
+
1248
+
1249
+ Started GET "/dougui_users/users/new" for 127.0.0.1 at 2011-09-16 19:33:30 -0400
1250
+ Processing by DouguiUsers::UsersController#new as HTML
1251
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/users/new.html.erb within layouts/dougui_users/application (21.8ms)
1252
+ Completed 200 OK in 63ms (Views: 59.1ms | ActiveRecord: 3.2ms)
1253
+
1254
+
1255
+ Started GET "/dougui_users/users/new" for 127.0.0.1 at 2011-09-16 19:34:12 -0400
1256
+ Processing by DouguiUsers::UsersController#new as HTML
1257
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/users/new.html.erb within layouts/dougui_users/application (96.2ms)
1258
+ Completed 200 OK in 417ms (Views: 414.6ms | ActiveRecord: 1.1ms)
1259
+
1260
+
1261
+ Started GET "/dougui_users/users/new" for 127.0.0.1 at 2011-09-16 19:34:55 -0400
1262
+ Processing by DouguiUsers::UsersController#new as HTML
1263
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/users/new.html.erb within layouts/dougui_users/application (34.1ms)
1264
+ Completed 200 OK in 96ms (Views: 92.4ms | ActiveRecord: 2.6ms)
1265
+
1266
+
1267
+ Started GET "/dougui_users/users/new" for 127.0.0.1 at 2011-09-16 19:35:49 -0400
1268
+ Processing by DouguiUsers::UsersController#new as HTML
1269
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/users/new.html.erb within layouts/dougui_users/application (19.5ms)
1270
+ Completed 200 OK in 65ms (Views: 62.3ms | ActiveRecord: 1.3ms)
1271
+
1272
+
1273
+ Started GET "/dougui_users/users/new" for 127.0.0.1 at 2011-09-16 19:35:56 -0400
1274
+ Processing by DouguiUsers::UsersController#new as HTML
1275
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/users/new.html.erb within layouts/dougui_users/application (26.0ms)
1276
+ Completed 200 OK in 106ms (Views: 102.8ms | ActiveRecord: 1.6ms)
1277
+
1278
+
1279
+ Started GET "/dougui_users/users/new" for 127.0.0.1 at 2011-09-16 19:36:05 -0400
1280
+
1281
+ I18n::InvalidLocaleData (can not load translations from /media/win/Users/Oscar/workspace/RoR/dougui_users/config/locales/fr.yml, expected it to return a hash, but does not):
1282
+
1283
+
1284
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms)
1285
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
1286
+ Rendered /home/dougui/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.5ms)
1287
+
1288
+
1289
+ Started GET "/dougui_users/users/new" for 127.0.0.1 at 2011-09-16 19:36:14 -0400
1290
+ Processing by DouguiUsers::UsersController#new as HTML
1291
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/users/new.html.erb within layouts/dougui_users/application (21.4ms)
1292
+ Completed 200 OK in 106ms (Views: 99.5ms | ActiveRecord: 2.0ms)
1293
+
1294
+
1295
+ Started GET "/dougui_users/users/new" for 127.0.0.1 at 2011-09-16 19:36:50 -0400
1296
+ Processing by DouguiUsers::UsersController#new as HTML
1297
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/users/new.html.erb within layouts/dougui_users/application (29.0ms)
1298
+ Completed 200 OK in 130ms (Views: 126.8ms | ActiveRecord: 1.9ms)
1299
+
1300
+
1301
+ Started GET "/dougui_users/users/new" for 127.0.0.1 at 2011-09-16 19:37:13 -0400
1302
+ Processing by DouguiUsers::UsersController#new as HTML
1303
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/users/new.html.erb within layouts/dougui_users/application (21.0ms)
1304
+ Completed 200 OK in 73ms (Views: 70.7ms | ActiveRecord: 1.1ms)
1305
+
1306
+
1307
+ Started GET "/dougui_users/users/new" for 127.0.0.1 at 2011-09-16 19:37:46 -0400
1308
+ Processing by DouguiUsers::UsersController#new as HTML
1309
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/users/new.html.erb within layouts/dougui_users/application (31.2ms)
1310
+ Completed 200 OK in 102ms (Views: 99.1ms | ActiveRecord: 1.9ms)
1311
+
1312
+
1313
+ Started GET "/dougui_users/users/new" for 127.0.0.1 at 2011-09-16 19:37:57 -0400
1314
+ Processing by DouguiUsers::UsersController#new as HTML
1315
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/users/new.html.erb within layouts/dougui_users/application (30.3ms)
1316
+ Completed 200 OK in 92ms (Views: 82.6ms | ActiveRecord: 6.4ms)
1317
+
1318
+
1319
+ Started GET "/dougui_users/users/new" for 127.0.0.1 at 2011-09-16 19:38:08 -0400
1320
+ Processing by DouguiUsers::UsersController#new as HTML
1321
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/users/new.html.erb within layouts/dougui_users/application (27.8ms)
1322
+ Completed 200 OK in 99ms (Views: 95.6ms | ActiveRecord: 1.1ms)
1323
+
1324
+
1325
+ Started GET "/dougui_users/users/new" for 127.0.0.1 at 2011-09-17 08:09:51 -0400
1326
+ Processing by DouguiUsers::UsersController#new as HTML
1327
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/users/new.html.erb within layouts/dougui_users/application (139.0ms)
1328
+ Completed 200 OK in 417ms (Views: 414.9ms | ActiveRecord: 1.1ms)
1329
+
1330
+
1331
+ Started GET "/dougui_users/users/new" for 127.0.0.1 at 2011-09-17 08:10:35 -0400
1332
+ Processing by DouguiUsers::UsersController#new as HTML
1333
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/users/new.html.erb within layouts/dougui_users/application (27.5ms)
1334
+ Completed 200 OK in 84ms (Views: 79.6ms | ActiveRecord: 3.6ms)
1335
+
1336
+
1337
+ Started GET "/dougui_users/users/new" for 127.0.0.1 at 2011-09-17 08:10:51 -0400
1338
+ Processing by DouguiUsers::UsersController#new as HTML
1339
+ Rendered /media/win/Users/Oscar/workspace/RoR/dougui_users/app/views/dougui_users/users/new.html.erb within layouts/dougui_users/application (33.2ms)
1340
+ Completed 200 OK in 125ms (Views: 119.5ms | ActiveRecord: 4.1ms)