current_user 0.0.1 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -19,7 +19,7 @@ Dev phase auth for Rails.
19
19
  CurrentUser works with Rails 3.2. Add to your Gemfile:
20
20
 
21
21
  ```ruby
22
- gem 'current_user', :git => 'git://github.com/MitinPavel/current_user.git'
22
+ gem 'current_user', '~> 0.0.1'
23
23
  ```
24
24
 
25
25
  Install it using bundler:
@@ -67,6 +67,28 @@ will take you to the root page of the application.
67
67
 
68
68
  Congratulations. Your application has a simple authentication solution.
69
69
 
70
+ ## Helpers
71
+
72
+ CurrentUser creates some helpers to use inside your controllers and views.
73
+
74
+ To verify if a user is signed in, use the following helper:
75
+
76
+ ```ruby
77
+ user_signed_in?
78
+ ```
79
+
80
+ or
81
+
82
+ ```ruby
83
+ signed_in?
84
+ ```
85
+
86
+ For the current signed-in user, this helper is available:
87
+
88
+ ```ruby
89
+ current_user
90
+ ```
91
+
70
92
  ## License
71
93
 
72
94
  It uses MIT license. See MIT-LICENSE file in the root directory.
@@ -2,9 +2,8 @@ module CurrentUser
2
2
  module Controller
3
3
  module Helpers
4
4
  def self.included(base)
5
- helpers = %w(authenticate_user! current_user sign_in sign_out signed_in? user_signed_in?)
6
- base.hide_action *helpers
7
- base.helper_method *helpers
5
+ base.hide_action %w(authenticate_user! current_user sign_in sign_out signed_in? user_signed_in?)
6
+ base.helper_method %w(current_user signed_in? user_signed_in?)
8
7
  end
9
8
 
10
9
  def authenticate_user!
@@ -27,8 +26,9 @@ module CurrentUser
27
26
  session[::CurrentUser::USER_SESSION_KEY] = nil
28
27
  end
29
28
 
30
- def signed_in?; end
31
- def user_signed_in?; end
29
+ def signed_in?
30
+ current_user.present?
31
+ end
32
32
 
33
33
  private
34
34
 
@@ -1,3 +1,3 @@
1
1
  module CurrentUser
2
- VERSION = "0.0.1"
2
+ VERSION = "0.1.0"
3
3
  end
@@ -1,7 +1,6 @@
1
1
  ::CurrentUser.setup do |config|
2
2
 
3
- # Setup an authentication key.
4
- # If you want to have a custom key, it might look like:
3
+ # If you want to have a custom authentication key, it might look like:
5
4
  # config.authentication_key = '4242424242424242'
6
5
  config.authentication_key = ::CurrentUser.read_authentication_key
7
6
 
@@ -7,6 +7,7 @@ namespace :current_user do
7
7
  # TODO: use route helpers.
8
8
  puts "/current_user/#{key}/sign_in"
9
9
  else
10
+ # TODO: extract KEY_FILE_PATH constant.
10
11
  puts 'Error: there is no authentication key. Check out config/current_user/key file.'
11
12
  end
12
13
  end
@@ -0,0 +1,8 @@
1
+ class HelpersController < ApplicationController
2
+ def sign_in_helper
3
+ end
4
+
5
+ def sign_out_helper
6
+ end
7
+
8
+ end
@@ -0,0 +1 @@
1
+ #current_user is <%= current_user.try(:email) || 'nil' %>
@@ -0,0 +1 @@
1
+ #signed_in? is <%= signed_in? ? 'true' : 'false' %>
@@ -1,7 +1,10 @@
1
1
  Rails.application.routes.draw do
2
2
  mount CurrentUser::Engine => '/current_user'
3
3
 
4
+ root :to => 'my_protected_pages#show'
4
5
 
5
6
  resource :my_protected_page, :only => :show
6
- root :to => 'my_protected_pages#show'
7
+
8
+ match 'helpers/(:action)', :controller => :helpers
9
+
7
10
  end
@@ -0,0 +1,8 @@
1
+ class CreateUsers < ActiveRecord::Migration
2
+ def change
3
+ create_table(:users) do |t|
4
+ t.string :email
5
+ t.string :role
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,21 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended to check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(:version => 20120319094037) do
15
+
16
+ create_table "users", :force => true do |t|
17
+ t.string "email"
18
+ t.string "role"
19
+ end
20
+
21
+ end
@@ -0,0 +1,2616 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at 2012-07-03 09:03:08 +0300
4
+ Connecting to database specified by database.yml
5
+
6
+ SQLite3::CantOpenException (unable to open database file):
7
+ activerecord (3.2.6) lib/active_record/connection_adapters/sqlite3_adapter.rb:26:in `initialize'
8
+ activerecord (3.2.6) lib/active_record/connection_adapters/sqlite3_adapter.rb:26:in `new'
9
+ activerecord (3.2.6) lib/active_record/connection_adapters/sqlite3_adapter.rb:26:in `sqlite3_connection'
10
+ activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:309:in `new_connection'
11
+ activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:319:in `checkout_new_connection'
12
+ activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:241:in `block (2 levels) in checkout'
13
+ activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:236:in `loop'
14
+ activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:236:in `block in checkout'
15
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/monitor.rb:211:in `mon_synchronize'
16
+ activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:233:in `checkout'
17
+ activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:96:in `block in connection'
18
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/monitor.rb:211:in `mon_synchronize'
19
+ activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:95:in `connection'
20
+ activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:404:in `retrieve_connection'
21
+ activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_specification.rb:168:in `retrieve_connection'
22
+ activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_specification.rb:142:in `connection'
23
+ activerecord (3.2.6) lib/active_record/query_cache.rb:67:in `rescue in call'
24
+ activerecord (3.2.6) lib/active_record/query_cache.rb:61:in `call'
25
+ activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
26
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
27
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__359109363__call__671055839__callbacks'
28
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
29
+ activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
30
+ activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
31
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
32
+ actionpack (3.2.6) lib/action_dispatch/middleware/reloader.rb:65:in `call'
33
+ actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
34
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
35
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
36
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
37
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
38
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
39
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
40
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
41
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
42
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
43
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
44
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
45
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
46
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
47
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
48
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
49
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
50
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
51
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
52
+
53
+
54
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.9ms)
55
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.8ms)
56
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.0ms)
57
+
58
+
59
+ Started GET "/" for 127.0.0.1 at 2012-07-03 11:47:28 +0300
60
+ Connecting to database specified by database.yml
61
+ Processing by MyProtectedPagesController#show as HTML
62
+ Completed 500 Internal Server Error in 40ms
63
+
64
+ ActiveRecord::StatementInvalid (Could not find table 'users'):
65
+ activerecord (3.2.6) lib/active_record/connection_adapters/sqlite_adapter.rb:472:in `table_structure'
66
+ activerecord (3.2.6) lib/active_record/connection_adapters/sqlite_adapter.rb:346:in `columns'
67
+ activerecord (3.2.6) lib/active_record/connection_adapters/schema_cache.rb:12:in `block in initialize'
68
+ activerecord (3.2.6) lib/active_record/model_schema.rb:228:in `yield'
69
+ activerecord (3.2.6) lib/active_record/model_schema.rb:228:in `default'
70
+ activerecord (3.2.6) lib/active_record/model_schema.rb:228:in `columns'
71
+ activerecord (3.2.6) lib/active_record/model_schema.rb:248:in `column_names'
72
+ activerecord (3.2.6) lib/active_record/model_schema.rb:261:in `column_methods_hash'
73
+ activerecord (3.2.6) lib/active_record/dynamic_matchers.rb:69:in `all_attributes_exists?'
74
+ activerecord (3.2.6) lib/active_record/dynamic_matchers.rb:27:in `method_missing'
75
+ /home/pm/projects/current_user/lib/current_user/controller/helpers.rb:18:in `current_user'
76
+ /home/pm/projects/current_user/lib/current_user/controller/helpers.rb:10:in `authenticate_user!'
77
+ activesupport (3.2.6) lib/active_support/callbacks.rb:418:in `_run__552721918__process_action__38843203__callbacks'
78
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
79
+ activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
80
+ activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
81
+ actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action'
82
+ actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
83
+ actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
84
+ activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument'
85
+ activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
86
+ activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument'
87
+ actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
88
+ actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action'
89
+ activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
90
+ actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process'
91
+ actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process'
92
+ actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch'
93
+ actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
94
+ actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action'
95
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call'
96
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
97
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call'
98
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
99
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
100
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
101
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
102
+ actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
103
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
104
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
105
+ actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call'
106
+ actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
107
+ actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call'
108
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
109
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
110
+ actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call'
111
+ activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call'
112
+ activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
113
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
114
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__380078517__call__193543654__callbacks'
115
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
116
+ activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
117
+ activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
118
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
119
+ actionpack (3.2.6) lib/action_dispatch/middleware/reloader.rb:65:in `call'
120
+ actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
121
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
122
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
123
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
124
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
125
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
126
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
127
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
128
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
129
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
130
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
131
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
132
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
133
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
134
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
135
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
136
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
137
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
138
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
139
+
140
+
141
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.6ms)
142
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
143
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.9ms)
144
+ Connecting to database specified by database.yml
145
+  (0.1ms) select sqlite_version(*)
146
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
147
+ Connecting to database specified by database.yml
148
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
149
+  (0.1ms) select sqlite_version(*)
150
+  (15.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
151
+  (0.1ms) PRAGMA index_list("schema_migrations")
152
+  (8.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
153
+  (0.1ms) SELECT version FROM "schema_migrations"
154
+  (9.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
155
+
156
+
157
+ Started GET "/" for 127.0.0.1 at 2012-07-03 11:47:56 +0300
158
+ Processing by MyProtectedPagesController#show as HTML
159
+ Completed 500 Internal Server Error in 2ms
160
+
161
+ ActiveRecord::StatementInvalid (Could not find table 'users'):
162
+ activerecord (3.2.6) lib/active_record/connection_adapters/sqlite_adapter.rb:472:in `table_structure'
163
+ activerecord (3.2.6) lib/active_record/connection_adapters/sqlite_adapter.rb:346:in `columns'
164
+ activerecord (3.2.6) lib/active_record/connection_adapters/schema_cache.rb:12:in `block in initialize'
165
+ activerecord (3.2.6) lib/active_record/model_schema.rb:228:in `yield'
166
+ activerecord (3.2.6) lib/active_record/model_schema.rb:228:in `default'
167
+ activerecord (3.2.6) lib/active_record/model_schema.rb:228:in `columns'
168
+ activerecord (3.2.6) lib/active_record/model_schema.rb:248:in `column_names'
169
+ activerecord (3.2.6) lib/active_record/model_schema.rb:261:in `column_methods_hash'
170
+ activerecord (3.2.6) lib/active_record/dynamic_matchers.rb:69:in `all_attributes_exists?'
171
+ activerecord (3.2.6) lib/active_record/dynamic_matchers.rb:27:in `method_missing'
172
+ /home/pm/projects/current_user/lib/current_user/controller/helpers.rb:18:in `current_user'
173
+ /home/pm/projects/current_user/lib/current_user/controller/helpers.rb:10:in `authenticate_user!'
174
+ activesupport (3.2.6) lib/active_support/callbacks.rb:418:in `_run__552721918__process_action__38843203__callbacks'
175
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
176
+ activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
177
+ activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
178
+ actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action'
179
+ actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
180
+ actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
181
+ activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument'
182
+ activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
183
+ activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument'
184
+ actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
185
+ actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action'
186
+ activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
187
+ actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process'
188
+ actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process'
189
+ actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch'
190
+ actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
191
+ actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action'
192
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call'
193
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
194
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call'
195
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
196
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
197
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
198
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
199
+ actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
200
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
201
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
202
+ actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call'
203
+ actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
204
+ actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call'
205
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
206
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
207
+ actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call'
208
+ activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call'
209
+ activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
210
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
211
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__380078517__call__193543654__callbacks'
212
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
213
+ activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
214
+ activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
215
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
216
+ actionpack (3.2.6) lib/action_dispatch/middleware/reloader.rb:65:in `call'
217
+ actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
218
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
219
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
220
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
221
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
222
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
223
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
224
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
225
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
226
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
227
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
228
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
229
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
230
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
231
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
232
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
233
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
234
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
235
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
236
+
237
+
238
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms)
239
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
240
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.8ms)
241
+
242
+
243
+ Started GET "/" for 127.0.0.1 at 2012-07-03 11:47:58 +0300
244
+ Processing by MyProtectedPagesController#show as HTML
245
+ Completed 500 Internal Server Error in 1ms
246
+
247
+ ActiveRecord::StatementInvalid (Could not find table 'users'):
248
+ activerecord (3.2.6) lib/active_record/connection_adapters/sqlite_adapter.rb:472:in `table_structure'
249
+ activerecord (3.2.6) lib/active_record/connection_adapters/sqlite_adapter.rb:346:in `columns'
250
+ activerecord (3.2.6) lib/active_record/connection_adapters/schema_cache.rb:12:in `block in initialize'
251
+ activerecord (3.2.6) lib/active_record/model_schema.rb:228:in `yield'
252
+ activerecord (3.2.6) lib/active_record/model_schema.rb:228:in `default'
253
+ activerecord (3.2.6) lib/active_record/model_schema.rb:228:in `columns'
254
+ activerecord (3.2.6) lib/active_record/model_schema.rb:248:in `column_names'
255
+ activerecord (3.2.6) lib/active_record/model_schema.rb:261:in `column_methods_hash'
256
+ activerecord (3.2.6) lib/active_record/dynamic_matchers.rb:69:in `all_attributes_exists?'
257
+ activerecord (3.2.6) lib/active_record/dynamic_matchers.rb:27:in `method_missing'
258
+ /home/pm/projects/current_user/lib/current_user/controller/helpers.rb:18:in `current_user'
259
+ /home/pm/projects/current_user/lib/current_user/controller/helpers.rb:10:in `authenticate_user!'
260
+ activesupport (3.2.6) lib/active_support/callbacks.rb:418:in `_run__552721918__process_action__38843203__callbacks'
261
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
262
+ activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
263
+ activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
264
+ actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action'
265
+ actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
266
+ actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
267
+ activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument'
268
+ activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
269
+ activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument'
270
+ actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
271
+ actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action'
272
+ activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
273
+ actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process'
274
+ actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process'
275
+ actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch'
276
+ actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
277
+ actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action'
278
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call'
279
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
280
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call'
281
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
282
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
283
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
284
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
285
+ actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
286
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
287
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
288
+ actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call'
289
+ actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
290
+ actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call'
291
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
292
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
293
+ actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call'
294
+ activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call'
295
+ activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
296
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
297
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__380078517__call__193543654__callbacks'
298
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
299
+ activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
300
+ activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
301
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
302
+ actionpack (3.2.6) lib/action_dispatch/middleware/reloader.rb:65:in `call'
303
+ actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
304
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
305
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
306
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
307
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
308
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
309
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
310
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
311
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
312
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
313
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
314
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
315
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
316
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
317
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
318
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
319
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
320
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
321
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
322
+
323
+
324
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms)
325
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
326
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.7ms)
327
+
328
+
329
+ Started GET "/" for 127.0.0.1 at 2012-07-03 11:48:01 +0300
330
+ Processing by MyProtectedPagesController#show as HTML
331
+ Completed 500 Internal Server Error in 1ms
332
+
333
+ ActiveRecord::StatementInvalid (Could not find table 'users'):
334
+ activerecord (3.2.6) lib/active_record/connection_adapters/sqlite_adapter.rb:472:in `table_structure'
335
+ activerecord (3.2.6) lib/active_record/connection_adapters/sqlite_adapter.rb:346:in `columns'
336
+ activerecord (3.2.6) lib/active_record/connection_adapters/schema_cache.rb:12:in `block in initialize'
337
+ activerecord (3.2.6) lib/active_record/model_schema.rb:228:in `yield'
338
+ activerecord (3.2.6) lib/active_record/model_schema.rb:228:in `default'
339
+ activerecord (3.2.6) lib/active_record/model_schema.rb:228:in `columns'
340
+ activerecord (3.2.6) lib/active_record/model_schema.rb:248:in `column_names'
341
+ activerecord (3.2.6) lib/active_record/model_schema.rb:261:in `column_methods_hash'
342
+ activerecord (3.2.6) lib/active_record/dynamic_matchers.rb:69:in `all_attributes_exists?'
343
+ activerecord (3.2.6) lib/active_record/dynamic_matchers.rb:27:in `method_missing'
344
+ /home/pm/projects/current_user/lib/current_user/controller/helpers.rb:18:in `current_user'
345
+ /home/pm/projects/current_user/lib/current_user/controller/helpers.rb:10:in `authenticate_user!'
346
+ activesupport (3.2.6) lib/active_support/callbacks.rb:418:in `_run__552721918__process_action__38843203__callbacks'
347
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
348
+ activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
349
+ activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
350
+ actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action'
351
+ actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
352
+ actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
353
+ activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument'
354
+ activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
355
+ activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument'
356
+ actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
357
+ actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action'
358
+ activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
359
+ actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process'
360
+ actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process'
361
+ actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch'
362
+ actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
363
+ actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action'
364
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call'
365
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
366
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call'
367
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
368
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
369
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
370
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
371
+ actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
372
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
373
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
374
+ actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call'
375
+ actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
376
+ actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call'
377
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
378
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
379
+ actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call'
380
+ activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call'
381
+ activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
382
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
383
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__380078517__call__193543654__callbacks'
384
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
385
+ activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
386
+ activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
387
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
388
+ actionpack (3.2.6) lib/action_dispatch/middleware/reloader.rb:65:in `call'
389
+ actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
390
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
391
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
392
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
393
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
394
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
395
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
396
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
397
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
398
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
399
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
400
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
401
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
402
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
403
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
404
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
405
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
406
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
407
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
408
+
409
+
410
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.1ms)
411
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (10.8ms)
412
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (21.7ms)
413
+ Connecting to database specified by database.yml
414
+  (0.1ms) select sqlite_version(*)
415
+  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
416
+  (0.0ms) PRAGMA index_list("schema_migrations")
417
+  (11.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
418
+  (0.2ms) select sqlite_version(*)
419
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
420
+
421
+
422
+ Started GET "/" for 127.0.0.1 at 2012-07-03 11:48:24 +0300
423
+ Processing by MyProtectedPagesController#show as HTML
424
+ Completed 500 Internal Server Error in 2ms
425
+
426
+ ActiveRecord::StatementInvalid (Could not find table 'users'):
427
+ activerecord (3.2.6) lib/active_record/connection_adapters/sqlite_adapter.rb:472:in `table_structure'
428
+ activerecord (3.2.6) lib/active_record/connection_adapters/sqlite_adapter.rb:346:in `columns'
429
+ activerecord (3.2.6) lib/active_record/connection_adapters/schema_cache.rb:12:in `block in initialize'
430
+ activerecord (3.2.6) lib/active_record/model_schema.rb:228:in `yield'
431
+ activerecord (3.2.6) lib/active_record/model_schema.rb:228:in `default'
432
+ activerecord (3.2.6) lib/active_record/model_schema.rb:228:in `columns'
433
+ activerecord (3.2.6) lib/active_record/model_schema.rb:248:in `column_names'
434
+ activerecord (3.2.6) lib/active_record/model_schema.rb:261:in `column_methods_hash'
435
+ activerecord (3.2.6) lib/active_record/dynamic_matchers.rb:69:in `all_attributes_exists?'
436
+ activerecord (3.2.6) lib/active_record/dynamic_matchers.rb:27:in `method_missing'
437
+ /home/pm/projects/current_user/lib/current_user/controller/helpers.rb:18:in `current_user'
438
+ /home/pm/projects/current_user/lib/current_user/controller/helpers.rb:10:in `authenticate_user!'
439
+ activesupport (3.2.6) lib/active_support/callbacks.rb:418:in `_run__552721918__process_action__38843203__callbacks'
440
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
441
+ activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
442
+ activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
443
+ actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action'
444
+ actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
445
+ actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
446
+ activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument'
447
+ activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
448
+ activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument'
449
+ actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
450
+ actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action'
451
+ activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
452
+ actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process'
453
+ actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process'
454
+ actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch'
455
+ actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
456
+ actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action'
457
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call'
458
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
459
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call'
460
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
461
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
462
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
463
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
464
+ actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
465
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
466
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
467
+ actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call'
468
+ actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
469
+ actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call'
470
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
471
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
472
+ actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call'
473
+ activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call'
474
+ activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
475
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
476
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__380078517__call__193543654__callbacks'
477
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
478
+ activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
479
+ activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
480
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
481
+ actionpack (3.2.6) lib/action_dispatch/middleware/reloader.rb:65:in `call'
482
+ actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
483
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
484
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
485
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
486
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
487
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
488
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
489
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
490
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
491
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
492
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
493
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
494
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
495
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
496
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
497
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
498
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
499
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
500
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
501
+
502
+
503
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
504
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
505
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.6ms)
506
+
507
+
508
+ Started PUT "/my_profile/user_profile" for 127.0.0.1 at 2012-07-03 11:55:11 +0300
509
+
510
+ ActionController::RoutingError (No route matches [PUT] "/my_profile/user_profile"):
511
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
512
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
513
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
514
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
515
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
516
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
517
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
518
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
519
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
520
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
521
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
522
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
523
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
524
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
525
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
526
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
527
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
528
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
529
+
530
+
531
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
532
+
533
+
534
+ Started GET "/my_profile" for 127.0.0.1 at 2012-07-03 11:55:21 +0300
535
+
536
+ ActionController::RoutingError (No route matches [GET] "/my_profile"):
537
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
538
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
539
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
540
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
541
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
542
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
543
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
544
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
545
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
546
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
547
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
548
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
549
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
550
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
551
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
552
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
553
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
554
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
555
+
556
+
557
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
558
+ Connecting to database specified by database.yml
559
+  (0.1ms) select sqlite_version(*)
560
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
561
+ Connecting to database specified by database.yml
562
+  (0.1ms) select sqlite_version(*)
563
+  (13.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
564
+  (0.0ms) PRAGMA index_list("schema_migrations")
565
+  (8.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
566
+  (0.2ms) select sqlite_version(*)
567
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
568
+
569
+
570
+ Started GET "/" for 127.0.0.1 at 2012-07-03 13:06:26 +0300
571
+ Connecting to database specified by database.yml
572
+ Processing by MyProtectedPagesController#show as HTML
573
+ Completed 500 Internal Server Error in 37ms
574
+
575
+ ActiveRecord::StatementInvalid (Could not find table 'users'):
576
+ activerecord (3.2.6) lib/active_record/connection_adapters/sqlite_adapter.rb:472:in `table_structure'
577
+ activerecord (3.2.6) lib/active_record/connection_adapters/sqlite_adapter.rb:346:in `columns'
578
+ activerecord (3.2.6) lib/active_record/connection_adapters/schema_cache.rb:12:in `block in initialize'
579
+ activerecord (3.2.6) lib/active_record/model_schema.rb:228:in `yield'
580
+ activerecord (3.2.6) lib/active_record/model_schema.rb:228:in `default'
581
+ activerecord (3.2.6) lib/active_record/model_schema.rb:228:in `columns'
582
+ activerecord (3.2.6) lib/active_record/model_schema.rb:248:in `column_names'
583
+ activerecord (3.2.6) lib/active_record/model_schema.rb:261:in `column_methods_hash'
584
+ activerecord (3.2.6) lib/active_record/dynamic_matchers.rb:69:in `all_attributes_exists?'
585
+ activerecord (3.2.6) lib/active_record/dynamic_matchers.rb:27:in `method_missing'
586
+ /home/pm/projects/current_user/lib/current_user/controller/helpers.rb:18:in `current_user'
587
+ /home/pm/projects/current_user/lib/current_user/controller/helpers.rb:10:in `authenticate_user!'
588
+ activesupport (3.2.6) lib/active_support/callbacks.rb:418:in `_run__179982732__process_action__726881917__callbacks'
589
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
590
+ activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
591
+ activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
592
+ actionpack (3.2.6) lib/abstract_controller/callbacks.rb:17:in `process_action'
593
+ actionpack (3.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
594
+ actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
595
+ activesupport (3.2.6) lib/active_support/notifications.rb:123:in `block in instrument'
596
+ activesupport (3.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
597
+ activesupport (3.2.6) lib/active_support/notifications.rb:123:in `instrument'
598
+ actionpack (3.2.6) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
599
+ actionpack (3.2.6) lib/action_controller/metal/params_wrapper.rb:206:in `process_action'
600
+ activerecord (3.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
601
+ actionpack (3.2.6) lib/abstract_controller/base.rb:121:in `process'
602
+ actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process'
603
+ actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch'
604
+ actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
605
+ actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action'
606
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call'
607
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
608
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call'
609
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
610
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
611
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
612
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
613
+ actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
614
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
615
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
616
+ actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call'
617
+ actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
618
+ actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call'
619
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
620
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
621
+ actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call'
622
+ activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call'
623
+ activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
624
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
625
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__723493603__call__631029369__callbacks'
626
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
627
+ activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
628
+ activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
629
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
630
+ actionpack (3.2.6) lib/action_dispatch/middleware/reloader.rb:65:in `call'
631
+ actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
632
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
633
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
634
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
635
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
636
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
637
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
638
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
639
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
640
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
641
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
642
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
643
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
644
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
645
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
646
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
647
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
648
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
649
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
650
+
651
+
652
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms)
653
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
654
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.8ms)
655
+ Connecting to database specified by database.yml
656
+  (0.1ms) select sqlite_version(*)
657
+  (2.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
658
+  (0.0ms) PRAGMA index_list("schema_migrations")
659
+  (9.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
660
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
661
+ Migrating to CreateUsers (20120319094037)
662
+  (0.0ms) begin transaction
663
+  (0.0ms) rollback transaction
664
+ Connecting to database specified by database.yml
665
+  (0.1ms) select sqlite_version(*)
666
+  (22.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
667
+  (0.1ms) PRAGMA index_list("schema_migrations")
668
+  (8.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
669
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
670
+ Migrating to CreateUsers (20120319094037)
671
+  (0.1ms) begin transaction
672
+  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "role" varchar(255)) 
673
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120319094037')
674
+  (15.0ms) commit transaction
675
+  (0.3ms) select sqlite_version(*)
676
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
677
+  (0.0ms) PRAGMA index_list("users")
678
+
679
+
680
+ Started GET "/" for 127.0.0.1 at 2012-07-03 13:10:59 +0300
681
+ Connecting to database specified by database.yml
682
+ Processing by MyProtectedPagesController#show as HTML
683
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
684
+ Rendered text template (0.0ms)
685
+ Filter chain halted as :authenticate_user! rendered or redirected
686
+ Completed 401 Unauthorized in 65ms (Views: 17.3ms | ActiveRecord: 1.2ms)
687
+
688
+
689
+ Started GET "/current_user/12345/sign_in" for 127.0.0.1 at 2012-07-03 13:11:25 +0300
690
+ Processing by CurrentUser::SessionsController#new as HTML
691
+ Parameters: {"key"=>"12345"}
692
+  (0.1ms) SELECT COUNT(*) FROM "users"
693
+ Rendered /home/pm/projects/current_user/app/views/current_user/sessions/new.html.erb within layouts/current_user/application (12.0ms)
694
+ Completed 200 OK in 14ms (Views: 13.8ms | ActiveRecord: 0.1ms)
695
+ Connecting to database specified by database.yml
696
+
697
+
698
+ Started GET "/current_user/12345/sign_in" for 127.0.0.1 at 2012-07-03 13:12:34 +0300
699
+ Processing by CurrentUser::SessionsController#new as HTML
700
+ Parameters: {"key"=>"12345"}
701
+  (0.2ms) SELECT COUNT(*) FROM "users" 
702
+ User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY email
703
+ Rendered /home/pm/projects/current_user/app/views/current_user/sessions/new.html.erb within layouts/current_user/application (6.6ms)
704
+ Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.4ms)
705
+
706
+
707
+ Started POST "/current_user/12345/sign_in" for 127.0.0.1 at 2012-07-03 13:12:39 +0300
708
+ Processing by CurrentUser::SessionsController#create as HTML
709
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"qc4vFSGbrhHSClOKJVol4GRtxcELSMP9n/d5+2Tr19U=", "user_id"=>"1", "commit"=>"---\r\n- blah@anahoret.com\r\n- admin\r\n", "key"=>"12345"}
710
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
711
+ Redirected to http://localhost:3000/
712
+ Completed 302 Found in 2ms (ActiveRecord: 0.1ms)
713
+
714
+
715
+ Started GET "/" for 127.0.0.1 at 2012-07-03 13:12:39 +0300
716
+ Processing by MyProtectedPagesController#show as HTML
717
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
718
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
719
+ Rendered my_protected_pages/show.html.erb within layouts/application (0.3ms)
720
+ Completed 200 OK in 4ms (Views: 2.5ms | ActiveRecord: 0.2ms)
721
+
722
+
723
+ Started GET "/stylesheets/application.css" for 127.0.0.1 at 2012-07-03 13:12:40 +0300
724
+
725
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
726
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
727
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
728
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
729
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
730
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
731
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
732
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
733
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
734
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
735
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
736
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
737
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
738
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
739
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
740
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
741
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
742
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
743
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
744
+
745
+
746
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
747
+
748
+
749
+ Started GET "/javascripts/application.js" for 127.0.0.1 at 2012-07-03 13:12:40 +0300
750
+
751
+ ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
752
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
753
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
754
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
755
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
756
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
757
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
758
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
759
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
760
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
761
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
762
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
763
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
764
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
765
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
766
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
767
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
768
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
769
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
770
+
771
+
772
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
773
+
774
+
775
+ Started GET "/" for 127.0.0.1 at 2012-07-03 13:13:12 +0300
776
+ Processing by MyProtectedPagesController#show as HTML
777
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
778
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
779
+ Rendered my_protected_pages/show.html.erb within layouts/application (0.1ms)
780
+ Completed 200 OK in 4ms (Views: 2.6ms | ActiveRecord: 0.2ms)
781
+
782
+
783
+ Started GET "/stylesheets/application.css" for 127.0.0.1 at 2012-07-03 13:13:12 +0300
784
+
785
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
786
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
787
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
788
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
789
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
790
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
791
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
792
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
793
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
794
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
795
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
796
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
797
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
798
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
799
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
800
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
801
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
802
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
803
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
804
+
805
+
806
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
807
+
808
+
809
+ Started GET "/javascripts/application.js" for 127.0.0.1 at 2012-07-03 13:13:12 +0300
810
+
811
+ ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
812
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
813
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
814
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
815
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
816
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
817
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
818
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
819
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
820
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
821
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
822
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
823
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
824
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
825
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
826
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
827
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
828
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
829
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
830
+
831
+
832
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
833
+
834
+
835
+ Started GET "/current_user/12345/sign_in" for 127.0.0.1 at 2012-07-03 13:13:14 +0300
836
+ Processing by CurrentUser::SessionsController#new as HTML
837
+ Parameters: {"key"=>"12345"}
838
+  (0.2ms) SELECT COUNT(*) FROM "users"
839
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY email
840
+ Rendered /home/pm/projects/current_user/app/views/current_user/sessions/new.html.erb within layouts/current_user/application (2.2ms)
841
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.3ms)
842
+
843
+
844
+ Started GET "/current_user/12345/sign_in" for 127.0.0.1 at 2012-07-03 13:13:16 +0300
845
+ Processing by CurrentUser::SessionsController#new as HTML
846
+ Parameters: {"key"=>"12345"}
847
+  (0.1ms) SELECT COUNT(*) FROM "users"
848
+ User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY email
849
+ Rendered /home/pm/projects/current_user/app/views/current_user/sessions/new.html.erb within layouts/current_user/application (1.8ms)
850
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.3ms)
851
+
852
+
853
+ Started POST "/current_user/12345/sign_in" for 127.0.0.1 at 2012-07-03 13:13:17 +0300
854
+ Processing by CurrentUser::SessionsController#create as HTML
855
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"qc4vFSGbrhHSClOKJVol4GRtxcELSMP9n/d5+2Tr19U=", "user_id"=>"1", "commit"=>"blah@anahoret.com", "key"=>"12345"}
856
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
857
+ Redirected to http://localhost:3000/
858
+ Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
859
+
860
+
861
+ Started GET "/" for 127.0.0.1 at 2012-07-03 13:13:17 +0300
862
+ Processing by MyProtectedPagesController#show as HTML
863
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
864
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
865
+ Rendered my_protected_pages/show.html.erb within layouts/application (0.1ms)
866
+ Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.2ms)
867
+
868
+
869
+ Started GET "/stylesheets/application.css" for 127.0.0.1 at 2012-07-03 13:13:17 +0300
870
+
871
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
872
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
873
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
874
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
875
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
876
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
877
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
878
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
879
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
880
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
881
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
882
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
883
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
884
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
885
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
886
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
887
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
888
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
889
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
890
+
891
+
892
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
893
+
894
+
895
+ Started GET "/javascripts/application.js" for 127.0.0.1 at 2012-07-03 13:13:17 +0300
896
+
897
+ ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
898
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
899
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
900
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
901
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
902
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
903
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
904
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
905
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
906
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
907
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
908
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
909
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
910
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
911
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
912
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
913
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
914
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
915
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
916
+
917
+
918
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
919
+
920
+
921
+ Started GET "/current_user/12345/sign_in" for 127.0.0.1 at 2012-07-03 13:13:48 +0300
922
+ Processing by CurrentUser::SessionsController#new as HTML
923
+ Parameters: {"key"=>"12345"}
924
+  (0.1ms) SELECT COUNT(*) FROM "users" 
925
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY email
926
+ Rendered /home/pm/projects/current_user/app/views/current_user/sessions/new.html.erb within layouts/current_user/application (1.5ms)
927
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.2ms)
928
+
929
+
930
+ Started POST "/current_user/12345/sign_in" for 127.0.0.1 at 2012-07-03 13:13:49 +0300
931
+ Processing by CurrentUser::SessionsController#create as HTML
932
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"qc4vFSGbrhHSClOKJVol4GRtxcELSMP9n/d5+2Tr19U=", "user_id"=>"2", "commit"=>"one@anahoret.com", "key"=>"12345"}
933
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "2"]]
934
+ Redirected to http://localhost:3000/
935
+ Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
936
+
937
+
938
+ Started GET "/" for 127.0.0.1 at 2012-07-03 13:13:49 +0300
939
+ Processing by MyProtectedPagesController#show as HTML
940
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1
941
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1
942
+ Rendered my_protected_pages/show.html.erb within layouts/application (0.1ms)
943
+ Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 0.2ms)
944
+
945
+
946
+ Started GET "/stylesheets/application.css" for 127.0.0.1 at 2012-07-03 13:13:49 +0300
947
+
948
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
949
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
950
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
951
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
952
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
953
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
954
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
955
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
956
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
957
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
958
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
959
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
960
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
961
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
962
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
963
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
964
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
965
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
966
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
967
+
968
+
969
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
970
+
971
+
972
+ Started GET "/javascripts/application.js" for 127.0.0.1 at 2012-07-03 13:13:49 +0300
973
+
974
+ ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
975
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
976
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
977
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
978
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
979
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
980
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
981
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
982
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
983
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
984
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
985
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
986
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
987
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
988
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
989
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
990
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
991
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
992
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
993
+
994
+
995
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
996
+ Connecting to database specified by database.yml
997
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
998
+  (0.2ms) select sqlite_version(*)
999
+  (2.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "role" varchar(255)) 
1000
+  (13.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1001
+  (0.1ms) PRAGMA index_list("schema_migrations")
1002
+  (9.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1003
+  (0.1ms) SELECT version FROM "schema_migrations"
1004
+  (9.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20120319094037')
1005
+
1006
+
1007
+ Started GET "/current_user/12345/sign_in" for 127.0.0.1 at 2012-07-03 13:38:45 +0300
1008
+ Connecting to database specified by database.yml
1009
+ Processing by CurrentUser::SessionsController#new as HTML
1010
+ Parameters: {"key"=>"12345"}
1011
+  (0.0ms) SELECT COUNT(*) FROM "users" 
1012
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY email
1013
+ Rendered /home/pm/projects/current_user/app/views/current_user/sessions/new.html.erb within layouts/current_user/application (15.8ms)
1014
+ Completed 200 OK in 59ms (Views: 20.5ms | ActiveRecord: 10.2ms)
1015
+
1016
+
1017
+ Started POST "/current_user/12345/sign_in" for 127.0.0.1 at 2012-07-03 13:38:47 +0300
1018
+ Processing by CurrentUser::SessionsController#create as HTML
1019
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"qc4vFSGbrhHSClOKJVol4GRtxcELSMP9n/d5+2Tr19U=", "user_id"=>"1", "commit"=>"blah@anahoret.com", "key"=>"12345"}
1020
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
1021
+ Redirected to http://localhost:3000/
1022
+ Completed 302 Found in 5ms (ActiveRecord: 0.2ms)
1023
+
1024
+
1025
+ Started GET "/" for 127.0.0.1 at 2012-07-03 13:38:47 +0300
1026
+ Processing by MyProtectedPagesController#show as HTML
1027
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1028
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1029
+ Rendered my_protected_pages/show.html.erb within layouts/application (0.3ms)
1030
+ Completed 200 OK in 25ms (Views: 12.2ms | ActiveRecord: 0.1ms)
1031
+
1032
+
1033
+ Started GET "/stylesheets/application.css" for 127.0.0.1 at 2012-07-03 13:38:47 +0300
1034
+
1035
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
1036
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1037
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1038
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1039
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1040
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1041
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1042
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1043
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1044
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1045
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1046
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
1047
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
1048
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1049
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1050
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1051
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1052
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1053
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1054
+
1055
+
1056
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
1057
+
1058
+
1059
+ Started GET "/javascripts/application.js" for 127.0.0.1 at 2012-07-03 13:38:47 +0300
1060
+
1061
+ ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
1062
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1063
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1064
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1065
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1066
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1067
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1068
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1069
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1070
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1071
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1072
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
1073
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
1074
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1075
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1076
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1077
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1078
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1079
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1080
+
1081
+
1082
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
1083
+
1084
+
1085
+ Started GET "/helpers/signed_in" for 127.0.0.1 at 2012-07-03 13:38:53 +0300
1086
+ Processing by HelpersController#signed_in as HTML
1087
+ Rendered helpers/signed_in.erb within layouts/application (0.4ms)
1088
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
1089
+
1090
+
1091
+ Started GET "/stylesheets/application.css" for 127.0.0.1 at 2012-07-03 13:38:53 +0300
1092
+
1093
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
1094
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1095
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1096
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1097
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1098
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1099
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1100
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1101
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1102
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1103
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1104
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
1105
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
1106
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1107
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1108
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1109
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1110
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1111
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1112
+
1113
+
1114
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
1115
+
1116
+
1117
+ Started GET "/javascripts/application.js" for 127.0.0.1 at 2012-07-03 13:38:53 +0300
1118
+
1119
+ ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
1120
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1121
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1122
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1123
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1124
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1125
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1126
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1127
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1128
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1129
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1130
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
1131
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
1132
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1133
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1134
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1135
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1136
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1137
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1138
+
1139
+
1140
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
1141
+
1142
+
1143
+ Started GET "/helpers/signed_in" for 127.0.0.1 at 2012-07-03 13:42:03 +0300
1144
+ Processing by HelpersController#signed_in as HTML
1145
+ Rendered helpers/signed_in.erb within layouts/application (0.0ms)
1146
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
1147
+
1148
+
1149
+ Started GET "/stylesheets/application.css" for 127.0.0.1 at 2012-07-03 13:42:03 +0300
1150
+
1151
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
1152
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1153
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1154
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1155
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1156
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1157
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1158
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1159
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1160
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1161
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1162
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
1163
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
1164
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1165
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1166
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1167
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1168
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1169
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1170
+
1171
+
1172
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
1173
+
1174
+
1175
+ Started GET "/javascripts/application.js" for 127.0.0.1 at 2012-07-03 13:42:03 +0300
1176
+
1177
+ ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
1178
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1179
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1180
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1181
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1182
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1183
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1184
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1185
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1186
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1187
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1188
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
1189
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
1190
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1191
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1192
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1193
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1194
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1195
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1196
+
1197
+
1198
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
1199
+
1200
+
1201
+ Started GET "/" for 127.0.0.1 at 2012-07-03 13:42:08 +0300
1202
+ Processing by MyProtectedPagesController#show as HTML
1203
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1204
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1205
+ Rendered my_protected_pages/show.html.erb within layouts/application (0.0ms)
1206
+ Completed 200 OK in 4ms (Views: 2.0ms | ActiveRecord: 0.2ms)
1207
+
1208
+
1209
+ Started GET "/helpers/signed_in" for 127.0.0.1 at 2012-07-03 13:42:14 +0300
1210
+ Processing by HelpersController#signed_in as HTML
1211
+ Rendered helpers/signed_in.erb within layouts/application (0.0ms)
1212
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1213
+
1214
+
1215
+ Started GET "/stylesheets/application.css" for 127.0.0.1 at 2012-07-03 13:42:14 +0300
1216
+
1217
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
1218
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1219
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1220
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1221
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1222
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1223
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1224
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1225
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1226
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1227
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1228
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
1229
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
1230
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1231
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1232
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1233
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1234
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1235
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1236
+
1237
+
1238
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
1239
+
1240
+
1241
+ Started GET "/javascripts/application.js" for 127.0.0.1 at 2012-07-03 13:42:14 +0300
1242
+
1243
+ ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
1244
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1245
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1246
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1247
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1248
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1249
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1250
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1251
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1252
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1253
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1254
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
1255
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
1256
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1257
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1258
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1259
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1260
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1261
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1262
+
1263
+
1264
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
1265
+
1266
+
1267
+ Started GET "/helpers/signed_in" for 127.0.0.1 at 2012-07-03 13:43:23 +0300
1268
+ Processing by HelpersController#signed_in as HTML
1269
+ Rendered helpers/signed_in.erb within layouts/application (0.1ms)
1270
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
1271
+
1272
+
1273
+ Started GET "/stylesheets/application.css" for 127.0.0.1 at 2012-07-03 13:43:23 +0300
1274
+
1275
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
1276
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1277
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1278
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1279
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1280
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1281
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1282
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1283
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1284
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1285
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1286
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
1287
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
1288
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1289
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1290
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1291
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1292
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1293
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1294
+
1295
+
1296
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
1297
+
1298
+
1299
+ Started GET "/javascripts/application.js" for 127.0.0.1 at 2012-07-03 13:43:23 +0300
1300
+
1301
+ ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
1302
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1303
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1304
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1305
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1306
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1307
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1308
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1309
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1310
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1311
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1312
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
1313
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
1314
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1315
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1316
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1317
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1318
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1319
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1320
+
1321
+
1322
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
1323
+
1324
+
1325
+ Started GET "/helpers/signed_in" for 127.0.0.1 at 2012-07-03 13:44:11 +0300
1326
+ Processing by HelpersController#signed_in as HTML
1327
+ Rendered helpers/signed_in.erb within layouts/application (0.1ms)
1328
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
1329
+
1330
+
1331
+ Started GET "/stylesheets/application.css" for 127.0.0.1 at 2012-07-03 13:44:11 +0300
1332
+
1333
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
1334
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1335
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1336
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1337
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1338
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1339
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1340
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1341
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1342
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1343
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1344
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
1345
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
1346
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1347
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1348
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1349
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1350
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1351
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1352
+
1353
+
1354
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
1355
+
1356
+
1357
+ Started GET "/javascripts/application.js" for 127.0.0.1 at 2012-07-03 13:44:11 +0300
1358
+
1359
+ ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
1360
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1361
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1362
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1363
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1364
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1365
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1366
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1367
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1368
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1369
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1370
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
1371
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
1372
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1373
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1374
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1375
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1376
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1377
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1378
+
1379
+
1380
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
1381
+
1382
+
1383
+ Started GET "/helpers/signed_in" for 127.0.0.1 at 2012-07-03 13:44:43 +0300
1384
+ Connecting to database specified by database.yml
1385
+ Processing by HelpersController#signed_in as HTML
1386
+ Rendered helpers/signed_in.erb within layouts/application (1.4ms)
1387
+ Completed 200 OK in 17ms (Views: 16.8ms | ActiveRecord: 0.0ms)
1388
+
1389
+
1390
+ Started GET "/stylesheets/application.css" for 127.0.0.1 at 2012-07-03 13:44:43 +0300
1391
+
1392
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
1393
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1394
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1395
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1396
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1397
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1398
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1399
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1400
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1401
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1402
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1403
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
1404
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
1405
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1406
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1407
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1408
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1409
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1410
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1411
+
1412
+
1413
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
1414
+
1415
+
1416
+ Started GET "/javascripts/application.js" for 127.0.0.1 at 2012-07-03 13:44:43 +0300
1417
+
1418
+ ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
1419
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1420
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1421
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1422
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1423
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1424
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1425
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1426
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1427
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1428
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1429
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
1430
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
1431
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1432
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1433
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1434
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1435
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1436
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1437
+
1438
+
1439
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
1440
+
1441
+
1442
+ Started GET "/helpers/signed_in" for 127.0.0.1 at 2012-07-03 13:45:54 +0300
1443
+ Processing by HelpersController#signed_in as HTML
1444
+ Rendered helpers/signed_in.erb within layouts/application (0.0ms)
1445
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
1446
+
1447
+
1448
+ Started GET "/stylesheets/application.css" for 127.0.0.1 at 2012-07-03 13:45:54 +0300
1449
+
1450
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
1451
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1452
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1453
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1454
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1455
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1456
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1457
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1458
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1459
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1460
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1461
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
1462
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
1463
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1464
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1465
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1466
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1467
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1468
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1469
+
1470
+
1471
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
1472
+
1473
+
1474
+ Started GET "/javascripts/application.js" for 127.0.0.1 at 2012-07-03 13:45:54 +0300
1475
+
1476
+ ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
1477
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1478
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1479
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1480
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1481
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1482
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1483
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1484
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1485
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1486
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1487
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
1488
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
1489
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1490
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1491
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1492
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1493
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1494
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1495
+
1496
+
1497
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
1498
+
1499
+
1500
+ Started GET "/current_user/12345/sign_in" for 127.0.0.1 at 2012-07-03 13:52:16 +0300
1501
+ Processing by CurrentUser::SessionsController#new as HTML
1502
+ Parameters: {"key"=>"12345"}
1503
+  (0.0ms) SELECT COUNT(*) FROM "users" 
1504
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY email
1505
+ Rendered /home/pm/projects/current_user/app/views/current_user/sessions/new.html.erb within layouts/current_user/application (5.6ms)
1506
+ Completed 200 OK in 37ms (Views: 6.1ms | ActiveRecord: 1.2ms)
1507
+
1508
+
1509
+ Started POST "/current_user/12345/sign_in" for 127.0.0.1 at 2012-07-03 13:52:17 +0300
1510
+ Processing by CurrentUser::SessionsController#create as HTML
1511
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"qc4vFSGbrhHSClOKJVol4GRtxcELSMP9n/d5+2Tr19U=", "user_id"=>"2", "commit"=>"one@anahoret.com", "key"=>"12345"}
1512
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "2"]]
1513
+ Redirected to http://localhost:3000/
1514
+ Completed 302 Found in 18ms (ActiveRecord: 0.3ms)
1515
+
1516
+
1517
+ Started GET "/" for 127.0.0.1 at 2012-07-03 13:52:17 +0300
1518
+ Processing by MyProtectedPagesController#show as HTML
1519
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1
1520
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1
1521
+ Rendered my_protected_pages/show.html.erb within layouts/application (0.2ms)
1522
+ Completed 200 OK in 7ms (Views: 2.0ms | ActiveRecord: 0.1ms)
1523
+
1524
+
1525
+ Started GET "/stylesheets/application.css" for 127.0.0.1 at 2012-07-03 13:52:17 +0300
1526
+
1527
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
1528
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1529
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1530
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1531
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1532
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1533
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1534
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1535
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1536
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1537
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1538
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
1539
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
1540
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1541
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1542
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1543
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1544
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1545
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1546
+
1547
+
1548
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
1549
+
1550
+
1551
+ Started GET "/javascripts/application.js" for 127.0.0.1 at 2012-07-03 13:52:17 +0300
1552
+
1553
+ ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
1554
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1555
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1556
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1557
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1558
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1559
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1560
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1561
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1562
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1563
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1564
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
1565
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
1566
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1567
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1568
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1569
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1570
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1571
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1572
+
1573
+
1574
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
1575
+
1576
+
1577
+ Started GET "/helpers/signed_in" for 127.0.0.1 at 2012-07-03 13:52:21 +0300
1578
+ Processing by HelpersController#signed_in as HTML
1579
+ Rendered helpers/signed_in.erb within layouts/application (0.4ms)
1580
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
1581
+
1582
+
1583
+ Started GET "/stylesheets/application.css" for 127.0.0.1 at 2012-07-03 13:52:21 +0300
1584
+
1585
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
1586
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1587
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1588
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1589
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1590
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1591
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1592
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1593
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1594
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1595
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1596
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
1597
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
1598
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1599
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1600
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1601
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1602
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1603
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1604
+
1605
+
1606
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
1607
+
1608
+
1609
+ Started GET "/javascripts/application.js" for 127.0.0.1 at 2012-07-03 13:52:21 +0300
1610
+
1611
+ ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
1612
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1613
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1614
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1615
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1616
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1617
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1618
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1619
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1620
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1621
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1622
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
1623
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
1624
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1625
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1626
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1627
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1628
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1629
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1630
+
1631
+
1632
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
1633
+
1634
+
1635
+ Started GET "/helpers/signed_in" for 127.0.0.1 at 2012-07-03 13:52:37 +0300
1636
+ Processing by HelpersController#signed_in as HTML
1637
+ Rendered helpers/signed_in.erb within layouts/application (0.1ms)
1638
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1639
+
1640
+
1641
+ Started GET "/stylesheets/application.css" for 127.0.0.1 at 2012-07-03 13:52:37 +0300
1642
+
1643
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
1644
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1645
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1646
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1647
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1648
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1649
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1650
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1651
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1652
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1653
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1654
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
1655
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
1656
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1657
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1658
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1659
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1660
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1661
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1662
+
1663
+
1664
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
1665
+
1666
+
1667
+ Started GET "/javascripts/application.js" for 127.0.0.1 at 2012-07-03 13:52:37 +0300
1668
+
1669
+ ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
1670
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1671
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1672
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1673
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1674
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1675
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1676
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1677
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1678
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1679
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1680
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
1681
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
1682
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1683
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1684
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1685
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1686
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1687
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1688
+
1689
+
1690
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
1691
+
1692
+
1693
+ Started GET "/helpers/signed_in" for 127.0.0.1 at 2012-07-03 14:09:09 +0300
1694
+
1695
+ ActionController::RoutingError (No route matches [GET] "/helpers/signed_in"):
1696
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1697
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1698
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1699
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1700
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1701
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1702
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1703
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1704
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1705
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1706
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
1707
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
1708
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1709
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1710
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1711
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1712
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1713
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1714
+
1715
+
1716
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
1717
+
1718
+
1719
+ Started GET "/signed_in_helper" for 127.0.0.1 at 2012-07-03 14:09:16 +0300
1720
+
1721
+ AbstractController::ActionNotFound (The action 'signed_in' could not be found for HelpersController):
1722
+ actionpack (3.2.6) lib/abstract_controller/base.rb:116:in `process'
1723
+ actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process'
1724
+ actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch'
1725
+ actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1726
+ actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action'
1727
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call'
1728
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1729
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call'
1730
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
1731
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
1732
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
1733
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
1734
+ actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1735
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1736
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
1737
+ actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call'
1738
+ actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1739
+ actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call'
1740
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1741
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1742
+ actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call'
1743
+ activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call'
1744
+ activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
1745
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1746
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__822411466__call__1024709636__callbacks'
1747
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
1748
+ activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1749
+ activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
1750
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1751
+ actionpack (3.2.6) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1752
+ actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1753
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1754
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1755
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1756
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1757
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1758
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1759
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1760
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1761
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1762
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1763
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
1764
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
1765
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1766
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1767
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1768
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1769
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1770
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1771
+
1772
+
1773
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.3ms)
1774
+
1775
+
1776
+ Started GET "/helpers/signed_in_helper" for 127.0.0.1 at 2012-07-03 14:11:38 +0300
1777
+
1778
+ ActionController::RoutingError (uninitialized constant Helpers):
1779
+ activesupport (3.2.6) lib/active_support/inflector/methods.rb:229:in `block in constantize'
1780
+ activesupport (3.2.6) lib/active_support/inflector/methods.rb:228:in `each'
1781
+ activesupport (3.2.6) lib/active_support/inflector/methods.rb:228:in `constantize'
1782
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
1783
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:54:in `controller'
1784
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:32:in `call'
1785
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
1786
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
1787
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
1788
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
1789
+ actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1790
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1791
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
1792
+ actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call'
1793
+ actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1794
+ actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call'
1795
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1796
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1797
+ actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call'
1798
+ activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call'
1799
+ activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
1800
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1801
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__822411466__call__1024709636__callbacks'
1802
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
1803
+ activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1804
+ activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
1805
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1806
+ actionpack (3.2.6) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1807
+ actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1808
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1809
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1810
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1811
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1812
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1813
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1814
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1815
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1816
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1817
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1818
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
1819
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
1820
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1821
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1822
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1823
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1824
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1825
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1826
+
1827
+
1828
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
1829
+
1830
+
1831
+ Started POST "/current_user/12345/sign_in" for 127.0.0.1 at 2012-07-03 14:32:10 +0300
1832
+ Processing by CurrentUser::SessionsController#create as HTML
1833
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"qc4vFSGbrhHSClOKJVol4GRtxcELSMP9n/d5+2Tr19U=", "user_id"=>"1", "commit"=>"blah@anahoret.com", "key"=>"12345"}
1834
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
1835
+ Redirected to http://localhost:3000/
1836
+ Completed 302 Found in 5ms (ActiveRecord: 0.4ms)
1837
+
1838
+
1839
+ Started GET "/" for 127.0.0.1 at 2012-07-03 14:32:11 +0300
1840
+ Processing by MyProtectedPagesController#show as HTML
1841
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1842
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
1843
+ Rendered my_protected_pages/show.html.erb within layouts/application (0.0ms)
1844
+ Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.1ms)
1845
+
1846
+
1847
+ Started GET "/stylesheets/application.css" for 127.0.0.1 at 2012-07-03 14:32:11 +0300
1848
+
1849
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
1850
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1851
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1852
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1853
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1854
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1855
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1856
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1857
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1858
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1859
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1860
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
1861
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
1862
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1863
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1864
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1865
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1866
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1867
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1868
+
1869
+
1870
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
1871
+
1872
+
1873
+ Started GET "/javascripts/application.js" for 127.0.0.1 at 2012-07-03 14:32:11 +0300
1874
+
1875
+ ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
1876
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1877
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1878
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1879
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1880
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1881
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1882
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1883
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1884
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1885
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1886
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
1887
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
1888
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1889
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1890
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1891
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1892
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1893
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1894
+
1895
+
1896
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
1897
+
1898
+
1899
+ Started POST "/current_user/12345/sign_in" for 127.0.0.1 at 2012-07-03 14:32:13 +0300
1900
+ Processing by CurrentUser::SessionsController#create as HTML
1901
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"qc4vFSGbrhHSClOKJVol4GRtxcELSMP9n/d5+2Tr19U=", "user_id"=>"2", "commit"=>"one@anahoret.com", "key"=>"12345"}
1902
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "2"]]
1903
+ Redirected to http://localhost:3000/
1904
+ Completed 302 Found in 2ms (ActiveRecord: 0.1ms)
1905
+
1906
+
1907
+ Started GET "/" for 127.0.0.1 at 2012-07-03 14:32:13 +0300
1908
+ Processing by MyProtectedPagesController#show as HTML
1909
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1
1910
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1
1911
+ Rendered my_protected_pages/show.html.erb within layouts/application (0.1ms)
1912
+ Completed 200 OK in 5ms (Views: 3.1ms | ActiveRecord: 0.2ms)
1913
+
1914
+
1915
+ Started GET "/stylesheets/application.css" for 127.0.0.1 at 2012-07-03 14:32:13 +0300
1916
+
1917
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
1918
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1919
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1920
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1921
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1922
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1923
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1924
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1925
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1926
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1927
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1928
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
1929
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
1930
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1931
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1932
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1933
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1934
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1935
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1936
+
1937
+
1938
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
1939
+
1940
+
1941
+ Started GET "/javascripts/application.js" for 127.0.0.1 at 2012-07-03 14:32:13 +0300
1942
+
1943
+ ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
1944
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1945
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1946
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
1947
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
1948
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1949
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1950
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1951
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1952
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1953
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
1954
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
1955
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
1956
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1957
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
1958
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1959
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1960
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1961
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1962
+
1963
+
1964
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
1965
+
1966
+
1967
+ Started GET "/current_user/123345/sign_in" for 127.0.0.1 at 2012-07-03 14:32:19 +0300
1968
+ Processing by CurrentUser::SessionsController#new as HTML
1969
+ Parameters: {"key"=>"123345"}
1970
+ Rendered text template (0.0ms)
1971
+ Filter chain halted as :check_key rendered or redirected
1972
+ Completed 401 Unauthorized in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
1973
+
1974
+
1975
+ Started GET "/current_user/12345/sign_in" for 127.0.0.1 at 2012-07-03 14:32:21 +0300
1976
+ Processing by CurrentUser::SessionsController#new as HTML
1977
+ Parameters: {"key"=>"12345"}
1978
+  (0.2ms) SELECT COUNT(*) FROM "users"
1979
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY email
1980
+ Rendered /home/pm/projects/current_user/app/views/current_user/sessions/new.html.erb within layouts/current_user/application (2.0ms)
1981
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.3ms)
1982
+
1983
+
1984
+ Started POST "/current_user/12345/sign_in" for 127.0.0.1 at 2012-07-03 14:32:23 +0300
1985
+ Processing by CurrentUser::SessionsController#create as HTML
1986
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"qc4vFSGbrhHSClOKJVol4GRtxcELSMP9n/d5+2Tr19U=", "user_id"=>"2", "commit"=>"one@anahoret.com", "key"=>"12345"}
1987
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "2"]]
1988
+ Redirected to http://localhost:3000/
1989
+ Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
1990
+
1991
+
1992
+ Started GET "/" for 127.0.0.1 at 2012-07-03 14:32:23 +0300
1993
+ Processing by MyProtectedPagesController#show as HTML
1994
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1
1995
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1
1996
+ Rendered my_protected_pages/show.html.erb within layouts/application (0.1ms)
1997
+ Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 0.2ms)
1998
+
1999
+
2000
+ Started GET "/stylesheets/application.css" for 127.0.0.1 at 2012-07-03 14:32:23 +0300
2001
+
2002
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
2003
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2004
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2005
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
2006
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
2007
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2008
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2009
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2010
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2011
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
2012
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
2013
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
2014
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
2015
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2016
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
2017
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2018
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2019
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2020
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2021
+
2022
+
2023
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
2024
+
2025
+
2026
+ Started GET "/javascripts/application.js" for 127.0.0.1 at 2012-07-03 14:32:23 +0300
2027
+
2028
+ ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
2029
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2030
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2031
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
2032
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
2033
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2034
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2035
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2036
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2037
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
2038
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
2039
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
2040
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
2041
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2042
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
2043
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2044
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2045
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2046
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2047
+
2048
+
2049
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
2050
+
2051
+
2052
+ Started GET "/helpers/signed_in" for 127.0.0.1 at 2012-07-03 14:32:28 +0300
2053
+
2054
+ AbstractController::ActionNotFound (The action 'signed_in' could not be found for HelpersController):
2055
+ actionpack (3.2.6) lib/abstract_controller/base.rb:116:in `process'
2056
+ actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process'
2057
+ actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch'
2058
+ actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2059
+ actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action'
2060
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call'
2061
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
2062
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call'
2063
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
2064
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
2065
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
2066
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
2067
+ actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2068
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
2069
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
2070
+ actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call'
2071
+ actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2072
+ actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call'
2073
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
2074
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
2075
+ actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call'
2076
+ activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call'
2077
+ activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
2078
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
2079
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__822411466__call__1024709636__callbacks'
2080
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
2081
+ activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
2082
+ activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
2083
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2084
+ actionpack (3.2.6) lib/action_dispatch/middleware/reloader.rb:65:in `call'
2085
+ actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2086
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2087
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2088
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
2089
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
2090
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2091
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2092
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2093
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2094
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
2095
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
2096
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
2097
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
2098
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2099
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
2100
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2101
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2102
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2103
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2104
+
2105
+
2106
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.3ms)
2107
+
2108
+
2109
+ Started GET "/helpers/signed_in_helper" for 127.0.0.1 at 2012-07-03 14:32:32 +0300
2110
+ Processing by HelpersController#signed_in_helper as HTML
2111
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1
2112
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1
2113
+ Rendered helpers/signed_in_helper.erb within layouts/application (1.3ms)
2114
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.1ms)
2115
+
2116
+
2117
+ Started GET "/stylesheets/application.css" for 127.0.0.1 at 2012-07-03 14:32:32 +0300
2118
+
2119
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
2120
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2121
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2122
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
2123
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
2124
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2125
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2126
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2127
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2128
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
2129
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
2130
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
2131
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
2132
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2133
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
2134
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2135
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2136
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2137
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2138
+
2139
+
2140
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
2141
+
2142
+
2143
+ Started GET "/javascripts/application.js" for 127.0.0.1 at 2012-07-03 14:32:32 +0300
2144
+
2145
+ ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
2146
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2147
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2148
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
2149
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
2150
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2151
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2152
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2153
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2154
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
2155
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
2156
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
2157
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
2158
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2159
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
2160
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2161
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2162
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2163
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2164
+
2165
+
2166
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
2167
+
2168
+
2169
+ Started POST "/current_user/12345/sign_in" for 127.0.0.1 at 2012-07-03 14:32:37 +0300
2170
+ Processing by CurrentUser::SessionsController#create as HTML
2171
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"qc4vFSGbrhHSClOKJVol4GRtxcELSMP9n/d5+2Tr19U=", "user_id"=>"1", "commit"=>"blah@anahoret.com", "key"=>"12345"}
2172
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
2173
+ Redirected to http://localhost:3000/
2174
+ Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
2175
+
2176
+
2177
+ Started GET "/" for 127.0.0.1 at 2012-07-03 14:32:37 +0300
2178
+ Processing by MyProtectedPagesController#show as HTML
2179
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
2180
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
2181
+ Rendered my_protected_pages/show.html.erb within layouts/application (0.0ms)
2182
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.1ms)
2183
+
2184
+
2185
+ Started GET "/stylesheets/application.css" for 127.0.0.1 at 2012-07-03 14:32:37 +0300
2186
+
2187
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
2188
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2189
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2190
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
2191
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
2192
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2193
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2194
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2195
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2196
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
2197
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
2198
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
2199
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
2200
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2201
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
2202
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2203
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2204
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2205
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2206
+
2207
+
2208
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
2209
+
2210
+
2211
+ Started GET "/javascripts/application.js" for 127.0.0.1 at 2012-07-03 14:32:37 +0300
2212
+
2213
+ ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
2214
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2215
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2216
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
2217
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
2218
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2219
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2220
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2221
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2222
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
2223
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
2224
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
2225
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
2226
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2227
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
2228
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2229
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2230
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2231
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2232
+
2233
+
2234
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
2235
+
2236
+
2237
+ Started GET "/helpers/signed_in_helper" for 127.0.0.1 at 2012-07-03 14:32:40 +0300
2238
+ Processing by HelpersController#signed_in_helper as HTML
2239
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
2240
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
2241
+ Rendered helpers/signed_in_helper.erb within layouts/application (1.1ms)
2242
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.1ms)
2243
+
2244
+
2245
+ Started GET "/stylesheets/application.css" for 127.0.0.1 at 2012-07-03 14:32:40 +0300
2246
+
2247
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
2248
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2249
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2250
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
2251
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
2252
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2253
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2254
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2255
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2256
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
2257
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
2258
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
2259
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
2260
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2261
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
2262
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2263
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2264
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2265
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2266
+
2267
+
2268
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
2269
+
2270
+
2271
+ Started GET "/javascripts/application.js" for 127.0.0.1 at 2012-07-03 14:32:40 +0300
2272
+
2273
+ ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
2274
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2275
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2276
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
2277
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
2278
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2279
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2280
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2281
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2282
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
2283
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
2284
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
2285
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
2286
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2287
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
2288
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2289
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2290
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2291
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2292
+
2293
+
2294
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
2295
+
2296
+
2297
+ Started GET "/" for 127.0.0.1 at 2012-07-03 14:32:48 +0300
2298
+ Processing by MyProtectedPagesController#show as HTML
2299
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
2300
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
2301
+ Rendered my_protected_pages/show.html.erb within layouts/application (0.0ms)
2302
+ Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
2303
+
2304
+
2305
+ Started GET "/stylesheets/application.css" for 127.0.0.1 at 2012-07-03 14:32:48 +0300
2306
+
2307
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
2308
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2309
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2310
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
2311
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
2312
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2313
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2314
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2315
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2316
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
2317
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
2318
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
2319
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
2320
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2321
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
2322
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2323
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2324
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2325
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2326
+
2327
+
2328
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
2329
+
2330
+
2331
+ Started GET "/javascripts/application.js" for 127.0.0.1 at 2012-07-03 14:32:48 +0300
2332
+
2333
+ ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
2334
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2335
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2336
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
2337
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
2338
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2339
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2340
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2341
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2342
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
2343
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
2344
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
2345
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
2346
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2347
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
2348
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2349
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2350
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2351
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2352
+
2353
+
2354
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
2355
+
2356
+
2357
+ Started POST "/current_user/12345/sign_in" for 127.0.0.1 at 2012-07-03 14:32:51 +0300
2358
+ Processing by CurrentUser::SessionsController#create as HTML
2359
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"qc4vFSGbrhHSClOKJVol4GRtxcELSMP9n/d5+2Tr19U=", "user_id"=>"1", "commit"=>"blah@anahoret.com", "key"=>"12345"}
2360
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
2361
+ Redirected to http://localhost:3000/
2362
+ Completed 302 Found in 2ms (ActiveRecord: 0.1ms)
2363
+
2364
+
2365
+ Started GET "/" for 127.0.0.1 at 2012-07-03 14:32:51 +0300
2366
+ Processing by MyProtectedPagesController#show as HTML
2367
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
2368
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
2369
+ Rendered my_protected_pages/show.html.erb within layouts/application (0.1ms)
2370
+ Completed 200 OK in 4ms (Views: 3.0ms | ActiveRecord: 0.2ms)
2371
+
2372
+
2373
+ Started GET "/stylesheets/application.css" for 127.0.0.1 at 2012-07-03 14:32:51 +0300
2374
+
2375
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
2376
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2377
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2378
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
2379
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
2380
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2381
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2382
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2383
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2384
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
2385
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
2386
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
2387
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
2388
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2389
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
2390
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2391
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2392
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2393
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2394
+
2395
+
2396
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
2397
+
2398
+
2399
+ Started GET "/javascripts/application.js" for 127.0.0.1 at 2012-07-03 14:32:51 +0300
2400
+
2401
+ ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
2402
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2403
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2404
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
2405
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
2406
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2407
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2408
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2409
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2410
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
2411
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
2412
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
2413
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
2414
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2415
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
2416
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2417
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2418
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2419
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2420
+
2421
+
2422
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
2423
+
2424
+
2425
+ Started GET "/helpers/signed_in" for 127.0.0.1 at 2012-07-03 14:32:53 +0300
2426
+
2427
+ AbstractController::ActionNotFound (The action 'signed_in' could not be found for HelpersController):
2428
+ actionpack (3.2.6) lib/abstract_controller/base.rb:116:in `process'
2429
+ actionpack (3.2.6) lib/abstract_controller/rendering.rb:45:in `process'
2430
+ actionpack (3.2.6) lib/action_controller/metal.rb:203:in `dispatch'
2431
+ actionpack (3.2.6) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2432
+ actionpack (3.2.6) lib/action_controller/metal.rb:246:in `block in action'
2433
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `call'
2434
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
2435
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:36:in `call'
2436
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
2437
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
2438
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
2439
+ actionpack (3.2.6) lib/action_dispatch/routing/route_set.rb:600:in `call'
2440
+ actionpack (3.2.6) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2441
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
2442
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
2443
+ actionpack (3.2.6) lib/action_dispatch/middleware/head.rb:14:in `call'
2444
+ actionpack (3.2.6) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2445
+ actionpack (3.2.6) lib/action_dispatch/middleware/flash.rb:242:in `call'
2446
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
2447
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
2448
+ actionpack (3.2.6) lib/action_dispatch/middleware/cookies.rb:338:in `call'
2449
+ activerecord (3.2.6) lib/active_record/query_cache.rb:64:in `call'
2450
+ activerecord (3.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
2451
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
2452
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `_run__822411466__call__1024709636__callbacks'
2453
+ activesupport (3.2.6) lib/active_support/callbacks.rb:405:in `__run_callback'
2454
+ activesupport (3.2.6) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
2455
+ activesupport (3.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
2456
+ actionpack (3.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2457
+ actionpack (3.2.6) lib/action_dispatch/middleware/reloader.rb:65:in `call'
2458
+ actionpack (3.2.6) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2459
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2460
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2461
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
2462
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
2463
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2464
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2465
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2466
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2467
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
2468
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
2469
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
2470
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
2471
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2472
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
2473
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2474
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2475
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2476
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2477
+
2478
+
2479
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.3ms)
2480
+
2481
+
2482
+ Started GET "/helpers/signed_in_helper" for 127.0.0.1 at 2012-07-03 14:32:55 +0300
2483
+ Processing by HelpersController#signed_in_helper as HTML
2484
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
2485
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
2486
+ Rendered helpers/signed_in_helper.erb within layouts/application (1.1ms)
2487
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.2ms)
2488
+
2489
+
2490
+ Started GET "/javascripts/application.js" for 127.0.0.1 at 2012-07-03 14:32:55 +0300
2491
+
2492
+ ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
2493
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2494
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2495
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
2496
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
2497
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2498
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2499
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2500
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2501
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
2502
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
2503
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
2504
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
2505
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2506
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
2507
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2508
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2509
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2510
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2511
+
2512
+
2513
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
2514
+
2515
+
2516
+ Started GET "/stylesheets/application.css" for 127.0.0.1 at 2012-07-03 14:32:55 +0300
2517
+
2518
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
2519
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2520
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2521
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
2522
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
2523
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2524
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2525
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2526
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2527
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
2528
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
2529
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
2530
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
2531
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2532
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
2533
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2534
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2535
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2536
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2537
+
2538
+
2539
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
2540
+
2541
+
2542
+ Started GET "/current_user/12345/sign_in" for 127.0.0.1 at 2012-07-03 14:33:52 +0300
2543
+ Processing by CurrentUser::SessionsController#new as HTML
2544
+ Parameters: {"key"=>"12345"}
2545
+  (0.1ms) SELECT COUNT(*) FROM "users" 
2546
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY email
2547
+ Rendered /home/pm/projects/current_user/app/views/current_user/sessions/new.html.erb within layouts/current_user/application (1.6ms)
2548
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.2ms)
2549
+
2550
+
2551
+ Started POST "/current_user/12345/sign_in" for 127.0.0.1 at 2012-07-03 14:33:53 +0300
2552
+ Processing by CurrentUser::SessionsController#create as HTML
2553
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"qc4vFSGbrhHSClOKJVol4GRtxcELSMP9n/d5+2Tr19U=", "user_id"=>"1", "commit"=>"blah@anahoret.com", "key"=>"12345"}
2554
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]
2555
+ Redirected to http://localhost:3000/
2556
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
2557
+
2558
+
2559
+ Started GET "/" for 127.0.0.1 at 2012-07-03 14:33:53 +0300
2560
+ Processing by MyProtectedPagesController#show as HTML
2561
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
2562
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
2563
+ Rendered my_protected_pages/show.html.erb within layouts/application (0.1ms)
2564
+ Completed 200 OK in 5ms (Views: 3.0ms | ActiveRecord: 0.2ms)
2565
+
2566
+
2567
+ Started GET "/stylesheets/application.css" for 127.0.0.1 at 2012-07-03 14:33:53 +0300
2568
+
2569
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
2570
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2571
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2572
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
2573
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
2574
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2575
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2576
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2577
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2578
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
2579
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
2580
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
2581
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
2582
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2583
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
2584
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2585
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2586
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2587
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2588
+
2589
+
2590
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
2591
+
2592
+
2593
+ Started GET "/javascripts/application.js" for 127.0.0.1 at 2012-07-03 14:33:53 +0300
2594
+
2595
+ ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
2596
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2597
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2598
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
2599
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
2600
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2601
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2602
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2603
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2604
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
2605
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
2606
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
2607
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
2608
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2609
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
2610
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2611
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2612
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2613
+ /home/pm/.rvm/rubies/ruby-1.9.3-preview1/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2614
+
2615
+
2616
+ Rendered /home/pm/.rvm/gems/ruby-1.9.3-preview1@current_user/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)