dismissible_helpers 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (91) hide show
  1. data/README.md +146 -0
  2. data/Rakefile +10 -0
  3. data/app/assets/javascripts/dismissible_helpers.coffee +26 -0
  4. data/app/controllers/dismissed_helpers_controller.rb +3 -0
  5. data/app/helpers/dismissible_helpers_helper.rb +3 -0
  6. data/lib/dismissible_helpers/controllers/dismissed_helpers.rb +18 -0
  7. data/lib/dismissible_helpers/controllers.rb +4 -0
  8. data/lib/dismissible_helpers/engine.rb +7 -0
  9. data/lib/dismissible_helpers/helpers/dismissible_helpers.rb +26 -0
  10. data/lib/dismissible_helpers/helpers.rb +4 -0
  11. data/lib/dismissible_helpers/routes.rb +5 -0
  12. data/lib/dismissible_helpers/version.rb +3 -0
  13. data/lib/dismissible_helpers.rb +11 -0
  14. data/lib/tasks/dismissible_helpers_tasks.rake +4 -0
  15. data/spec/config/active_record.rb +9 -0
  16. data/spec/config/capybara.rb +7 -0
  17. data/spec/config/cookie_jar.rb +9 -0
  18. data/spec/config/database_cleaner.rb +20 -0
  19. data/spec/config/poltergeist.rb +7 -0
  20. data/spec/config/rspec.rb +3 -0
  21. data/spec/dummy/README.rdoc +261 -0
  22. data/spec/dummy/Rakefile +7 -0
  23. data/spec/dummy/app/assets/javascripts/application.coffee +6 -0
  24. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  25. data/spec/dummy/app/controllers/application_controller.rb +4 -0
  26. data/spec/dummy/app/controllers/landing_controller.rb +2 -0
  27. data/spec/dummy/app/controllers/sessions_controller.rb +9 -0
  28. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  29. data/spec/dummy/app/models/user.rb +7 -0
  30. data/spec/dummy/app/views/landing/show.html.erb +1 -0
  31. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  32. data/spec/dummy/config/application.rb +59 -0
  33. data/spec/dummy/config/boot.rb +10 -0
  34. data/spec/dummy/config/database.yml +11 -0
  35. data/spec/dummy/config/database.yml.example +11 -0
  36. data/spec/dummy/config/environment.rb +5 -0
  37. data/spec/dummy/config/environments/development.rb +37 -0
  38. data/spec/dummy/config/environments/production.rb +67 -0
  39. data/spec/dummy/config/environments/test.rb +37 -0
  40. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  41. data/spec/dummy/config/initializers/inflections.rb +15 -0
  42. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  43. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  44. data/spec/dummy/config/initializers/session_store.rb +8 -0
  45. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  46. data/spec/dummy/config/locales/en.yml +5 -0
  47. data/spec/dummy/config/routes.rb +6 -0
  48. data/spec/dummy/config.ru +4 -0
  49. data/spec/dummy/db/development.sqlite3 +0 -0
  50. data/spec/dummy/db/migrate/20121231010309_create_easy_auth_identities.easy_auth.rb +19 -0
  51. data/spec/dummy/db/migrate/20121231010454_create_users.rb +11 -0
  52. data/spec/dummy/db/schema.rb +40 -0
  53. data/spec/dummy/db/test.sqlite3 +0 -0
  54. data/spec/dummy/log/development.log +1489 -0
  55. data/spec/dummy/log/test.log +677 -0
  56. data/spec/dummy/public/404.html +26 -0
  57. data/spec/dummy/public/422.html +26 -0
  58. data/spec/dummy/public/500.html +25 -0
  59. data/spec/dummy/public/favicon.ico +0 -0
  60. data/spec/dummy/script/rails +6 -0
  61. data/spec/dummy/tmp/cache/assets/C4F/B20/sprockets%2F24f6108078517240a0f0797a7e5cf625 +0 -0
  62. data/spec/dummy/tmp/cache/assets/C50/D30/sprockets%2F1474665e253024aef8d1855624146e2e +0 -0
  63. data/spec/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  64. data/spec/dummy/tmp/cache/assets/CE3/590/sprockets%2F60f1e97d7008b3ed41f72855a4228bb9 +0 -0
  65. data/spec/dummy/tmp/cache/assets/D0B/350/sprockets%2F0c6a94a65b00a6e80488b89705ee0c5a +0 -0
  66. data/spec/dummy/tmp/cache/assets/D0C/F20/sprockets%2F3869efaa2d2da3e0349f0106b855b782 +0 -0
  67. data/spec/dummy/tmp/cache/assets/D23/B10/sprockets%2Fc2a831ed79df487d6485a5c9c52766c2 +0 -0
  68. data/spec/dummy/tmp/cache/assets/D27/020/sprockets%2F8b458f3566dbf9370d659bd554ba8c94 +0 -0
  69. data/spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  70. data/spec/dummy/tmp/cache/assets/D35/310/sprockets%2F4e9b874486a644b66eeef9e71945e48e +0 -0
  71. data/spec/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  72. data/spec/dummy/tmp/cache/assets/D50/A10/sprockets%2F3a2c2a214dd3ba1a0e4b7f52a96522f3 +0 -0
  73. data/spec/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  74. data/spec/dummy/tmp/cache/assets/D78/420/sprockets%2F854d9dd84c8d20bac9d9f741250e9b3a +0 -0
  75. data/spec/dummy/tmp/cache/assets/DAA/020/sprockets%2F7516ea1c5cf4d7b80fb9fd65153eff19 +0 -0
  76. data/spec/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  77. data/spec/dummy/tmp/cache/assets/DDF/AE0/sprockets%2F1fe879e6aff943d89f3f0cca571d2bc4 +0 -0
  78. data/spec/dummy/tmp/cache/assets/DE9/260/sprockets%2Fadd025ab0eb13a6d4180af43d5df39df +0 -0
  79. data/spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  80. data/spec/dummy/tmp/cache/assets/E72/C10/sprockets%2Fcee94ff2e026b6ecc66c7fcef96c1fc8 +0 -0
  81. data/spec/dummy/tmp/capybara/capybara-201212302021045993202744.html +29 -0
  82. data/spec/dummy/tmp/capybara/capybara-201212302021348367660995.html +29 -0
  83. data/spec/dummy/tmp/capybara/capybara-201212302023384130211415.html +29 -0
  84. data/spec/dummy/tmp/capybara/capybara-201212302103058314654716.html +29 -0
  85. data/spec/dummy/tmp/pids/server.pid +1 -0
  86. data/spec/requests/authenticated_spec.rb +15 -0
  87. data/spec/requests/step_helpers/authentication.rb +7 -0
  88. data/spec/requests/unauthenticated_spec.rb +13 -0
  89. data/spec/spec_helper.rb +31 -0
  90. data/spec/support/factories.rb +7 -0
  91. metadata +393 -0
@@ -0,0 +1,1489 @@
1
+ Connecting to database specified by database.yml
2
+
3
+
4
+ Started GET "/" for 127.0.0.1 at 2012-12-24 16:11:01 -0500
5
+ Connecting to database specified by database.yml
6
+
7
+ ActionController::RoutingError (No route matches [GET] "/"):
8
+ actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
9
+ actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
10
+ railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
11
+ railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
12
+ activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
13
+ railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
14
+ actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
15
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
16
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
17
+ activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
18
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
19
+ actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
20
+ railties (3.2.9) lib/rails/engine.rb:479:in `call'
21
+ railties (3.2.9) lib/rails/application.rb:223:in `call'
22
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
23
+ railties (3.2.9) lib/rails/rack/log_tailer.rb:17:in `call'
24
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
25
+ /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
26
+ /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
27
+ /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
28
+
29
+
30
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.4ms)
31
+
32
+
33
+ Started GET "/" for 127.0.0.1 at 2012-12-24 16:13:18 -0500
34
+ Processing by LandingController#show as HTML
35
+ Rendered landing/show.html.erb within layouts/application (0.2ms)
36
+ Compiled application.css (0ms) (pid 69892)
37
+ Compiled jquery.js (1ms) (pid 69892)
38
+ Compiled jquery_ujs.js (0ms) (pid 69892)
39
+ Compiled application.js (37ms) (pid 69892)
40
+ Completed 200 OK in 81ms (Views: 80.9ms | ActiveRecord: 0.0ms)
41
+
42
+
43
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-24 16:13:18 -0500
44
+ Served asset /application.css - 200 OK (5ms)
45
+
46
+
47
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-24 16:13:18 -0500
48
+ Served asset /jquery.js - 200 OK (2ms)
49
+
50
+
51
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-24 16:13:18 -0500
52
+ Served asset /jquery_ujs.js - 200 OK (1ms)
53
+
54
+
55
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-24 16:13:18 -0500
56
+ Served asset /application.js - 200 OK (3ms)
57
+
58
+
59
+ Started GET "/" for 127.0.0.1 at 2012-12-24 16:13:59 -0500
60
+ Processing by LandingController#show as HTML
61
+ Rendered landing/show.html.erb within layouts/application (6.4ms)
62
+ Completed 500 Internal Server Error in 8ms
63
+
64
+ ActionView::Template::Error (undefined method `render_dismissible_helper' for #<#<Class:0x007f98e69d9118>:0x007f98e427ab58>):
65
+ 1: <h1>Hello world</h1>
66
+ 2:
67
+ 3: <%= render_dismissible_helper 'testing' %>
68
+ app/views/landing/show.html.erb:3:in `_app_views_landing_show_html_erb__2762833110863630327_70147329658180'
69
+
70
+
71
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
72
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
73
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.9ms)
74
+
75
+
76
+ Started GET "/" for 127.0.0.1 at 2012-12-24 16:15:15 -0500
77
+ Processing by LandingController#show as HTML
78
+
79
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
80
+
81
+ Completed 500 Internal Server Error in 1ms
82
+
83
+ ActionView::MissingTemplate (Missing template landing/html, application/html with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
84
+ * "/Users/dan/Projects/dockyard/dismissible_helpers/spec/dummy/app/views"
85
+ ):
86
+ app/controllers/landing_controller.rb:5:in `show'
87
+
88
+
89
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.3ms)
90
+
91
+
92
+ Started GET "/" for 127.0.0.1 at 2012-12-24 16:15:23 -0500
93
+ Processing by LandingController#show as HTML
94
+
95
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
96
+
97
+ Rendered landing/show.html.erb within layouts/application (3.4ms)
98
+ Completed 500 Internal Server Error in 5ms
99
+
100
+ ActionView::Template::Error (undefined method `render_dismissible_helper' for #<#<Class:0x007f98e6f66b80>:0x007f98e6916258>):
101
+ 1: <h1>Hello world</h1>
102
+ 2:
103
+ 3: <%= render_dismissible_helper 'testing' %>
104
+ app/views/landing/show.html.erb:3:in `_app_views_landing_show_html_erb__2762833110863630327_70147329658180'
105
+ app/controllers/landing_controller.rb:5:in `show'
106
+
107
+
108
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
109
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
110
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.8ms)
111
+
112
+
113
+ Started GET "/" for 127.0.0.1 at 2012-12-24 16:16:43 -0500
114
+ Connecting to database specified by database.yml
115
+ Processing by LandingController#show as HTML
116
+ Rendered landing/show.html.erb within layouts/application (143.5ms)
117
+ Completed 500 Internal Server Error in 97036764ms
118
+
119
+ ActionView::Template::Error (undefined method `render_dismissible_helper' for #<#<Class:0x007fb866d207a0>:0x007fb869ad77c0>):
120
+ 1: <h1>Hello world</h1>
121
+ 2:
122
+ 3: <%= render_dismissible_helper 'testing' %>
123
+ app/views/landing/show.html.erb:3:in `_app_views_landing_show_html_erb__4509474216156411235_70215019936480'
124
+ app/controllers/landing_controller.rb:5:in `show'
125
+
126
+
127
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.2ms)
128
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.4ms)
129
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (16.7ms)
130
+
131
+
132
+ Started GET "/" for 127.0.0.1 at 2012-12-25 19:14:30 -0500
133
+ Connecting to database specified by database.yml
134
+ Processing by LandingController#show as HTML
135
+ Rendered landing/show.html.erb within layouts/application (8.5ms)
136
+ Completed 500 Internal Server Error in 838ms
137
+
138
+ ActionView::Template::Error (undefined local variable or method `current_account' for #<#<Class:0x007fda7a96d1b8>:0x007fda7b42dfa8>):
139
+ 1: <h1>Hello world</h1>
140
+ 2:
141
+ 3: <%= render_dismissible_helper 'testing' %>
142
+ app/views/landing/show.html.erb:3:in `_app_views_landing_show_html_erb___1536053763369105839_70288209688220'
143
+ app/controllers/landing_controller.rb:5:in `show'
144
+
145
+
146
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
147
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
148
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.0ms)
149
+
150
+
151
+ Started GET "/" for 127.0.0.1 at 2012-12-25 19:15:37 -0500
152
+ Processing by LandingController#show as HTML
153
+ Rendered landing/show.html.erb within layouts/application (5.1ms)
154
+ Completed 500 Internal Server Error in 6157ms
155
+
156
+ ActionView::Template::Error (undefined local variable or method `current_account' for #<#<Class:0x007fda7a96d1b8>:0x007fda80803f10>):
157
+ 1: <h1>Hello world</h1>
158
+ 2:
159
+ 3: <%= render_dismissible_helper 'testing' %>
160
+ app/views/landing/show.html.erb:3:in `_app_views_landing_show_html_erb___1536053763369105839_70288209688220'
161
+ app/controllers/landing_controller.rb:5:in `show'
162
+
163
+
164
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
165
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
166
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.9ms)
167
+
168
+
169
+ Started GET "/" for 127.0.0.1 at 2012-12-25 19:16:10 -0500
170
+ Connecting to database specified by database.yml
171
+ Processing by LandingController#show as HTML
172
+ Rendered landing/show.html.erb within layouts/application (6.4ms)
173
+ Completed 200 OK in 53ms (Views: 52.6ms | ActiveRecord: 0.0ms)
174
+
175
+
176
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-25 19:16:10 -0500
177
+ Served asset /application.css - 304 Not Modified (1ms)
178
+
179
+
180
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-25 19:16:10 -0500
181
+ Served asset /jquery.js - 304 Not Modified (3ms)
182
+
183
+
184
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-25 19:16:10 -0500
185
+ Served asset /jquery_ujs.js - 304 Not Modified (20ms)
186
+
187
+
188
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-25 19:16:10 -0500
189
+ Served asset /application.js - 304 Not Modified (3ms)
190
+
191
+
192
+ Started GET "/assets/dismissible_helpers.js" for 127.0.0.1 at 2012-12-25 20:07:11 -0500
193
+ Connecting to database specified by database.yml
194
+ Error compiling asset dismissible_helpers.js:
195
+ LoadError: cannot load such file -- coffee_script
196
+ (in /Users/dan/Projects/dockyard/dismissible_helpers/app/assets/javascripts/dismissible_helpers.coffee)
197
+ Served asset /dismissible_helpers.js - 500 Internal Server Error
198
+
199
+
200
+
201
+
202
+ Started GET "/assets/dismissible_helpers.js" for 127.0.0.1 at 2012-12-25 20:08:41 -0500
203
+ Connecting to database specified by database.yml
204
+ Compiled dismissible_helpers.js (77ms) (pid 75845)
205
+ Served asset /dismissible_helpers.js - 200 OK (104ms)
206
+
207
+
208
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-25 20:09:19 -0500
209
+ Compiled application.js (3ms) (pid 75845)
210
+ Served asset /application.js - 200 OK (43ms)
211
+
212
+
213
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-25 20:10:25 -0500
214
+ Compiled application.js (2ms) (pid 75845)
215
+ Served asset /application.js - 200 OK (13ms)
216
+
217
+
218
+ Started GET "/" for 127.0.0.1 at 2012-12-25 20:10:36 -0500
219
+ Processing by LandingController#show as HTML
220
+ Rendered landing/show.html.erb within layouts/application (6.1ms)
221
+ Completed 200 OK in 20ms (Views: 19.4ms | ActiveRecord: 0.0ms)
222
+
223
+
224
+ Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2012-12-25 20:10:36 -0500
225
+ Served asset /dismissible_helpers.js - 200 OK (1ms)
226
+
227
+
228
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-25 20:10:36 -0500
229
+ Served asset /application.css - 304 Not Modified (3ms)
230
+
231
+
232
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-25 20:10:36 -0500
233
+ Served asset /jquery.js - 304 Not Modified (1ms)
234
+
235
+
236
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-25 20:10:36 -0500
237
+ Served asset /application.js - 200 OK (3ms)
238
+
239
+
240
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-25 20:10:36 -0500
241
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
242
+
243
+
244
+ Started GET "/" for 127.0.0.1 at 2012-12-25 20:10:37 -0500
245
+ Processing by LandingController#show as HTML
246
+ Rendered landing/show.html.erb within layouts/application (0.3ms)
247
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
248
+
249
+
250
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-25 20:10:37 -0500
251
+ Served asset /application.css - 304 Not Modified (0ms)
252
+
253
+
254
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-25 20:10:37 -0500
255
+ Served asset /jquery.js - 304 Not Modified (0ms)
256
+
257
+
258
+ Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2012-12-25 20:10:37 -0500
259
+ Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
260
+
261
+
262
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-25 20:10:37 -0500
263
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
264
+
265
+
266
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-25 20:10:37 -0500
267
+ Served asset /application.js - 304 Not Modified (0ms)
268
+
269
+
270
+ Started GET "/" for 127.0.0.1 at 2012-12-25 20:11:41 -0500
271
+ Processing by LandingController#show as HTML
272
+ Rendered landing/show.html.erb within layouts/application (0.2ms)
273
+ Compiled application.js (59ms) (pid 75845)
274
+ Completed 200 OK in 105ms (Views: 105.3ms | ActiveRecord: 0.0ms)
275
+
276
+
277
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-25 20:11:41 -0500
278
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
279
+
280
+
281
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-25 20:11:41 -0500
282
+ Served asset /application.css - 304 Not Modified (0ms)
283
+
284
+
285
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-25 20:11:41 -0500
286
+ Served asset /jquery.js - 304 Not Modified (0ms)
287
+
288
+
289
+ Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2012-12-25 20:11:41 -0500
290
+ Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
291
+
292
+
293
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-25 20:11:41 -0500
294
+ Served asset /application.js - 200 OK (5ms)
295
+
296
+
297
+ Started POST "/dismissed_helpers/new" for 127.0.0.1 at 2012-12-25 20:11:46 -0500
298
+
299
+ ActionController::RoutingError (No route matches [POST] "/dismissed_helpers/new"):
300
+ actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
301
+ actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
302
+ railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
303
+ railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
304
+ activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
305
+ railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
306
+ actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
307
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
308
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
309
+ activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
310
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
311
+ actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
312
+ railties (3.2.9) lib/rails/engine.rb:479:in `call'
313
+ railties (3.2.9) lib/rails/application.rb:223:in `call'
314
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
315
+ railties (3.2.9) lib/rails/rack/log_tailer.rb:17:in `call'
316
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
317
+ /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
318
+ /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
319
+ /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
320
+
321
+
322
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
323
+
324
+
325
+ Started GET "/" for 127.0.0.1 at 2012-12-25 20:12:43 -0500
326
+ Connecting to database specified by database.yml
327
+ Processing by LandingController#show as HTML
328
+ Rendered landing/show.html.erb within layouts/application (4.8ms)
329
+ Compiled dismissible_helpers.js (63ms) (pid 76048)
330
+ Compiled application.js (59ms) (pid 76048)
331
+ Completed 200 OK in 200ms (Views: 199.5ms | ActiveRecord: 0.0ms)
332
+
333
+
334
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-25 20:12:43 -0500
335
+ Served asset /jquery.js - 304 Not Modified (4ms)
336
+
337
+
338
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-25 20:12:43 -0500
339
+ Served asset /application.css - 304 Not Modified (1ms)
340
+
341
+
342
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-25 20:12:43 -0500
343
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
344
+
345
+
346
+ Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2012-12-25 20:12:43 -0500
347
+ Served asset /dismissible_helpers.js - 200 OK (1ms)
348
+
349
+
350
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-25 20:12:43 -0500
351
+ Served asset /application.js - 304 Not Modified (4ms)
352
+
353
+
354
+ Started POST "/dismissed_helpers" for 127.0.0.1 at 2012-12-25 20:12:45 -0500
355
+
356
+ ActionController::RoutingError (No route matches [POST] "/dismissed_helpers"):
357
+ actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
358
+ actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
359
+ railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
360
+ railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
361
+ activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
362
+ railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
363
+ actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
364
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
365
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
366
+ activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
367
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
368
+ actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
369
+ railties (3.2.9) lib/rails/engine.rb:479:in `call'
370
+ railties (3.2.9) lib/rails/application.rb:223:in `call'
371
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
372
+ railties (3.2.9) lib/rails/rack/log_tailer.rb:17:in `call'
373
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
374
+ /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
375
+ /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
376
+ /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
377
+
378
+
379
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
380
+
381
+
382
+ Started POST "/dismissed_helpers" for 127.0.0.1 at 2012-12-25 20:12:59 -0500
383
+
384
+ ActionController::RoutingError (No route matches [POST] "/dismissed_helpers"):
385
+ actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
386
+ actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
387
+ railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
388
+ railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
389
+ activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
390
+ railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
391
+ actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
392
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
393
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
394
+ activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
395
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
396
+ actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
397
+ railties (3.2.9) lib/rails/engine.rb:479:in `call'
398
+ railties (3.2.9) lib/rails/application.rb:223:in `call'
399
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
400
+ railties (3.2.9) lib/rails/rack/log_tailer.rb:17:in `call'
401
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
402
+ /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
403
+ /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
404
+ /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
405
+
406
+
407
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
408
+
409
+
410
+ Started GET "/routes/ifno" for 127.0.0.1 at 2012-12-25 20:13:29 -0500
411
+
412
+ ActionController::RoutingError (No route matches [GET] "/routes/ifno"):
413
+ actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
414
+ actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
415
+ railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
416
+ railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
417
+ activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
418
+ railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
419
+ actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
420
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
421
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
422
+ activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
423
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
424
+ actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
425
+ railties (3.2.9) lib/rails/engine.rb:479:in `call'
426
+ railties (3.2.9) lib/rails/application.rb:223:in `call'
427
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
428
+ railties (3.2.9) lib/rails/rack/log_tailer.rb:17:in `call'
429
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
430
+ /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
431
+ /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
432
+ /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
433
+
434
+
435
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
436
+
437
+
438
+ Started GET "/routes/info" for 127.0.0.1 at 2012-12-25 20:13:32 -0500
439
+
440
+ ActionController::RoutingError (No route matches [GET] "/routes/info"):
441
+ actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
442
+ actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
443
+ railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
444
+ railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
445
+ activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
446
+ railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
447
+ actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
448
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
449
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
450
+ activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
451
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
452
+ actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
453
+ railties (3.2.9) lib/rails/engine.rb:479:in `call'
454
+ railties (3.2.9) lib/rails/application.rb:223:in `call'
455
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
456
+ railties (3.2.9) lib/rails/rack/log_tailer.rb:17:in `call'
457
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
458
+ /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
459
+ /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
460
+ /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
461
+
462
+
463
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
464
+
465
+
466
+ Started GET "/routes" for 127.0.0.1 at 2012-12-25 20:13:35 -0500
467
+
468
+ ActionController::RoutingError (No route matches [GET] "/routes"):
469
+ actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
470
+ actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
471
+ railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
472
+ railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
473
+ activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
474
+ railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
475
+ actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
476
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
477
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
478
+ activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
479
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
480
+ actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
481
+ railties (3.2.9) lib/rails/engine.rb:479:in `call'
482
+ railties (3.2.9) lib/rails/application.rb:223:in `call'
483
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
484
+ railties (3.2.9) lib/rails/rack/log_tailer.rb:17:in `call'
485
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
486
+ /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
487
+ /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
488
+ /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
489
+
490
+
491
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
492
+
493
+
494
+ Started GET "/" for 127.0.0.1 at 2012-12-25 20:14:36 -0500
495
+ Connecting to database specified by database.yml
496
+ Processing by LandingController#show as HTML
497
+ Rendered landing/show.html.erb within layouts/application (5.1ms)
498
+ Completed 200 OK in 47ms (Views: 46.5ms | ActiveRecord: 0.0ms)
499
+
500
+
501
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-25 20:14:37 -0500
502
+ Served asset /jquery.js - 304 Not Modified (4ms)
503
+
504
+
505
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-25 20:14:37 -0500
506
+ Served asset /application.css - 304 Not Modified (1ms)
507
+
508
+
509
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-25 20:14:37 -0500
510
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
511
+
512
+
513
+ Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2012-12-25 20:14:37 -0500
514
+ Served asset /dismissible_helpers.js - 304 Not Modified (2ms)
515
+
516
+
517
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-25 20:14:37 -0500
518
+ Served asset /application.js - 304 Not Modified (5ms)
519
+
520
+
521
+ Started POST "/dismissed_helpers" for 127.0.0.1 at 2012-12-25 20:14:38 -0500
522
+
523
+ ActionController::RoutingError (uninitialized constant DismissibleHelpers::Controllers::DismissibleHelpers):
524
+ /Users/dan/Projects/dockyard/dismissible_helpers/app/controllers/dismissed_helpers_controller.rb:2:in `<class:DismissedHelpersController>'
525
+ /Users/dan/Projects/dockyard/dismissible_helpers/app/controllers/dismissed_helpers_controller.rb:1:in `<top (required)>'
526
+ activesupport (3.2.9) lib/active_support/inflector/methods.rb:230:in `block in constantize'
527
+ activesupport (3.2.9) lib/active_support/inflector/methods.rb:229:in `each'
528
+ activesupport (3.2.9) lib/active_support/inflector/methods.rb:229:in `constantize'
529
+ actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
530
+ actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:54:in `controller'
531
+ actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:32:in `call'
532
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
533
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
534
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
535
+ actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
536
+ actionpack (3.2.9) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
537
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
538
+ rack (1.4.1) lib/rack/conditionalget.rb:35:in `call'
539
+ actionpack (3.2.9) lib/action_dispatch/middleware/head.rb:14:in `call'
540
+ actionpack (3.2.9) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
541
+ actionpack (3.2.9) lib/action_dispatch/middleware/flash.rb:242:in `call'
542
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
543
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
544
+ actionpack (3.2.9) lib/action_dispatch/middleware/cookies.rb:341:in `call'
545
+ activerecord (3.2.9) lib/active_record/query_cache.rb:64:in `call'
546
+ activerecord (3.2.9) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
547
+ actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
548
+ activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `_run__4296332693651812153__call__4148882404360524289__callbacks'
549
+ activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
550
+ activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
551
+ activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
552
+ actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
553
+ actionpack (3.2.9) lib/action_dispatch/middleware/reloader.rb:65:in `call'
554
+ actionpack (3.2.9) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
555
+ actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
556
+ actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
557
+ railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
558
+ railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
559
+ activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
560
+ railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
561
+ actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
562
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
563
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
564
+ activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
565
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
566
+ actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
567
+ railties (3.2.9) lib/rails/engine.rb:479:in `call'
568
+ railties (3.2.9) lib/rails/application.rb:223:in `call'
569
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
570
+ railties (3.2.9) lib/rails/rack/log_tailer.rb:17:in `call'
571
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
572
+ /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
573
+ /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
574
+ /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
575
+
576
+
577
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
578
+
579
+
580
+ Started GET "/" for 127.0.0.1 at 2012-12-25 20:15:22 -0500
581
+ Connecting to database specified by database.yml
582
+ Processing by LandingController#show as HTML
583
+ Rendered landing/show.html.erb within layouts/application (4.8ms)
584
+ Completed 200 OK in 39ms (Views: 38.4ms | ActiveRecord: 0.0ms)
585
+
586
+
587
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-25 20:15:22 -0500
588
+ Served asset /application.css - 304 Not Modified (5ms)
589
+
590
+
591
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-25 20:15:22 -0500
592
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
593
+
594
+
595
+ Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2012-12-25 20:15:22 -0500
596
+ Served asset /dismissible_helpers.js - 304 Not Modified (1ms)
597
+
598
+
599
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-25 20:15:22 -0500
600
+ Served asset /jquery.js - 304 Not Modified (1ms)
601
+
602
+
603
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-25 20:15:22 -0500
604
+ Served asset /application.js - 304 Not Modified (6ms)
605
+
606
+
607
+ Started POST "/dismissed_helpers" for 127.0.0.1 at 2012-12-25 20:15:24 -0500
608
+ Processing by DismissedHelpersController#create as JSON
609
+ Parameters: {"helper"=>"testing"}
610
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
611
+
612
+
613
+ Started GET "/" for 127.0.0.1 at 2012-12-25 20:15:57 -0500
614
+ Processing by LandingController#show as HTML
615
+ Rendered landing/show.html.erb within layouts/application (0.2ms)
616
+ Compiled dismissible_helpers.js (66ms) (pid 76340)
617
+ Compiled application.js (58ms) (pid 76340)
618
+ Completed 200 OK in 172ms (Views: 172.0ms | ActiveRecord: 0.0ms)
619
+
620
+
621
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-25 20:15:57 -0500
622
+ Served asset /application.css - 304 Not Modified (0ms)
623
+
624
+
625
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-25 20:15:57 -0500
626
+ Served asset /jquery.js - 304 Not Modified (0ms)
627
+
628
+
629
+ Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2012-12-25 20:15:57 -0500
630
+ Served asset /dismissible_helpers.js - 200 OK (1ms)
631
+
632
+
633
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-25 20:15:57 -0500
634
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
635
+
636
+
637
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-25 20:15:57 -0500
638
+ Served asset /application.js - 304 Not Modified (6ms)
639
+
640
+
641
+ Started GET "/" for 127.0.0.1 at 2012-12-25 20:15:59 -0500
642
+ Processing by LandingController#show as HTML
643
+ Rendered landing/show.html.erb within layouts/application (0.3ms)
644
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
645
+
646
+
647
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-25 20:15:59 -0500
648
+ Served asset /application.css - 304 Not Modified (0ms)
649
+
650
+
651
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-25 20:15:59 -0500
652
+ Served asset /jquery.js - 304 Not Modified (0ms)
653
+
654
+
655
+ Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2012-12-25 20:15:59 -0500
656
+ Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
657
+
658
+
659
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-25 20:15:59 -0500
660
+ Served asset /application.js - 304 Not Modified (0ms)
661
+
662
+
663
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-25 20:15:59 -0500
664
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
665
+
666
+
667
+ Started GET "/" for 127.0.0.1 at 2012-12-25 20:16:16 -0500
668
+ Processing by LandingController#show as HTML
669
+ Rendered landing/show.html.erb within layouts/application (0.5ms)
670
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
671
+
672
+
673
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-25 20:16:16 -0500
674
+ Served asset /application.css - 304 Not Modified (0ms)
675
+
676
+
677
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-25 20:16:16 -0500
678
+ Served asset /application.js - 304 Not Modified (0ms)
679
+
680
+
681
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-25 20:16:16 -0500
682
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
683
+
684
+
685
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-25 20:16:16 -0500
686
+ Served asset /jquery.js - 304 Not Modified (0ms)
687
+
688
+
689
+ Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2012-12-25 20:16:16 -0500
690
+ Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
691
+
692
+
693
+ Started POST "/dismissed_helpers" for 127.0.0.1 at 2012-12-25 20:16:17 -0500
694
+ Processing by DismissedHelpersController#create as JSON
695
+ Parameters: {"helper"=>"testing"}
696
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
697
+ Connecting to database specified by database.yml
698
+ Connecting to database specified by database.yml
699
+  (0.2ms) select sqlite_version(*)
700
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
701
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
702
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
703
+ Migrating to CreateEasyAuthIdentities (20121231010309)
704
+  (0.0ms) begin transaction
705
+  (0.4ms) CREATE TABLE "identities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "token" varchar(255), "account_type" varchar(255), "account_id" integer, "reset_token" varchar(255), "remember_token" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
706
+  (0.1ms) CREATE INDEX "index_identities_on_username" ON "identities" ("username")
707
+  (0.1ms) CREATE INDEX "index_identities_on_reset_token" ON "identities" ("reset_token")
708
+  (0.1ms) CREATE INDEX "index_identities_on_remember_token" ON "identities" ("remember_token")
709
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121231010309')
710
+  (0.8ms) commit transaction
711
+ Migrating to CreateUsers (20121231010454)
712
+  (0.0ms) begin transaction
713
+  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "dismissed_helpers" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
714
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121231010454')
715
+  (0.7ms) commit transaction
716
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
717
+
718
+
719
+ Started GET "/sign_in" for 127.0.0.1 at 2012-12-30 20:07:12 -0500
720
+ Connecting to database specified by database.yml
721
+ Processing by SessionsController#new as HTML
722
+ Parameters: {"identity"=>:password}
723
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/easy_auth-password-0.0.6/app/views/sessions/new.html.erb within layouts/application (13.8ms)
724
+ Compiled application.css (0ms) (pid 6346)
725
+ Compiled jquery.js (2ms) (pid 6346)
726
+ Compiled jquery_ujs.js (0ms) (pid 6346)
727
+ Compiled dismissible_helpers.js (89ms) (pid 6346)
728
+ Compiled application.js (183ms) (pid 6346)
729
+ Completed 200 OK in 321ms (Views: 257.3ms | ActiveRecord: 1.6ms)
730
+
731
+
732
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-30 20:07:13 -0500
733
+ Served asset /jquery.js - 304 Not Modified (2ms)
734
+
735
+
736
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-30 20:07:13 -0500
737
+ Served asset /application.css - 304 Not Modified (1ms)
738
+
739
+
740
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-30 20:07:13 -0500
741
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
742
+
743
+
744
+ Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2012-12-30 20:07:13 -0500
745
+ Served asset /dismissible_helpers.js - 304 Not Modified (1ms)
746
+
747
+
748
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-30 20:07:13 -0500
749
+ Served asset /application.js - 200 OK (5ms)
750
+ Connecting to database specified by database.yml
751
+
752
+
753
+ Started POST "/sign_in" for 127.0.0.1 at 2012-12-30 20:08:14 -0500
754
+ Processing by SessionsController#create as HTML
755
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"QDesBpDQiJ9jWz7X1GdqyF1b7EY8oHVSSAynrBOc8sg=", "identities_password"=>"[FILTERED]", "commit"=>"Submit", "identity"=>:password}
756
+ Identities::Password Load (0.3ms) SELECT "identities".* FROM "identities" WHERE "identities"."type" IN ('Identities::Password') AND ("identities"."username" LIKE 'test@example.com') LIMIT 1
757
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
758
+ SQL (0.3ms) UPDATE "users" SET "session_token" = '$2a$10$bu0hTCwsVj3DEdN8HRugs.avg8u6RanvU6EP5pOluf5BlT5wGCnyi' WHERE "users"."id" = 1
759
+ SQLite3::SQLException: no such column: session_token: UPDATE "users" SET "session_token" = '$2a$10$bu0hTCwsVj3DEdN8HRugs.avg8u6RanvU6EP5pOluf5BlT5wGCnyi' WHERE "users"."id" = 1
760
+ Completed 500 Internal Server Error in 203ms
761
+
762
+ ActiveRecord::StatementInvalid (SQLite3::SQLException: no such column: session_token: UPDATE "users" SET "session_token" = '$2a$10$bu0hTCwsVj3DEdN8HRugs.avg8u6RanvU6EP5pOluf5BlT5wGCnyi' WHERE "users"."id" = 1):
763
+ sqlite3 (1.3.6) lib/sqlite3/database.rb:91:in `initialize'
764
+ sqlite3 (1.3.6) lib/sqlite3/database.rb:91:in `new'
765
+ sqlite3 (1.3.6) lib/sqlite3/database.rb:91:in `prepare'
766
+ activerecord (3.2.9) lib/active_record/connection_adapters/sqlite_adapter.rb:246:in `block in exec_query'
767
+ activerecord (3.2.9) lib/active_record/connection_adapters/abstract_adapter.rb:280:in `block in log'
768
+ activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
769
+ activerecord (3.2.9) lib/active_record/connection_adapters/abstract_adapter.rb:275:in `log'
770
+ activerecord (3.2.9) lib/active_record/connection_adapters/sqlite_adapter.rb:242:in `exec_query'
771
+ activerecord (3.2.9) lib/active_record/connection_adapters/sqlite_adapter.rb:268:in `exec_delete'
772
+ activerecord (3.2.9) lib/active_record/connection_adapters/abstract/database_statements.rb:96:in `update'
773
+ activerecord (3.2.9) lib/active_record/connection_adapters/abstract/query_cache.rb:14:in `update'
774
+ activerecord (3.2.9) lib/active_record/relation.rb:294:in `update_all'
775
+ activerecord (3.2.9) lib/active_record/relation.rb:278:in `update_all'
776
+ activerecord (3.2.9) lib/active_record/querying.rb:7:in `update_all'
777
+ activerecord (3.2.9) lib/active_record/persistence.rb:197:in `update_column'
778
+ easy_auth (0.2.1) lib/easy_auth/models/account.rb:41:in `generate_session_token!'
779
+ easy_auth (0.2.1) lib/easy_auth/models/account.rb:49:in `set_session'
780
+ easy_auth (0.2.1) lib/easy_auth/models/identity.rb:32:in `set_account_session'
781
+ easy_auth (0.2.1) lib/easy_auth/controllers/sessions.rb:10:in `create'
782
+ actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
783
+ actionpack (3.2.9) lib/abstract_controller/base.rb:167:in `process_action'
784
+ actionpack (3.2.9) lib/action_controller/metal/rendering.rb:10:in `process_action'
785
+ actionpack (3.2.9) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
786
+ activesupport (3.2.9) lib/active_support/callbacks.rb:414:in `_run__1752066628618484151__process_action__1218791471864114879__callbacks'
787
+ activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
788
+ activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
789
+ activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
790
+ actionpack (3.2.9) lib/abstract_controller/callbacks.rb:17:in `process_action'
791
+ actionpack (3.2.9) lib/action_controller/metal/rescue.rb:29:in `process_action'
792
+ actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
793
+ activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
794
+ activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
795
+ activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
796
+ actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
797
+ actionpack (3.2.9) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
798
+ activerecord (3.2.9) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
799
+ actionpack (3.2.9) lib/abstract_controller/base.rb:121:in `process'
800
+ actionpack (3.2.9) lib/abstract_controller/rendering.rb:45:in `process'
801
+ actionpack (3.2.9) lib/action_controller/metal.rb:203:in `dispatch'
802
+ actionpack (3.2.9) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
803
+ actionpack (3.2.9) lib/action_controller/metal.rb:246:in `block in action'
804
+ actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `call'
805
+ actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
806
+ actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:36:in `call'
807
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
808
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
809
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
810
+ actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
811
+ actionpack (3.2.9) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
812
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
813
+ rack (1.4.1) lib/rack/conditionalget.rb:35:in `call'
814
+ actionpack (3.2.9) lib/action_dispatch/middleware/head.rb:14:in `call'
815
+ actionpack (3.2.9) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
816
+ actionpack (3.2.9) lib/action_dispatch/middleware/flash.rb:242:in `call'
817
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
818
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
819
+ actionpack (3.2.9) lib/action_dispatch/middleware/cookies.rb:341:in `call'
820
+ activerecord (3.2.9) lib/active_record/query_cache.rb:64:in `call'
821
+ activerecord (3.2.9) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
822
+ actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
823
+ activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `_run__299112681710933035__call__1678778026547566518__callbacks'
824
+ activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
825
+ activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
826
+ activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
827
+ actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
828
+ actionpack (3.2.9) lib/action_dispatch/middleware/reloader.rb:65:in `call'
829
+ actionpack (3.2.9) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
830
+ actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
831
+ actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
832
+ railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
833
+ railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
834
+ activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
835
+ railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
836
+ actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
837
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
838
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
839
+ activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
840
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
841
+ actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
842
+ railties (3.2.9) lib/rails/engine.rb:479:in `call'
843
+ railties (3.2.9) lib/rails/application.rb:223:in `call'
844
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
845
+ railties (3.2.9) lib/rails/rack/log_tailer.rb:17:in `call'
846
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
847
+ /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
848
+ /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
849
+ /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
850
+
851
+
852
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
853
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
854
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.0ms)
855
+ Connecting to database specified by database.yml
856
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
857
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
858
+ Migrating to CreateUsers (20121231010454)
859
+  (0.0ms) select sqlite_version(*)
860
+  (0.0ms) begin transaction
861
+  (0.4ms) DROP TABLE "users"
862
+  (0.1ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20121231010454'
863
+  (0.6ms) commit transaction
864
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
865
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
866
+ Migrating to CreateEasyAuthIdentities (20121231010309)
867
+ Migrating to CreateUsers (20121231010454)
868
+  (0.0ms) begin transaction
869
+  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "session_token" varchar(255), "dismissed_helpers" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
870
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121231010454')
871
+  (0.6ms) commit transaction
872
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
873
+ Connecting to database specified by database.yml
874
+
875
+
876
+ Started POST "/sign_in" for 127.0.0.1 at 2012-12-30 20:09:56 -0500
877
+ Processing by SessionsController#create as HTML
878
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"QDesBpDQiJ9jWz7X1GdqyF1b7EY8oHVSSAynrBOc8sg=", "identities_password"=>"[FILTERED]", "commit"=>"Submit", "identity"=>:password}
879
+ Identities::Password Load (0.1ms) SELECT "identities".* FROM "identities" WHERE "identities"."type" IN ('Identities::Password') AND ("identities"."username" LIKE 'test@example.com') LIMIT 1
880
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
881
+ SQL (2.6ms) UPDATE "users" SET "session_token" = '$2a$10$gPzXvqGtXE087QZwpk0i8.9wKQmUGde.hkYEbPBuL2Tg7LAdr6mNK' WHERE "users"."id" = 1
882
+ Redirected to
883
+ Completed 500 Internal Server Error in 183ms
884
+
885
+ NoMethodError (undefined method `user_url' for #<SessionsController:0x007fee53aa8f18>):
886
+ easy_auth (0.2.1) lib/easy_auth/controllers/sessions.rb:77:in `method_missing'
887
+ actionpack (3.2.9) lib/action_dispatch/routing/polymorphic_routes.rb:129:in `polymorphic_url'
888
+ actionpack (3.2.9) lib/action_dispatch/routing/url_for.rb:150:in `url_for'
889
+ actionpack (3.2.9) lib/action_controller/metal/redirecting.rb:105:in `_compute_redirect_to_location'
890
+ actionpack (3.2.9) lib/action_controller/metal/redirecting.rb:74:in `redirect_to'
891
+ actionpack (3.2.9) lib/action_controller/metal/flash.rb:25:in `redirect_to'
892
+ actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:60:in `block in redirect_to'
893
+ activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
894
+ activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
895
+ activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
896
+ actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:59:in `redirect_to'
897
+ easy_auth (0.2.1) lib/easy_auth/controllers/sessions.rb:48:in `after_successful_sign_in_default'
898
+ easy_auth (0.2.1) lib/easy_auth/controllers/sessions.rb:32:in `after_with_or_default'
899
+ easy_auth (0.2.1) lib/easy_auth/controllers/sessions.rb:36:in `after_successful_sign_in'
900
+ easy_auth (0.2.1) lib/easy_auth/controllers/sessions.rb:15:in `create'
901
+ actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
902
+ actionpack (3.2.9) lib/abstract_controller/base.rb:167:in `process_action'
903
+ actionpack (3.2.9) lib/action_controller/metal/rendering.rb:10:in `process_action'
904
+ actionpack (3.2.9) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
905
+ activesupport (3.2.9) lib/active_support/callbacks.rb:414:in `_run__1752066628618484151__process_action__1218791471864114879__callbacks'
906
+ activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
907
+ activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
908
+ activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
909
+ actionpack (3.2.9) lib/abstract_controller/callbacks.rb:17:in `process_action'
910
+ actionpack (3.2.9) lib/action_controller/metal/rescue.rb:29:in `process_action'
911
+ actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
912
+ activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
913
+ activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
914
+ activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
915
+ actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
916
+ actionpack (3.2.9) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
917
+ activerecord (3.2.9) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
918
+ actionpack (3.2.9) lib/abstract_controller/base.rb:121:in `process'
919
+ actionpack (3.2.9) lib/abstract_controller/rendering.rb:45:in `process'
920
+ actionpack (3.2.9) lib/action_controller/metal.rb:203:in `dispatch'
921
+ actionpack (3.2.9) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
922
+ actionpack (3.2.9) lib/action_controller/metal.rb:246:in `block in action'
923
+ actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `call'
924
+ actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
925
+ actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:36:in `call'
926
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
927
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
928
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
929
+ actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
930
+ actionpack (3.2.9) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
931
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
932
+ rack (1.4.1) lib/rack/conditionalget.rb:35:in `call'
933
+ actionpack (3.2.9) lib/action_dispatch/middleware/head.rb:14:in `call'
934
+ actionpack (3.2.9) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
935
+ actionpack (3.2.9) lib/action_dispatch/middleware/flash.rb:242:in `call'
936
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
937
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
938
+ actionpack (3.2.9) lib/action_dispatch/middleware/cookies.rb:341:in `call'
939
+ activerecord (3.2.9) lib/active_record/query_cache.rb:64:in `call'
940
+ activerecord (3.2.9) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
941
+ actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
942
+ activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `_run__299112681710933035__call__1678778026547566518__callbacks'
943
+ activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
944
+ activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
945
+ activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
946
+ actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
947
+ actionpack (3.2.9) lib/action_dispatch/middleware/reloader.rb:65:in `call'
948
+ actionpack (3.2.9) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
949
+ actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
950
+ actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
951
+ railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
952
+ railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
953
+ activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
954
+ railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
955
+ actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
956
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
957
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
958
+ activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
959
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
960
+ actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
961
+ railties (3.2.9) lib/rails/engine.rb:479:in `call'
962
+ railties (3.2.9) lib/rails/application.rb:223:in `call'
963
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
964
+ railties (3.2.9) lib/rails/rack/log_tailer.rb:17:in `call'
965
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
966
+ /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
967
+ /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
968
+ /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
969
+
970
+
971
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
972
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
973
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.4ms)
974
+
975
+
976
+ Started POST "/sign_in" for 127.0.0.1 at 2012-12-30 20:12:03 -0500
977
+
978
+ ActionController::RoutingError (uninitialized constant ApplcationController):
979
+ app/controllers/sessions_controller.rb:1:in `<top (required)>'
980
+
981
+
982
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
983
+
984
+
985
+ Started POST "/sign_in" for 127.0.0.1 at 2012-12-30 20:12:13 -0500
986
+ Processing by SessionsController#create as HTML
987
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"QDesBpDQiJ9jWz7X1GdqyF1b7EY8oHVSSAynrBOc8sg=", "identities_password"=>"[FILTERED]", "commit"=>"Submit", "identity"=>:password}
988
+ Identities::Password Load (0.2ms) SELECT "identities".* FROM "identities" WHERE "identities"."type" IN ('Identities::Password') AND ("identities"."username" LIKE 'test@example.com') LIMIT 1
989
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
990
+ SQL (2.3ms) UPDATE "users" SET "session_token" = '$2a$10$Sgx89vknamyRTwta8gLI8O3/FoeMzLYZy0rZeT.L5NDXIPiyEOrJS' WHERE "users"."id" = 1
991
+ Redirected to http://localhost:3001/
992
+ Completed 302 Found in 181ms (ActiveRecord: 3.2ms)
993
+
994
+
995
+ Started GET "/" for 127.0.0.1 at 2012-12-30 20:12:14 -0500
996
+ Processing by LandingController#show as HTML
997
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."session_token" = '$2a$10$Sgx89vknamyRTwta8gLI8O3/FoeMzLYZy0rZeT.L5NDXIPiyEOrJS' LIMIT 1
998
+ Rendered landing/show.html.erb within layouts/application (29.7ms)
999
+ Completed 500 Internal Server Error in 32ms
1000
+
1001
+ ActionView::Template::Error (undefined method `include?' for nil:NilClass):
1002
+ 1: <%= render_dismissible_helper 'helper' %>
1003
+ app/views/landing/show.html.erb:1:in `_app_views_landing_show_html_erb___1527528806895635443_70330769775560'
1004
+
1005
+
1006
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
1007
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
1008
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.9ms)
1009
+
1010
+
1011
+ Started GET "/" for 127.0.0.1 at 2012-12-30 20:12:48 -0500
1012
+ Processing by LandingController#show as HTML
1013
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."session_token" = '$2a$10$Sgx89vknamyRTwta8gLI8O3/FoeMzLYZy0rZeT.L5NDXIPiyEOrJS' LIMIT 1
1014
+ Rendered landing/show.html.erb within layouts/application (16.3ms)
1015
+ Completed 200 OK in 20ms (Views: 19.3ms | ActiveRecord: 0.5ms)
1016
+
1017
+
1018
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-30 20:12:48 -0500
1019
+ Served asset /application.css - 304 Not Modified (0ms)
1020
+
1021
+
1022
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-30 20:12:48 -0500
1023
+ Served asset /jquery.js - 304 Not Modified (0ms)
1024
+
1025
+
1026
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-30 20:12:48 -0500
1027
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1028
+
1029
+
1030
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-30 20:12:48 -0500
1031
+ Served asset /application.js - 304 Not Modified (0ms)
1032
+
1033
+
1034
+ Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2012-12-30 20:12:48 -0500
1035
+ Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
1036
+
1037
+
1038
+ Started POST "/dismissed_helpers" for 127.0.0.1 at 2012-12-30 20:12:55 -0500
1039
+ Processing by DismissedHelpersController#create as JSON
1040
+ Parameters: {"helper"=>"helper"}
1041
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."session_token" = '$2a$10$Sgx89vknamyRTwta8gLI8O3/FoeMzLYZy0rZeT.L5NDXIPiyEOrJS' LIMIT 1
1042
+  (0.0ms) begin transaction
1043
+ Identities::Password Load (0.1ms) SELECT "identities".* FROM "identities" WHERE "identities"."type" IN ('Identities::Password') AND "identities"."account_id" = 1 LIMIT 1
1044
+ Identities::Password Exists (0.2ms) SELECT 1 AS one FROM "identities" WHERE "identities"."type" IN ('Identities::Password') AND (LOWER("identities"."username") = LOWER('test@example.com') AND "identities"."id" != 1) LIMIT 1
1045
+  (0.2ms) UPDATE "users" SET "dismissed_helpers" = '---
1046
+ - helper
1047
+ ', "updated_at" = '2012-12-31 01:12:55.794680' WHERE "users"."id" = 1
1048
+  (1.3ms) commit transaction
1049
+ Completed 200 OK in 67ms (Views: 0.2ms | ActiveRecord: 2.2ms)
1050
+
1051
+
1052
+ Started GET "/" for 127.0.0.1 at 2012-12-30 20:12:57 -0500
1053
+ Processing by LandingController#show as HTML
1054
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."session_token" = '$2a$10$Sgx89vknamyRTwta8gLI8O3/FoeMzLYZy0rZeT.L5NDXIPiyEOrJS' LIMIT 1
1055
+ Rendered landing/show.html.erb within layouts/application (1.1ms)
1056
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms)
1057
+
1058
+
1059
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-30 20:12:57 -0500
1060
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1061
+
1062
+
1063
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-30 20:12:57 -0500
1064
+ Served asset /jquery.js - 304 Not Modified (0ms)
1065
+
1066
+
1067
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-30 20:12:57 -0500
1068
+ Served asset /application.css - 304 Not Modified (0ms)
1069
+
1070
+
1071
+ Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2012-12-30 20:12:57 -0500
1072
+ Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
1073
+
1074
+
1075
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-30 20:12:57 -0500
1076
+ Served asset /application.js - 304 Not Modified (0ms)
1077
+
1078
+
1079
+ Started GET "/sign_out" for 127.0.0.1 at 2012-12-30 20:18:04 -0500
1080
+ Processing by SessionsController#destroy as HTML
1081
+ Redirected to http://localhost:3001/
1082
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
1083
+
1084
+
1085
+ Started GET "/" for 127.0.0.1 at 2012-12-30 20:18:04 -0500
1086
+ Processing by LandingController#show as HTML
1087
+ Rendered landing/show.html.erb within layouts/application (0.4ms)
1088
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
1089
+
1090
+
1091
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-30 20:18:04 -0500
1092
+ Served asset /jquery.js - 304 Not Modified (0ms)
1093
+
1094
+
1095
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-30 20:18:04 -0500
1096
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1097
+
1098
+
1099
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-30 20:18:04 -0500
1100
+ Served asset /application.css - 304 Not Modified (0ms)
1101
+
1102
+
1103
+ Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2012-12-30 20:18:04 -0500
1104
+ Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
1105
+
1106
+
1107
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-30 20:18:04 -0500
1108
+ Served asset /application.js - 304 Not Modified (0ms)
1109
+
1110
+
1111
+ Started GET "/sign_in" for 127.0.0.1 at 2012-12-30 20:18:10 -0500
1112
+ Processing by SessionsController#new as HTML
1113
+ Parameters: {"identity"=>:password}
1114
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/easy_auth-password-0.0.6/app/views/sessions/new.html.erb within layouts/application (2.9ms)
1115
+ Completed 200 OK in 28ms (Views: 6.4ms | ActiveRecord: 0.4ms)
1116
+
1117
+
1118
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-30 20:18:10 -0500
1119
+ Served asset /application.css - 304 Not Modified (0ms)
1120
+
1121
+
1122
+ Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2012-12-30 20:18:10 -0500
1123
+ Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
1124
+
1125
+
1126
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-30 20:18:10 -0500
1127
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1128
+
1129
+
1130
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-30 20:18:10 -0500
1131
+ Served asset /jquery.js - 304 Not Modified (0ms)
1132
+
1133
+
1134
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-30 20:18:10 -0500
1135
+ Served asset /application.js - 304 Not Modified (0ms)
1136
+ Connecting to database specified by database.yml
1137
+
1138
+
1139
+ Started GET "/sign_out" for 127.0.0.1 at 2012-12-30 20:19:14 -0500
1140
+ Processing by SessionsController#destroy as HTML
1141
+ Redirected to http://localhost:3001/
1142
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
1143
+
1144
+
1145
+ Started GET "/" for 127.0.0.1 at 2012-12-30 20:19:14 -0500
1146
+ Processing by LandingController#show as HTML
1147
+ Rendered landing/show.html.erb within layouts/application (0.4ms)
1148
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
1149
+
1150
+
1151
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-30 20:19:14 -0500
1152
+ Served asset /jquery.js - 304 Not Modified (0ms)
1153
+
1154
+
1155
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-30 20:19:14 -0500
1156
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1157
+
1158
+
1159
+ Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2012-12-30 20:19:14 -0500
1160
+ Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
1161
+
1162
+
1163
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-30 20:19:14 -0500
1164
+ Served asset /application.css - 304 Not Modified (0ms)
1165
+
1166
+
1167
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-30 20:19:14 -0500
1168
+ Served asset /application.js - 304 Not Modified (0ms)
1169
+ Connecting to database specified by database.yml
1170
+
1171
+
1172
+ Started GET "/sign_in" for 127.0.0.1 at 2012-12-30 20:20:40 -0500
1173
+ Processing by SessionsController#new as HTML
1174
+ Parameters: {"identity"=>:password}
1175
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/easy_auth-password-0.0.6/app/views/sessions/new.html.erb within layouts/application (1.8ms)
1176
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.0ms)
1177
+
1178
+
1179
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-30 20:20:40 -0500
1180
+ Served asset /application.css - 304 Not Modified (0ms)
1181
+
1182
+
1183
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-30 20:20:40 -0500
1184
+ Served asset /jquery.js - 304 Not Modified (0ms)
1185
+
1186
+
1187
+ Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2012-12-30 20:20:40 -0500
1188
+ Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
1189
+
1190
+
1191
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-30 20:20:40 -0500
1192
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1193
+
1194
+
1195
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-30 20:20:40 -0500
1196
+ Served asset /application.js - 304 Not Modified (0ms)
1197
+
1198
+
1199
+ Started POST "/sign_in" for 127.0.0.1 at 2012-12-30 20:21:41 -0500
1200
+ Processing by SessionsController#create as HTML
1201
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"QDesBpDQiJ9jWz7X1GdqyF1b7EY8oHVSSAynrBOc8sg=", "identities_password"=>"[FILTERED]", "commit"=>"Submit", "identity"=>:password}
1202
+ Identities::Password Load (0.2ms) SELECT "identities".* FROM "identities" WHERE "identities"."type" IN ('Identities::Password') AND ("identities"."username" LIKE 'test') LIMIT 1
1203
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/easy_auth-password-0.0.6/app/views/sessions/new.html.erb within layouts/application (1.8ms)
1204
+ Completed 200 OK in 7ms (Views: 5.2ms | ActiveRecord: 0.2ms)
1205
+
1206
+
1207
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-30 20:21:41 -0500
1208
+ Served asset /application.css - 304 Not Modified (0ms)
1209
+
1210
+
1211
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-30 20:21:41 -0500
1212
+ Served asset /jquery.js - 304 Not Modified (0ms)
1213
+
1214
+
1215
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-30 20:21:41 -0500
1216
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1217
+
1218
+
1219
+ Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2012-12-30 20:21:41 -0500
1220
+ Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
1221
+
1222
+
1223
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-30 20:21:41 -0500
1224
+ Served asset /application.js - 304 Not Modified (0ms)
1225
+
1226
+
1227
+ Started POST "/sign_in" for 127.0.0.1 at 2012-12-30 20:21:52 -0500
1228
+ Processing by SessionsController#create as HTML
1229
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"QDesBpDQiJ9jWz7X1GdqyF1b7EY8oHVSSAynrBOc8sg=", "identities_password"=>"[FILTERED]", "commit"=>"Submit", "identity"=>:password}
1230
+ Identities::Password Load (0.2ms) SELECT "identities".* FROM "identities" WHERE "identities"."type" IN ('Identities::Password') AND ("identities"."username" LIKE 'test@example.com') LIMIT 1
1231
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/easy_auth-password-0.0.6/app/views/sessions/new.html.erb within layouts/application (1.7ms)
1232
+ Completed 200 OK in 77ms (Views: 4.9ms | ActiveRecord: 0.2ms)
1233
+
1234
+
1235
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-30 20:21:52 -0500
1236
+ Served asset /application.css - 304 Not Modified (0ms)
1237
+
1238
+
1239
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-30 20:21:52 -0500
1240
+ Served asset /jquery.js - 304 Not Modified (0ms)
1241
+
1242
+
1243
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-30 20:21:52 -0500
1244
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1245
+
1246
+
1247
+ Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2012-12-30 20:21:52 -0500
1248
+ Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
1249
+
1250
+
1251
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-30 20:21:52 -0500
1252
+ Served asset /application.js - 304 Not Modified (0ms)
1253
+
1254
+
1255
+ Started POST "/sign_in" for 127.0.0.1 at 2012-12-30 20:22:02 -0500
1256
+ Processing by SessionsController#create as HTML
1257
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"QDesBpDQiJ9jWz7X1GdqyF1b7EY8oHVSSAynrBOc8sg=", "identities_password"=>"[FILTERED]", "commit"=>"Submit", "identity"=>:password}
1258
+ Identities::Password Load (0.2ms) SELECT "identities".* FROM "identities" WHERE "identities"."type" IN ('Identities::Password') AND ("identities"."username" LIKE 'test@example.com') LIMIT 1
1259
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1260
+ SQL (2.7ms) UPDATE "users" SET "session_token" = '$2a$10$aOBBr5/OTx4w8j611DUfy.GWzvnrXUAXEo0zEgOKBDOfCFinTXqaa' WHERE "users"."id" = 1
1261
+ Redirected to http://localhost:3001/
1262
+ Completed 302 Found in 157ms (ActiveRecord: 3.2ms)
1263
+
1264
+
1265
+ Started GET "/" for 127.0.0.1 at 2012-12-30 20:22:02 -0500
1266
+ Processing by LandingController#show as HTML
1267
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."session_token" = '$2a$10$aOBBr5/OTx4w8j611DUfy.GWzvnrXUAXEo0zEgOKBDOfCFinTXqaa' LIMIT 1
1268
+ Rendered landing/show.html.erb within layouts/application (1.0ms)
1269
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms)
1270
+
1271
+
1272
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-30 20:22:03 -0500
1273
+ Served asset /application.css - 304 Not Modified (0ms)
1274
+
1275
+
1276
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-30 20:22:03 -0500
1277
+ Served asset /jquery.js - 304 Not Modified (0ms)
1278
+
1279
+
1280
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-30 20:22:03 -0500
1281
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1282
+
1283
+
1284
+ Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2012-12-30 20:22:03 -0500
1285
+ Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
1286
+
1287
+
1288
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-30 20:22:03 -0500
1289
+ Served asset /application.js - 304 Not Modified (0ms)
1290
+
1291
+
1292
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-30 20:22:08 -0500
1293
+ Served asset /application.js - 304 Not Modified (0ms)
1294
+
1295
+
1296
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-30 20:22:08 -0500
1297
+ Served asset /jquery.js - 304 Not Modified (0ms)
1298
+
1299
+
1300
+ Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2012-12-30 20:22:08 -0500
1301
+ Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
1302
+
1303
+
1304
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-30 20:22:08 -0500
1305
+ Served asset /application.css - 304 Not Modified (0ms)
1306
+
1307
+
1308
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-30 20:22:08 -0500
1309
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1310
+
1311
+
1312
+ Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2012-12-30 20:22:09 -0500
1313
+ Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
1314
+
1315
+
1316
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-30 20:22:09 -0500
1317
+ Served asset /application.css - 304 Not Modified (0ms)
1318
+
1319
+
1320
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-30 20:22:09 -0500
1321
+ Served asset /jquery.js - 304 Not Modified (0ms)
1322
+
1323
+
1324
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-30 20:22:09 -0500
1325
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1326
+
1327
+
1328
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-30 20:22:09 -0500
1329
+ Served asset /application.js - 304 Not Modified (0ms)
1330
+
1331
+
1332
+ Started POST "/sign_in" for 127.0.0.1 at 2012-12-30 20:22:49 -0500
1333
+ Processing by SessionsController#create as HTML
1334
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"QDesBpDQiJ9jWz7X1GdqyF1b7EY8oHVSSAynrBOc8sg=", "identities_password"=>"[FILTERED]", "commit"=>"Submit", "identity"=>:password}
1335
+ Identities::Password Load (0.3ms) SELECT "identities".* FROM "identities" WHERE "identities"."type" IN ('Identities::Password') AND ("identities"."username" LIKE 'test@example.com') LIMIT 1
1336
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1337
+ SQL (1.5ms) UPDATE "users" SET "session_token" = '$2a$10$HFDRybhFp6s2bNCiWdjSXennXIhxClpABGUHC40NTE9Ry4n8HjvmS' WHERE "users"."id" = 1
1338
+ Redirected to http://localhost:3001/
1339
+ Completed 302 Found in 174ms (ActiveRecord: 2.0ms)
1340
+
1341
+
1342
+ Started GET "/" for 127.0.0.1 at 2012-12-30 20:22:50 -0500
1343
+ Processing by LandingController#show as HTML
1344
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."session_token" = '$2a$10$HFDRybhFp6s2bNCiWdjSXennXIhxClpABGUHC40NTE9Ry4n8HjvmS' LIMIT 1
1345
+ Rendered landing/show.html.erb within layouts/application (0.9ms)
1346
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms)
1347
+
1348
+
1349
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-30 20:22:50 -0500
1350
+ Served asset /application.css - 304 Not Modified (0ms)
1351
+
1352
+
1353
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-30 20:22:50 -0500
1354
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1355
+
1356
+
1357
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-30 20:22:50 -0500
1358
+ Served asset /jquery.js - 304 Not Modified (0ms)
1359
+
1360
+
1361
+ Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2012-12-30 20:22:50 -0500
1362
+ Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
1363
+
1364
+
1365
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-30 20:22:50 -0500
1366
+ Served asset /application.js - 304 Not Modified (0ms)
1367
+
1368
+
1369
+ Started GET "/" for 127.0.0.1 at 2012-12-30 20:53:54 -0500
1370
+ Processing by LandingController#show as HTML
1371
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."session_token" = '$2a$10$HFDRybhFp6s2bNCiWdjSXennXIhxClpABGUHC40NTE9Ry4n8HjvmS' LIMIT 1
1372
+ Rendered landing/show.html.erb within layouts/application (11.7ms)
1373
+ Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.5ms)
1374
+
1375
+
1376
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-30 20:53:54 -0500
1377
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1378
+
1379
+
1380
+ Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2012-12-30 20:53:54 -0500
1381
+ Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
1382
+
1383
+
1384
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-30 20:53:54 -0500
1385
+ Served asset /application.css - 304 Not Modified (0ms)
1386
+
1387
+
1388
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-30 20:53:54 -0500
1389
+ Served asset /application.js - 304 Not Modified (0ms)
1390
+
1391
+
1392
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-30 20:53:54 -0500
1393
+ Served asset /jquery.js - 304 Not Modified (0ms)
1394
+
1395
+
1396
+ Started GET "/sign_out" for 127.0.0.1 at 2012-12-30 20:53:59 -0500
1397
+ Processing by SessionsController#destroy as HTML
1398
+ Redirected to http://localhost:3001/
1399
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
1400
+
1401
+
1402
+ Started GET "/" for 127.0.0.1 at 2012-12-30 20:53:59 -0500
1403
+ Processing by LandingController#show as HTML
1404
+ Rendered landing/show.html.erb within layouts/application (0.4ms)
1405
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
1406
+
1407
+
1408
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-30 20:53:59 -0500
1409
+ Served asset /jquery.js - 304 Not Modified (0ms)
1410
+
1411
+
1412
+ Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2012-12-30 20:53:59 -0500
1413
+ Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
1414
+
1415
+
1416
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-30 20:53:59 -0500
1417
+ Served asset /application.js - 304 Not Modified (0ms)
1418
+
1419
+
1420
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-30 20:53:59 -0500
1421
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1422
+
1423
+
1424
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-30 20:53:59 -0500
1425
+ Served asset /application.css - 304 Not Modified (0ms)
1426
+
1427
+
1428
+ Started GET "/sign_in" for 127.0.0.1 at 2012-12-30 20:54:04 -0500
1429
+ Processing by SessionsController#new as HTML
1430
+ Parameters: {"identity"=>:password}
1431
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/easy_auth-password-0.0.6/app/views/sessions/new.html.erb within layouts/application (3.0ms)
1432
+ Completed 200 OK in 56ms (Views: 7.5ms | ActiveRecord: 0.2ms)
1433
+
1434
+
1435
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-30 20:54:04 -0500
1436
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1437
+
1438
+
1439
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-30 20:54:04 -0500
1440
+ Served asset /application.css - 304 Not Modified (0ms)
1441
+
1442
+
1443
+ Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2012-12-30 20:54:04 -0500
1444
+ Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
1445
+
1446
+
1447
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-30 20:54:04 -0500
1448
+ Served asset /jquery.js - 304 Not Modified (0ms)
1449
+
1450
+
1451
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-30 20:54:04 -0500
1452
+ Served asset /application.js - 304 Not Modified (0ms)
1453
+
1454
+
1455
+ Started POST "/sign_in" for 127.0.0.1 at 2012-12-30 20:54:12 -0500
1456
+ Processing by SessionsController#create as HTML
1457
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"QDesBpDQiJ9jWz7X1GdqyF1b7EY8oHVSSAynrBOc8sg=", "identities_password"=>"[FILTERED]", "commit"=>"Submit", "identity"=>:password}
1458
+ Identities::Password Load (0.2ms) SELECT "identities".* FROM "identities" WHERE "identities"."type" IN ('Identities::Password') AND ("identities"."username" LIKE 'test@example.com') LIMIT 1
1459
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1460
+ SQL (2.4ms) UPDATE "users" SET "session_token" = '$2a$10$RNlSqPmGLLPxBEnL0bWSneKb3ZpnremHJCq/5twPAWTAAoHWXHmhi' WHERE "users"."id" = 1
1461
+ Redirected to http://localhost:3001/
1462
+ Completed 302 Found in 145ms (ActiveRecord: 2.8ms)
1463
+
1464
+
1465
+ Started GET "/" for 127.0.0.1 at 2012-12-30 20:54:12 -0500
1466
+ Processing by LandingController#show as HTML
1467
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."session_token" = '$2a$10$RNlSqPmGLLPxBEnL0bWSneKb3ZpnremHJCq/5twPAWTAAoHWXHmhi' LIMIT 1
1468
+ Rendered landing/show.html.erb within layouts/application (0.8ms)
1469
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
1470
+
1471
+
1472
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-30 20:54:12 -0500
1473
+ Served asset /application.css - 304 Not Modified (0ms)
1474
+
1475
+
1476
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-30 20:54:12 -0500
1477
+ Served asset /jquery.js - 304 Not Modified (0ms)
1478
+
1479
+
1480
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-30 20:54:12 -0500
1481
+ Served asset /application.js - 304 Not Modified (0ms)
1482
+
1483
+
1484
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-30 20:54:12 -0500
1485
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1486
+
1487
+
1488
+ Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2012-12-30 20:54:12 -0500
1489
+ Served asset /dismissible_helpers.js - 304 Not Modified (0ms)