els_token 1.2.1 → 1.2.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: ea6850f3a527b1b4b26d40ae9c0af8e18d2cf36a
4
+ data.tar.gz: 8244af47707415e7c55288e761a5759a48fb5159
5
+ SHA512:
6
+ metadata.gz: 4178773976a51fa336495dd50ed7df7b2bcb0806b27990ad59ee009f90f78f0ff461f34af804812fed202af45ed56e3d7671672ca2503130cee84d3e1e9755e7
7
+ data.tar.gz: 0bfda4404ba281d587271fda82c2467bc0e8866458c163648780d67dca40e30476a750bd1a220be4ba640eae366d00a49c8b0921c5142397198684eea3bd8385
@@ -1,14 +1,18 @@
1
- = ELS Token
1
+ # ELS Token
2
2
 
3
3
  A simple library for interfacing with forgeRock OpenAM REST Interface.
4
4
 
5
5
  Still pretty much in development but kind of workable.
6
6
 
7
- == Usage
7
+ ## Usage
8
8
 
9
9
  include ElsToken into your class or module
10
10
 
11
- change log
11
+ ## change log
12
+
13
+ 1.2.2
14
+ Removed Rails logger dependency
15
+ Added a couple of extra attributes to the ELS Identity Object
12
16
 
13
17
  1.2.0
14
18
  Removed Rails dependency.
@@ -22,7 +26,7 @@ change log
22
26
  1.0.0
23
27
  Initial release :)
24
28
 
25
- = TODO
29
+ ## TODO
26
30
  With the correct level of priviledge it's possible to perform granular LDAP searches against the OpenAM REST interface.
27
31
  By Default one can only pull identity details for a provided token but it might be nice to search against other attributes.
28
32
 
@@ -71,7 +71,6 @@ module ElsToken
71
71
 
72
72
  # authenticates against ELS and returns the user token
73
73
  def authenticate(username,password,options={})
74
-
75
74
  begin
76
75
  response = els_http_request("/authenticate",
77
76
  "uri=realm=aolcorporate&username=#{username}&password=#{password}",
@@ -129,7 +128,6 @@ module ElsToken
129
128
  # then get_token_identity
130
129
  def get_identity(token, options ={})
131
130
  options = els_options.dup.merge(options)
132
- Rails.logger.debug(options)
133
131
  return fake_id(options) if options.has_key?('faker')
134
132
  begin
135
133
  if is_token_valid?(token, options)
@@ -177,7 +175,6 @@ module ElsToken
177
175
 
178
176
  def fake_id(options ={})
179
177
  options = els_options.dup.merge(options)
180
- Rails.logger.debug("getting fake id")
181
178
  id = ElsIdentity.new
182
179
  id.instance_variable_set("@roles",options['faker']['roles'])
183
180
  id.instance_variable_set("@mail",options['faker']['mail'])
@@ -5,6 +5,7 @@ module ElsToken
5
5
  class ElsIdentity
6
6
  attr_reader :roles, :mail, :last_name, :first_name, :uac, :dn, :common_name
7
7
  attr_reader :employee_number, :display_name, :name, :token_id, :user_status
8
+ attr_reader :telephone_number, :company, :employee_type
8
9
 
9
10
  alias :cdid :name
10
11
 
@@ -26,12 +27,16 @@ module ElsToken
26
27
  parse(rest_response) if rest_response
27
28
  @lines = nil
28
29
  end
30
+
31
+ def full_name
32
+ first_name+" "+last_name
33
+ end
29
34
 
30
35
  private
31
36
 
32
37
 
33
38
  def parse(response)
34
- @lines = response.lines
39
+ @lines = response.lines.to_enum
35
40
  begin
36
41
  while @lines.peek
37
42
  line = @lines.next.chomp
@@ -71,6 +76,15 @@ module ElsToken
71
76
 
72
77
  when line =~ /name=inetUserStatus/
73
78
  self_set :user_status
79
+
80
+ when line =~ /name=telephonenumber/
81
+ self_set :telephone_number
82
+
83
+ when line =~ /name=company/
84
+ self_set :company
85
+
86
+ when line =~ /name=employeetype/
87
+ self_set :employee_type
74
88
  end
75
89
  end
76
90
  rescue
@@ -87,4 +101,4 @@ module ElsToken
87
101
 
88
102
  end
89
103
 
90
- end
104
+ end
@@ -1,3 +1,3 @@
1
1
  module ElsToken
2
- VERSION = "1.2.1"
2
+ VERSION = "1.2.3"
3
3
  end
@@ -1,2188 +1,90 @@
1
1
  Connecting to database specified by database.yml
2
- Connecting to database specified by database.yml
3
- Connecting to database specified by database.yml
4
-
5
-
6
- Started GET "/" for 127.0.0.1 at 2012-10-09 20:34:26 +0100
7
- Connecting to database specified by database.yml
8
- Processing by ElsSessionController#show as HTML
9
- user will be returned to /
10
- Redirected to http://localhost:3000/els_session/new
11
- Filter chain halted as :els_identity rendered or redirected
12
- Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
13
-
14
-
15
- Started GET "/els_session/new" for 127.0.0.1 at 2012-10-09 20:34:27 +0100
16
- Processing by ElsSessionController#new as HTML
17
- Rendered els_session/new.html.erb within layouts/application (6.7ms)
18
- Compiled application.css (1ms) (pid 67637)
19
- Compiled jquery.js (7ms) (pid 67637)
20
- Compiled els_session.js (254ms) (pid 67637)
21
- Compiled application.js (329ms) (pid 67637)
22
- Completed 200 OK in 476ms (Views: 474.6ms | ActiveRecord: 0.0ms)
23
-
24
-
25
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-09 20:34:27 +0100
26
- Served asset /application.css - 200 OK (2ms)
27
-
28
-
29
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-09 20:34:27 +0100
30
- Served asset /application.js - 200 OK (8ms)
31
-
32
-
33
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-09 20:34:27 +0100
34
- Served asset /jquery.js - 200 OK (36ms)
35
-
36
-
37
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-09 20:34:27 +0100
38
- Served asset /els_session.js - 200 OK (2ms)
39
-
40
-
41
- Started POST "/els_session/create" for 127.0.0.1 at 2012-10-09 20:35:04 +0100
42
- Processing by ElsSessionController#create as HTML
43
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"qkid4VhdquAOTzKqljmaxbhvDeN15/mvzXNrfFvsmyw=", "username"=>"neilcuk", "password"=>"[FILTERED]", "commit"=>"Log in"}
44
- {"utf8"=>"✓", "authenticity_token"=>"qkid4VhdquAOTzKqljmaxbhvDeN15/mvzXNrfFvsmyw=", "username"=>"neilcuk", "password"=>"SepN3llyb0y", "commit"=>"Log in", "controller"=>"els_session", "action"=>"create"}
45
- got token AQIC5wM2LY4SfczRnyi-j1Hxy8eKEbJPan3BuyFpoeDmblM.*AAJTSQACMDUAAlNLAAoxNDg5NjA5MTI2AAJTMQACMDM.*
46
- Redirected to http://localhost:3000/
47
- Completed 302 Found in 4956ms (ActiveRecord: 0.0ms)
48
-
49
-
50
- Started GET "/" for 127.0.0.1 at 2012-10-09 20:35:09 +0100
51
- Processing by ElsSessionController#show as HTML
52
- Rendered els_session/show.html.erb within layouts/application (0.7ms)
53
- Completed 200 OK in 1989ms (Views: 6.8ms | ActiveRecord: 0.0ms)
54
-
55
-
56
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-09 20:35:11 +0100
57
- Served asset /jquery.js - 304 Not Modified (0ms)
58
-
59
-
60
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-09 20:35:11 +0100
61
- Served asset /application.css - 304 Not Modified (0ms)
62
-
63
-
64
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-09 20:35:11 +0100
65
- Served asset /els_session.js - 304 Not Modified (0ms)
66
-
67
-
68
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-09 20:35:11 +0100
69
- Served asset /application.js - 304 Not Modified (0ms)
70
-
71
-
72
- Started GET "/" for 127.0.0.1 at 2012-10-09 20:40:39 +0100
73
- Processing by ElsSessionController#show as HTML
74
- getaddrinfo: nodename nor servname provided, or not known
75
- Redirected to http://localhost:3000/els_session/new
76
- Filter chain halted as :els_identity rendered or redirected
77
- Completed 302 Found in 9995ms (ActiveRecord: 0.0ms)
78
-
79
-
80
- Started GET "/els_session/new" for 127.0.0.1 at 2012-10-09 20:40:49 +0100
81
- Processing by ElsSessionController#new as HTML
82
- Rendered els_session/new.html.erb within layouts/application (3.1ms)
83
- Completed 200 OK in 26ms (Views: 21.7ms | ActiveRecord: 0.0ms)
84
-
85
-
86
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-09 20:40:49 +0100
87
- Served asset /application.css - 304 Not Modified (0ms)
88
-
89
-
90
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-09 20:40:49 +0100
91
- Served asset /jquery.js - 304 Not Modified (0ms)
92
-
93
-
94
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-09 20:40:49 +0100
95
- Served asset /els_session.js - 304 Not Modified (0ms)
96
-
97
-
98
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-09 20:40:49 +0100
99
- Served asset /application.js - 304 Not Modified (1ms)
100
-
101
-
102
- Started POST "/els_session/create" for 127.0.0.1 at 2012-10-09 20:41:23 +0100
103
- Processing by ElsSessionController#create as HTML
104
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"qkid4VhdquAOTzKqljmaxbhvDeN15/mvzXNrfFvsmyw=", "username"=>"neilcuk", "password"=>"[FILTERED]", "override"=>"on", "commit"=>"Log in"}
105
- Redirected to http://localhost:3000/
106
- Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
107
-
108
-
109
- Started GET "/" for 127.0.0.1 at 2012-10-09 20:41:23 +0100
110
- Processing by ElsSessionController#show as HTML
111
- Rendered els_session/show.html.erb within layouts/application (6.6ms)
112
- Completed 500 Internal Server Error in 9ms
113
-
114
- ActionView::Template::Error (undefined method `employee_number' for #<ElsSessionController::ElsFaker:0x007f8c55058b18>):
115
- 1: <h1>Session Info<h1>
116
- 2: <div class='field'>
117
- 3: <p>Employee Number: <%= @els_identity.employee_number %></p>
118
- 4: </div>
119
- app/views/els_session/show.html.erb:3:in `_app_views_els_session_show_html_erb___3941460411116975133_70120333240720'
120
-
121
-
122
- Rendered /Users/neilcuk/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.0ms)
123
- Rendered /Users/neilcuk/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.8ms)
124
- Rendered /Users/neilcuk/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (32.6ms)
125
-
126
-
127
- Started GET "/els_session/new" for 127.0.0.1 at 2012-10-09 20:45:07 +0100
128
- Processing by ElsSessionController#new as HTML
129
- Rendered els_session/new.html.erb within layouts/application (4.5ms)
130
- Completed 200 OK in 951ms (Views: 11.6ms | ActiveRecord: 0.0ms)
131
-
132
-
133
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-09 20:45:08 +0100
134
- Served asset /application.css - 304 Not Modified (0ms)
135
-
136
-
137
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-09 20:45:08 +0100
138
- Served asset /jquery.js - 304 Not Modified (0ms)
139
-
140
-
141
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-09 20:45:08 +0100
142
- Served asset /els_session.js - 304 Not Modified (0ms)
143
-
144
-
145
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-09 20:45:08 +0100
146
- Served asset /application.js - 304 Not Modified (0ms)
147
-
148
-
149
- Started GET "/els_session/new" for 127.0.0.1 at 2012-10-09 20:45:55 +0100
150
- Processing by ElsSessionController#new as HTML
151
- Rendered els_session/new.html.erb within layouts/application (3.0ms)
152
- Compiled els_session.js (106ms) (pid 67637)
153
- Compiled application.js (5ms) (pid 67637)
154
- Completed 200 OK in 1154ms (Views: 189.2ms | ActiveRecord: 0.0ms)
155
-
156
-
157
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-09 20:45:56 +0100
158
- Served asset /application.css - 304 Not Modified (0ms)
159
-
160
-
161
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-09 20:45:56 +0100
162
- Served asset /jquery.js - 304 Not Modified (0ms)
163
-
164
-
165
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-09 20:45:56 +0100
166
- Served asset /application.js - 304 Not Modified (7ms)
167
-
168
-
169
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-09 20:45:56 +0100
170
- Served asset /els_session.js - 200 OK (2ms)
171
-
172
-
173
- Started GET "/els_session/new" for 127.0.0.1 at 2012-10-09 20:46:01 +0100
174
- Processing by ElsSessionController#new as HTML
175
- Rendered els_session/new.html.erb within layouts/application (2.3ms)
176
- Completed 200 OK in 587ms (Views: 8.1ms | ActiveRecord: 0.0ms)
177
-
178
-
179
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-09 20:46:02 +0100
180
- Served asset /application.css - 304 Not Modified (0ms)
181
-
182
-
183
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-09 20:46:02 +0100
184
- Served asset /jquery.js - 304 Not Modified (0ms)
185
-
186
-
187
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-09 20:46:02 +0100
188
- Served asset /els_session.js - 304 Not Modified (0ms)
189
-
190
-
191
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-09 20:46:02 +0100
192
- Served asset /application.js - 304 Not Modified (0ms)
193
-
194
-
195
- Started GET "/els_session/new" for 127.0.0.1 at 2012-10-09 20:46:05 +0100
196
- Processing by ElsSessionController#new as HTML
197
- Rendered els_session/new.html.erb within layouts/application (2.7ms)
198
- Completed 200 OK in 601ms (Views: 9.5ms | ActiveRecord: 0.0ms)
199
-
200
-
201
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-09 20:46:06 +0100
202
- Served asset /application.css - 304 Not Modified (0ms)
203
-
204
-
205
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-09 20:46:06 +0100
206
- Served asset /jquery.js - 304 Not Modified (0ms)
207
-
208
-
209
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-09 20:46:06 +0100
210
- Served asset /els_session.js - 304 Not Modified (0ms)
211
-
212
-
213
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-09 20:46:06 +0100
214
- Served asset /application.js - 304 Not Modified (0ms)
215
-
216
-
217
- Started POST "/els_session/create" for 127.0.0.1 at 2012-10-09 20:46:13 +0100
218
- Processing by ElsSessionController#create as HTML
219
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"qkid4VhdquAOTzKqljmaxbhvDeN15/mvzXNrfFvsmyw=", "username"=>"neilcuk", "password"=>"[FILTERED]", "commit"=>"Log in"}
220
- got token AQIC5wM2LY4SfcyRYy-QYe_pT24c-ugxMRIpZFYHUJEgwbE.*AAJTSQACMDUAAlNLAAotNTI1OTQ4NTcxAAJTMQACMDQ.*
221
- Redirected to http://localhost:3000/
222
- Completed 302 Found in 1456ms (ActiveRecord: 0.0ms)
223
-
224
-
225
- Started GET "/" for 127.0.0.1 at 2012-10-09 20:46:15 +0100
226
- Processing by ElsSessionController#show as HTML
227
- Rendered els_session/show.html.erb within layouts/application (0.7ms)
228
- Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
229
-
230
-
231
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-09 20:46:15 +0100
232
- Served asset /application.css - 304 Not Modified (0ms)
233
-
234
-
235
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-09 20:46:15 +0100
236
- Served asset /jquery.js - 304 Not Modified (0ms)
237
-
238
-
239
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-09 20:46:15 +0100
240
- Served asset /els_session.js - 304 Not Modified (0ms)
241
-
242
-
243
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-09 20:46:15 +0100
244
- Served asset /application.js - 304 Not Modified (0ms)
245
-
246
-
247
- Started GET "/" for 127.0.0.1 at 2012-10-09 20:46:23 +0100
248
- Processing by ElsSessionController#show as HTML
249
- Rendered els_session/show.html.erb within layouts/application (0.1ms)
250
- Completed 200 OK in 46ms (Views: 46.2ms | ActiveRecord: 0.0ms)
251
-
252
-
253
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-09 20:46:23 +0100
254
- Served asset /application.css - 304 Not Modified (0ms)
255
-
256
-
257
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-09 20:46:23 +0100
258
- Served asset /jquery.js - 304 Not Modified (0ms)
259
-
260
-
261
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-09 20:46:23 +0100
262
- Served asset /application.js - 304 Not Modified (0ms)
263
-
264
-
265
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-09 20:46:23 +0100
266
- Served asset /els_session.js - 304 Not Modified (0ms)
267
-
268
-
269
- Started GET "/" for 127.0.0.1 at 2012-10-09 20:46:27 +0100
270
- Processing by ElsSessionController#show as HTML
271
- Rendered els_session/show.html.erb within layouts/application (0.1ms)
272
- Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.0ms)
273
-
274
-
275
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-09 20:46:28 +0100
276
- Served asset /application.css - 304 Not Modified (0ms)
277
-
278
-
279
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-09 20:46:28 +0100
280
- Served asset /jquery.js - 304 Not Modified (0ms)
281
-
282
-
283
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-09 20:46:28 +0100
284
- Served asset /els_session.js - 304 Not Modified (0ms)
285
-
286
-
287
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-09 20:46:28 +0100
288
- Served asset /application.js - 304 Not Modified (0ms)
289
-
290
-
291
- Started GET "/" for 127.0.0.1 at 2012-10-09 20:46:30 +0100
292
- Processing by ElsSessionController#show as HTML
293
- Rendered els_session/show.html.erb within layouts/application (0.1ms)
294
- Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)
295
-
296
-
297
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-09 20:46:30 +0100
298
- Served asset /application.css - 304 Not Modified (0ms)
299
-
300
-
301
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-09 20:46:30 +0100
302
- Served asset /els_session.js - 304 Not Modified (0ms)
303
-
304
-
305
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-09 20:46:30 +0100
306
- Served asset /jquery.js - 304 Not Modified (0ms)
307
-
308
-
309
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-09 20:46:30 +0100
310
- Served asset /application.js - 304 Not Modified (0ms)
311
-
312
-
313
- Started GET "/" for 127.0.0.1 at 2012-10-09 20:46:45 +0100
314
- Processing by ElsSessionController#show as HTML
315
- Rendered els_session/show.html.erb within layouts/application (0.1ms)
316
- Completed 200 OK in 12ms (Views: 12.2ms | ActiveRecord: 0.0ms)
317
-
318
-
319
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-09 20:46:45 +0100
320
- Served asset /application.css - 304 Not Modified (0ms)
321
-
322
-
323
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-09 20:46:45 +0100
324
- Served asset /jquery.js - 304 Not Modified (0ms)
325
-
326
-
327
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-09 20:46:45 +0100
328
- Served asset /els_session.js - 304 Not Modified (2ms)
329
-
330
-
331
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-09 20:46:45 +0100
332
- Served asset /application.js - 304 Not Modified (0ms)
333
-
334
-
335
- Started GET "/els_session/destroy" for 127.0.0.1 at 2012-10-09 20:46:48 +0100
336
-
337
- ActionController::RoutingError (No route matches [GET] "/els_session/destroy"):
338
- actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
339
- actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
340
- railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
341
- railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
342
- actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
343
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
344
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
345
- activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
346
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
347
- actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
348
- railties (3.2.8) lib/rails/engine.rb:479:in `call'
349
- railties (3.2.8) lib/rails/application.rb:223:in `call'
350
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
351
- railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
352
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
353
- /Users/neilcuk/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
354
- /Users/neilcuk/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
355
- /Users/neilcuk/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
356
-
357
-
358
- Rendered /Users/neilcuk/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
359
-
360
-
361
- Started GET "/" for 127.0.0.1 at 2012-10-09 20:47:32 +0100
362
- Processing by ElsSessionController#show as HTML
363
- Rendered els_session/show.html.erb within layouts/application (0.1ms)
364
- Completed 200 OK in 8ms (Views: 7.9ms | ActiveRecord: 0.0ms)
365
-
366
-
367
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-09 20:47:32 +0100
368
- Served asset /application.css - 304 Not Modified (0ms)
369
-
370
-
371
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-09 20:47:32 +0100
372
- Served asset /jquery.js - 304 Not Modified (0ms)
373
-
374
-
375
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-09 20:47:32 +0100
376
- Served asset /els_session.js - 304 Not Modified (0ms)
377
-
378
-
379
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-09 20:47:32 +0100
380
- Served asset /application.js - 304 Not Modified (0ms)
381
-
382
-
383
- Started GET "/els_session/destroy" for 127.0.0.1 at 2012-10-09 20:47:34 +0100
384
-
385
- ActionController::RoutingError (No route matches [GET] "/els_session/destroy"):
386
- actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
387
- actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
388
- railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
389
- railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
390
- actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
391
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
392
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
393
- activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
394
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
395
- actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
396
- railties (3.2.8) lib/rails/engine.rb:479:in `call'
397
- railties (3.2.8) lib/rails/application.rb:223:in `call'
398
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
399
- railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
400
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
401
- /Users/neilcuk/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
402
- /Users/neilcuk/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
403
- /Users/neilcuk/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
404
-
405
-
406
- Rendered /Users/neilcuk/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
407
-
408
-
409
- Started GET "/" for 127.0.0.1 at 2012-10-09 20:48:22 +0100
410
- Processing by ElsSessionController#show as HTML
411
- Rendered els_session/show.html.erb within layouts/application (0.1ms)
412
- Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)
413
-
414
-
415
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-09 20:48:23 +0100
416
- Served asset /application.css - 304 Not Modified (0ms)
417
-
418
-
419
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-09 20:48:23 +0100
420
- Served asset /jquery.js - 304 Not Modified (0ms)
421
-
422
-
423
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-09 20:48:23 +0100
424
- Served asset /els_session.js - 304 Not Modified (0ms)
425
-
426
-
427
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-09 20:48:23 +0100
428
- Served asset /application.js - 304 Not Modified (0ms)
429
-
430
-
431
- Started GET "/els_session/destroy" for 127.0.0.1 at 2012-10-09 20:48:24 +0100
432
-
433
- ActionController::RoutingError (No route matches [GET] "/els_session/destroy"):
434
- actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
435
- actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
436
- railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
437
- railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
438
- actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
439
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
440
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
441
- activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
442
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
443
- actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
444
- railties (3.2.8) lib/rails/engine.rb:479:in `call'
445
- railties (3.2.8) lib/rails/application.rb:223:in `call'
446
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
447
- railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
448
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
449
- /Users/neilcuk/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
450
- /Users/neilcuk/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
451
- /Users/neilcuk/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
452
-
453
-
454
- Rendered /Users/neilcuk/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.2ms)
455
-
456
-
457
- Started GET "/" for 127.0.0.1 at 2012-10-09 20:49:54 +0100
458
- Connecting to database specified by database.yml
459
- Processing by ElsSessionController#show as HTML
460
- Rendered els_session/show.html.erb within layouts/application (3.6ms)
461
- Completed 500 Internal Server Error in 58ms
462
-
463
- ActionView::Template::Error (undefined local variable or method `els_session_destroy' for #<#<Class:0x007faf2aaf49a8>:0x007faf2b392998>):
464
- 9: <body>
465
- 10: <% if @els_identity %>
466
- 11: <div class='els_logout'>
467
- 12: <%= link_to "logout", els_session_destroy, :method => :delete %>
468
- 13: </div>
469
- 14: <% end %>
470
- 15:
471
- app/views/layouts/application.html.erb:12:in `_app_views_layouts_application_html_erb___2780945700984639208_70195161470460'
472
-
473
-
474
- Rendered /Users/neilcuk/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
475
- Rendered /Users/neilcuk/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.8ms)
476
- Rendered /Users/neilcuk/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (14.7ms)
477
-
478
-
479
- Started GET "/" for 127.0.0.1 at 2012-10-09 20:50:17 +0100
480
- Processing by ElsSessionController#show as HTML
481
- Rendered els_session/show.html.erb within layouts/application (0.1ms)
482
- Completed 200 OK in 36ms (Views: 36.0ms | ActiveRecord: 0.0ms)
483
-
484
-
485
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-09 20:50:17 +0100
486
- Served asset /application.css - 304 Not Modified (2ms)
487
-
488
-
489
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-09 20:50:17 +0100
490
- Served asset /jquery.js - 304 Not Modified (4ms)
491
-
492
-
493
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-09 20:50:17 +0100
494
- Served asset /els_session.js - 304 Not Modified (2ms)
495
-
496
-
497
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-09 20:50:17 +0100
498
- Served asset /application.js - 304 Not Modified (6ms)
499
-
500
-
501
- Started GET "/els_session/destroy" for 127.0.0.1 at 2012-10-09 20:50:19 +0100
502
-
503
- ActionController::RoutingError (No route matches [GET] "/els_session/destroy"):
504
- actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
505
- actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
506
- railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
507
- railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
508
- actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
509
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
510
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
511
- activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
512
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
513
- actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
514
- railties (3.2.8) lib/rails/engine.rb:479:in `call'
515
- railties (3.2.8) lib/rails/application.rb:223:in `call'
516
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
517
- railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
518
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
519
- /Users/neilcuk/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
520
- /Users/neilcuk/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
521
- /Users/neilcuk/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
522
-
523
-
524
- Rendered /Users/neilcuk/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
525
-
526
-
527
- Started GET "/" for 127.0.0.1 at 2012-10-09 20:53:33 +0100
528
- Processing by ElsSessionController#show as HTML
529
- Rendered els_session/show.html.erb within layouts/application (0.1ms)
530
- Completed 200 OK in 9ms (Views: 8.2ms | ActiveRecord: 0.0ms)
531
-
532
-
533
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-09 20:53:33 +0100
534
- Served asset /application.css - 304 Not Modified (0ms)
535
-
536
-
537
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-09 20:53:33 +0100
538
- Served asset /jquery.js - 304 Not Modified (0ms)
539
-
540
-
541
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-09 20:53:33 +0100
542
- Served asset /els_session.js - 304 Not Modified (0ms)
543
-
544
-
545
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-09 20:53:33 +0100
546
- Served asset /application.js - 304 Not Modified (0ms)
547
-
548
-
549
- Started DELETE "/els_session/destroy" for 127.0.0.1 at 2012-10-09 20:53:35 +0100
550
- Processing by ElsSessionController#destroy as HTML
551
- Parameters: {"authenticity_token"=>"qkid4VhdquAOTzKqljmaxbhvDeN15/mvzXNrfFvsmyw="}
552
- Redirected to http://localhost:3000/els_session/new
553
- Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
554
-
555
-
556
- Started GET "/els_session/new" for 127.0.0.1 at 2012-10-09 20:53:35 +0100
557
- Processing by ElsSessionController#new as HTML
558
- Rendered els_session/new.html.erb within layouts/application (6.2ms)
559
- Completed 200 OK in 13ms (Views: 12.4ms | ActiveRecord: 0.0ms)
560
-
561
-
562
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-09 20:53:35 +0100
563
- Served asset /application.css - 304 Not Modified (0ms)
564
-
565
-
566
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-09 20:53:35 +0100
567
- Served asset /jquery.js - 304 Not Modified (0ms)
568
-
569
-
570
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-09 20:53:35 +0100
571
- Served asset /els_session.js - 304 Not Modified (0ms)
572
-
573
-
574
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-09 20:53:35 +0100
575
- Served asset /application.js - 304 Not Modified (0ms)
576
-
577
-
578
- Started POST "/els_session/create" for 127.0.0.1 at 2012-10-09 20:53:44 +0100
579
- Processing by ElsSessionController#create as HTML
580
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"qkid4VhdquAOTzKqljmaxbhvDeN15/mvzXNrfFvsmyw=", "username"=>"neilcuk", "password"=>"[FILTERED]", "commit"=>"Log in"}
581
- got token AQIC5wM2LY4SfcyZjrXCASIXvqlnd6-9Yn8J99n-X1sfzR0.*AAJTSQACMDUAAlNLAAstMTc2MjQ0NzIxOAACUzEAAjAy*
582
- Redirected to http://localhost:3000/
583
- Completed 302 Found in 2456ms (ActiveRecord: 0.0ms)
584
-
585
-
586
- Started GET "/" for 127.0.0.1 at 2012-10-09 20:53:47 +0100
587
- Processing by ElsSessionController#show as HTML
588
- Rendered els_session/show.html.erb within layouts/application (0.1ms)
589
- Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.0ms)
590
-
591
-
592
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-09 20:53:47 +0100
593
- Served asset /application.css - 304 Not Modified (0ms)
594
-
595
-
596
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-09 20:53:47 +0100
597
- Served asset /jquery.js - 304 Not Modified (0ms)
598
-
599
-
600
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-09 20:53:47 +0100
601
- Served asset /els_session.js - 304 Not Modified (0ms)
602
-
603
-
604
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-09 20:53:47 +0100
605
- Served asset /application.js - 304 Not Modified (0ms)
606
-
607
-
608
- Started POST "/els_session/create" for 127.0.0.1 at 2012-10-09 20:54:02 +0100
609
- Processing by ElsSessionController#create as HTML
610
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"qkid4VhdquAOTzKqljmaxbhvDeN15/mvzXNrfFvsmyw=", "username"=>"neilcuk", "password"=>"[FILTERED]", "commit"=>"Log in"}
611
- Rendered els_session/new.html.erb within layouts/application (2.1ms)
612
- Completed 200 OK in 599ms (Views: 7.3ms | ActiveRecord: 0.0ms)
613
-
614
-
615
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-09 20:54:03 +0100
616
- Served asset /application.css - 304 Not Modified (0ms)
617
-
618
-
619
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-09 20:54:03 +0100
620
- Served asset /els_session.js - 304 Not Modified (0ms)
621
-
622
-
623
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-09 20:54:03 +0100
624
- Served asset /jquery.js - 304 Not Modified (0ms)
625
-
626
-
627
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-09 20:54:03 +0100
628
- Served asset /application.js - 304 Not Modified (0ms)
629
-
630
-
631
- Started POST "/els_session/create" for 127.0.0.1 at 2012-10-09 20:54:29 +0100
632
- Processing by ElsSessionController#create as HTML
633
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"qkid4VhdquAOTzKqljmaxbhvDeN15/mvzXNrfFvsmyw=", "username"=>"neilcuk", "password"=>"[FILTERED]", "commit"=>"Log in"}
634
- Rendered els_session/new.html.erb within layouts/application (2.3ms)
635
- Completed 200 OK in 1031ms (Views: 7.6ms | ActiveRecord: 0.0ms)
636
-
637
-
638
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-09 20:54:30 +0100
639
- Served asset /application.css - 304 Not Modified (0ms)
640
-
641
-
642
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-09 20:54:30 +0100
643
- Served asset /application.js - 304 Not Modified (0ms)
644
-
645
-
646
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-09 20:54:30 +0100
647
- Served asset /jquery.js - 304 Not Modified (0ms)
648
-
649
-
650
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-09 20:54:30 +0100
651
- Served asset /els_session.js - 304 Not Modified (0ms)
652
-
653
-
654
- Started GET "/" for 127.0.0.1 at 2012-10-09 20:54:36 +0100
655
- Processing by ElsSessionController#show as HTML
656
- Rendered els_session/show.html.erb within layouts/application (0.1ms)
657
- Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
658
-
659
-
660
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-09 20:54:36 +0100
661
- Served asset /application.css - 304 Not Modified (0ms)
662
-
663
-
664
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-09 20:54:36 +0100
665
- Served asset /jquery.js - 304 Not Modified (0ms)
666
-
667
-
668
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-09 20:54:36 +0100
669
- Served asset /els_session.js - 304 Not Modified (0ms)
670
-
671
-
672
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-09 20:54:36 +0100
673
- Served asset /application.js - 304 Not Modified (0ms)
674
-
675
-
676
- Started DELETE "/els_session/destroy" for 127.0.0.1 at 2012-10-09 20:54:39 +0100
677
- Processing by ElsSessionController#destroy as HTML
678
- Parameters: {"authenticity_token"=>"qkid4VhdquAOTzKqljmaxbhvDeN15/mvzXNrfFvsmyw="}
679
- Redirected to http://localhost:3000/els_session/new
680
- Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
681
-
682
-
683
- Started GET "/els_session/new" for 127.0.0.1 at 2012-10-09 20:54:39 +0100
684
- Processing by ElsSessionController#new as HTML
685
- Rendered els_session/new.html.erb within layouts/application (2.1ms)
686
- Completed 200 OK in 42ms (Views: 41.5ms | ActiveRecord: 0.0ms)
687
-
688
-
689
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-09 20:54:39 +0100
690
- Served asset /application.css - 304 Not Modified (0ms)
691
-
692
-
693
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-09 20:54:39 +0100
694
- Served asset /els_session.js - 304 Not Modified (0ms)
695
-
696
-
697
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-09 20:54:39 +0100
698
- Served asset /application.js - 304 Not Modified (0ms)
699
-
700
-
701
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-09 20:54:39 +0100
702
- Served asset /jquery.js - 304 Not Modified (0ms)
703
-
704
-
705
- Started POST "/els_session/create" for 127.0.0.1 at 2012-10-09 20:54:45 +0100
706
- Processing by ElsSessionController#create as HTML
707
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"qkid4VhdquAOTzKqljmaxbhvDeN15/mvzXNrfFvsmyw=", "username"=>"neilcuk", "password"=>"[FILTERED]", "commit"=>"Log in"}
708
- got token AQIC5wM2LY4SfcyxD8dVHPVpeQnqdsNjTWB2SrUcZEDzDzI.*AAJTSQACMDUAAlNLAAstMTM3MTQ3NzMyNAACUzEAAjAz*
709
- Redirected to http://localhost:3000/
710
- Completed 302 Found in 2817ms (ActiveRecord: 0.0ms)
711
-
712
-
713
- Started GET "/" for 127.0.0.1 at 2012-10-09 20:54:48 +0100
714
- Processing by ElsSessionController#show as HTML
715
- Rendered els_session/show.html.erb within layouts/application (0.1ms)
716
- Completed 200 OK in 6ms (Views: 6.0ms | ActiveRecord: 0.0ms)
717
-
718
-
719
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-09 20:54:48 +0100
720
- Served asset /application.css - 304 Not Modified (0ms)
721
-
722
-
723
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-09 20:54:48 +0100
724
- Served asset /jquery.js - 304 Not Modified (0ms)
725
-
726
-
727
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-09 20:54:48 +0100
728
- Served asset /els_session.js - 304 Not Modified (0ms)
729
-
730
-
731
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-09 20:54:48 +0100
732
- Served asset /application.js - 304 Not Modified (0ms)
733
-
734
-
735
- Started GET "/" for 127.0.0.1 at 2012-10-09 20:59:56 +0100
736
- Processing by ElsSessionController#show as HTML
737
- Rendered els_session/show.html.erb within layouts/application (0.1ms)
738
- Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.0ms)
739
-
740
-
741
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-09 20:59:56 +0100
742
- Served asset /application.css - 304 Not Modified (0ms)
743
-
744
-
745
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-09 20:59:56 +0100
746
- Served asset /application.js - 304 Not Modified (0ms)
747
-
748
-
749
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-09 20:59:56 +0100
750
- Served asset /els_session.js - 304 Not Modified (0ms)
751
-
752
-
753
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-09 20:59:56 +0100
754
- Served asset /jquery.js - 304 Not Modified (0ms)
755
-
756
-
757
- Started GET "/" for 127.0.0.1 at 2012-10-09 20:59:58 +0100
758
- Processing by ElsSessionController#show as HTML
759
- Rendered els_session/show.html.erb within layouts/application (0.1ms)
760
- Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.0ms)
761
-
762
-
763
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-09 20:59:58 +0100
764
- Served asset /application.css - 304 Not Modified (0ms)
765
-
766
-
767
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-09 20:59:58 +0100
768
- Served asset /jquery.js - 304 Not Modified (0ms)
769
-
770
-
771
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-09 20:59:58 +0100
772
- Served asset /els_session.js - 304 Not Modified (2ms)
773
-
774
-
775
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-09 20:59:58 +0100
776
- Served asset /application.js - 304 Not Modified (0ms)
777
-
778
-
779
- Started DELETE "/els_session/destroy" for 127.0.0.1 at 2012-10-09 21:00:00 +0100
780
- Processing by ElsSessionController#destroy as HTML
781
- Parameters: {"authenticity_token"=>"qkid4VhdquAOTzKqljmaxbhvDeN15/mvzXNrfFvsmyw="}
782
- Redirected to http://localhost:3000/els_session/new
783
- Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
784
-
785
-
786
- Started GET "/els_session/new" for 127.0.0.1 at 2012-10-09 21:00:00 +0100
787
- Processing by ElsSessionController#new as HTML
788
- Rendered els_session/new.html.erb within layouts/application (2.1ms)
789
- Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.0ms)
790
-
791
-
792
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-09 21:00:00 +0100
793
- Served asset /application.css - 304 Not Modified (0ms)
794
-
795
-
796
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-09 21:00:00 +0100
797
- Served asset /jquery.js - 304 Not Modified (0ms)
798
-
799
-
800
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-09 21:00:00 +0100
801
- Served asset /els_session.js - 304 Not Modified (0ms)
802
-
803
-
804
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-09 21:00:00 +0100
805
- Served asset /application.js - 304 Not Modified (0ms)
806
-
807
-
808
- Started POST "/els_session/create" for 127.0.0.1 at 2012-10-09 21:00:16 +0100
809
- Processing by ElsSessionController#create as HTML
810
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"qkid4VhdquAOTzKqljmaxbhvDeN15/mvzXNrfFvsmyw=", "username"=>"neilcuk", "password"=>"[FILTERED]", "commit"=>"Log in"}
811
- attempting to authenticate neilcuk
812
- got token AQIC5wM2LY4SfcxpRYxkSjIQivlWxtZ7W4-AvbM6KIWwt1w.*AAJTSQACMDUAAlNLAAk0NTY0NzU5MzEAAlMxAAIwMw..*
813
- got token id AQIC5wM2LY4SfcxpRYxkSjIQivlWxtZ7W4-AvbM6KIWwt1w.*AAJTSQACMDUAAlNLAAk0NTY0NzU5MzEAAlMxAAIwMw..*
814
- got cdid neilcuk
815
- Redirected to http://localhost:3000/
816
- Completed 302 Found in 2103ms (ActiveRecord: 0.0ms)
817
-
818
-
819
- Started GET "/" for 127.0.0.1 at 2012-10-09 21:00:18 +0100
820
- Processing by ElsSessionController#show as HTML
821
- Rendered els_session/show.html.erb within layouts/application (0.1ms)
822
- Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
823
-
824
-
825
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-09 21:00:18 +0100
826
- Served asset /application.css - 304 Not Modified (0ms)
827
-
828
-
829
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-09 21:00:18 +0100
830
- Served asset /jquery.js - 304 Not Modified (0ms)
831
-
832
-
833
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-09 21:00:18 +0100
834
- Served asset /application.js - 304 Not Modified (0ms)
835
-
836
-
837
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-09 21:00:18 +0100
838
- Served asset /els_session.js - 304 Not Modified (0ms)
839
-
840
-
841
- Started GET "/" for 127.0.0.1 at 2012-10-09 21:02:28 +0100
842
- Processing by ElsSessionController#show as HTML
843
- Rendered els_session/show.html.erb within layouts/application (0.1ms)
844
- Completed 200 OK in 8ms (Views: 7.0ms | ActiveRecord: 0.0ms)
845
-
846
-
847
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-09 21:02:29 +0100
848
- Served asset /application.css - 304 Not Modified (0ms)
849
-
850
-
851
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-09 21:02:29 +0100
852
- Served asset /jquery.js - 304 Not Modified (0ms)
853
-
854
-
855
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-09 21:02:29 +0100
856
- Served asset /els_session.js - 304 Not Modified (0ms)
857
-
858
-
859
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-09 21:02:29 +0100
860
- Served asset /application.js - 304 Not Modified (0ms)
861
-
862
-
863
- Started DELETE "/els_session/destroy" for 127.0.0.1 at 2012-10-09 21:02:30 +0100
864
- Processing by ElsSessionController#destroy as HTML
865
- Parameters: {"authenticity_token"=>"qkid4VhdquAOTzKqljmaxbhvDeN15/mvzXNrfFvsmyw="}
866
- Redirected to http://localhost:3000/els_session/new
867
- Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
868
-
869
-
870
- Started GET "/els_session/new" for 127.0.0.1 at 2012-10-09 21:02:30 +0100
871
- Processing by ElsSessionController#new as HTML
872
- Rendered els_session/new.html.erb within layouts/application (2.1ms)
873
- Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.0ms)
874
-
875
-
876
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-09 21:02:30 +0100
877
- Served asset /application.css - 304 Not Modified (0ms)
878
-
879
-
880
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-09 21:02:30 +0100
881
- Served asset /jquery.js - 304 Not Modified (0ms)
882
-
883
-
884
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-09 21:02:30 +0100
885
- Served asset /els_session.js - 304 Not Modified (0ms)
886
-
887
-
888
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-09 21:02:30 +0100
889
- Served asset /application.js - 304 Not Modified (0ms)
890
-
891
-
892
- Started POST "/els_session/create" for 127.0.0.1 at 2012-10-09 21:02:37 +0100
893
- Processing by ElsSessionController#create as HTML
894
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"qkid4VhdquAOTzKqljmaxbhvDeN15/mvzXNrfFvsmyw=", "username"=>"neilcuk", "password"=>"[FILTERED]", "commit"=>"Log in"}
895
- attempting to authenticate neilcuk
896
- got token AQIC5wM2LY4SfcyQjCzOV_5NSMRetBz-yeZmIOC0XjelTPY.*AAJTSQACMDUAAlNLAAstMTgxMTU0NTE5MwACUzEAAjAx*
897
- got token id AQIC5wM2LY4SfcyQjCzOV_5NSMRetBz-yeZmIOC0XjelTPY.*AAJTSQACMDUAAlNLAAstMTgxMTU0NTE5MwACUzEAAjAx*
898
- got cdid neilcuk
899
- Redirected to http://localhost:3000/
900
- Completed 302 Found in 1845ms (ActiveRecord: 0.0ms)
901
-
902
-
903
- Started GET "/" for 127.0.0.1 at 2012-10-09 21:02:39 +0100
904
- Processing by ElsSessionController#show as HTML
905
- Rendered els_session/show.html.erb within layouts/application (0.2ms)
906
- Completed 200 OK in 2345ms (Views: 8.8ms | ActiveRecord: 0.0ms)
907
-
908
-
909
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-09 21:02:41 +0100
910
- Served asset /application.css - 304 Not Modified (0ms)
911
-
912
-
913
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-09 21:02:41 +0100
914
- Served asset /jquery.js - 304 Not Modified (0ms)
915
-
916
-
917
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-09 21:02:41 +0100
918
- Served asset /els_session.js - 304 Not Modified (0ms)
919
-
920
-
921
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-09 21:02:41 +0100
922
- Served asset /application.js - 304 Not Modified (0ms)
923
-
924
-
925
- Started GET "/" for 127.0.0.1 at 2012-10-09 21:02:49 +0100
926
- Processing by ElsSessionController#show as HTML
927
- Rendered els_session/show.html.erb within layouts/application (0.1ms)
928
- Completed 200 OK in 1307ms (Views: 6.7ms | ActiveRecord: 0.0ms)
929
-
930
-
931
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-09 21:02:50 +0100
932
- Served asset /application.css - 304 Not Modified (0ms)
933
-
934
-
935
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-09 21:02:50 +0100
936
- Served asset /jquery.js - 304 Not Modified (0ms)
937
-
938
-
939
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-09 21:02:50 +0100
940
- Served asset /application.js - 304 Not Modified (0ms)
941
-
942
-
943
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-09 21:02:50 +0100
944
- Served asset /els_session.js - 304 Not Modified (0ms)
945
-
946
-
947
- Started GET "/" for 127.0.0.1 at 2012-10-09 21:02:56 +0100
948
- Processing by ElsSessionController#show as HTML
949
- Rendered els_session/show.html.erb within layouts/application (0.1ms)
950
- Completed 200 OK in 1650ms (Views: 9.9ms | ActiveRecord: 0.0ms)
951
-
952
-
953
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-09 21:02:58 +0100
954
- Served asset /application.css - 304 Not Modified (0ms)
955
-
956
-
957
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-09 21:02:58 +0100
958
- Served asset /jquery.js - 304 Not Modified (0ms)
959
-
960
-
961
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-09 21:02:58 +0100
962
- Served asset /application.js - 304 Not Modified (0ms)
963
-
964
-
965
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-09 21:02:58 +0100
966
- Served asset /els_session.js - 304 Not Modified (0ms)
967
-
968
-
969
- Started GET "/" for 127.0.0.1 at 2012-10-09 21:03:52 +0100
970
- Processing by ElsSessionController#show as HTML
971
- Rendered els_session/show.html.erb within layouts/application (0.1ms)
972
- Completed 200 OK in 2420ms (Views: 6.3ms | ActiveRecord: 0.0ms)
973
-
974
-
975
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-09 21:03:55 +0100
976
- Served asset /application.css - 304 Not Modified (0ms)
977
-
978
-
979
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-09 21:03:55 +0100
980
- Served asset /jquery.js - 304 Not Modified (0ms)
981
-
982
-
983
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-09 21:03:55 +0100
984
- Served asset /application.js - 304 Not Modified (0ms)
985
-
986
-
987
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-09 21:03:55 +0100
988
- Served asset /els_session.js - 304 Not Modified (0ms)
989
-
990
-
991
- Started GET "/" for 127.0.0.1 at 2012-10-09 21:07:38 +0100
992
- Processing by ElsSessionController#show as HTML
993
- Identity lookup took 1.28598 seconds
994
- Rendered els_session/show.html.erb within layouts/application (0.1ms)
995
- Completed 200 OK in 1295ms (Views: 7.9ms | ActiveRecord: 0.0ms)
996
-
997
-
998
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-09 21:07:39 +0100
999
- Served asset /application.css - 304 Not Modified (0ms)
1000
-
1001
-
1002
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-09 21:07:39 +0100
1003
- Served asset /els_session.js - 304 Not Modified (0ms)
1004
-
1005
-
1006
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-09 21:07:39 +0100
1007
- Served asset /application.js - 304 Not Modified (0ms)
1008
-
1009
-
1010
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-09 21:07:39 +0100
1011
- Served asset /jquery.js - 304 Not Modified (0ms)
1012
-
1013
-
1014
- Started GET "/" for 127.0.0.1 at 2012-10-10 10:25:34 +0100
1015
- Connecting to database specified by database.yml
1016
- Processing by ElsSessionController#show as HTML
1017
- Rendered els_session/show.html.erb within layouts/application (11.2ms)
1018
- Completed 500 Internal Server Error in 181ms
1019
-
1020
- ActionView::Template::Error (undefined method `token_id' for nil:NilClass):
1021
- 1: <h1>Session Info<h1>
1022
- 2: <div class='field'>
1023
- 3: <p>Employee Number: <%= @els_identity.token_id %></p>
1024
- 4: </div>
1025
- app/views/els_session/show.html.erb:3:in `_app_views_els_session_show_html_erb___2918878710876741313_70092496127400'
1026
-
1027
-
1028
- Rendered /Users/neilcuk/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (30.0ms)
1029
- Rendered /Users/neilcuk/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms)
1030
- Rendered /Users/neilcuk/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (45.4ms)
1031
-
1032
-
1033
- Started GET "/" for 127.0.0.1 at 2012-10-10 10:27:31 +0100
1034
- Processing by ElsSessionController#show as HTML
1035
- Redirected to http://localhost:3000/els_session/new
1036
- Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
1037
-
1038
-
1039
- Started GET "/els_session/new" for 127.0.0.1 at 2012-10-10 10:27:31 +0100
1040
- Processing by ElsSessionController#new as HTML
1041
- Rendered els_session/new.html.erb within layouts/application (5.3ms)
1042
- Completed 200 OK in 135ms (Views: 133.9ms | ActiveRecord: 0.0ms)
1043
-
1044
-
1045
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-10 10:27:31 +0100
1046
- Served asset /application.css - 200 OK (2ms)
1047
-
1048
-
1049
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-10 10:27:31 +0100
1050
- Served asset /jquery.js - 200 OK (42ms)
1051
-
1052
-
1053
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-10 10:27:31 +0100
1054
- Served asset /els_session.js - 200 OK (2ms)
1055
-
1056
-
1057
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-10 10:27:31 +0100
1058
- Served asset /application.js - 200 OK (9ms)
1059
-
1060
-
1061
- Started POST "/els_session/create" for 127.0.0.1 at 2012-10-10 10:27:40 +0100
1062
- Processing by ElsSessionController#create as HTML
1063
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"QNp9Z/7ZjGxdS/V7zl6FTq05V53f1+31EUpFM1UJXCA=", "username"=>"neilcuk", "password"=>"[FILTERED]", "override"=>"on", "commit"=>"Log in"}
1064
- faking session with id neilcuk
1065
- Rendered els_session/new.html.erb within layouts/application (2.1ms)
1066
- Completed 200 OK in 11ms (Views: 7.7ms | ActiveRecord: 0.0ms)
1067
-
1068
-
1069
- Started POST "/els_session/create" for 127.0.0.1 at 2012-10-10 10:29:11 +0100
1070
- Processing by ElsSessionController#create as HTML
1071
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"QNp9Z/7ZjGxdS/V7zl6FTq05V53f1+31EUpFM1UJXCA=", "username"=>"neilcuk", "password"=>"[FILTERED]", "override"=>"on", "commit"=>"Log in"}
1072
- faking session with id neilcuk
1073
- got token id 0.0468843847200513
1074
- Redirected to
1075
- Completed 500 Internal Server Error in 7ms
1076
-
1077
- ActionController::ActionControllerError (Cannot redirect to nil!):
1078
- app/controllers/els_session_controller.rb:90:in `go_back'
1079
- app/controllers/els_session_controller.rb:82:in `update_and_return'
1080
- app/controllers/els_session_controller.rb:48:in `create'
1081
-
1082
-
1083
- Rendered /Users/neilcuk/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.6ms)
1084
- Rendered /Users/neilcuk/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.8ms)
1085
- Rendered /Users/neilcuk/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.5ms)
1086
-
1087
-
1088
- Started GET "/" for 127.0.0.1 at 2012-10-10 10:29:29 +0100
1089
- Processing by ElsSessionController#show as HTML
1090
- Redirected to http://localhost:3000/els_session/new
1091
- Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
1092
-
1093
-
1094
- Started GET "/els_session/new" for 127.0.0.1 at 2012-10-10 10:29:29 +0100
1095
- Processing by ElsSessionController#new as HTML
1096
- Rendered els_session/new.html.erb within layouts/application (3.0ms)
1097
- Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.0ms)
1098
-
1099
-
1100
- Started POST "/els_session/create" for 127.0.0.1 at 2012-10-10 10:29:37 +0100
1101
- Processing by ElsSessionController#create as HTML
1102
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"QNp9Z/7ZjGxdS/V7zl6FTq05V53f1+31EUpFM1UJXCA=", "username"=>"neilcuk", "password"=>"[FILTERED]", "override"=>"on", "commit"=>"Log in"}
1103
- faking session with id neilcuk
1104
- got token id 0.21836144517132416
1105
- Redirected to
1106
- Completed 500 Internal Server Error in 1ms
1107
-
1108
- ActionController::ActionControllerError (Cannot redirect to nil!):
1109
- app/controllers/els_session_controller.rb:90:in `go_back'
1110
- app/controllers/els_session_controller.rb:82:in `update_and_return'
1111
- app/controllers/els_session_controller.rb:48:in `create'
1112
-
1113
-
1114
- Rendered /Users/neilcuk/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
1115
- Rendered /Users/neilcuk/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
1116
- Rendered /Users/neilcuk/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (18.2ms)
1117
-
1118
-
1119
- Started GET "/" for 127.0.0.1 at 2012-10-10 10:31:03 +0100
1120
- Processing by ElsSessionController#show as HTML
1121
- Redirected to http://localhost:3000/els_session/new
1122
- Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
1123
-
1124
-
1125
- Started GET "/els_session/new" for 127.0.0.1 at 2012-10-10 10:31:03 +0100
1126
- Processing by ElsSessionController#new as HTML
1127
- Rendered els_session/new.html.erb within layouts/application (2.2ms)
1128
- Completed 200 OK in 9ms (Views: 8.0ms | ActiveRecord: 0.0ms)
1129
-
1130
-
1131
- Started POST "/els_session/create" for 127.0.0.1 at 2012-10-10 10:31:17 +0100
1132
- Processing by ElsSessionController#create as HTML
1133
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"QNp9Z/7ZjGxdS/V7zl6FTq05V53f1+31EUpFM1UJXCA=", "username"=>"neilcuk", "password"=>"[FILTERED]", "override"=>"on", "commit"=>"Log in"}
1134
- faking session with id neilcuk
1135
- got token id 0.9566273577423675
1136
- Redirected to http://localhost:3000/
1137
- Completed 302 Found in 4ms (ActiveRecord: 0.0ms)
1138
-
1139
-
1140
- Started GET "/" for 127.0.0.1 at 2012-10-10 10:31:17 +0100
1141
- Processing by ElsSessionController#show as HTML
1142
- Redirected to http://localhost:3000/els_session/new
1143
- Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
1144
-
1145
-
1146
- Started GET "/els_session/new" for 127.0.0.1 at 2012-10-10 10:31:17 +0100
1147
- Processing by ElsSessionController#new as HTML
1148
- Rendered els_session/new.html.erb within layouts/application (2.8ms)
1149
- Completed 200 OK in 349ms (Views: 10.0ms | ActiveRecord: 0.0ms)
1150
-
1151
-
1152
- Started GET "/els_session/show" for 127.0.0.1 at 2012-10-10 10:31:30 +0100
1153
-
1154
- ActionController::RoutingError (No route matches [GET] "/els_session/show"):
1155
- actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1156
- actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1157
- railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
1158
- railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
1159
- actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1160
- rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1161
- rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1162
- rack (1.4.1) lib/rack/lock.rb:15:in `call'
1163
- actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
1164
- rack-cache (1.2) lib/rack/cache/context.rb:136:in `forward'
1165
- rack-cache (1.2) lib/rack/cache/context.rb:245:in `fetch'
1166
- rack-cache (1.2) lib/rack/cache/context.rb:185:in `lookup'
1167
- rack-cache (1.2) lib/rack/cache/context.rb:66:in `call!'
1168
- rack-cache (1.2) lib/rack/cache/context.rb:51:in `call'
1169
- railties (3.2.8) lib/rails/engine.rb:479:in `call'
1170
- railties (3.2.8) lib/rails/application.rb:223:in `call'
1171
- rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1172
- railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
1173
- rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1174
- /Users/neilcuk/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1175
- /Users/neilcuk/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1176
- /Users/neilcuk/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1177
-
1178
-
1179
- Rendered /Users/neilcuk/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
1180
-
1181
-
1182
- Started GET "/els_session/show" for 127.0.0.1 at 2012-10-10 10:32:23 +0100
1183
- Processing by ElsSessionController#show as HTML
1184
- Redirected to http://localhost:3000/els_session/new
1185
- Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
1186
-
1187
-
1188
- Started GET "/els_session/new" for 127.0.0.1 at 2012-10-10 10:32:23 +0100
1189
- Processing by ElsSessionController#new as HTML
1190
- Rendered els_session/new.html.erb within layouts/application (3.1ms)
1191
- Completed 200 OK in 351ms (Views: 11.2ms | ActiveRecord: 0.0ms)
1192
-
1193
-
1194
- Started GET "/" for 127.0.0.1 at 2012-10-10 10:33:59 +0100
1195
- Processing by ElsSessionController#show as HTML
1196
- Completed 500 Internal Server Error in 1ms
1197
-
1198
- ArgumentError (undefined class/module ElsFaker):
1199
- app/controllers/application_controller.rb:48:in `els_identity'
1200
-
1201
-
1202
- Rendered /Users/neilcuk/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (24.0ms)
1203
- Rendered /Users/neilcuk/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms)
1204
- Rendered /Users/neilcuk/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (35.8ms)
1205
-
1206
-
1207
- Started GET "/" for 127.0.0.1 at 2012-10-10 10:34:42 +0100
1208
- Connecting to database specified by database.yml
1209
- Processing by ElsSessionController#show as HTML
1210
- user will be returned to /
1211
- Redirected to http://localhost:3000/els_session/new
1212
- Filter chain halted as :els_identity rendered or redirected
1213
- Completed 302 Found in 20ms (ActiveRecord: 0.0ms)
1214
-
1215
-
1216
- Started GET "/els_session/new" for 127.0.0.1 at 2012-10-10 10:34:43 +0100
1217
- Processing by ElsSessionController#new as HTML
1218
- Rendered els_session/new.html.erb within layouts/application (7.0ms)
1219
- Completed 200 OK in 412ms (Views: 72.8ms | ActiveRecord: 0.0ms)
1220
-
1221
-
1222
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-10 10:34:44 +0100
1223
- Served asset /application.css - 304 Not Modified (2ms)
1224
-
1225
-
1226
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-10 10:34:44 +0100
1227
- Served asset /application.js - 304 Not Modified (9ms)
1228
-
1229
-
1230
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-10 10:34:44 +0100
1231
- Served asset /els_session.js - 304 Not Modified (2ms)
1232
-
1233
-
1234
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-10 10:34:44 +0100
1235
- Served asset /jquery.js - 304 Not Modified (4ms)
1236
-
1237
-
1238
- Started POST "/els_session/create" for 127.0.0.1 at 2012-10-10 10:34:51 +0100
1239
- Processing by ElsSessionController#create as HTML
1240
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"Ozpd6EyYS0kXNxy/Smzg2MeJcP98phkW5CGjmnTrvhQ=", "username"=>"neilcuk", "password"=>"[FILTERED]", "override"=>"on", "commit"=>"Log in"}
1241
- faking session with id neilcuk
1242
- got token id 0.12942744259936478
1243
- Redirected to http://localhost:3000/
1244
- Completed 302 Found in 4ms (ActiveRecord: 0.0ms)
1245
-
1246
-
1247
- Started GET "/" for 127.0.0.1 at 2012-10-10 10:34:51 +0100
1248
- Processing by ElsSessionController#show as HTML
1249
- Rendered els_session/show.html.erb within layouts/application (0.6ms)
1250
- Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
1251
-
1252
-
1253
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-10 10:34:51 +0100
1254
- Served asset /application.css - 304 Not Modified (0ms)
1255
-
1256
-
1257
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-10 10:34:51 +0100
1258
- Served asset /jquery.js - 304 Not Modified (0ms)
1259
-
1260
-
1261
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-10 10:34:51 +0100
1262
- Served asset /els_session.js - 304 Not Modified (0ms)
1263
-
1264
-
1265
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-10 10:34:51 +0100
1266
- Served asset /application.js - 304 Not Modified (0ms)
1267
-
1268
-
1269
- Started GET "/" for 127.0.0.1 at 2012-10-10 10:35:03 +0100
1270
- Processing by ElsSessionController#show as HTML
1271
- Rendered els_session/show.html.erb within layouts/application (0.1ms)
1272
- Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.0ms)
1273
-
1274
-
1275
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-10 10:35:03 +0100
1276
- Served asset /application.css - 304 Not Modified (0ms)
1277
-
1278
-
1279
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-10 10:35:03 +0100
1280
- Served asset /els_session.js - 304 Not Modified (0ms)
1281
-
1282
-
1283
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-10 10:35:03 +0100
1284
- Served asset /application.js - 304 Not Modified (0ms)
1285
-
1286
-
1287
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-10 10:35:03 +0100
1288
- Served asset /jquery.js - 304 Not Modified (0ms)
1289
-
1290
-
1291
- Started GET "/" for 127.0.0.1 at 2012-10-10 10:35:05 +0100
1292
- Processing by ElsSessionController#show as HTML
1293
- Rendered els_session/show.html.erb within layouts/application (0.1ms)
1294
- Completed 200 OK in 44ms (Views: 43.5ms | ActiveRecord: 0.0ms)
1295
-
1296
-
1297
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-10 10:35:05 +0100
1298
- Served asset /application.css - 304 Not Modified (0ms)
1299
-
1300
-
1301
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-10 10:35:05 +0100
1302
- Served asset /jquery.js - 304 Not Modified (0ms)
1303
-
1304
-
1305
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-10 10:35:05 +0100
1306
- Served asset /els_session.js - 304 Not Modified (0ms)
1307
-
1308
-
1309
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-10 10:35:05 +0100
1310
- Served asset /application.js - 304 Not Modified (0ms)
1311
-
1312
-
1313
- Started GET "/" for 127.0.0.1 at 2012-10-10 10:35:05 +0100
1314
- Processing by ElsSessionController#show as HTML
1315
- Rendered els_session/show.html.erb within layouts/application (0.1ms)
1316
- Completed 200 OK in 6ms (Views: 6.1ms | ActiveRecord: 0.0ms)
1317
-
1318
-
1319
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-10 10:35:06 +0100
1320
- Served asset /application.css - 304 Not Modified (0ms)
1321
-
1322
-
1323
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-10 10:35:06 +0100
1324
- Served asset /els_session.js - 304 Not Modified (0ms)
1325
-
1326
-
1327
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-10 10:35:06 +0100
1328
- Served asset /jquery.js - 304 Not Modified (0ms)
1329
-
1330
-
1331
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-10 10:35:06 +0100
1332
- Served asset /application.js - 304 Not Modified (0ms)
1333
-
1334
-
1335
- Started GET "/" for 127.0.0.1 at 2012-10-10 10:35:06 +0100
1336
- Processing by ElsSessionController#show as HTML
1337
- Rendered els_session/show.html.erb within layouts/application (0.1ms)
1338
- Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
1339
-
1340
-
1341
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-10 10:35:07 +0100
1342
- Served asset /application.css - 304 Not Modified (0ms)
1343
-
1344
-
1345
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-10 10:35:07 +0100
1346
- Served asset /jquery.js - 304 Not Modified (0ms)
1347
-
1348
-
1349
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-10 10:35:07 +0100
1350
- Served asset /els_session.js - 304 Not Modified (0ms)
1351
-
1352
-
1353
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-10 10:35:07 +0100
1354
- Served asset /application.js - 304 Not Modified (1ms)
1355
-
1356
-
1357
- Started DELETE "/els_session/destroy" for 127.0.0.1 at 2012-10-10 10:35:13 +0100
1358
- Processing by ElsSessionController#destroy as HTML
1359
- Parameters: {"authenticity_token"=>"Ozpd6EyYS0kXNxy/Smzg2MeJcP98phkW5CGjmnTrvhQ="}
1360
- Redirected to http://localhost:3000/els_session/new
1361
- Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
1362
-
1363
-
1364
- Started GET "/els_session/new" for 127.0.0.1 at 2012-10-10 10:35:13 +0100
1365
- Processing by ElsSessionController#new as HTML
1366
- Rendered els_session/new.html.erb within layouts/application (3.0ms)
1367
- Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms)
1368
-
1369
-
1370
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-10 10:35:13 +0100
1371
- Served asset /application.css - 304 Not Modified (0ms)
1372
-
1373
-
1374
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-10 10:35:13 +0100
1375
- Served asset /jquery.js - 304 Not Modified (0ms)
1376
-
1377
-
1378
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-10 10:35:13 +0100
1379
- Served asset /application.js - 304 Not Modified (0ms)
1380
-
1381
-
1382
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-10 10:35:13 +0100
1383
- Served asset /els_session.js - 304 Not Modified (0ms)
1384
-
1385
-
1386
- Started GET "/" for 127.0.0.1 at 2012-10-10 18:34:47 +0100
1387
- Connecting to database specified by database.yml
1388
- Processing by ElsSessionController#show as HTML
1389
- user will be returned to /
1390
- Redirected to http://localhost:3000/els_session/new
1391
- Filter chain halted as :els_identity rendered or redirected
1392
- Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
1393
-
1394
-
1395
- Started GET "/els_session/new" for 127.0.0.1 at 2012-10-10 18:34:48 +0100
1396
- Processing by ElsSessionController#new as HTML
1397
- Rendered els_session/new.html.erb within layouts/application (6.2ms)
1398
- Completed 200 OK in 69ms (Views: 68.4ms | ActiveRecord: 0.0ms)
1399
-
1400
-
1401
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-10 18:34:48 +0100
1402
- Served asset /application.css - 304 Not Modified (2ms)
1403
-
1404
-
1405
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-10 18:34:48 +0100
1406
- Served asset /jquery.js - 304 Not Modified (3ms)
1407
-
1408
-
1409
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-10 18:34:48 +0100
1410
- Served asset /els_session.js - 304 Not Modified (2ms)
1411
-
1412
-
1413
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-10 18:34:48 +0100
1414
- Served asset /application.js - 304 Not Modified (6ms)
1415
-
1416
-
1417
- Started POST "/els_session/create" for 127.0.0.1 at 2012-10-10 18:34:59 +0100
1418
- Processing by ElsSessionController#create as HTML
1419
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"Ozpd6EyYS0kXNxy/Smzg2MeJcP98phkW5CGjmnTrvhQ=", "username"=>"neilcuk", "password"=>"[FILTERED]", "commit"=>"Log in"}
1420
- attempting to authenticate neilcuk
1421
- got token AQIC5wM2LY4SfczD38A-T6O5mzB8Q2E4BnrPuFw3KFJ7WE8.*AAJTSQACMDUAAlNLAAstMTk4MTA4NzQ0MwACUzEAAjAz*
1422
- got token id AQIC5wM2LY4SfczD38A-T6O5mzB8Q2E4BnrPuFw3KFJ7WE8.*AAJTSQACMDUAAlNLAAstMTk4MTA4NzQ0MwACUzEAAjAz*
1423
- Redirected to http://localhost:3000/
1424
- Completed 302 Found in 1898ms (ActiveRecord: 0.0ms)
1425
-
1426
-
1427
- Started GET "/" for 127.0.0.1 at 2012-10-10 18:35:01 +0100
1428
- Processing by ElsSessionController#show as HTML
1429
- Rendered els_session/show.html.erb within layouts/application (0.6ms)
1430
- Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
1431
-
1432
-
1433
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-10 18:35:01 +0100
1434
- Served asset /application.css - 304 Not Modified (0ms)
1435
-
1436
-
1437
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-10 18:35:01 +0100
1438
- Served asset /application.js - 304 Not Modified (0ms)
1439
-
1440
-
1441
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-10 18:35:01 +0100
1442
- Served asset /jquery.js - 304 Not Modified (0ms)
1443
-
1444
-
1445
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-10 18:35:01 +0100
1446
- Served asset /els_session.js - 304 Not Modified (0ms)
1447
-
1448
-
1449
- Started GET "/" for 127.0.0.1 at 2012-10-10 18:35:07 +0100
1450
- Processing by ElsSessionController#show as HTML
1451
- Rendered els_session/show.html.erb within layouts/application (0.1ms)
1452
- Completed 200 OK in 6ms (Views: 6.1ms | ActiveRecord: 0.0ms)
1453
-
1454
-
1455
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-10 18:35:07 +0100
1456
- Served asset /application.css - 304 Not Modified (0ms)
1457
-
1458
-
1459
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-10 18:35:07 +0100
1460
- Served asset /jquery.js - 304 Not Modified (0ms)
1461
-
1462
-
1463
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-10 18:35:07 +0100
1464
- Served asset /els_session.js - 304 Not Modified (0ms)
1465
-
1466
-
1467
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-10 18:35:07 +0100
1468
- Served asset /application.js - 304 Not Modified (0ms)
1469
-
1470
-
1471
- Started GET "/" for 127.0.0.1 at 2012-10-10 18:35:08 +0100
1472
- Processing by ElsSessionController#show as HTML
1473
- Rendered els_session/show.html.erb within layouts/application (0.1ms)
1474
- Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
1475
-
1476
-
1477
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-10 18:35:08 +0100
1478
- Served asset /els_session.js - 304 Not Modified (0ms)
1479
-
1480
-
1481
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-10 18:35:08 +0100
1482
- Served asset /application.js - 304 Not Modified (0ms)
1483
-
1484
-
1485
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-10 18:35:08 +0100
1486
- Served asset /jquery.js - 304 Not Modified (0ms)
1487
-
1488
-
1489
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-10 18:35:08 +0100
1490
- Served asset /application.css - 304 Not Modified (0ms)
1491
-
1492
-
1493
- Started GET "/" for 127.0.0.1 at 2012-10-10 18:35:09 +0100
1494
- Processing by ElsSessionController#show as HTML
1495
- Rendered els_session/show.html.erb within layouts/application (0.1ms)
1496
- Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
1497
-
1498
-
1499
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-10 18:35:09 +0100
1500
- Served asset /application.css - 304 Not Modified (0ms)
1501
-
1502
-
1503
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-10 18:35:09 +0100
1504
- Served asset /jquery.js - 304 Not Modified (0ms)
1505
-
1506
-
1507
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-10 18:35:10 +0100
1508
- Served asset /els_session.js - 304 Not Modified (0ms)
1509
-
1510
-
1511
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-10 18:35:10 +0100
1512
- Served asset /application.js - 304 Not Modified (0ms)
1513
-
1514
-
1515
- Started GET "/" for 127.0.0.1 at 2012-10-10 18:36:26 +0100
1516
- Processing by ElsSessionController#show as HTML
1517
- Rendered els_session/show.html.erb within layouts/application (7.4ms)
1518
- Completed 500 Internal Server Error in 10ms
1519
-
1520
- ActionView::Template::Error (undefined method `token_id' for #<String:0x007f957bd438d0>):
1521
- 1: <h1>Session Info<h1>
1522
- 2: <div class='field'>
1523
- 3: <p>Employee Number: <%= @els_identity.token_id %></p>
1524
- 4: </div>
1525
- app/views/els_session/show.html.erb:3:in `_app_views_els_session_show_html_erb___2668960092772141004_70139994361440'
1526
-
1527
-
1528
- Rendered /Users/neilcuk/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.6ms)
1529
- Rendered /Users/neilcuk/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms)
1530
- Rendered /Users/neilcuk/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (14.7ms)
1531
-
1532
-
1533
- Started GET "/" for 127.0.0.1 at 2012-10-10 18:36:45 +0100
1534
- Processing by ElsSessionController#show as HTML
1535
- Rendered els_session/show.html.erb within layouts/application (1.0ms)
1536
- Completed 500 Internal Server Error in 27ms
1537
-
1538
- ActionView::Template::Error (undefined method `token_id' for #<String:0x007f957be18bc0>):
1539
- 1: <h1>Session Info<h1>
1540
- 2: <div class='field'>
1541
- 3: <p>Employee Number: <%= @els_identity.token_id %></p>
1542
- 4: </div>
1543
- app/views/els_session/show.html.erb:3:in `_app_views_els_session_show_html_erb___2668960092772141004_70139994361440'
1544
-
1545
-
1546
- Rendered /Users/neilcuk/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
1547
- Rendered /Users/neilcuk/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms)
1548
- Rendered /Users/neilcuk/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (14.1ms)
1549
-
1550
-
1551
- Started GET "/" for 127.0.0.1 at 2012-10-10 18:55:59 +0100
1552
- Processing by ElsSessionController#show as HTML
1553
- Rendered els_session/show.html.erb within layouts/application (0.8ms)
1554
- Completed 200 OK in 8ms (Views: 7.9ms | ActiveRecord: 0.0ms)
1555
-
1556
-
1557
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-10 18:55:59 +0100
1558
- Served asset /application.css - 200 OK (0ms)
1559
-
1560
-
1561
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-10 18:55:59 +0100
1562
- Served asset /jquery.js - 200 OK (0ms)
1563
-
1564
-
1565
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-10 18:55:59 +0100
1566
- Served asset /application.js - 200 OK (0ms)
1567
-
1568
-
1569
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-10 18:56:00 +0100
1570
- Served asset /els_session.js - 200 OK (0ms)
1571
-
1572
-
1573
- Started GET "/" for 127.0.0.1 at 2012-10-10 18:57:10 +0100
1574
- Processing by ElsSessionController#show as HTML
1575
- Rendered els_session/show.html.erb within layouts/application (0.1ms)
1576
- Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.0ms)
1577
-
1578
-
1579
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-10 18:57:10 +0100
1580
- Served asset /application.css - 304 Not Modified (0ms)
1581
-
1582
-
1583
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-10 18:57:10 +0100
1584
- Served asset /jquery.js - 304 Not Modified (0ms)
1585
-
1586
-
1587
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-10 18:57:10 +0100
1588
- Served asset /application.js - 304 Not Modified (0ms)
1589
-
1590
-
1591
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-10 18:57:10 +0100
1592
- Served asset /els_session.js - 304 Not Modified (0ms)
1593
-
1594
-
1595
- Started GET "/" for 127.0.0.1 at 2012-10-10 18:57:12 +0100
1596
- Processing by ElsSessionController#show as HTML
1597
- Rendered els_session/show.html.erb within layouts/application (0.1ms)
1598
- Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
1599
-
1600
-
1601
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-10 18:57:12 +0100
1602
- Served asset /application.css - 304 Not Modified (0ms)
1603
-
1604
-
1605
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-10 18:57:12 +0100
1606
- Served asset /application.js - 304 Not Modified (0ms)
1607
-
1608
-
1609
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-10 18:57:12 +0100
1610
- Served asset /jquery.js - 304 Not Modified (0ms)
1611
2
 
1612
3
 
1613
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-10 18:57:12 +0100
1614
- Served asset /els_session.js - 304 Not Modified (0ms)
1615
-
1616
-
1617
- Started GET "/" for 127.0.0.1 at 2012-10-10 18:57:13 +0100
1618
- Processing by ElsSessionController#show as HTML
1619
- Rendered els_session/show.html.erb within layouts/application (0.1ms)
1620
- Completed 200 OK in 10ms (Views: 10.0ms | ActiveRecord: 0.0ms)
1621
-
1622
-
1623
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-10 18:57:13 +0100
1624
- Served asset /application.css - 304 Not Modified (0ms)
1625
-
1626
-
1627
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-10 18:57:13 +0100
1628
- Served asset /jquery.js - 304 Not Modified (0ms)
1629
-
1630
-
1631
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-10 18:57:13 +0100
1632
- Served asset /application.js - 304 Not Modified (0ms)
1633
-
1634
-
1635
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-10 18:57:13 +0100
1636
- Served asset /els_session.js - 304 Not Modified (0ms)
1637
-
1638
-
1639
- Started GET "/" for 127.0.0.1 at 2012-10-10 18:58:36 +0100
4
+ Started GET "/" for 127.0.0.1 at 2012-10-09 18:47:43 +0100
1640
5
  Connecting to database specified by database.yml
1641
6
  Processing by ElsSessionController#show as HTML
1642
- no identity in cache. Redirecting
1643
- user will be returned to /
1644
- Redirected to http://localhost:3000/els_session/new
1645
- Filter chain halted as :els_identity rendered or redirected
1646
- Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
1647
-
1648
-
1649
- Started GET "/els_session/new" for 127.0.0.1 at 2012-10-10 18:58:36 +0100
1650
- Processing by ElsSessionController#new as HTML
1651
- Redirected to http://localhost:3000/
1652
- Completed 302 Found in 2371ms (ActiveRecord: 0.0ms)
1653
-
1654
-
1655
- Started GET "/" for 127.0.0.1 at 2012-10-10 18:58:38 +0100
1656
- Processing by ElsSessionController#show as HTML
1657
- Rendered els_session/show.html.erb within layouts/application (3.0ms)
1658
- Completed 200 OK in 65ms (Views: 65.0ms | ActiveRecord: 0.0ms)
1659
-
1660
-
1661
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-10 18:58:39 +0100
1662
- Served asset /application.css - 304 Not Modified (12ms)
1663
-
1664
-
1665
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-10 18:58:39 +0100
1666
- Served asset /jquery.js - 304 Not Modified (4ms)
1667
-
1668
-
1669
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-10 18:58:39 +0100
1670
- Served asset /els_session.js - 304 Not Modified (2ms)
1671
-
1672
-
1673
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-10 18:58:39 +0100
1674
- Served asset /application.js - 304 Not Modified (5ms)
1675
-
1676
-
1677
- Started GET "/" for 127.0.0.1 at 2012-10-10 18:59:13 +0100
1678
- Processing by ElsSessionController#show as HTML
1679
- no identity in cache. Redirecting
1680
7
  user will be returned to /
1681
8
  Redirected to http://localhost:3000/els_session/new
1682
9
  Filter chain halted as :els_identity rendered or redirected
1683
10
  Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
1684
11
 
1685
12
 
1686
- Started GET "/els_session/new" for 127.0.0.1 at 2012-10-10 18:59:13 +0100
1687
- Processing by ElsSessionController#new as HTML
1688
- Rendered els_session/new.html.erb within layouts/application (6.0ms)
1689
- Completed 200 OK in 13ms (Views: 12.0ms | ActiveRecord: 0.0ms)
1690
-
1691
-
1692
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-10 18:59:13 +0100
1693
- Served asset /application.css - 304 Not Modified (0ms)
1694
-
1695
-
1696
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-10 18:59:13 +0100
1697
- Served asset /application.js - 304 Not Modified (0ms)
1698
-
1699
-
1700
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-10 18:59:13 +0100
1701
- Served asset /els_session.js - 304 Not Modified (0ms)
1702
-
1703
-
1704
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-10 18:59:13 +0100
1705
- Served asset /jquery.js - 304 Not Modified (0ms)
1706
-
1707
-
1708
- Started POST "/els_session/create" for 127.0.0.1 at 2012-10-10 18:59:22 +0100
1709
- Processing by ElsSessionController#create as HTML
1710
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"foUpBBNG2J+kE6NjKyi8I4nI5FvLYU/Z/ixgRQ81kwE=", "username"=>"neilcuk", "password"=>"[FILTERED]", "commit"=>"Log in"}
1711
- attempting to authenticate neilcuk
1712
- got token AQIC5wM2LY4Sfcy6yzP5XKvOhytf4NcK4fxEfDzyW7Yic-4.*AAJTSQACMDUAAlNLAAk1OTMxNjY2OTEAAlMxAAIwMw..*
1713
- got token id AQIC5wM2LY4Sfcy6yzP5XKvOhytf4NcK4fxEfDzyW7Yic-4.*AAJTSQACMDUAAlNLAAk1OTMxNjY2OTEAAlMxAAIwMw..*
1714
- Redirected to http://localhost:3000/
1715
- Completed 302 Found in 1877ms (ActiveRecord: 0.0ms)
1716
-
1717
-
1718
- Started GET "/" for 127.0.0.1 at 2012-10-10 18:59:23 +0100
1719
- Processing by ElsSessionController#show as HTML
1720
- Rendered els_session/show.html.erb within layouts/application (0.2ms)
1721
- Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.0ms)
1722
-
1723
-
1724
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-10 18:59:23 +0100
1725
- Served asset /application.css - 304 Not Modified (0ms)
1726
-
1727
-
1728
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-10 18:59:24 +0100
1729
- Served asset /jquery.js - 304 Not Modified (0ms)
1730
-
1731
-
1732
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-10 18:59:24 +0100
1733
- Served asset /application.js - 304 Not Modified (0ms)
1734
-
1735
-
1736
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-10 18:59:24 +0100
1737
- Served asset /els_session.js - 304 Not Modified (0ms)
1738
-
1739
-
1740
- Started GET "/" for 127.0.0.1 at 2012-10-10 18:59:30 +0100
1741
- Processing by ElsSessionController#show as HTML
1742
- Rendered els_session/show.html.erb within layouts/application (0.2ms)
1743
- Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.0ms)
1744
-
1745
-
1746
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-10 18:59:30 +0100
1747
- Served asset /application.css - 304 Not Modified (0ms)
1748
-
1749
-
1750
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-10 18:59:30 +0100
1751
- Served asset /els_session.js - 304 Not Modified (0ms)
1752
-
1753
-
1754
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-10 18:59:30 +0100
1755
- Served asset /jquery.js - 304 Not Modified (0ms)
1756
-
1757
-
1758
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-10 18:59:30 +0100
1759
- Served asset /application.js - 304 Not Modified (0ms)
1760
-
1761
-
1762
- Started GET "/" for 127.0.0.1 at 2012-10-10 18:59:31 +0100
1763
- Processing by ElsSessionController#show as HTML
1764
- Rendered els_session/show.html.erb within layouts/application (0.2ms)
1765
- Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)
1766
-
1767
-
1768
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-10 18:59:31 +0100
1769
- Served asset /application.css - 304 Not Modified (0ms)
1770
-
1771
-
1772
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-10 18:59:31 +0100
1773
- Served asset /jquery.js - 304 Not Modified (0ms)
1774
-
1775
-
1776
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-10 18:59:31 +0100
1777
- Served asset /application.js - 304 Not Modified (0ms)
1778
-
1779
-
1780
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-10 18:59:31 +0100
1781
- Served asset /els_session.js - 304 Not Modified (0ms)
1782
-
1783
-
1784
- Started GET "/" for 127.0.0.1 at 2012-10-10 18:59:59 +0100
1785
- Processing by ElsSessionController#show as HTML
1786
- Rendered els_session/show.html.erb within layouts/application (0.2ms)
1787
- Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
1788
-
1789
-
1790
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-10 18:59:59 +0100
1791
- Served asset /jquery.js - 304 Not Modified (0ms)
1792
-
1793
-
1794
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-10 18:59:59 +0100
1795
- Served asset /els_session.js - 304 Not Modified (0ms)
1796
-
1797
-
1798
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-10 18:59:59 +0100
1799
- Served asset /application.js - 304 Not Modified (0ms)
1800
-
1801
-
1802
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-10 18:59:59 +0100
1803
- Served asset /application.css - 304 Not Modified (0ms)
1804
-
1805
-
1806
- Started DELETE "/els_session/destroy" for 127.0.0.1 at 2012-10-10 19:00:20 +0100
1807
- Processing by ElsSessionController#destroy as HTML
1808
- Parameters: {"authenticity_token"=>"foUpBBNG2J+kE6NjKyi8I4nI5FvLYU/Z/ixgRQ81kwE="}
1809
- Redirected to http://localhost:3000/els_session/new
1810
- Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
1811
-
1812
-
1813
- Started GET "/els_session/new" for 127.0.0.1 at 2012-10-10 19:00:20 +0100
1814
- Processing by ElsSessionController#new as HTML
1815
- Rendered els_session/new.html.erb within layouts/application (2.4ms)
1816
- Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.0ms)
1817
-
1818
-
1819
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-10 19:00:20 +0100
1820
- Served asset /application.css - 304 Not Modified (0ms)
1821
-
1822
-
1823
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-10 19:00:20 +0100
1824
- Served asset /application.js - 304 Not Modified (0ms)
1825
-
1826
-
1827
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-10 19:00:20 +0100
1828
- Served asset /els_session.js - 304 Not Modified (0ms)
1829
-
1830
-
1831
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-10 19:00:20 +0100
1832
- Served asset /jquery.js - 304 Not Modified (0ms)
1833
-
1834
-
1835
- Started POST "/els_session/create" for 127.0.0.1 at 2012-10-10 19:00:30 +0100
1836
- Processing by ElsSessionController#create as HTML
1837
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"foUpBBNG2J+kE6NjKyi8I4nI5FvLYU/Z/ixgRQ81kwE=", "username"=>"neilcuk", "password"=>"[FILTERED]", "override"=>"on", "commit"=>"Log in"}
1838
- faking session with id neilcuk
1839
- got token id 0.16378897787232194
1840
- Redirected to http://localhost:3000/
1841
- Completed 302 Found in 4ms (ActiveRecord: 0.0ms)
1842
-
1843
-
1844
- Started GET "/" for 127.0.0.1 at 2012-10-10 19:00:30 +0100
1845
- Processing by ElsSessionController#show as HTML
1846
- Rendered els_session/show.html.erb within layouts/application (0.1ms)
1847
- Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.0ms)
1848
-
1849
-
1850
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-10 19:00:30 +0100
1851
- Served asset /application.css - 304 Not Modified (0ms)
1852
-
1853
-
1854
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-10 19:00:30 +0100
1855
- Served asset /els_session.js - 304 Not Modified (0ms)
1856
-
1857
-
1858
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-10 19:00:30 +0100
1859
- Served asset /application.js - 304 Not Modified (0ms)
1860
-
1861
-
1862
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-10 19:00:30 +0100
1863
- Served asset /jquery.js - 304 Not Modified (0ms)
1864
-
1865
-
1866
- Started DELETE "/els_session/destroy" for 127.0.0.1 at 2012-10-10 19:00:35 +0100
1867
- Processing by ElsSessionController#destroy as HTML
1868
- Parameters: {"authenticity_token"=>"foUpBBNG2J+kE6NjKyi8I4nI5FvLYU/Z/ixgRQ81kwE="}
1869
- Redirected to http://localhost:3000/els_session/new
1870
- Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
1871
-
1872
-
1873
- Started GET "/els_session/new" for 127.0.0.1 at 2012-10-10 19:00:35 +0100
13
+ Started GET "/els_session/new" for 127.0.0.1 at 2012-10-09 18:47:43 +0100
1874
14
  Processing by ElsSessionController#new as HTML
1875
- Rendered els_session/new.html.erb within layouts/application (2.2ms)
1876
- Completed 200 OK in 8ms (Views: 7.7ms | ActiveRecord: 0.0ms)
1877
-
1878
-
1879
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-10 19:00:35 +0100
1880
- Served asset /application.css - 304 Not Modified (0ms)
1881
-
1882
-
1883
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-10 19:00:35 +0100
1884
- Served asset /application.js - 304 Not Modified (0ms)
1885
-
1886
-
1887
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-10 19:00:35 +0100
1888
- Served asset /els_session.js - 304 Not Modified (0ms)
15
+ Rendered els_session/new.html.erb within layouts/application (4.4ms)
16
+ Compiled application.css (1ms) (pid 31195)
17
+ Compiled jquery.js (5ms) (pid 31195)
18
+ Completed 500 Internal Server Error in 78ms
1889
19
 
1890
-
1891
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-10 19:00:35 +0100
1892
- Served asset /jquery.js - 304 Not Modified (0ms)
1893
-
1894
-
1895
- Started POST "/els_session/create" for 127.0.0.1 at 2012-10-10 19:00:48 +0100
1896
- Processing by ElsSessionController#create as HTML
1897
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"foUpBBNG2J+kE6NjKyi8I4nI5FvLYU/Z/ixgRQ81kwE=", "username"=>"neilcuk", "password"=>"[FILTERED]", "commit"=>"Log in"}
1898
- attempting to authenticate neilcuk
1899
- got token AQIC5wM2LY4SfcyRz_l5FMTbNJtrT6eNI08sfcHLOA2hEDA.*AAJTSQACMDUAAlNLAAotNTM3NDYzMjkzAAJTMQACMDM.*
1900
- got token id AQIC5wM2LY4SfcyRz_l5FMTbNJtrT6eNI08sfcHLOA2hEDA.*AAJTSQACMDUAAlNLAAotNTM3NDYzMjkzAAJTMQACMDM.*
1901
- Redirected to http://localhost:3000/
1902
- Completed 302 Found in 2504ms (ActiveRecord: 0.0ms)
1903
-
1904
-
1905
- Started GET "/" for 127.0.0.1 at 2012-10-10 19:00:51 +0100
1906
- Processing by ElsSessionController#show as HTML
1907
- Rendered els_session/show.html.erb within layouts/application (0.2ms)
1908
- Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.0ms)
1909
-
1910
-
1911
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-10 19:00:51 +0100
1912
- Served asset /application.css - 304 Not Modified (0ms)
1913
-
1914
-
1915
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-10 19:00:51 +0100
1916
- Served asset /els_session.js - 304 Not Modified (0ms)
1917
-
1918
-
1919
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-10 19:00:51 +0100
1920
- Served asset /jquery.js - 304 Not Modified (0ms)
1921
-
1922
-
1923
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-10 19:00:51 +0100
1924
- Served asset /application.js - 304 Not Modified (0ms)
1925
-
1926
-
1927
- Started GET "/" for 127.0.0.1 at 2012-10-10 19:01:02 +0100
1928
- Processing by ElsSessionController#show as HTML
1929
- Rendered els_session/show.html.erb within layouts/application (0.2ms)
1930
- Completed 200 OK in 6ms (Views: 6.2ms | ActiveRecord: 0.0ms)
1931
-
1932
-
1933
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-10 19:01:02 +0100
1934
- Served asset /application.css - 304 Not Modified (0ms)
1935
-
1936
-
1937
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-10 19:01:02 +0100
1938
- Served asset /els_session.js - 304 Not Modified (0ms)
1939
-
1940
-
1941
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-10 19:01:02 +0100
1942
- Served asset /jquery.js - 304 Not Modified (0ms)
1943
-
1944
-
1945
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-10 19:01:02 +0100
1946
- Served asset /application.js - 304 Not Modified (0ms)
1947
-
1948
-
1949
- Started GET "/" for 127.0.0.1 at 2012-10-10 19:01:03 +0100
1950
- Processing by ElsSessionController#show as HTML
1951
- Rendered els_session/show.html.erb within layouts/application (0.2ms)
1952
- Completed 200 OK in 6ms (Views: 6.1ms | ActiveRecord: 0.0ms)
1953
-
1954
-
1955
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-10 19:01:03 +0100
1956
- Served asset /application.css - 304 Not Modified (0ms)
1957
-
1958
-
1959
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-10 19:01:03 +0100
1960
- Served asset /application.js - 304 Not Modified (0ms)
1961
-
1962
-
1963
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-10 19:01:03 +0100
1964
- Served asset /els_session.js - 304 Not Modified (0ms)
1965
-
1966
-
1967
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-10 19:01:03 +0100
1968
- Served asset /jquery.js - 304 Not Modified (0ms)
1969
-
1970
-
1971
- Started GET "/" for 127.0.0.1 at 2012-10-10 19:01:05 +0100
1972
- Processing by ElsSessionController#show as HTML
1973
- Rendered els_session/show.html.erb within layouts/application (0.2ms)
1974
- Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
1975
-
1976
-
1977
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-10 19:01:05 +0100
1978
- Served asset /application.css - 304 Not Modified (0ms)
1979
-
1980
-
1981
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-10 19:01:05 +0100
1982
- Served asset /jquery.js - 304 Not Modified (0ms)
1983
-
1984
-
1985
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-10 19:01:05 +0100
1986
- Served asset /application.js - 304 Not Modified (0ms)
1987
-
1988
-
1989
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-10 19:01:05 +0100
1990
- Served asset /els_session.js - 304 Not Modified (0ms)
1991
-
1992
-
1993
- Started GET "/" for 127.0.0.1 at 2012-10-10 19:01:16 +0100
1994
- Processing by ElsSessionController#show as HTML
1995
- Rendered els_session/show.html.erb within layouts/application (0.3ms)
1996
- Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)
1997
-
1998
-
1999
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-10 19:01:16 +0100
2000
- Served asset /application.css - 304 Not Modified (0ms)
2001
-
2002
-
2003
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-10 19:01:16 +0100
2004
- Served asset /els_session.js - 304 Not Modified (0ms)
2005
-
2006
-
2007
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-10 19:01:16 +0100
2008
- Served asset /application.js - 304 Not Modified (0ms)
20
+ ActionView::Template::Error (cannot load such file -- coffee_script
21
+ (in /Users/neilcuk/dev/ruby/gems/els_token/test/dummy/app/assets/javascripts/els_session.js.coffee)):
22
+ 3: <head>
23
+ 4: <title>ElsSession</title>
24
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
25
+ 6: <%= javascript_include_tag "application" %>
26
+ 7: <%= csrf_meta_tags %>
27
+ 8: </head>
28
+ 9: <body>
29
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___3102776676085365165_70273562929120'
2009
30
 
2010
31
 
2011
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-10 19:01:16 +0100
2012
- Served asset /jquery.js - 304 Not Modified (0ms)
2013
- Connecting to database specified by database.yml
2014
- Connecting to database specified by database.yml
2015
- Connecting to database specified by database.yml
2016
- Connecting to database specified by database.yml
2017
- Connecting to database specified by database.yml
2018
- Connecting to database specified by database.yml
2019
- Connecting to database specified by database.yml
2020
- Connecting to database specified by database.yml
32
+ Rendered /Users/neilcuk/.rvm/gems/ruby-1.9.3-p194@gemdev/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
33
+ Rendered /Users/neilcuk/.rvm/gems/ruby-1.9.3-p194@gemdev/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
34
+ Rendered /Users/neilcuk/.rvm/gems/ruby-1.9.3-p194@gemdev/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.0ms)
2021
35
 
2022
36
 
2023
- Started GET "/" for 127.0.0.1 at 2012-10-11 19:59:23 +0100
37
+ Started GET "/" for 127.0.0.1 at 2012-10-09 18:50:37 +0100
2024
38
  Connecting to database specified by database.yml
2025
39
  Processing by ElsSessionController#show as HTML
2026
- no identity in cache. Redirecting
2027
40
  user will be returned to /
2028
41
  Redirected to http://localhost:3000/els_session/new
2029
42
  Filter chain halted as :els_identity rendered or redirected
2030
- Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
2031
-
2032
-
2033
- Started GET "/els_session/new" for 127.0.0.1 at 2012-10-11 19:59:24 +0100
2034
- Processing by ElsSessionController#new as HTML
2035
- Rendered els_session/new.html.erb within layouts/application (6.7ms)
2036
- Completed 200 OK in 1532ms (Views: 186.1ms | ActiveRecord: 0.0ms)
2037
-
2038
-
2039
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-11 19:59:25 +0100
2040
- Served asset /application.css - 304 Not Modified (2ms)
2041
-
2042
-
2043
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-11 19:59:25 +0100
2044
- Served asset /els_session.js - 304 Not Modified (8ms)
2045
-
2046
-
2047
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-11 19:59:25 +0100
2048
- Served asset /application.js - 304 Not Modified (6ms)
2049
-
2050
-
2051
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-11 19:59:25 +0100
2052
- Served asset /jquery.js - 304 Not Modified (3ms)
2053
-
2054
-
2055
- Started POST "/els_session/create" for 127.0.0.1 at 2012-10-11 19:59:36 +0100
2056
- Processing by ElsSessionController#create as HTML
2057
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"ItJC7XuRS15iqpdt5znjltQcgdVIwEYUvhgLmpmkA90=", "username"=>"neilcuk", "password"=>"[FILTERED]", "commit"=>"Log in"}
2058
- attempting to authenticate neilcuk
2059
- got token AQIC5wM2LY4SfcwCYDkAloSV_gE1Ym9Qxx-wJ9--GhxOuds.*AAJTSQACMDUAAlNLAAotOTgxMTc5MDQxAAJTMQACMDM.*
2060
- got token id AQIC5wM2LY4SfcwCYDkAloSV_gE1Ym9Qxx-wJ9--GhxOuds.*AAJTSQACMDUAAlNLAAotOTgxMTc5MDQxAAJTMQACMDM.*
2061
- Redirected to http://localhost:3000/
2062
- Completed 302 Found in 1295ms (ActiveRecord: 0.0ms)
2063
-
2064
-
2065
- Started GET "/" for 127.0.0.1 at 2012-10-11 19:59:37 +0100
2066
- Processing by ElsSessionController#show as HTML
2067
- Rendered els_session/show.html.erb within layouts/application (1.0ms)
2068
- Completed 200 OK in 36ms (Views: 35.5ms | ActiveRecord: 0.0ms)
2069
-
2070
-
2071
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-11 19:59:37 +0100
2072
- Served asset /application.css - 304 Not Modified (0ms)
2073
-
2074
-
2075
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-11 19:59:37 +0100
2076
- Served asset /application.js - 304 Not Modified (0ms)
2077
-
2078
-
2079
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-11 19:59:38 +0100
2080
- Served asset /els_session.js - 304 Not Modified (4ms)
2081
-
2082
-
2083
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-11 19:59:38 +0100
2084
- Served asset /jquery.js - 304 Not Modified (0ms)
2085
-
2086
-
2087
- Started GET "/" for 127.0.0.1 at 2012-10-11 19:59:43 +0100
2088
- Processing by ElsSessionController#show as HTML
2089
- Rendered els_session/show.html.erb within layouts/application (0.2ms)
2090
- Completed 200 OK in 7ms (Views: 7.0ms | ActiveRecord: 0.0ms)
2091
-
2092
-
2093
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-11 19:59:43 +0100
2094
- Served asset /application.css - 304 Not Modified (0ms)
2095
-
2096
-
2097
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-11 19:59:44 +0100
2098
- Served asset /els_session.js - 304 Not Modified (3ms)
2099
-
2100
-
2101
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-11 19:59:44 +0100
2102
- Served asset /application.js - 304 Not Modified (0ms)
2103
-
2104
-
2105
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-11 19:59:44 +0100
2106
- Served asset /jquery.js - 304 Not Modified (0ms)
2107
-
2108
-
2109
- Started GET "/" for 127.0.0.1 at 2012-10-11 19:59:45 +0100
2110
- Processing by ElsSessionController#show as HTML
2111
- Rendered els_session/show.html.erb within layouts/application (0.2ms)
2112
- Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
2113
-
2114
-
2115
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-11 19:59:45 +0100
2116
- Served asset /application.css - 304 Not Modified (0ms)
2117
-
2118
-
2119
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-11 19:59:45 +0100
2120
- Served asset /jquery.js - 304 Not Modified (0ms)
2121
-
2122
-
2123
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-11 19:59:45 +0100
2124
- Served asset /application.js - 304 Not Modified (0ms)
2125
-
2126
-
2127
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-11 19:59:45 +0100
2128
- Served asset /els_session.js - 304 Not Modified (0ms)
2129
-
2130
-
2131
- Started DELETE "/els_session/destroy" for 127.0.0.1 at 2012-10-11 19:59:47 +0100
2132
- Processing by ElsSessionController#destroy as HTML
2133
- Parameters: {"authenticity_token"=>"ItJC7XuRS15iqpdt5znjltQcgdVIwEYUvhgLmpmkA90="}
2134
- Redirected to http://localhost:3000/els_session/new
2135
43
  Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
2136
44
 
2137
45
 
2138
- Started GET "/els_session/new" for 127.0.0.1 at 2012-10-11 19:59:47 +0100
46
+ Started GET "/els_session/new" for 127.0.0.1 at 2012-10-09 18:50:37 +0100
2139
47
  Processing by ElsSessionController#new as HTML
2140
- Rendered els_session/new.html.erb within layouts/application (2.8ms)
2141
- Completed 200 OK in 976ms (Views: 11.1ms | ActiveRecord: 0.0ms)
2142
-
2143
-
2144
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-11 19:59:48 +0100
2145
- Served asset /application.css - 304 Not Modified (0ms)
2146
-
2147
-
2148
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-11 19:59:48 +0100
2149
- Served asset /application.js - 304 Not Modified (6ms)
2150
-
2151
-
2152
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-11 19:59:48 +0100
2153
- Served asset /els_session.js - 304 Not Modified (0ms)
48
+ Rendered els_session/new.html.erb within layouts/application (4.9ms)
49
+ Completed 500 Internal Server Error in 28ms
2154
50
 
2155
-
2156
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-11 19:59:48 +0100
2157
- Served asset /jquery.js - 304 Not Modified (0ms)
51
+ ActionView::Template::Error (couldn't find file 'jquery'
52
+ (in /Users/neilcuk/dev/ruby/gems/els_token/test/dummy/app/assets/javascripts/application.js:13)):
53
+ 3: <head>
54
+ 4: <title>ElsSession</title>
55
+ 5: <%= stylesheet_link_tag "application", :media => "all" %>
56
+ 6: <%= javascript_include_tag "application" %>
57
+ 7: <%= csrf_meta_tags %>
58
+ 8: </head>
59
+ 9: <body>
60
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___2865467007981793915_70182484825280'
2158
61
 
2159
62
 
2160
- Started POST "/els_session/create" for 127.0.0.1 at 2012-10-11 19:59:56 +0100
2161
- Processing by ElsSessionController#create as HTML
2162
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"ItJC7XuRS15iqpdt5znjltQcgdVIwEYUvhgLmpmkA90=", "username"=>"neilcuk", "password"=>"[FILTERED]", "override"=>"on", "commit"=>"Log in"}
2163
- faking session with id neilcuk
2164
- got token id 0.7300376522737149
2165
- Redirected to http://localhost:3000/
2166
- Completed 302 Found in 30ms (ActiveRecord: 0.0ms)
63
+ Rendered /Users/neilcuk/.rvm/gems/ruby-1.9.3-p194@gemdev/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
64
+ Rendered /Users/neilcuk/.rvm/gems/ruby-1.9.3-p194@gemdev/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
65
+ Rendered /Users/neilcuk/.rvm/gems/ruby-1.9.3-p194@gemdev/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.0ms)
2167
66
 
2168
67
 
2169
- Started GET "/" for 127.0.0.1 at 2012-10-11 19:59:56 +0100
2170
- Processing by ElsSessionController#show as HTML
2171
- Rendered els_session/show.html.erb within layouts/application (0.1ms)
2172
- Completed 200 OK in 7ms (Views: 7.1ms | ActiveRecord: 0.0ms)
68
+ Started GET "/els_session/new" for 127.0.0.1 at 2012-10-09 18:53:26 +0100
69
+ Connecting to database specified by database.yml
70
+ Processing by ElsSessionController#new as HTML
71
+ Rendered els_session/new.html.erb within layouts/application (4.5ms)
72
+ Compiled els_session.js (59ms) (pid 31910)
73
+ Compiled application.js (92ms) (pid 31910)
74
+ Completed 200 OK in 134ms (Views: 133.1ms | ActiveRecord: 0.0ms)
2173
75
 
2174
76
 
2175
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-11 19:59:56 +0100
2176
- Served asset /application.css - 304 Not Modified (0ms)
77
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-09 18:53:26 +0100
78
+ Served asset /application.css - 200 OK (2ms)
2177
79
 
2178
80
 
2179
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-11 19:59:56 +0100
2180
- Served asset /jquery.js - 304 Not Modified (0ms)
81
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-09 18:53:26 +0100
82
+ Served asset /jquery.js - 304 Not Modified (4ms)
2181
83
 
2182
84
 
2183
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-11 19:59:56 +0100
2184
- Served asset /application.js - 304 Not Modified (0ms)
85
+ Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-09 18:53:26 +0100
86
+ Served asset /els_session.js - 200 OK (1ms)
2185
87
 
2186
88
 
2187
- Started GET "/assets/els_session.js?body=1" for 127.0.0.1 at 2012-10-11 19:59:56 +0100
2188
- Served asset /els_session.js - 304 Not Modified (0ms)
89
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-09 18:53:26 +0100
90
+ Served asset /application.js - 200 OK (3ms)