rack-oauth 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (88) hide show
  1. data/README.rdoc +49 -0
  2. data/Rakefile +68 -0
  3. data/VERSION +1 -0
  4. data/examples/rails-example/README +243 -0
  5. data/examples/rails-example/Rakefile +10 -0
  6. data/examples/rails-example/app/controllers/application_controller.rb +12 -0
  7. data/examples/rails-example/app/controllers/welcome_controller.rb +26 -0
  8. data/examples/rails-example/app/helpers/application_helper.rb +3 -0
  9. data/examples/rails-example/app/helpers/welcome_helper.rb +2 -0
  10. data/examples/rails-example/app/views/welcome/index.html.erb +2 -0
  11. data/examples/rails-example/config/boot.rb +110 -0
  12. data/examples/rails-example/config/database.yml +22 -0
  13. data/examples/rails-example/config/environment.rb +14 -0
  14. data/examples/rails-example/config/environments/development.rb +17 -0
  15. data/examples/rails-example/config/environments/production.rb +28 -0
  16. data/examples/rails-example/config/environments/test.rb +32 -0
  17. data/examples/rails-example/config/initializers/backtrace_silencers.rb +7 -0
  18. data/examples/rails-example/config/initializers/inflections.rb +10 -0
  19. data/examples/rails-example/config/initializers/mime_types.rb +5 -0
  20. data/examples/rails-example/config/initializers/new_rails_defaults.rb +21 -0
  21. data/examples/rails-example/config/initializers/session_store.rb +15 -0
  22. data/examples/rails-example/config/locales/en.yml +5 -0
  23. data/examples/rails-example/config/routes.rb +6 -0
  24. data/examples/rails-example/db/development.sqlite3 +1 -0
  25. data/examples/rails-example/db/seeds.rb +7 -0
  26. data/examples/rails-example/db/test.sqlite3 +1 -0
  27. data/examples/rails-example/doc/README_FOR_APP +2 -0
  28. data/examples/rails-example/lib/tasks/rspec.rake +182 -0
  29. data/examples/rails-example/log/development.log +165 -0
  30. data/examples/rails-example/log/production.log +0 -0
  31. data/examples/rails-example/log/server.log +0 -0
  32. data/examples/rails-example/log/test.log +1591 -0
  33. data/examples/rails-example/public/404.html +30 -0
  34. data/examples/rails-example/public/422.html +30 -0
  35. data/examples/rails-example/public/500.html +30 -0
  36. data/examples/rails-example/public/favicon.ico +0 -0
  37. data/examples/rails-example/public/images/rails.png +0 -0
  38. data/examples/rails-example/public/javascripts/application.js +2 -0
  39. data/examples/rails-example/public/javascripts/controls.js +963 -0
  40. data/examples/rails-example/public/javascripts/dragdrop.js +973 -0
  41. data/examples/rails-example/public/javascripts/effects.js +1128 -0
  42. data/examples/rails-example/public/javascripts/prototype.js +4320 -0
  43. data/examples/rails-example/public/robots.txt +5 -0
  44. data/examples/rails-example/script/about +4 -0
  45. data/examples/rails-example/script/autospec +6 -0
  46. data/examples/rails-example/script/console +3 -0
  47. data/examples/rails-example/script/dbconsole +3 -0
  48. data/examples/rails-example/script/destroy +3 -0
  49. data/examples/rails-example/script/generate +3 -0
  50. data/examples/rails-example/script/performance/benchmarker +3 -0
  51. data/examples/rails-example/script/performance/profiler +3 -0
  52. data/examples/rails-example/script/plugin +3 -0
  53. data/examples/rails-example/script/runner +3 -0
  54. data/examples/rails-example/script/server +3 -0
  55. data/examples/rails-example/script/spec +10 -0
  56. data/examples/rails-example/script/spec_server +9 -0
  57. data/examples/rails-example/spec/integration/login_spec.rb +27 -0
  58. data/examples/rails-example/spec/rcov.opts +2 -0
  59. data/examples/rails-example/spec/spec.opts +4 -0
  60. data/examples/rails-example/spec/spec_helper.rb +12 -0
  61. data/examples/rails-example/tmp/webrat-1257205170.html +202 -0
  62. data/examples/rails-example/tmp/webrat-1257205276.html +31 -0
  63. data/examples/rails-example/tmp/webrat-1257205315.html +211 -0
  64. data/examples/rails-example/tmp/webrat-1257205333.html +31 -0
  65. data/examples/rails-example/tmp/webrat-1257205380.html +211 -0
  66. data/examples/rails-example/tmp/webrat-1257205757.html +211 -0
  67. data/examples/rails-example/tmp/webrat-1257210107.html +32 -0
  68. data/examples/rails-example/tmp/webrat-1257210160.html +32 -0
  69. data/examples/rails-example/tmp/webrat-1257210488.html +32 -0
  70. data/examples/rails-example/tmp/webrat-1257210501.html +32 -0
  71. data/examples/rails-example/tmp/webrat-1257210545.html +32 -0
  72. data/examples/rails-example/tmp/webrat-1257210564.html +32 -0
  73. data/examples/rails-example/tmp/webrat-1257210581.html +32 -0
  74. data/examples/rails-example/tmp/webrat-1257210600.html +32 -0
  75. data/examples/rails-example/tmp/webrat-1257210608.html +32 -0
  76. data/examples/sinatra-twitter.rb +47 -0
  77. data/examples/sinatra-twitter.ru +2 -0
  78. data/lib/rack/oauth.rb +1 -0
  79. data/lib/rack-oauth.rb +378 -0
  80. data/spec/data/authorized_access_token.yml +58 -0
  81. data/spec/data/authorized_oauth_verifier.yml +1 -0
  82. data/spec/data/authorized_request_secret.yml +1 -0
  83. data/spec/data/authorized_request_token.yml +1 -0
  84. data/spec/data/unauthorized_request_token.yml +56 -0
  85. data/spec/rack_oauth_middleware_spec.rb +156 -0
  86. data/spec/sample_sinatra_app_spec.rb +105 -0
  87. data/spec/spec_helper.rb +24 -0
  88. metadata +162 -0
@@ -0,0 +1,1591 @@
1
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
2
+
3
+
4
+ Processing ApplicationController#index (for 127.0.0.1 at 2009-11-02 16:39:30) [GET]
5
+
6
+ NameError (uninitialized constant WelcomeController):
7
+ webrat (0.4.4) lib/webrat/rails.rb:70:in `send'
8
+ webrat (0.4.4) lib/webrat/rails.rb:70:in `do_request'
9
+ webrat (0.4.4) lib/webrat/rails.rb:35:in `get'
10
+ webrat (0.4.4) lib/webrat/core/session.rb:104:in `send'
11
+ webrat (0.4.4) lib/webrat/core/session.rb:104:in `request_page'
12
+ webrat (0.4.4) lib/webrat/core/session.rb:205:in `visit'
13
+ (eval):2:in `visit'
14
+ /spec/integration/login_spec.rb:14
15
+ rspec (1.2.8) lib/spec/example/example_methods.rb:40:in `instance_eval'
16
+ rspec (1.2.8) lib/spec/example/example_methods.rb:40:in `execute'
17
+ /usr/lib/ruby/1.8/timeout.rb:53:in `timeout'
18
+ rspec (1.2.8) lib/spec/example/example_methods.rb:37:in `execute'
19
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:207:in `run_examples'
20
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:205:in `each'
21
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:205:in `run_examples'
22
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:103:in `run'
23
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:23:in `run'
24
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:22:in `each'
25
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:22:in `run'
26
+ rspec (1.2.8) lib/spec/runner/options.rb:127:in `run_examples'
27
+ rspec (1.2.8) lib/spec/runner/command_line.rb:9:in `run'
28
+ rspec (1.2.8) bin/spec:4
29
+ /usr/bin/spec:19:in `load'
30
+ /usr/bin/spec:19
31
+
32
+ Rendered rescues/_trace (68.6ms)
33
+ Rendered rescues/_request_and_response (2.1ms)
34
+ Rendering rescues/layout (internal_server_error)
35
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
36
+
37
+
38
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 16:39:49) [GET]
39
+ Rendering welcome/index
40
+ Completed in 5ms (View: 2, DB: 0) | 200 OK [http://www.example.com/]
41
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
42
+
43
+
44
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 16:41:16) [GET]
45
+ Rendering welcome/index
46
+ Completed in 5ms (View: 2, DB: 0) | 200 OK [http://www.example.com/]
47
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
48
+
49
+
50
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 16:41:16) [GET]
51
+
52
+ ActionController::UnknownAction (No action responded to login. Actions: index):
53
+ webrat (0.4.4) lib/webrat/rails.rb:70:in `send'
54
+ webrat (0.4.4) lib/webrat/rails.rb:70:in `do_request'
55
+ webrat (0.4.4) lib/webrat/rails.rb:35:in `get'
56
+ webrat (0.4.4) lib/webrat/core/session.rb:106:in `send'
57
+ webrat (0.4.4) lib/webrat/core/session.rb:106:in `request_page'
58
+ webrat (0.4.4) lib/webrat/core/session.rb:205:in `visit'
59
+ (eval):2:in `visit'
60
+ /spec/integration/login_spec.rb:17
61
+ rspec (1.2.8) lib/spec/example/example_methods.rb:40:in `instance_eval'
62
+ rspec (1.2.8) lib/spec/example/example_methods.rb:40:in `execute'
63
+ /usr/lib/ruby/1.8/timeout.rb:53:in `timeout'
64
+ rspec (1.2.8) lib/spec/example/example_methods.rb:37:in `execute'
65
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:207:in `run_examples'
66
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:205:in `each'
67
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:205:in `run_examples'
68
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:103:in `run'
69
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:23:in `run'
70
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:22:in `each'
71
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:22:in `run'
72
+ rspec (1.2.8) lib/spec/runner/options.rb:127:in `run_examples'
73
+ rspec (1.2.8) lib/spec/runner/command_line.rb:9:in `run'
74
+ rspec (1.2.8) bin/spec:4
75
+ /usr/bin/spec:19:in `load'
76
+ /usr/bin/spec:19
77
+
78
+ Rendering rescues/layout (not_found)
79
+ REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
80
+
81
+
82
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 16:41:16) [GET]
83
+ Rendering welcome/index
84
+ Completed in 1ms (View: 1, DB: 0) | 200 OK [http://www.example.com/]
85
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
86
+
87
+
88
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 16:41:55) [GET]
89
+
90
+ NoMethodError (undefined method `logged_in?' for #<WelcomeController:0x7f81e7d88388>):
91
+ app/controllers/welcome_controller.rb:4:in `index'
92
+ webrat (0.4.4) lib/webrat/rails.rb:70:in `send'
93
+ webrat (0.4.4) lib/webrat/rails.rb:70:in `do_request'
94
+ webrat (0.4.4) lib/webrat/rails.rb:35:in `get'
95
+ webrat (0.4.4) lib/webrat/core/session.rb:104:in `send'
96
+ webrat (0.4.4) lib/webrat/core/session.rb:104:in `request_page'
97
+ webrat (0.4.4) lib/webrat/core/session.rb:205:in `visit'
98
+ (eval):2:in `visit'
99
+ /spec/integration/login_spec.rb:14
100
+ rspec (1.2.8) lib/spec/example/example_methods.rb:40:in `instance_eval'
101
+ rspec (1.2.8) lib/spec/example/example_methods.rb:40:in `execute'
102
+ /usr/lib/ruby/1.8/timeout.rb:53:in `timeout'
103
+ rspec (1.2.8) lib/spec/example/example_methods.rb:37:in `execute'
104
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:207:in `run_examples'
105
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:205:in `each'
106
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:205:in `run_examples'
107
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:103:in `run'
108
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:23:in `run'
109
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:22:in `each'
110
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:22:in `run'
111
+ rspec (1.2.8) lib/spec/runner/options.rb:127:in `run_examples'
112
+ rspec (1.2.8) lib/spec/runner/command_line.rb:9:in `run'
113
+ rspec (1.2.8) bin/spec:4
114
+ /usr/bin/spec:19:in `load'
115
+ /usr/bin/spec:19
116
+
117
+ Rendered rescues/_trace (53.1ms)
118
+ Rendered rescues/_request_and_response (1.5ms)
119
+ Rendering rescues/layout (internal_server_error)
120
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
121
+
122
+
123
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 16:42:13) [GET]
124
+ Completed in 7ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
125
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
126
+
127
+
128
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 16:42:13) [GET]
129
+
130
+ ActionController::UnknownAction (No action responded to login. Actions: index, logged_in?, oauth, oauth_access_token, oauth_login_path, oauth_request, and oauth_request_env):
131
+ webrat (0.4.4) lib/webrat/rails.rb:70:in `send'
132
+ webrat (0.4.4) lib/webrat/rails.rb:70:in `do_request'
133
+ webrat (0.4.4) lib/webrat/rails.rb:35:in `get'
134
+ webrat (0.4.4) lib/webrat/core/session.rb:106:in `send'
135
+ webrat (0.4.4) lib/webrat/core/session.rb:106:in `request_page'
136
+ webrat (0.4.4) lib/webrat/core/session.rb:205:in `visit'
137
+ (eval):2:in `visit'
138
+ /spec/integration/login_spec.rb:17
139
+ rspec (1.2.8) lib/spec/example/example_methods.rb:40:in `instance_eval'
140
+ rspec (1.2.8) lib/spec/example/example_methods.rb:40:in `execute'
141
+ /usr/lib/ruby/1.8/timeout.rb:53:in `timeout'
142
+ rspec (1.2.8) lib/spec/example/example_methods.rb:37:in `execute'
143
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:207:in `run_examples'
144
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:205:in `each'
145
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:205:in `run_examples'
146
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:103:in `run'
147
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:23:in `run'
148
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:22:in `each'
149
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:22:in `run'
150
+ rspec (1.2.8) lib/spec/runner/options.rb:127:in `run_examples'
151
+ rspec (1.2.8) lib/spec/runner/command_line.rb:9:in `run'
152
+ rspec (1.2.8) bin/spec:4
153
+ /usr/bin/spec:19:in `load'
154
+ /usr/bin/spec:19
155
+
156
+ Rendering rescues/layout (not_found)
157
+ REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
158
+
159
+
160
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 16:42:13) [GET]
161
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
162
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
163
+
164
+
165
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 16:42:45) [GET]
166
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
167
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
168
+
169
+
170
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 16:42:45) [GET]
171
+ Redirected to http://www.example.com/oauth_login
172
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
173
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
174
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
175
+
176
+
177
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 16:43:00) [GET]
178
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
179
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
180
+
181
+
182
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 16:43:00) [GET]
183
+
184
+ RuntimeError ("/oauth_login"):
185
+ app/controllers/welcome_controller.rb:14:in `login'
186
+ webrat (0.4.4) lib/webrat/rails.rb:70:in `send'
187
+ webrat (0.4.4) lib/webrat/rails.rb:70:in `do_request'
188
+ webrat (0.4.4) lib/webrat/rails.rb:35:in `get'
189
+ webrat (0.4.4) lib/webrat/core/session.rb:106:in `send'
190
+ webrat (0.4.4) lib/webrat/core/session.rb:106:in `request_page'
191
+ webrat (0.4.4) lib/webrat/core/session.rb:205:in `visit'
192
+ (eval):2:in `visit'
193
+ /spec/integration/login_spec.rb:17
194
+ rspec (1.2.8) lib/spec/example/example_methods.rb:40:in `instance_eval'
195
+ rspec (1.2.8) lib/spec/example/example_methods.rb:40:in `execute'
196
+ /usr/lib/ruby/1.8/timeout.rb:53:in `timeout'
197
+ rspec (1.2.8) lib/spec/example/example_methods.rb:37:in `execute'
198
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:207:in `run_examples'
199
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:205:in `each'
200
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:205:in `run_examples'
201
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:103:in `run'
202
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:23:in `run'
203
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:22:in `each'
204
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:22:in `run'
205
+ rspec (1.2.8) lib/spec/runner/options.rb:127:in `run_examples'
206
+ rspec (1.2.8) lib/spec/runner/command_line.rb:9:in `run'
207
+ rspec (1.2.8) bin/spec:4
208
+ /usr/bin/spec:19:in `load'
209
+ /usr/bin/spec:19
210
+
211
+ Rendered rescues/_trace (52.6ms)
212
+ Rendered rescues/_request_and_response (1.5ms)
213
+ Rendering rescues/layout (internal_server_error)
214
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
215
+
216
+
217
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 16:43:17) [GET]
218
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
219
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
220
+
221
+
222
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 16:43:17) [GET]
223
+ Redirected to http://www.example.com/oauth_login
224
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
225
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
226
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
227
+
228
+
229
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 16:43:35) [GET]
230
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
231
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
232
+
233
+
234
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 16:43:35) [GET]
235
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://www.example.com/login]
236
+ REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
237
+
238
+
239
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 16:43:35) [GET]
240
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
241
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
242
+
243
+
244
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 16:43:44) [GET]
245
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
246
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
247
+
248
+
249
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 16:43:44) [GET]
250
+ Redirected to http://www.example.com/
251
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
252
+ REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
253
+
254
+
255
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 16:43:44) [GET]
256
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
257
+ REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"}
258
+
259
+
260
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 16:43:44) [GET]
261
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
262
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
263
+
264
+
265
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 16:43:50) [GET]
266
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
267
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
268
+
269
+
270
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 16:43:50) [GET]
271
+ Redirected to http://www.example.com/oauth_login
272
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
273
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
274
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
275
+
276
+
277
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 16:49:17) [GET]
278
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
279
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
280
+
281
+
282
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 16:49:17) [GET]
283
+
284
+ RuntimeError (test mode? true):
285
+ app/controllers/welcome_controller.rb:14:in `login'
286
+ webrat (0.4.4) lib/webrat/rails.rb:70:in `send'
287
+ webrat (0.4.4) lib/webrat/rails.rb:70:in `do_request'
288
+ webrat (0.4.4) lib/webrat/rails.rb:35:in `get'
289
+ webrat (0.4.4) lib/webrat/core/session.rb:106:in `send'
290
+ webrat (0.4.4) lib/webrat/core/session.rb:106:in `request_page'
291
+ webrat (0.4.4) lib/webrat/core/session.rb:205:in `visit'
292
+ (eval):2:in `visit'
293
+ /spec/integration/login_spec.rb:17
294
+ rspec (1.2.8) lib/spec/example/example_methods.rb:40:in `instance_eval'
295
+ rspec (1.2.8) lib/spec/example/example_methods.rb:40:in `execute'
296
+ /usr/lib/ruby/1.8/timeout.rb:53:in `timeout'
297
+ rspec (1.2.8) lib/spec/example/example_methods.rb:37:in `execute'
298
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:207:in `run_examples'
299
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:205:in `each'
300
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:205:in `run_examples'
301
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:103:in `run'
302
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:23:in `run'
303
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:22:in `each'
304
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:22:in `run'
305
+ rspec (1.2.8) lib/spec/runner/options.rb:127:in `run_examples'
306
+ rspec (1.2.8) lib/spec/runner/command_line.rb:9:in `run'
307
+ rspec (1.2.8) bin/spec:4
308
+ /usr/bin/spec:19:in `load'
309
+ /usr/bin/spec:19
310
+
311
+ Rendered rescues/_trace (54.2ms)
312
+ Rendered rescues/_request_and_response (1.5ms)
313
+ Rendering rescues/layout (internal_server_error)
314
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
315
+
316
+
317
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 16:51:13) [GET]
318
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
319
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
320
+
321
+
322
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 16:51:13) [GET]
323
+ Redirected to http://www.example.com/oauth_login
324
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
325
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
326
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
327
+
328
+
329
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 16:51:42) [GET]
330
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
331
+ REQUESTING PAGE: GET /oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
332
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
333
+
334
+
335
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 16:52:44) [GET]
336
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
337
+ REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"/"}
338
+
339
+
340
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 16:52:44) [GET]
341
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
342
+ REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"/"}
343
+
344
+
345
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 16:52:44) [GET]
346
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
347
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
348
+
349
+
350
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 16:52:55) [GET]
351
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
352
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
353
+
354
+
355
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 16:52:55) [GET]
356
+ Redirected to http://www.example.com/oauth_login
357
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
358
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
359
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
360
+
361
+
362
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 16:53:02) [GET]
363
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
364
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
365
+
366
+
367
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 16:53:02) [GET]
368
+ Redirected to http://www.example.com/oauth_login
369
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
370
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
371
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
372
+
373
+
374
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 16:53:30) [GET]
375
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
376
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
377
+
378
+
379
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 16:53:30) [GET]
380
+ Redirected to http://www.example.com/oauth_login
381
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
382
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
383
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
384
+
385
+
386
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 16:54:31) [GET]
387
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
388
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
389
+
390
+
391
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 16:54:31) [GET]
392
+ Redirected to http://www.example.com/oauth_login
393
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
394
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
395
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
396
+
397
+
398
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 16:54:51) [GET]
399
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
400
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
401
+
402
+
403
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 16:54:51) [GET]
404
+ Redirected to http://www.example.com/oauth_login
405
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
406
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
407
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
408
+
409
+
410
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 16:55:45) [GET]
411
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
412
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
413
+
414
+
415
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 16:55:45) [GET]
416
+ Redirected to http://www.example.com/oauth_login
417
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
418
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
419
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
420
+
421
+
422
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 16:55:49) [GET]
423
+ Completed in 50ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
424
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
425
+
426
+
427
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 16:55:49) [GET]
428
+ Redirected to http://www.example.com/oauth_login
429
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
430
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
431
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
432
+
433
+
434
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 16:56:28) [GET]
435
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
436
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
437
+
438
+
439
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 16:56:28) [GET]
440
+ Redirected to http://www.example.com/oauth_login
441
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
442
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
443
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
444
+
445
+
446
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 16:57:30) [GET]
447
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
448
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
449
+
450
+
451
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 16:57:30) [GET]
452
+ Redirected to http://www.example.com/oauth_login
453
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
454
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
455
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
456
+
457
+
458
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 16:57:54) [GET]
459
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
460
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
461
+
462
+
463
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 16:57:54) [GET]
464
+ Redirected to http://www.example.com/oauth_login
465
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
466
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
467
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
468
+
469
+
470
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 16:58:37) [GET]
471
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
472
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
473
+
474
+
475
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 16:58:37) [GET]
476
+ Redirected to http://www.example.com/oauth_login
477
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
478
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
479
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
480
+
481
+
482
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 16:59:44) [GET]
483
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
484
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
485
+
486
+
487
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 16:59:44) [GET]
488
+ Redirected to http://www.example.com/oauth_login
489
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
490
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
491
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
492
+
493
+
494
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:05:36) [GET]
495
+ Completed in 7ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
496
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
497
+
498
+
499
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:05:36) [GET]
500
+ Redirected to http://www.example.comwww.example.com/oauth_login
501
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
502
+ REQUESTING PAGE: GET http://www.example.comwww.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
503
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
504
+
505
+
506
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:06:29) [GET]
507
+ Completed in 7ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
508
+ REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"/"}
509
+
510
+
511
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:06:29) [GET]
512
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
513
+ REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"/"}
514
+
515
+
516
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:06:29) [GET]
517
+ Completed in 24ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
518
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
519
+
520
+
521
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:06:36) [GET]
522
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
523
+ REQUESTING PAGE: GET /oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
524
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
525
+
526
+
527
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:07:11) [GET]
528
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
529
+ REQUESTING PAGE: GET /oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
530
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
531
+
532
+
533
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:07:28) [GET]
534
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
535
+ REQUESTING PAGE: GET /oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
536
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
537
+
538
+
539
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:08:31) [GET]
540
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
541
+ REQUESTING PAGE: GET /oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
542
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
543
+
544
+
545
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:08:34) [GET]
546
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
547
+ REQUESTING PAGE: GET /oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
548
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
549
+
550
+
551
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:11:52) [GET]
552
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
553
+ REQUESTING PAGE: GET /oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
554
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
555
+
556
+
557
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:12:05) [GET]
558
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
559
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
560
+
561
+
562
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:12:05) [GET]
563
+ Redirected to http://www.example.com/
564
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
565
+ REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
566
+
567
+
568
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:12:05) [GET]
569
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
570
+ REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"}
571
+
572
+
573
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:12:05) [GET]
574
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
575
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
576
+
577
+
578
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:12:25) [GET]
579
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
580
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
581
+
582
+
583
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:12:25) [GET]
584
+ Redirected to http://www.example.com/oauth_callback
585
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
586
+ REQUESTING PAGE: GET http://www.example.com/oauth_callback with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
587
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
588
+
589
+
590
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:12:41) [GET]
591
+ Completed in 6ms (View: 1, DB: 0) | 200 OK [http://www.example.com/]
592
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
593
+
594
+
595
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:12:41) [GET]
596
+ Redirected to http://www.example.com/oauth_login
597
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
598
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
599
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
600
+
601
+
602
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:13:13) [GET]
603
+ Completed in 7ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
604
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
605
+
606
+
607
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:13:14) [GET]
608
+ Redirected to http://www.example.com/oauth_login
609
+ Completed in 9ms (DB: 0) | 302 Found [http://www.example.com/login]
610
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
611
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
612
+
613
+
614
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:13:39) [GET]
615
+ Completed in 7ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
616
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
617
+
618
+
619
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:13:39) [GET]
620
+ Redirected to http://www.example.com/oauth_login
621
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
622
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
623
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
624
+
625
+
626
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:13:51) [GET]
627
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
628
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
629
+
630
+
631
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:13:51) [GET]
632
+ Redirected to http://www.example.com/oauth_login
633
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
634
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
635
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
636
+
637
+
638
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:14:17) [GET]
639
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
640
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
641
+
642
+
643
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:14:17) [GET]
644
+ Redirected to http://www.example.com/oauth_login
645
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
646
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
647
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
648
+
649
+
650
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:14:33) [GET]
651
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
652
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
653
+
654
+
655
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:14:33) [GET]
656
+ Redirected to http://www.example.com/oauth_login
657
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
658
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
659
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
660
+
661
+
662
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:14:39) [GET]
663
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
664
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
665
+
666
+
667
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:14:39) [GET]
668
+ Redirected to http://www.example.com/oauth_login
669
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
670
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
671
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
672
+
673
+
674
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:15:16) [GET]
675
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
676
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
677
+
678
+
679
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:15:16) [GET]
680
+ Redirected to http://www.example.com/oauth_login
681
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
682
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
683
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
684
+
685
+
686
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:15:35) [GET]
687
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
688
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
689
+
690
+
691
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:15:35) [GET]
692
+ Redirected to http://www.example.com/oauth_login
693
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
694
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
695
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
696
+
697
+
698
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:16:02) [GET]
699
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
700
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
701
+
702
+
703
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:16:02) [GET]
704
+ Redirected to http://www.example.com/oauth_login
705
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
706
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
707
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
708
+
709
+
710
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:16:16) [GET]
711
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
712
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
713
+
714
+
715
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:16:16) [GET]
716
+ Redirected to http://www.example.com/oauth_login
717
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
718
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
719
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
720
+
721
+
722
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:16:23) [GET]
723
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
724
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
725
+
726
+
727
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:16:23) [GET]
728
+ Redirected to http://www.example.com/oauth_login
729
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
730
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
731
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
732
+
733
+
734
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:17:22) [GET]
735
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
736
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
737
+
738
+
739
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:17:22) [GET]
740
+ Redirected to http://www.example.com/oauth_login
741
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
742
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
743
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
744
+
745
+
746
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:18:16) [GET]
747
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
748
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
749
+
750
+
751
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:18:16) [GET]
752
+ Redirected to http://www.example.com/oauth_login
753
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
754
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
755
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
756
+
757
+
758
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:18:50) [GET]
759
+ Completed in 7ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
760
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
761
+
762
+
763
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:18:50) [GET]
764
+ Redirected to http://www.example.com/oauth_login
765
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
766
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
767
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
768
+
769
+
770
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:20:48) [GET]
771
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
772
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
773
+
774
+
775
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:20:48) [GET]
776
+ Redirected to http://www.example.com/oauth_login
777
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
778
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
779
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
780
+
781
+
782
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:21:05) [GET]
783
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
784
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
785
+
786
+
787
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:21:05) [GET]
788
+ Redirected to http://www.example.com/oauth_login
789
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
790
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
791
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
792
+
793
+
794
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:22:04) [GET]
795
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
796
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
797
+
798
+
799
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:22:04) [GET]
800
+ Redirected to http://www.example.com/oauth_login
801
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
802
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
803
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
804
+
805
+
806
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:28:14) [GET]
807
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
808
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
809
+
810
+
811
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:28:14) [GET]
812
+ Redirected to http://www.example.com/oauth_login
813
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
814
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
815
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
816
+
817
+
818
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:28:33) [GET]
819
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
820
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
821
+
822
+
823
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:28:33) [GET]
824
+ Redirected to http://www.example.com/oauth_login
825
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
826
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
827
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
828
+
829
+
830
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:28:56) [GET]
831
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
832
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
833
+
834
+
835
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:28:56) [GET]
836
+ Redirected to http://www.example.com/oauth_login
837
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
838
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
839
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
840
+
841
+
842
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:29:48) [GET]
843
+ Completed in 6ms (View: 1, DB: 0) | 200 OK [http://www.example.com/]
844
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
845
+
846
+
847
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:29:48) [GET]
848
+ Redirected to http://www.example.com/oauth_login
849
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
850
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
851
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
852
+
853
+
854
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:30:57) [GET]
855
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
856
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
857
+
858
+
859
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:30:57) [GET]
860
+ Redirected to http://www.example.com/oauth_login
861
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
862
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
863
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
864
+
865
+
866
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:31:53) [GET]
867
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
868
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
869
+
870
+
871
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:31:54) [GET]
872
+ Redirected to http://www.example.com/oauth_login
873
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
874
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
875
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
876
+
877
+
878
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:32:49) [GET]
879
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
880
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
881
+
882
+
883
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:32:49) [GET]
884
+ Redirected to http://www.example.com/oauth_login
885
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
886
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
887
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
888
+
889
+
890
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:36:08) [GET]
891
+ Completed in 7ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
892
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
893
+
894
+
895
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:36:09) [GET]
896
+ Redirected to http://www.example.com/oauth_login
897
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
898
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
899
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
900
+
901
+
902
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:36:56) [GET]
903
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
904
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
905
+
906
+
907
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:36:56) [GET]
908
+ Redirected to http://www.example.com/oauth_login
909
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
910
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
911
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
912
+
913
+
914
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:38:14) [GET]
915
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
916
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
917
+
918
+
919
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:38:54) [GET]
920
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
921
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
922
+
923
+
924
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:38:54) [GET]
925
+ Redirected to http://www.example.com/oauth_login
926
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
927
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
928
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
929
+
930
+
931
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:39:42) [GET]
932
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
933
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
934
+
935
+
936
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:39:42) [GET]
937
+ Redirected to http://www.example.com/oauth_login
938
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
939
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
940
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
941
+
942
+
943
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:41:08) [GET]
944
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
945
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
946
+
947
+
948
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:41:08) [GET]
949
+ Redirected to http://www.example.com/oauth_login
950
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
951
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
952
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
953
+
954
+
955
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:42:50) [GET]
956
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
957
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
958
+
959
+
960
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:42:50) [GET]
961
+ Redirected to http://www.example.com/oauth_login
962
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
963
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
964
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
965
+
966
+
967
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:49:22) [GET]
968
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
969
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
970
+
971
+
972
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:49:22) [GET]
973
+ Redirected to http://www.example.com/oauth_login
974
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
975
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
976
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
977
+
978
+
979
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:51:21) [GET]
980
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
981
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
982
+
983
+
984
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:51:21) [GET]
985
+ Redirected to http://www.example.com/oauth_login
986
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
987
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
988
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
989
+
990
+
991
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:51:41) [GET]
992
+ Completed in 6ms (View: 1, DB: 0) | 200 OK [http://www.example.com/]
993
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
994
+
995
+
996
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:51:41) [GET]
997
+ Redirected to http://www.example.com/oauth_login
998
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
999
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
1000
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
1001
+
1002
+
1003
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:52:26) [GET]
1004
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
1005
+
1006
+
1007
+ Processing ApplicationController#index (for 127.0.0.1 at 2009-11-02 17:52:26) [GET]
1008
+
1009
+ NoMethodError (You have a nil object when you didn't expect it!
1010
+ You might have expected an instance of ActiveRecord::Base.
1011
+ The error occurred while evaluating nil.[]):
1012
+ webrat (0.4.4) lib/webrat/rails.rb:70:in `send'
1013
+ webrat (0.4.4) lib/webrat/rails.rb:70:in `do_request'
1014
+ webrat (0.4.4) lib/webrat/rails.rb:35:in `get'
1015
+ webrat (0.4.4) lib/webrat/core/session.rb:105:in `send'
1016
+ webrat (0.4.4) lib/webrat/core/session.rb:105:in `request_page'
1017
+ webrat (0.4.4) lib/webrat/core/session.rb:217:in `visit'
1018
+ (eval):2:in `visit'
1019
+ /spec/integration/login_spec.rb:14
1020
+ rspec (1.2.8) lib/spec/example/example_methods.rb:40:in `instance_eval'
1021
+ rspec (1.2.8) lib/spec/example/example_methods.rb:40:in `execute'
1022
+ /usr/lib/ruby/1.8/timeout.rb:53:in `timeout'
1023
+ rspec (1.2.8) lib/spec/example/example_methods.rb:37:in `execute'
1024
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:207:in `run_examples'
1025
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:205:in `each'
1026
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:205:in `run_examples'
1027
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:103:in `run'
1028
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:23:in `run'
1029
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:22:in `each'
1030
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:22:in `run'
1031
+ rspec (1.2.8) lib/spec/runner/options.rb:127:in `run_examples'
1032
+ rspec (1.2.8) lib/spec/runner/command_line.rb:9:in `run'
1033
+ rspec (1.2.8) bin/spec:4
1034
+ /usr/bin/spec:19:in `load'
1035
+ /usr/bin/spec:19
1036
+
1037
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
1038
+
1039
+
1040
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:52:59) [GET]
1041
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
1042
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
1043
+
1044
+
1045
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:53:31) [GET]
1046
+ Completed in 7ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
1047
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
1048
+
1049
+
1050
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:53:31) [GET]
1051
+ Redirected to http://www.example.com/oauth_login
1052
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
1053
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
1054
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
1055
+
1056
+
1057
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:56:00) [GET]
1058
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
1059
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
1060
+
1061
+
1062
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:56:00) [GET]
1063
+ Redirected to http://www.example.com/oauth_login
1064
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
1065
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
1066
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
1067
+
1068
+
1069
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:56:50) [GET]
1070
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
1071
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
1072
+
1073
+
1074
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:56:50) [GET]
1075
+ Redirected to http://www.example.com/oauth_login
1076
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
1077
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
1078
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
1079
+
1080
+
1081
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:57:12) [GET]
1082
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
1083
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
1084
+
1085
+
1086
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:57:12) [GET]
1087
+ Redirected to http://www.example.com/oauth_login
1088
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
1089
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
1090
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
1091
+
1092
+
1093
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:57:41) [GET]
1094
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
1095
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
1096
+
1097
+
1098
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:57:41) [GET]
1099
+ Redirected to http://www.example.com/oauth_login
1100
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
1101
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
1102
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
1103
+
1104
+
1105
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 17:57:55) [GET]
1106
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
1107
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
1108
+
1109
+
1110
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 17:57:55) [GET]
1111
+ Redirected to http://www.example.com/oauth_login
1112
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
1113
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
1114
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
1115
+
1116
+
1117
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 18:01:47) [GET]
1118
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
1119
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
1120
+
1121
+
1122
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 18:01:47) [GET]
1123
+ Redirected to http://www.example.com/oauth_login
1124
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
1125
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
1126
+ REQUESTING PAGE: GET /foo/bar with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/oauth_login"}
1127
+
1128
+
1129
+ Processing ApplicationController#index (for 127.0.0.1 at 2009-11-02 18:01:47) [GET]
1130
+
1131
+ ActionController::RoutingError (No route matches "/foo/bar" with {:method=>:get}):
1132
+ webrat (0.4.4) lib/webrat/rails.rb:70:in `send'
1133
+ webrat (0.4.4) lib/webrat/rails.rb:70:in `do_request'
1134
+ webrat (0.4.4) lib/webrat/rails.rb:35:in `get'
1135
+ webrat (0.4.4) lib/webrat/core/session.rb:107:in `send'
1136
+ webrat (0.4.4) lib/webrat/core/session.rb:107:in `request_page'
1137
+ webrat (0.4.4) lib/webrat/core/session.rb:129:in `request_page'
1138
+ webrat (0.4.4) lib/webrat/core/session.rb:217:in `visit'
1139
+ (eval):2:in `visit'
1140
+ /spec/integration/login_spec.rb:17
1141
+ rspec (1.2.8) lib/spec/example/example_methods.rb:40:in `instance_eval'
1142
+ rspec (1.2.8) lib/spec/example/example_methods.rb:40:in `execute'
1143
+ /usr/lib/ruby/1.8/timeout.rb:53:in `timeout'
1144
+ rspec (1.2.8) lib/spec/example/example_methods.rb:37:in `execute'
1145
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:207:in `run_examples'
1146
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:205:in `each'
1147
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:205:in `run_examples'
1148
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:103:in `run'
1149
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:23:in `run'
1150
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:22:in `each'
1151
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:22:in `run'
1152
+ rspec (1.2.8) lib/spec/runner/options.rb:127:in `run_examples'
1153
+ rspec (1.2.8) lib/spec/runner/command_line.rb:9:in `run'
1154
+ rspec (1.2.8) bin/spec:4
1155
+ /usr/bin/spec:19:in `load'
1156
+ /usr/bin/spec:19
1157
+
1158
+ Rendering rescues/layout (not_found)
1159
+ REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"/foo/bar"}
1160
+
1161
+
1162
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 18:01:47) [GET]
1163
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
1164
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
1165
+
1166
+
1167
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 18:02:40) [GET]
1168
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
1169
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
1170
+
1171
+
1172
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 18:02:40) [GET]
1173
+ Redirected to http://www.example.com/oauth_login
1174
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
1175
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
1176
+ REQUESTING PAGE: GET /foo/bar with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/oauth_login"}
1177
+
1178
+
1179
+ Processing ApplicationController#index (for 127.0.0.1 at 2009-11-02 18:02:40) [GET]
1180
+
1181
+ ActionController::RoutingError (No route matches "/foo/bar" with {:method=>:get}):
1182
+ webrat (0.4.4) lib/webrat/rails.rb:70:in `send'
1183
+ webrat (0.4.4) lib/webrat/rails.rb:70:in `do_request'
1184
+ webrat (0.4.4) lib/webrat/rails.rb:35:in `get'
1185
+ webrat (0.4.4) lib/webrat/core/session.rb:106:in `send'
1186
+ webrat (0.4.4) lib/webrat/core/session.rb:106:in `request_page'
1187
+ webrat (0.4.4) lib/webrat/core/session.rb:120:in `request_page'
1188
+ webrat (0.4.4) lib/webrat/core/session.rb:205:in `visit'
1189
+ (eval):2:in `visit'
1190
+ /spec/integration/login_spec.rb:17
1191
+ rspec (1.2.8) lib/spec/example/example_methods.rb:40:in `instance_eval'
1192
+ rspec (1.2.8) lib/spec/example/example_methods.rb:40:in `execute'
1193
+ /usr/lib/ruby/1.8/timeout.rb:53:in `timeout'
1194
+ rspec (1.2.8) lib/spec/example/example_methods.rb:37:in `execute'
1195
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:207:in `run_examples'
1196
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:205:in `each'
1197
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:205:in `run_examples'
1198
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:103:in `run'
1199
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:23:in `run'
1200
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:22:in `each'
1201
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:22:in `run'
1202
+ rspec (1.2.8) lib/spec/runner/options.rb:127:in `run_examples'
1203
+ rspec (1.2.8) lib/spec/runner/command_line.rb:9:in `run'
1204
+ rspec (1.2.8) bin/spec:4
1205
+ /usr/bin/spec:19:in `load'
1206
+ /usr/bin/spec:19
1207
+
1208
+ Rendering rescues/layout (not_found)
1209
+ REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"/foo/bar"}
1210
+
1211
+
1212
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 18:02:40) [GET]
1213
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
1214
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
1215
+
1216
+
1217
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 18:08:08) [GET]
1218
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
1219
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
1220
+
1221
+
1222
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 18:08:08) [GET]
1223
+ Redirected to http://www.example.com/oauth_login
1224
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
1225
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
1226
+ REQUESTING PAGE: GET /foo/bar with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/oauth_login"}
1227
+
1228
+
1229
+ Processing ApplicationController#index (for 127.0.0.1 at 2009-11-02 18:08:08) [GET]
1230
+
1231
+ ActionController::RoutingError (No route matches "/foo/bar" with {:method=>:get}):
1232
+ webrat (0.4.4) lib/webrat/rails.rb:70:in `send'
1233
+ webrat (0.4.4) lib/webrat/rails.rb:70:in `do_request'
1234
+ webrat (0.4.4) lib/webrat/rails.rb:35:in `get'
1235
+ webrat (0.4.4) lib/webrat/core/session.rb:106:in `send'
1236
+ webrat (0.4.4) lib/webrat/core/session.rb:106:in `request_page'
1237
+ webrat (0.4.4) lib/webrat/core/session.rb:120:in `request_page'
1238
+ webrat (0.4.4) lib/webrat/core/session.rb:205:in `visit'
1239
+ (eval):2:in `visit'
1240
+ /spec/integration/login_spec.rb:17
1241
+ rspec (1.2.8) lib/spec/example/example_methods.rb:40:in `instance_eval'
1242
+ rspec (1.2.8) lib/spec/example/example_methods.rb:40:in `execute'
1243
+ /usr/lib/ruby/1.8/timeout.rb:53:in `timeout'
1244
+ rspec (1.2.8) lib/spec/example/example_methods.rb:37:in `execute'
1245
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:207:in `run_examples'
1246
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:205:in `each'
1247
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:205:in `run_examples'
1248
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:103:in `run'
1249
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:23:in `run'
1250
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:22:in `each'
1251
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:22:in `run'
1252
+ rspec (1.2.8) lib/spec/runner/options.rb:127:in `run_examples'
1253
+ rspec (1.2.8) lib/spec/runner/command_line.rb:9:in `run'
1254
+ rspec (1.2.8) bin/spec:4
1255
+ /usr/bin/spec:19:in `load'
1256
+ /usr/bin/spec:19
1257
+
1258
+ Rendering rescues/layout (not_found)
1259
+ REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"/foo/bar"}
1260
+
1261
+
1262
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 18:08:08) [GET]
1263
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
1264
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
1265
+
1266
+
1267
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 18:08:21) [GET]
1268
+ Completed in 8ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
1269
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
1270
+
1271
+
1272
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 18:08:21) [GET]
1273
+ Redirected to http://www.example.com/oauth_login
1274
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
1275
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
1276
+ REQUESTING PAGE: GET /foo/bar with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/oauth_login"}
1277
+
1278
+
1279
+ Processing ApplicationController#index (for 127.0.0.1 at 2009-11-02 18:08:21) [GET]
1280
+
1281
+ ActionController::RoutingError (No route matches "/foo/bar" with {:method=>:get}):
1282
+ webrat (0.4.4) lib/webrat/rails.rb:70:in `send'
1283
+ webrat (0.4.4) lib/webrat/rails.rb:70:in `do_request'
1284
+ webrat (0.4.4) lib/webrat/rails.rb:35:in `get'
1285
+ webrat (0.4.4) lib/webrat/core/session.rb:106:in `send'
1286
+ webrat (0.4.4) lib/webrat/core/session.rb:106:in `request_page'
1287
+ webrat (0.4.4) lib/webrat/core/session.rb:120:in `request_page'
1288
+ webrat (0.4.4) lib/webrat/core/session.rb:205:in `visit'
1289
+ (eval):2:in `visit'
1290
+ /spec/integration/login_spec.rb:17
1291
+ rspec (1.2.8) lib/spec/example/example_methods.rb:40:in `instance_eval'
1292
+ rspec (1.2.8) lib/spec/example/example_methods.rb:40:in `execute'
1293
+ /usr/lib/ruby/1.8/timeout.rb:53:in `timeout'
1294
+ rspec (1.2.8) lib/spec/example/example_methods.rb:37:in `execute'
1295
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:207:in `run_examples'
1296
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:205:in `each'
1297
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:205:in `run_examples'
1298
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:103:in `run'
1299
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:23:in `run'
1300
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:22:in `each'
1301
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:22:in `run'
1302
+ rspec (1.2.8) lib/spec/runner/options.rb:127:in `run_examples'
1303
+ rspec (1.2.8) lib/spec/runner/command_line.rb:9:in `run'
1304
+ rspec (1.2.8) bin/spec:4
1305
+ /usr/bin/spec:19:in `load'
1306
+ /usr/bin/spec:19
1307
+
1308
+ Rendering rescues/layout (not_found)
1309
+ REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"/foo/bar"}
1310
+
1311
+
1312
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 18:08:21) [GET]
1313
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
1314
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
1315
+
1316
+
1317
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 18:09:05) [GET]
1318
+ Completed in 7ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
1319
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
1320
+
1321
+
1322
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 18:09:05) [GET]
1323
+ Redirected to http://www.example.com/oauth_login
1324
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
1325
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
1326
+ REQUESTING PAGE: GET /foo/bar with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/oauth_login"}
1327
+
1328
+
1329
+ Processing ApplicationController#index (for 127.0.0.1 at 2009-11-02 18:09:05) [GET]
1330
+
1331
+ ActionController::RoutingError (No route matches "/foo/bar" with {:method=>:get}):
1332
+ webrat (0.4.4) lib/webrat/rails.rb:70:in `send'
1333
+ webrat (0.4.4) lib/webrat/rails.rb:70:in `do_request'
1334
+ webrat (0.4.4) lib/webrat/rails.rb:35:in `get'
1335
+ webrat (0.4.4) lib/webrat/core/session.rb:106:in `send'
1336
+ webrat (0.4.4) lib/webrat/core/session.rb:106:in `request_page'
1337
+ webrat (0.4.4) lib/webrat/core/session.rb:120:in `request_page'
1338
+ webrat (0.4.4) lib/webrat/core/session.rb:205:in `visit'
1339
+ (eval):2:in `visit'
1340
+ /spec/integration/login_spec.rb:17
1341
+ rspec (1.2.8) lib/spec/example/example_methods.rb:40:in `instance_eval'
1342
+ rspec (1.2.8) lib/spec/example/example_methods.rb:40:in `execute'
1343
+ /usr/lib/ruby/1.8/timeout.rb:53:in `timeout'
1344
+ rspec (1.2.8) lib/spec/example/example_methods.rb:37:in `execute'
1345
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:207:in `run_examples'
1346
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:205:in `each'
1347
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:205:in `run_examples'
1348
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:103:in `run'
1349
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:23:in `run'
1350
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:22:in `each'
1351
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:22:in `run'
1352
+ rspec (1.2.8) lib/spec/runner/options.rb:127:in `run_examples'
1353
+ rspec (1.2.8) lib/spec/runner/command_line.rb:9:in `run'
1354
+ rspec (1.2.8) bin/spec:4
1355
+ /usr/bin/spec:19:in `load'
1356
+ /usr/bin/spec:19
1357
+
1358
+ Rendering rescues/layout (not_found)
1359
+ REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"/foo/bar"}
1360
+
1361
+
1362
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 18:09:05) [GET]
1363
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
1364
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
1365
+
1366
+
1367
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 18:09:24) [GET]
1368
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
1369
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
1370
+
1371
+
1372
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 18:09:24) [GET]
1373
+ Redirected to http://www.example.com/oauth_login
1374
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
1375
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
1376
+ REQUESTING PAGE: GET /foo/bar with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/oauth_login"}
1377
+
1378
+
1379
+ Processing ApplicationController#index (for 127.0.0.1 at 2009-11-02 18:09:24) [GET]
1380
+
1381
+ ActionController::RoutingError (No route matches "/foo/bar" with {:method=>:get}):
1382
+ webrat (0.4.4) lib/webrat/rails.rb:70:in `send'
1383
+ webrat (0.4.4) lib/webrat/rails.rb:70:in `do_request'
1384
+ webrat (0.4.4) lib/webrat/rails.rb:35:in `get'
1385
+ webrat (0.4.4) lib/webrat/core/session.rb:106:in `send'
1386
+ webrat (0.4.4) lib/webrat/core/session.rb:106:in `request_page'
1387
+ webrat (0.4.4) lib/webrat/core/session.rb:120:in `request_page'
1388
+ webrat (0.4.4) lib/webrat/core/session.rb:205:in `visit'
1389
+ (eval):2:in `visit'
1390
+ /spec/integration/login_spec.rb:17
1391
+ rspec (1.2.8) lib/spec/example/example_methods.rb:40:in `instance_eval'
1392
+ rspec (1.2.8) lib/spec/example/example_methods.rb:40:in `execute'
1393
+ /usr/lib/ruby/1.8/timeout.rb:53:in `timeout'
1394
+ rspec (1.2.8) lib/spec/example/example_methods.rb:37:in `execute'
1395
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:207:in `run_examples'
1396
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:205:in `each'
1397
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:205:in `run_examples'
1398
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:103:in `run'
1399
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:23:in `run'
1400
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:22:in `each'
1401
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:22:in `run'
1402
+ rspec (1.2.8) lib/spec/runner/options.rb:127:in `run_examples'
1403
+ rspec (1.2.8) lib/spec/runner/command_line.rb:9:in `run'
1404
+ rspec (1.2.8) bin/spec:4
1405
+ /usr/bin/spec:19:in `load'
1406
+ /usr/bin/spec:19
1407
+
1408
+ Rendering rescues/layout (not_found)
1409
+ REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"/foo/bar"}
1410
+
1411
+
1412
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 18:09:24) [GET]
1413
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
1414
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
1415
+
1416
+
1417
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 18:09:41) [GET]
1418
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
1419
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
1420
+
1421
+
1422
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 18:09:41) [GET]
1423
+ Redirected to http://www.example.com/oauth_login
1424
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
1425
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
1426
+ REQUESTING PAGE: GET /foo/bar with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/oauth_login"}
1427
+
1428
+
1429
+ Processing ApplicationController#index (for 127.0.0.1 at 2009-11-02 18:09:41) [GET]
1430
+
1431
+ ActionController::RoutingError (No route matches "/foo/bar" with {:method=>:get}):
1432
+ webrat (0.4.4) lib/webrat/rails.rb:70:in `send'
1433
+ webrat (0.4.4) lib/webrat/rails.rb:70:in `do_request'
1434
+ webrat (0.4.4) lib/webrat/rails.rb:35:in `get'
1435
+ webrat (0.4.4) lib/webrat/core/session.rb:106:in `send'
1436
+ webrat (0.4.4) lib/webrat/core/session.rb:106:in `request_page'
1437
+ webrat (0.4.4) lib/webrat/core/session.rb:120:in `request_page'
1438
+ webrat (0.4.4) lib/webrat/core/session.rb:205:in `visit'
1439
+ (eval):2:in `visit'
1440
+ /spec/integration/login_spec.rb:17
1441
+ rspec (1.2.8) lib/spec/example/example_methods.rb:40:in `instance_eval'
1442
+ rspec (1.2.8) lib/spec/example/example_methods.rb:40:in `execute'
1443
+ /usr/lib/ruby/1.8/timeout.rb:53:in `timeout'
1444
+ rspec (1.2.8) lib/spec/example/example_methods.rb:37:in `execute'
1445
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:207:in `run_examples'
1446
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:205:in `each'
1447
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:205:in `run_examples'
1448
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:103:in `run'
1449
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:23:in `run'
1450
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:22:in `each'
1451
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:22:in `run'
1452
+ rspec (1.2.8) lib/spec/runner/options.rb:127:in `run_examples'
1453
+ rspec (1.2.8) lib/spec/runner/command_line.rb:9:in `run'
1454
+ rspec (1.2.8) bin/spec:4
1455
+ /usr/bin/spec:19:in `load'
1456
+ /usr/bin/spec:19
1457
+
1458
+ Rendering rescues/layout (not_found)
1459
+ REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"/foo/bar"}
1460
+
1461
+
1462
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 18:09:41) [GET]
1463
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
1464
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
1465
+
1466
+
1467
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 18:10:00) [GET]
1468
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
1469
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
1470
+
1471
+
1472
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 18:10:00) [GET]
1473
+ Redirected to http://www.example.com/oauth_login
1474
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
1475
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
1476
+ REQUESTING PAGE: GET /foo/bar with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/oauth_login"}
1477
+
1478
+
1479
+ Processing ApplicationController#index (for 127.0.0.1 at 2009-11-02 18:10:00) [GET]
1480
+
1481
+ ActionController::RoutingError (No route matches "/foo/bar" with {:method=>:get}):
1482
+ webrat (0.4.4) lib/webrat/rails.rb:70:in `send'
1483
+ webrat (0.4.4) lib/webrat/rails.rb:70:in `do_request'
1484
+ webrat (0.4.4) lib/webrat/rails.rb:35:in `get'
1485
+ webrat (0.4.4) lib/webrat/core/session.rb:106:in `send'
1486
+ webrat (0.4.4) lib/webrat/core/session.rb:106:in `request_page'
1487
+ webrat (0.4.4) lib/webrat/core/session.rb:120:in `request_page'
1488
+ webrat (0.4.4) lib/webrat/core/session.rb:205:in `visit'
1489
+ (eval):2:in `visit'
1490
+ /spec/integration/login_spec.rb:17
1491
+ rspec (1.2.8) lib/spec/example/example_methods.rb:40:in `instance_eval'
1492
+ rspec (1.2.8) lib/spec/example/example_methods.rb:40:in `execute'
1493
+ /usr/lib/ruby/1.8/timeout.rb:53:in `timeout'
1494
+ rspec (1.2.8) lib/spec/example/example_methods.rb:37:in `execute'
1495
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:207:in `run_examples'
1496
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:205:in `each'
1497
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:205:in `run_examples'
1498
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:103:in `run'
1499
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:23:in `run'
1500
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:22:in `each'
1501
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:22:in `run'
1502
+ rspec (1.2.8) lib/spec/runner/options.rb:127:in `run_examples'
1503
+ rspec (1.2.8) lib/spec/runner/command_line.rb:9:in `run'
1504
+ rspec (1.2.8) bin/spec:4
1505
+ /usr/bin/spec:19:in `load'
1506
+ /usr/bin/spec:19
1507
+
1508
+ Rendering rescues/layout (not_found)
1509
+ REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"/foo/bar"}
1510
+
1511
+
1512
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 18:10:00) [GET]
1513
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
1514
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
1515
+
1516
+
1517
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 18:10:07) [GET]
1518
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
1519
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
1520
+
1521
+
1522
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 18:10:08) [GET]
1523
+ Redirected to http://www.example.com/oauth_login
1524
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
1525
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
1526
+ REQUESTING PAGE: GET /foo/bar with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/oauth_login"}
1527
+
1528
+
1529
+ Processing ApplicationController#index (for 127.0.0.1 at 2009-11-02 18:10:08) [GET]
1530
+
1531
+ ActionController::RoutingError (No route matches "/foo/bar" with {:method=>:get}):
1532
+ webrat (0.4.4) lib/webrat/rails.rb:70:in `send'
1533
+ webrat (0.4.4) lib/webrat/rails.rb:70:in `do_request'
1534
+ webrat (0.4.4) lib/webrat/rails.rb:35:in `get'
1535
+ webrat (0.4.4) lib/webrat/core/session.rb:106:in `send'
1536
+ webrat (0.4.4) lib/webrat/core/session.rb:106:in `request_page'
1537
+ webrat (0.4.4) lib/webrat/core/session.rb:120:in `request_page'
1538
+ webrat (0.4.4) lib/webrat/core/session.rb:205:in `visit'
1539
+ (eval):2:in `visit'
1540
+ /spec/integration/login_spec.rb:17
1541
+ rspec (1.2.8) lib/spec/example/example_methods.rb:40:in `instance_eval'
1542
+ rspec (1.2.8) lib/spec/example/example_methods.rb:40:in `execute'
1543
+ /usr/lib/ruby/1.8/timeout.rb:53:in `timeout'
1544
+ rspec (1.2.8) lib/spec/example/example_methods.rb:37:in `execute'
1545
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:207:in `run_examples'
1546
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:205:in `each'
1547
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:205:in `run_examples'
1548
+ rspec (1.2.8) lib/spec/example/example_group_methods.rb:103:in `run'
1549
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:23:in `run'
1550
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:22:in `each'
1551
+ rspec (1.2.8) lib/spec/runner/example_group_runner.rb:22:in `run'
1552
+ rspec (1.2.8) lib/spec/runner/options.rb:127:in `run_examples'
1553
+ rspec (1.2.8) lib/spec/runner/command_line.rb:9:in `run'
1554
+ rspec (1.2.8) bin/spec:4
1555
+ /usr/bin/spec:19:in `load'
1556
+ /usr/bin/spec:19
1557
+
1558
+ Rendering rescues/layout (not_found)
1559
+ REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"/foo/bar"}
1560
+
1561
+
1562
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 18:10:08) [GET]
1563
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
1564
+ REQUESTING PAGE: GET / with {} and HTTP headers {}
1565
+
1566
+
1567
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 18:10:33) [GET]
1568
+ Completed in 6ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
1569
+ REQUESTING PAGE: GET /login with {} and HTTP headers {"HTTP_REFERER"=>"/"}
1570
+
1571
+
1572
+ Processing WelcomeController#login (for 127.0.0.1 at 2009-11-02 18:10:33) [GET]
1573
+ Redirected to http://www.example.com/oauth_login
1574
+ Completed in 0ms (DB: 0) | 302 Found [http://www.example.com/login]
1575
+ REQUESTING PAGE: GET http://www.example.com/oauth_login with {} and HTTP headers {"HTTP_REFERER"=>"/login"}
1576
+ REQUESTING PAGE: GET /oauth_complete with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/oauth_login"}
1577
+
1578
+
1579
+ Processing WelcomeController#after_login (for 127.0.0.1 at 2009-11-02 18:10:33) [GET]
1580
+ Redirected to http://www.example.com/
1581
+ Completed in 1ms (DB: 0) | 302 Found [http://www.example.com/oauth_complete]
1582
+ REQUESTING PAGE: GET http://www.example.com/ with {} and HTTP headers {"HTTP_REFERER"=>"/oauth_complete"}
1583
+
1584
+
1585
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 18:10:33) [GET]
1586
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]
1587
+ REQUESTING PAGE: GET / with {} and HTTP headers {"HTTP_REFERER"=>"http://www.example.com/"}
1588
+
1589
+
1590
+ Processing WelcomeController#index (for 127.0.0.1 at 2009-11-02 18:10:33) [GET]
1591
+ Completed in 1ms (View: 0, DB: 0) | 200 OK [http://www.example.com/]