eastwood 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.md +6 -0
  3. data/Rakefile +43 -0
  4. data/app/assets/javascripts/eastwood.js.coffee.erb +49 -0
  5. data/lib/eastwood/engine.rb +10 -0
  6. data/lib/eastwood/helpers.rb +30 -0
  7. data/lib/eastwood/routes.rb +28 -0
  8. data/lib/eastwood/version.rb +3 -0
  9. data/lib/eastwood.rb +14 -0
  10. data/lib/tasks/eastwood_tasks.rake +4 -0
  11. data/test/asset_test.rb +9 -0
  12. data/test/dummy/Rakefile +7 -0
  13. data/test/dummy/app/assets/javascripts/application.js +9 -0
  14. data/test/dummy/app/assets/stylesheets/application.css +7 -0
  15. data/test/dummy/app/controllers/application_controller.rb +3 -0
  16. data/test/dummy/app/controllers/resources_controller.rb +2 -0
  17. data/test/dummy/app/helpers/application_helper.rb +2 -0
  18. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  19. data/test/dummy/config/application.rb +45 -0
  20. data/test/dummy/config/boot.rb +10 -0
  21. data/test/dummy/config/database.yml +25 -0
  22. data/test/dummy/config/environment.rb +5 -0
  23. data/test/dummy/config/environments/development.rb +30 -0
  24. data/test/dummy/config/environments/production.rb +60 -0
  25. data/test/dummy/config/environments/test.rb +42 -0
  26. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  27. data/test/dummy/config/initializers/inflections.rb +10 -0
  28. data/test/dummy/config/initializers/mime_types.rb +5 -0
  29. data/test/dummy/config/initializers/secret_token.rb +7 -0
  30. data/test/dummy/config/initializers/session_store.rb +8 -0
  31. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  32. data/test/dummy/config/locales/en.yml +5 -0
  33. data/test/dummy/config/routes.rb +61 -0
  34. data/test/dummy/config.ru +4 -0
  35. data/test/dummy/db/development.sqlite3 +0 -0
  36. data/test/dummy/db/test.sqlite3 +0 -0
  37. data/test/dummy/log/development.log +391 -0
  38. data/test/dummy/log/test.log +387 -0
  39. data/test/dummy/public/404.html +26 -0
  40. data/test/dummy/public/422.html +26 -0
  41. data/test/dummy/public/500.html +26 -0
  42. data/test/dummy/public/favicon.ico +0 -0
  43. data/test/dummy/public/index.html +16 -0
  44. data/test/dummy/script/rails +6 -0
  45. data/test/dummy/tmp/cache/assets/D75/1D0/sprockets%2F097d71c6d5ef8b26bfb3058327b3b9bf +0 -0
  46. data/test/dummy/tmp/cache/assets/D7F/B10/sprockets%2F9ac097fe24e8c8229522feac6fc9337c +0 -0
  47. data/test/eastwood_test.rb +7 -0
  48. data/test/helpers_test.rb +31 -0
  49. data/test/test_helper.rb +10 -0
  50. metadata +197 -0
@@ -0,0 +1,391 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at Thu Oct 27 15:43:52 -0700 2011
4
+
5
+ ActionController::RoutingError (No route matches [GET] "/"):
6
+
7
+
8
+ Rendered /Users/jeremy.ruppel/.rvm/gems/ree-1.8.7-2010.02/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.0ms)
9
+
10
+
11
+ Started GET "/test/index" for 127.0.0.1 at Thu Oct 27 15:45:43 -0700 2011
12
+ Processing by TestController#index as HTML
13
+ Rendered test/index.html.erb within layouts/application (0.2ms)
14
+ Compiled application.css (7ms) (pid 30095)
15
+ Compiled eastwood.js (179ms) (pid 30095)
16
+ Completed 500 Internal Server Error in 220ms
17
+
18
+ ActionView::Template::Error (couldn't find file 'jquery'
19
+ (in /Users/jeremy.ruppel/Git/eastwood/test/dummy/app/assets/javascripts/application.js:7)):
20
+ 4: <title>Dummy</title>
21
+ 5: <%= stylesheet_link_tag "application" %>
22
+ 6: <%= javascript_include_tag "eastwood" %>
23
+ 7: <%= javascript_include_tag "application" %>
24
+ 8: <%= csrf_meta_tags %>
25
+ 9: </head>
26
+ 10: <body>
27
+ app/views/layouts/application.html.erb:7:in `_app_views_layouts_application_html_erb___1197085651_2176462120'
28
+
29
+ Rendered /Users/jeremy.ruppel/.rvm/gems/ree-1.8.7-2010.02/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
30
+ Rendered /Users/jeremy.ruppel/.rvm/gems/ree-1.8.7-2010.02/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
31
+ Rendered /Users/jeremy.ruppel/.rvm/gems/ree-1.8.7-2010.02/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.0ms)
32
+
33
+
34
+ Started GET "/test/index" for 127.0.0.1 at Thu Oct 27 15:47:05 -0700 2011
35
+ Processing by TestController#index as HTML
36
+ Rendered test/index.html.erb within layouts/application (1.8ms)
37
+ Compiled application.js (4ms) (pid 30195)
38
+ Compiled jquery.js (21ms) (pid 30195)
39
+ Compiled jquery_ujs.js (2ms) (pid 30195)
40
+ Completed 200 OK in 81ms (Views: 80.3ms | ActiveRecord: 0.0ms)
41
+
42
+
43
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Oct 27 15:47:05 -0700 2011
44
+ Served asset /application.css - 200 OK (0ms)
45
+
46
+
47
+ Started GET "/assets/eastwood.js?body=1" for 127.0.0.1 at Thu Oct 27 15:47:05 -0700 2011
48
+ Served asset /eastwood.js - 200 OK (0ms)
49
+
50
+
51
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Oct 27 15:47:05 -0700 2011
52
+ Served asset /jquery.js - 200 OK (3ms)
53
+
54
+
55
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Oct 27 15:47:05 -0700 2011
56
+ Served asset /application.js - 200 OK (0ms)
57
+
58
+
59
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Oct 27 15:47:05 -0700 2011
60
+ Served asset /jquery_ujs.js - 200 OK (2ms)
61
+
62
+
63
+ Started GET "/test/index" for 127.0.0.1 at Thu Oct 27 15:47:30 -0700 2011
64
+ Processing by TestController#index as HTML
65
+ Rendered test/index.html.erb within layouts/application (0.1ms)
66
+ Compiled eastwood.js (184ms) (pid 30195)
67
+ Completed 200 OK in 203ms (Views: 202.6ms | ActiveRecord: 0.0ms)
68
+
69
+
70
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Oct 27 15:47:30 -0700 2011
71
+ Served asset /application.css - 304 Not Modified (0ms)
72
+
73
+
74
+ Started GET "/assets/eastwood.js?body=1" for 127.0.0.1 at Thu Oct 27 15:47:30 -0700 2011
75
+ Served asset /eastwood.js - 200 OK (0ms)
76
+
77
+
78
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Oct 27 15:47:30 -0700 2011
79
+ Served asset /jquery.js - 304 Not Modified (0ms)
80
+
81
+
82
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Oct 27 15:47:30 -0700 2011
83
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
84
+
85
+
86
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Oct 27 15:47:30 -0700 2011
87
+ Served asset /application.js - 304 Not Modified (0ms)
88
+
89
+
90
+ Started GET "/test/index" for 127.0.0.1 at Thu Oct 27 15:47:38 -0700 2011
91
+ Processing by TestController#index as HTML
92
+ Rendered test/index.html.erb within layouts/application (0.1ms)
93
+ Compiled eastwood.js (122ms) (pid 30195)
94
+ Completed 200 OK in 140ms (Views: 139.9ms | ActiveRecord: 0.0ms)
95
+
96
+
97
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Oct 27 15:47:39 -0700 2011
98
+ Served asset /application.css - 304 Not Modified (0ms)
99
+
100
+
101
+ Started GET "/assets/eastwood.js?body=1" for 127.0.0.1 at Thu Oct 27 15:47:39 -0700 2011
102
+ Served asset /eastwood.js - 200 OK (0ms)
103
+
104
+
105
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Oct 27 15:47:39 -0700 2011
106
+ Served asset /jquery.js - 304 Not Modified (0ms)
107
+
108
+
109
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Oct 27 15:47:39 -0700 2011
110
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
111
+
112
+
113
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Oct 27 15:47:39 -0700 2011
114
+ Served asset /application.js - 304 Not Modified (0ms)
115
+
116
+
117
+ Started GET "/assets/eastwood.js" for 127.0.0.1 at Thu Oct 27 15:59:26 -0700 2011
118
+ Compiled eastwood.js (178ms) (pid 30400)
119
+ Served asset /eastwood.js - 200 OK (185ms)
120
+
121
+
122
+ Started GET "/assets/eastwood.js" for 127.0.0.1 at Thu Oct 27 16:00:22 -0700 2011
123
+ Served asset /eastwood.js - 304 Not Modified (0ms)
124
+
125
+
126
+ Started GET "/assets/eastwood.js" for 127.0.0.1 at Thu Oct 27 16:00:26 -0700 2011
127
+ Served asset /eastwood.js - 304 Not Modified (0ms)
128
+
129
+
130
+ Started GET "/assets/eastwood.js" for 127.0.0.1 at Thu Oct 27 16:00:56 -0700 2011
131
+ Compiled eastwood.js (127ms) (pid 30400)
132
+ Served asset /eastwood.js - 200 OK (135ms)
133
+
134
+
135
+ Started GET "/assets/eastwood.js" for 127.0.0.1 at Thu Oct 27 16:01:07 -0700 2011
136
+ Compiled eastwood.js (123ms) (pid 30400)
137
+ Served asset /eastwood.js - 200 OK (130ms)
138
+
139
+
140
+ Started GET "/assets/eastwood.js" for 127.0.0.1 at Thu Oct 27 16:01:56 -0700 2011
141
+ Compiled eastwood.js (127ms) (pid 30400)
142
+ Served asset /eastwood.js - 200 OK (135ms)
143
+
144
+
145
+ Started GET "/assets/eastwood.js" for 127.0.0.1 at Thu Oct 27 16:02:58 -0700 2011
146
+ Error compiling asset eastwood.js:
147
+ NameError: undefined local variable or method `env' for #<#<Class:0x103ee6d68>:0x103683478>
148
+ (in /Users/jeremy.ruppel/Git/eastwood/app/assets/javascripts/eastwood.js.coffee.erb)
149
+ Served asset /eastwood.js - 500 Internal Server Error
150
+
151
+
152
+
153
+ Started GET "/assets/eastwood.js" for 127.0.0.1 at Thu Oct 27 16:03:08 -0700 2011
154
+ Error compiling asset eastwood.js:
155
+ NameError: undefined local variable or method `env' for #<#<Class:0x103ee6d68>:0x103647608>
156
+ (in /Users/jeremy.ruppel/Git/eastwood/app/assets/javascripts/eastwood.js.coffee.erb)
157
+ Served asset /eastwood.js - 500 Internal Server Error
158
+
159
+
160
+
161
+ Started GET "/assets/eastwood.js" for 127.0.0.1 at Thu Oct 27 16:03:17 -0700 2011
162
+ Compiled eastwood.js (177ms) (pid 30432)
163
+ Served asset /eastwood.js - 200 OK (184ms)
164
+
165
+
166
+ Started GET "/assets/eastwood.js" for 127.0.0.1 at Thu Oct 27 16:10:13 -0700 2011
167
+ Compiled eastwood.js (128ms) (pid 30432)
168
+ Served asset /eastwood.js - 304 Not Modified (135ms)
169
+
170
+
171
+ Started GET "/assets/eastwood.js" for 127.0.0.1 at Thu Oct 27 16:18:46 -0700 2011
172
+ Compiled eastwood.js (137ms) (pid 30432)
173
+ Served asset /eastwood.js - 200 OK (145ms)
174
+
175
+
176
+ Started GET "/assets/eastwood.js" for 127.0.0.1 at Thu Oct 27 16:21:50 -0700 2011
177
+ Compiled eastwood.js (130ms) (pid 30432)
178
+ Served asset /eastwood.js - 200 OK (137ms)
179
+
180
+
181
+ Started GET "/assets/eastwood.js" for 127.0.0.1 at Thu Oct 27 16:22:17 -0700 2011
182
+ Compiled eastwood.js (125ms) (pid 30432)
183
+ Served asset /eastwood.js - 200 OK (133ms)
184
+
185
+
186
+ Started GET "/assets/eastwood.js" for 127.0.0.1 at Thu Oct 27 16:22:30 -0700 2011
187
+ Compiled eastwood.js (125ms) (pid 30432)
188
+ Served asset /eastwood.js - 200 OK (132ms)
189
+
190
+
191
+ Started GET "/assets/eastwood.js" for 127.0.0.1 at Thu Oct 27 16:22:44 -0700 2011
192
+ Compiled eastwood.js (127ms) (pid 30432)
193
+ Served asset /eastwood.js - 200 OK (135ms)
194
+
195
+
196
+ Started GET "/assets/eastwood.js" for 127.0.0.1 at Thu Oct 27 16:23:04 -0700 2011
197
+ Error compiling asset eastwood.js:
198
+ ExecJS::RuntimeError: SyntaxError: Reserved word "function" on line 24
199
+ (in /Users/jeremy.ruppel/Git/eastwood/app/assets/javascripts/eastwood.js.coffee.erb)
200
+ Served asset /eastwood.js - 500 Internal Server Error
201
+
202
+
203
+
204
+ Started GET "/assets/eastwood.js" for 127.0.0.1 at Thu Oct 27 16:23:24 -0700 2011
205
+ Compiled eastwood.js (132ms) (pid 30432)
206
+ Served asset /eastwood.js - 200 OK (144ms)
207
+
208
+
209
+ Started GET "/rails/info/properties" for 127.0.0.1 at Thu Oct 27 16:23:58 -0700 2011
210
+ Processing by Rails::InfoController#properties as HTML
211
+ Rendered inline template (2.1ms)
212
+ Completed 200 OK in 12ms (Views: 11.6ms | ActiveRecord: 0.0ms)
213
+
214
+
215
+ Started GET "/rails/info/properties.json" for 127.0.0.1 at Thu Oct 27 16:24:06 -0700 2011
216
+ Processing by Rails::InfoController#properties as JSON
217
+ Rendered inline template (0.3ms)
218
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
219
+
220
+
221
+ Started GET "/rails/info/properties.json" for 127.0.0.1 at Thu Oct 27 16:24:24 -0700 2011
222
+ Processing by Rails::InfoController#properties as JSON
223
+ Rendered inline template (0.3ms)
224
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
225
+
226
+
227
+ Started GET "/assets/eastwood.js" for 127.0.0.1 at Thu Oct 27 16:26:47 -0700 2011
228
+ Compiled eastwood.js (135ms) (pid 30432)
229
+ Served asset /eastwood.js - 200 OK (142ms)
230
+
231
+
232
+ Started GET "/assets/eastwood.js" for 127.0.0.1 at Thu Oct 27 16:27:34 -0700 2011
233
+ Compiled eastwood.js (135ms) (pid 30432)
234
+ Served asset /eastwood.js - 200 OK (143ms)
235
+
236
+
237
+ Started GET "/assets/eastwood.js" for 127.0.0.1 at Thu Oct 27 16:27:41 -0700 2011
238
+ Compiled eastwood.js (130ms) (pid 30432)
239
+ Served asset /eastwood.js - 200 OK (139ms)
240
+
241
+
242
+ Started GET "/assets/eastwood.js" for 127.0.0.1 at Thu Oct 27 16:27:55 -0700 2011
243
+ Compiled eastwood.js (130ms) (pid 30432)
244
+ Served asset /eastwood.js - 200 OK (137ms)
245
+
246
+
247
+ Started GET "/assets/eastwood.js" for 127.0.0.1 at Thu Oct 27 16:28:40 -0700 2011
248
+ Compiled eastwood.js (136ms) (pid 30432)
249
+ Served asset /eastwood.js - 200 OK (143ms)
250
+
251
+
252
+ Started GET "/assets/eastwood.js" for 127.0.0.1 at Thu Oct 27 16:30:16 -0700 2011
253
+ Served asset /eastwood.js - 304 Not Modified (0ms)
254
+
255
+
256
+ Started GET "/assets/eastwood.js" for 127.0.0.1 at Thu Oct 27 16:30:40 -0700 2011
257
+ Compiled eastwood.js (132ms) (pid 30432)
258
+ Served asset /eastwood.js - 200 OK (139ms)
259
+
260
+
261
+ Started GET "/assets/eastwood.js" for 127.0.0.1 at Thu Oct 27 16:31:11 -0700 2011
262
+ Compiled eastwood.js (132ms) (pid 30432)
263
+ Served asset /eastwood.js - 304 Not Modified (139ms)
264
+
265
+
266
+ Started GET "/assets/eastwood.js" for 127.0.0.1 at Thu Oct 27 16:32:23 -0700 2011
267
+ Served asset /eastwood.js - 304 Not Modified (0ms)
268
+
269
+
270
+ Started GET "/assets/eastwood.js" for 127.0.0.1 at Fri Oct 28 12:29:33 -0700 2011
271
+ Compiled eastwood.js (252ms) (pid 2990)
272
+ Served asset /eastwood.js - 200 OK (258ms)
273
+
274
+
275
+ Started GET "/assets/eastwood.js" for 127.0.0.1 at Fri Oct 28 12:29:40 -0700 2011
276
+ Served asset /eastwood.js - 304 Not Modified (0ms)
277
+
278
+
279
+ Started GET "/assets/eastwood.js" for 127.0.0.1 at Fri Oct 28 12:30:21 -0700 2011
280
+ Compiled eastwood.js (189ms) (pid 3012)
281
+ Served asset /eastwood.js - 304 Not Modified (196ms)
282
+
283
+
284
+ Started GET "/assets/eastwood.js" for 127.0.0.1 at Fri Oct 28 12:31:31 -0700 2011
285
+ Served asset /eastwood.js - 304 Not Modified (2ms)
286
+
287
+
288
+ Started GET "/assets/eastwood.js" for 127.0.0.1 at Fri Oct 28 12:35:15 -0700 2011
289
+ Compiled eastwood.js (195ms) (pid 3056)
290
+ Served asset /eastwood.js - 200 OK (204ms)
291
+
292
+
293
+ Started GET "/assets/eastwood.js" for 127.0.0.1 at Fri Oct 28 12:38:28 -0700 2011
294
+ Served asset /eastwood.js - 304 Not Modified (2ms)
295
+
296
+
297
+ Started GET "/resources" for 127.0.0.1 at Fri Oct 28 12:38:42 -0700 2011
298
+
299
+ ActionController::RoutingError (undefined method `client_method' for ApplicationHelper:Module):
300
+ app/helpers/application_helper.rb:6
301
+ app/controllers/application_controller.rb:1
302
+ app/controllers/resources_controller.rb:1
303
+
304
+ Rendered /Users/jeremy.ruppel/.rvm/gems/ree-1.8.7-2010.02/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.5ms)
305
+
306
+
307
+ Started GET "/resources" for 127.0.0.1 at Fri Oct 28 12:40:25 -0700 2011
308
+
309
+ ActionController::RoutingError (undefined method `client_method' for ApplicationHelper:Module):
310
+ app/helpers/application_helper.rb:7
311
+ app/controllers/application_controller.rb:1
312
+ app/controllers/resources_controller.rb:1
313
+
314
+ Rendered /Users/jeremy.ruppel/.rvm/gems/ree-1.8.7-2010.02/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.1ms)
315
+
316
+
317
+ Started GET "/resources" for 127.0.0.1 at Fri Oct 28 12:41:11 -0700 2011
318
+
319
+ AbstractController::ActionNotFound (The action 'index' could not be found for ResourcesController):
320
+
321
+
322
+ Rendered /Users/jeremy.ruppel/.rvm/gems/ree-1.8.7-2010.02/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (1.9ms)
323
+
324
+
325
+ Started GET "/minneapolis-mn-55403/men?sort=title" for 127.0.0.1 at Fri Oct 28 14:35:16 -0700 2011
326
+
327
+ ActionController::RoutingError (No route matches [GET] "/minneapolis-mn-55403/men"):
328
+
329
+
330
+ Rendered /Users/jeremy.ruppel/.rvm/gems/ree-1.8.7-2010.02/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
331
+
332
+
333
+ Started GET "/assets/eastwood.js" for 127.0.0.1 at Fri Oct 28 14:56:52 -0700 2011
334
+ Served asset /eastwood.js - 200 OK (2ms)
335
+
336
+
337
+ Started GET "/resources" for 127.0.0.1 at Fri Oct 28 14:57:58 -0700 2011
338
+
339
+ ActionController::RoutingError (undefined method `some_helper' for ApplicationHelper:Module):
340
+ app/helpers/application_helper.rb:7
341
+ app/controllers/application_controller.rb:1
342
+ app/controllers/resources_controller.rb:1
343
+
344
+ Rendered /Users/jeremy.ruppel/.rvm/gems/ree-1.8.7-2010.02/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.2ms)
345
+
346
+
347
+ Started GET "/resources/new" for 127.0.0.1 at Fri Oct 28 14:58:03 -0700 2011
348
+
349
+ ActionController::RoutingError (undefined method `some_helper' for ApplicationHelper:Module):
350
+ app/helpers/application_helper.rb:7
351
+ app/controllers/application_controller.rb:1
352
+ app/controllers/resources_controller.rb:1
353
+
354
+ Rendered /Users/jeremy.ruppel/.rvm/gems/ree-1.8.7-2010.02/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
355
+
356
+
357
+ Started GET "/assets/eastwood.js" for 127.0.0.1 at Fri Oct 28 15:04:05 -0700 2011
358
+ Served asset /eastwood.js - 304 Not Modified (0ms)
359
+
360
+
361
+ Started GET "/assets/eastwood.js" for 127.0.0.1 at Fri Oct 28 15:04:09 -0700 2011
362
+ Served asset /eastwood.js - 304 Not Modified (0ms)
363
+
364
+
365
+ Started GET "/minneapolis-mn-55403/see-more?search-field=bounty&x=0&y=0" for 127.0.0.1 at Fri Oct 28 16:05:31 -0700 2011
366
+
367
+ ActionController::RoutingError (No route matches [GET] "/minneapolis-mn-55403/see-more"):
368
+
369
+
370
+ Rendered /Users/jeremy.ruppel/.rvm/gems/ree-1.8.7-2010.02/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
371
+
372
+
373
+ Started GET "/assets/eastwood.js" for 127.0.0.1 at Mon Oct 31 16:03:12 -0700 2011
374
+ Compiled eastwood.js (180ms) (pid 2865)
375
+ Served asset /eastwood.js - 200 OK (186ms)
376
+
377
+
378
+ Started GET "/assets/eastwood.js" for 127.0.0.1 at Mon Oct 31 16:03:24 -0700 2011
379
+ Served asset /eastwood.js - 304 Not Modified (0ms)
380
+
381
+
382
+ Started GET "/assets/eastwood.js" for 10.1.102.32 at Mon Oct 31 16:10:44 -0700 2011
383
+ Served asset /eastwood.js - 200 OK (0ms)
384
+
385
+
386
+ Started GET "/assets/eastwood.js" for 10.1.103.132 at Mon Oct 31 16:13:20 -0700 2011
387
+ Served asset /eastwood.js - 200 OK (0ms)
388
+
389
+
390
+ Started GET "/assets/eastwood.js" for 10.1.103.132 at Mon Oct 31 16:18:53 -0700 2011
391
+ Served asset /eastwood.js - 200 OK (0ms)