ruby_jwt 1.1.0 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/ruby_jwt.rb +22 -20
- data/lib/ruby_jwt/version.rb +1 -1
- data/test/dummy/app/assets/javascripts/main.js +2 -0
- data/test/dummy/app/assets/javascripts/users.js +2 -0
- data/test/dummy/app/assets/stylesheets/main.css +4 -0
- data/test/dummy/app/assets/stylesheets/scaffold.css +56 -0
- data/test/dummy/app/assets/stylesheets/users.css +4 -0
- data/test/dummy/app/controllers/application_controller.rb +14 -0
- data/test/dummy/app/controllers/main_controller.rb +7 -0
- data/test/dummy/app/controllers/users_controller.rb +64 -0
- data/test/dummy/app/helpers/main_helper.rb +2 -0
- data/test/dummy/app/helpers/users_helper.rb +2 -0
- data/test/dummy/app/models/user.rb +2 -0
- data/test/dummy/app/views/main/index.html.erb +2 -0
- data/test/dummy/app/views/main/login.html.erb +2 -0
- data/test/dummy/app/views/users/_form.html.erb +25 -0
- data/test/dummy/app/views/users/edit.html.erb +6 -0
- data/test/dummy/app/views/users/index.html.erb +27 -0
- data/test/dummy/app/views/users/login.html.erb +1 -0
- data/test/dummy/app/views/users/new.html.erb +5 -0
- data/test/dummy/app/views/users/show.html.erb +14 -0
- data/test/dummy/config/routes.rb +9 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20140919004039_create_users.rb +10 -0
- data/test/dummy/db/schema.rb +23 -0
- data/test/dummy/log/development.log +1112 -0
- data/test/dummy/log/test.log +830 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/0800f54ee19cf3cee10b956fa9786799 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/25fca4643219052b0d5c66cf2c71f72f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/371bf96e99717688ed7313a0c53f4212 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/386e9196dd0f9efdce6f92ce93a6d107 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/3f9170db678c4e1fdfa51752e5ec8e39 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/4050a4e5062ab95c9f32e9b6940821ea +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/489af12e680adec109e506328fdc1368 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/510da110ae528e2d22533be39ff696c5 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5f1a0d05e77ca8b9a1fc2a47e17a8174 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/6fc757c2c8329244ca95d6909865bbc2 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/87b209c0c9da28094a8d5581a21262c6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cebc6db0bbb8120f430da3970b173d2f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/e36b8fcf5914a3a6bf058abfe7367b19 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f56253b5f374fff1a33fbbc9881c9124 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f6eeb33602682bd6ff6d1f177f6b142d +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/25fca4643219052b0d5c66cf2c71f72f +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/371bf96e99717688ed7313a0c53f4212 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/386e9196dd0f9efdce6f92ce93a6d107 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/4050a4e5062ab95c9f32e9b6940821ea +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/5f1a0d05e77ca8b9a1fc2a47e17a8174 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/6fc757c2c8329244ca95d6909865bbc2 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/87b209c0c9da28094a8d5581a21262c6 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/e36b8fcf5914a3a6bf058abfe7367b19 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/f56253b5f374fff1a33fbbc9881c9124 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/f6eeb33602682bd6ff6d1f177f6b142d +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/ruby_jwt_test.rb +12 -16
- metadata +118 -2
@@ -0,0 +1,1112 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
Started GET "/users" for 192.168.0.27 at 2014-09-18 20:39:31 -0400
|
4
|
+
|
5
|
+
ActionController::RoutingError (No route matches [GET] "/users"):
|
6
|
+
actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
7
|
+
actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
8
|
+
railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app'
|
9
|
+
railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call'
|
10
|
+
activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
11
|
+
activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged'
|
12
|
+
activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged'
|
13
|
+
railties (4.1.5) lib/rails/rack/logger.rb:20:in `call'
|
14
|
+
actionpack (4.1.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
15
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
16
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
17
|
+
activesupport (4.1.5) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
|
18
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
19
|
+
actionpack (4.1.5) lib/action_dispatch/middleware/static.rb:64:in `call'
|
20
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
21
|
+
railties (4.1.5) lib/rails/engine.rb:514:in `call'
|
22
|
+
railties (4.1.5) lib/rails/application.rb:144:in `call'
|
23
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
24
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
25
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
26
|
+
/home/chris/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
27
|
+
/home/chris/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
28
|
+
/home/chris/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
29
|
+
|
30
|
+
|
31
|
+
Rendered /home/chris/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
|
32
|
+
Rendered /home/chris/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.0ms)
|
33
|
+
Rendered /home/chris/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (14.4ms)
|
34
|
+
|
35
|
+
|
36
|
+
Started GET "/" for 192.168.0.27 at 2014-09-18 20:39:32 -0400
|
37
|
+
Processing by Rails::WelcomeController#index as HTML
|
38
|
+
Rendered /home/chris/.rvm/gems/ruby-2.1.2/gems/railties-4.1.5/lib/rails/templates/rails/welcome/index.html.erb (0.6ms)
|
39
|
+
Completed 200 OK in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
40
|
+
[1m[36m (175.5ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
41
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
42
|
+
[1m[36m (74.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
43
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
44
|
+
Migrating to CreateUsers (20140919004039)
|
45
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
46
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "password" varchar(255), "created_at" datetime, "updated_at" datetime)
|
47
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140919004039"]]
|
48
|
+
[1m[35m (94.6ms)[0m commit transaction
|
49
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
50
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
51
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "name", "password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", "2014-09-19 00:41:51.206168"], ["name", "user"], ["password", "pass"], ["updated_at", "2014-09-19 00:41:51.206168"]]
|
52
|
+
[1m[36m (125.2ms)[0m [1mcommit transaction[0m
|
53
|
+
|
54
|
+
|
55
|
+
Started GET "/" for 192.168.0.27 at 2014-09-18 20:51:52 -0400
|
56
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
57
|
+
Processing by MainController#index as HTML
|
58
|
+
Rendered main/index.html.erb within layouts/application (0.8ms)
|
59
|
+
Completed 200 OK in 236ms (Views: 235.9ms | ActiveRecord: 0.0ms)
|
60
|
+
|
61
|
+
|
62
|
+
Started GET "/assets/main.css?body=1" for 192.168.0.27 at 2014-09-18 20:51:53 -0400
|
63
|
+
|
64
|
+
|
65
|
+
Started GET "/assets/scaffold.css?body=1" for 192.168.0.27 at 2014-09-18 20:51:53 -0400
|
66
|
+
|
67
|
+
|
68
|
+
Started GET "/assets/users.css?body=1" for 192.168.0.27 at 2014-09-18 20:51:53 -0400
|
69
|
+
|
70
|
+
|
71
|
+
Started GET "/assets/application.css?body=1" for 192.168.0.27 at 2014-09-18 20:51:53 -0400
|
72
|
+
|
73
|
+
|
74
|
+
Started GET "/assets/main.js?body=1" for 192.168.0.27 at 2014-09-18 20:51:53 -0400
|
75
|
+
|
76
|
+
|
77
|
+
Started GET "/assets/users.js?body=1" for 192.168.0.27 at 2014-09-18 20:51:53 -0400
|
78
|
+
|
79
|
+
|
80
|
+
Started GET "/assets/application.js?body=1" for 192.168.0.27 at 2014-09-18 20:51:53 -0400
|
81
|
+
|
82
|
+
|
83
|
+
Started GET "/users" for 192.168.0.27 at 2014-09-18 20:51:56 -0400
|
84
|
+
Processing by UsersController#index as HTML
|
85
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users"
|
86
|
+
Rendered users/index.html.erb within layouts/application (5.3ms)
|
87
|
+
Completed 200 OK in 25ms (Views: 23.3ms | ActiveRecord: 0.4ms)
|
88
|
+
|
89
|
+
|
90
|
+
Started GET "/users" for 192.168.0.27 at 2014-09-18 20:51:56 -0400
|
91
|
+
Processing by UsersController#index as HTML
|
92
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users"[0m
|
93
|
+
Rendered users/index.html.erb within layouts/application (0.9ms)
|
94
|
+
Completed 200 OK in 19ms (Views: 18.8ms | ActiveRecord: 0.1ms)
|
95
|
+
|
96
|
+
|
97
|
+
Started GET "/users/new" for 192.168.0.27 at 2014-09-18 20:51:59 -0400
|
98
|
+
Processing by UsersController#new as HTML
|
99
|
+
Redirected to http://192.168.0.11:3000/
|
100
|
+
Filter chain halted as :verify_token rendered or redirected
|
101
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
102
|
+
|
103
|
+
|
104
|
+
Started GET "/" for 192.168.0.27 at 2014-09-18 20:51:59 -0400
|
105
|
+
Processing by MainController#index as HTML
|
106
|
+
Rendered main/index.html.erb within layouts/application (0.0ms)
|
107
|
+
Completed 200 OK in 20ms (Views: 19.9ms | ActiveRecord: 0.0ms)
|
108
|
+
|
109
|
+
|
110
|
+
Started GET "/users" for 192.168.0.27 at 2014-09-18 20:52:03 -0400
|
111
|
+
Processing by UsersController#index as HTML
|
112
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
113
|
+
Rendered users/index.html.erb within layouts/application (1.0ms)
|
114
|
+
Completed 200 OK in 20ms (Views: 19.9ms | ActiveRecord: 0.1ms)
|
115
|
+
|
116
|
+
|
117
|
+
Started GET "/assets/scaffold.css?body=1" for 192.168.0.27 at 2014-09-18 20:52:03 -0400
|
118
|
+
|
119
|
+
|
120
|
+
Started GET "/assets/users.css?body=1" for 192.168.0.27 at 2014-09-18 20:52:03 -0400
|
121
|
+
|
122
|
+
|
123
|
+
Started GET "/assets/main.js?body=1" for 192.168.0.27 at 2014-09-18 20:52:03 -0400
|
124
|
+
|
125
|
+
|
126
|
+
Started GET "/assets/application.css?body=1" for 192.168.0.27 at 2014-09-18 20:52:03 -0400
|
127
|
+
|
128
|
+
|
129
|
+
Started GET "/assets/users.js?body=1" for 192.168.0.27 at 2014-09-18 20:52:03 -0400
|
130
|
+
|
131
|
+
|
132
|
+
Started GET "/assets/application.js?body=1" for 192.168.0.27 at 2014-09-18 20:52:03 -0400
|
133
|
+
|
134
|
+
|
135
|
+
Started GET "/assets/main.css?body=1" for 192.168.0.27 at 2014-09-18 20:52:03 -0400
|
136
|
+
|
137
|
+
|
138
|
+
Started GET "/users/login" for 192.168.0.27 at 2014-09-18 20:52:05 -0400
|
139
|
+
Processing by UsersController#show as HTML
|
140
|
+
Parameters: {"id"=>"login"}
|
141
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 0]]
|
142
|
+
Completed 404 Not Found in 2ms
|
143
|
+
|
144
|
+
ActiveRecord::RecordNotFound (Couldn't find User with 'id'=login):
|
145
|
+
app/controllers/users_controller.rb:56:in `set_user'
|
146
|
+
|
147
|
+
|
148
|
+
Rendered /home/chris/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
|
149
|
+
Rendered /home/chris/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
|
150
|
+
Rendered /home/chris/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
|
151
|
+
Rendered /home/chris/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.0ms)
|
152
|
+
|
153
|
+
|
154
|
+
Started GET "/users/login" for 192.168.0.27 at 2014-09-18 20:52:39 -0400
|
155
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
156
|
+
Processing by UsersController#show as HTML
|
157
|
+
Parameters: {"id"=>"login"}
|
158
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 0]]
|
159
|
+
Completed 404 Not Found in 3ms
|
160
|
+
|
161
|
+
ActiveRecord::RecordNotFound (Couldn't find User with 'id'=login):
|
162
|
+
app/controllers/users_controller.rb:56:in `set_user'
|
163
|
+
|
164
|
+
|
165
|
+
Rendered /home/chris/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
|
166
|
+
Rendered /home/chris/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
|
167
|
+
Rendered /home/chris/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.0ms)
|
168
|
+
Rendered /home/chris/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (17.1ms)
|
169
|
+
|
170
|
+
|
171
|
+
Started GET "/users/login" for 192.168.0.27 at 2014-09-18 20:52:40 -0400
|
172
|
+
Processing by UsersController#show as HTML
|
173
|
+
Parameters: {"id"=>"login"}
|
174
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 0]]
|
175
|
+
Completed 404 Not Found in 1ms
|
176
|
+
|
177
|
+
ActiveRecord::RecordNotFound (Couldn't find User with 'id'=login):
|
178
|
+
app/controllers/users_controller.rb:56:in `set_user'
|
179
|
+
|
180
|
+
|
181
|
+
Rendered /home/chris/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
|
182
|
+
Rendered /home/chris/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
|
183
|
+
Rendered /home/chris/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
|
184
|
+
Rendered /home/chris/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.5ms)
|
185
|
+
|
186
|
+
|
187
|
+
Started GET "/login" for 192.168.0.27 at 2014-09-18 20:52:43 -0400
|
188
|
+
|
189
|
+
ActionController::RoutingError (No route matches [GET] "/login"):
|
190
|
+
actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
191
|
+
actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
192
|
+
railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app'
|
193
|
+
railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call'
|
194
|
+
activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
195
|
+
activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged'
|
196
|
+
activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged'
|
197
|
+
railties (4.1.5) lib/rails/rack/logger.rb:20:in `call'
|
198
|
+
actionpack (4.1.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
199
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
200
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
201
|
+
activesupport (4.1.5) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
|
202
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
203
|
+
actionpack (4.1.5) lib/action_dispatch/middleware/static.rb:64:in `call'
|
204
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
205
|
+
railties (4.1.5) lib/rails/engine.rb:514:in `call'
|
206
|
+
railties (4.1.5) lib/rails/application.rb:144:in `call'
|
207
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
208
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
209
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
210
|
+
/home/chris/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
211
|
+
/home/chris/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
212
|
+
/home/chris/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
213
|
+
|
214
|
+
|
215
|
+
Rendered /home/chris/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
|
216
|
+
Rendered /home/chris/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
|
217
|
+
Rendered /home/chris/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.3ms)
|
218
|
+
Rendered /home/chris/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (21.4ms)
|
219
|
+
|
220
|
+
|
221
|
+
Started GET "/login" for 192.168.0.27 at 2014-09-18 20:54:16 -0400
|
222
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
223
|
+
Processing by UsersController#login as HTML
|
224
|
+
Completed 500 Internal Server Error in 5ms
|
225
|
+
|
226
|
+
ActionView::MissingTemplate (Missing template users/login, application/login with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
|
227
|
+
* "/mnt/md0/programming/rubyJWT/test/dummy/app/views"
|
228
|
+
):
|
229
|
+
actionview (4.1.5) lib/action_view/path_set.rb:46:in `find'
|
230
|
+
actionview (4.1.5) lib/action_view/lookup_context.rb:124:in `find'
|
231
|
+
actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
|
232
|
+
actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:41:in `determine_template'
|
233
|
+
actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:8:in `render'
|
234
|
+
actionview (4.1.5) lib/action_view/renderer/renderer.rb:42:in `render_template'
|
235
|
+
actionview (4.1.5) lib/action_view/renderer/renderer.rb:23:in `render'
|
236
|
+
actionview (4.1.5) lib/action_view/rendering.rb:99:in `_render_template'
|
237
|
+
actionpack (4.1.5) lib/action_controller/metal/streaming.rb:217:in `_render_template'
|
238
|
+
actionview (4.1.5) lib/action_view/rendering.rb:82:in `render_to_body'
|
239
|
+
actionpack (4.1.5) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
|
240
|
+
actionpack (4.1.5) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
|
241
|
+
actionpack (4.1.5) lib/abstract_controller/rendering.rb:25:in `render'
|
242
|
+
actionpack (4.1.5) lib/action_controller/metal/rendering.rb:16:in `render'
|
243
|
+
actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
|
244
|
+
activesupport (4.1.5) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
|
245
|
+
/home/chris/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
|
246
|
+
activesupport (4.1.5) lib/active_support/core_ext/benchmark.rb:12:in `ms'
|
247
|
+
actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
|
248
|
+
actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
|
249
|
+
activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
|
250
|
+
actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:40:in `render'
|
251
|
+
actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
252
|
+
actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
253
|
+
actionpack (4.1.5) lib/abstract_controller/base.rb:189:in `process_action'
|
254
|
+
actionpack (4.1.5) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
255
|
+
actionpack (4.1.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
256
|
+
activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call'
|
257
|
+
activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call'
|
258
|
+
activesupport (4.1.5) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
|
259
|
+
activesupport (4.1.5) lib/active_support/callbacks.rb:149:in `call'
|
260
|
+
activesupport (4.1.5) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
|
261
|
+
activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `call'
|
262
|
+
activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting'
|
263
|
+
activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `call'
|
264
|
+
activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting'
|
265
|
+
activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `call'
|
266
|
+
activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks'
|
267
|
+
actionpack (4.1.5) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
268
|
+
actionpack (4.1.5) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
269
|
+
actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
270
|
+
activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument'
|
271
|
+
activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
272
|
+
activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument'
|
273
|
+
actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
274
|
+
actionpack (4.1.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
275
|
+
activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
276
|
+
actionpack (4.1.5) lib/abstract_controller/base.rb:136:in `process'
|
277
|
+
actionview (4.1.5) lib/action_view/rendering.rb:30:in `process'
|
278
|
+
actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch'
|
279
|
+
actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
280
|
+
actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action'
|
281
|
+
actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `call'
|
282
|
+
actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
|
283
|
+
actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call'
|
284
|
+
actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
285
|
+
actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `each'
|
286
|
+
actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call'
|
287
|
+
actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678:in `call'
|
288
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
289
|
+
rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
|
290
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
291
|
+
actionpack (4.1.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
292
|
+
actionpack (4.1.5) lib/action_dispatch/middleware/flash.rb:254:in `call'
|
293
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
294
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
295
|
+
actionpack (4.1.5) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
296
|
+
activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call'
|
297
|
+
activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
|
298
|
+
activerecord (4.1.5) lib/active_record/migration.rb:380:in `call'
|
299
|
+
actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
300
|
+
activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks'
|
301
|
+
actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
302
|
+
actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
303
|
+
actionpack (4.1.5) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
304
|
+
actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
305
|
+
actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
306
|
+
railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app'
|
307
|
+
railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call'
|
308
|
+
activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
309
|
+
activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged'
|
310
|
+
activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged'
|
311
|
+
railties (4.1.5) lib/rails/rack/logger.rb:20:in `call'
|
312
|
+
actionpack (4.1.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
313
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
314
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
315
|
+
activesupport (4.1.5) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
|
316
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
317
|
+
actionpack (4.1.5) lib/action_dispatch/middleware/static.rb:64:in `call'
|
318
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
319
|
+
railties (4.1.5) lib/rails/engine.rb:514:in `call'
|
320
|
+
railties (4.1.5) lib/rails/application.rb:144:in `call'
|
321
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
322
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
323
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
324
|
+
/home/chris/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
325
|
+
/home/chris/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
326
|
+
/home/chris/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
327
|
+
|
328
|
+
|
329
|
+
Rendered /home/chris/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (0.9ms)
|
330
|
+
|
331
|
+
|
332
|
+
Started GET "/login" for 192.168.0.27 at 2014-09-18 20:54:28 -0400
|
333
|
+
Processing by UsersController#login as HTML
|
334
|
+
Completed 500 Internal Server Error in 1ms
|
335
|
+
|
336
|
+
ActionView::MissingTemplate (Missing template users/login, application/login with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
|
337
|
+
* "/mnt/md0/programming/rubyJWT/test/dummy/app/views"
|
338
|
+
):
|
339
|
+
actionview (4.1.5) lib/action_view/path_set.rb:46:in `find'
|
340
|
+
actionview (4.1.5) lib/action_view/lookup_context.rb:124:in `find'
|
341
|
+
actionview (4.1.5) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
|
342
|
+
actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:41:in `determine_template'
|
343
|
+
actionview (4.1.5) lib/action_view/renderer/template_renderer.rb:8:in `render'
|
344
|
+
actionview (4.1.5) lib/action_view/renderer/renderer.rb:42:in `render_template'
|
345
|
+
actionview (4.1.5) lib/action_view/renderer/renderer.rb:23:in `render'
|
346
|
+
actionview (4.1.5) lib/action_view/rendering.rb:99:in `_render_template'
|
347
|
+
actionpack (4.1.5) lib/action_controller/metal/streaming.rb:217:in `_render_template'
|
348
|
+
actionview (4.1.5) lib/action_view/rendering.rb:82:in `render_to_body'
|
349
|
+
actionpack (4.1.5) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
|
350
|
+
actionpack (4.1.5) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
|
351
|
+
actionpack (4.1.5) lib/abstract_controller/rendering.rb:25:in `render'
|
352
|
+
actionpack (4.1.5) lib/action_controller/metal/rendering.rb:16:in `render'
|
353
|
+
actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
|
354
|
+
activesupport (4.1.5) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
|
355
|
+
/home/chris/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
|
356
|
+
activesupport (4.1.5) lib/active_support/core_ext/benchmark.rb:12:in `ms'
|
357
|
+
actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
|
358
|
+
actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
|
359
|
+
activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
|
360
|
+
actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:40:in `render'
|
361
|
+
actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
362
|
+
actionpack (4.1.5) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
363
|
+
actionpack (4.1.5) lib/abstract_controller/base.rb:189:in `process_action'
|
364
|
+
actionpack (4.1.5) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
365
|
+
actionpack (4.1.5) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
366
|
+
activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call'
|
367
|
+
activesupport (4.1.5) lib/active_support/callbacks.rb:113:in `call'
|
368
|
+
activesupport (4.1.5) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
|
369
|
+
activesupport (4.1.5) lib/active_support/callbacks.rb:149:in `call'
|
370
|
+
activesupport (4.1.5) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
|
371
|
+
activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `call'
|
372
|
+
activesupport (4.1.5) lib/active_support/callbacks.rb:229:in `block in halting'
|
373
|
+
activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `call'
|
374
|
+
activesupport (4.1.5) lib/active_support/callbacks.rb:166:in `block in halting'
|
375
|
+
activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `call'
|
376
|
+
activesupport (4.1.5) lib/active_support/callbacks.rb:86:in `run_callbacks'
|
377
|
+
actionpack (4.1.5) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
378
|
+
actionpack (4.1.5) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
379
|
+
actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
380
|
+
activesupport (4.1.5) lib/active_support/notifications.rb:159:in `block in instrument'
|
381
|
+
activesupport (4.1.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
382
|
+
activesupport (4.1.5) lib/active_support/notifications.rb:159:in `instrument'
|
383
|
+
actionpack (4.1.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
384
|
+
actionpack (4.1.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
385
|
+
activerecord (4.1.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
386
|
+
actionpack (4.1.5) lib/abstract_controller/base.rb:136:in `process'
|
387
|
+
actionview (4.1.5) lib/action_view/rendering.rb:30:in `process'
|
388
|
+
actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch'
|
389
|
+
actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
390
|
+
actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action'
|
391
|
+
actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `call'
|
392
|
+
actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
|
393
|
+
actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call'
|
394
|
+
actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
395
|
+
actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `each'
|
396
|
+
actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call'
|
397
|
+
actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678:in `call'
|
398
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
399
|
+
rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
|
400
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
401
|
+
actionpack (4.1.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
402
|
+
actionpack (4.1.5) lib/action_dispatch/middleware/flash.rb:254:in `call'
|
403
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
404
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
405
|
+
actionpack (4.1.5) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
406
|
+
activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call'
|
407
|
+
activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
|
408
|
+
activerecord (4.1.5) lib/active_record/migration.rb:380:in `call'
|
409
|
+
actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
410
|
+
activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks'
|
411
|
+
actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
412
|
+
actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
413
|
+
actionpack (4.1.5) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
414
|
+
actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
415
|
+
actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
416
|
+
railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app'
|
417
|
+
railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call'
|
418
|
+
activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
419
|
+
activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged'
|
420
|
+
activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged'
|
421
|
+
railties (4.1.5) lib/rails/rack/logger.rb:20:in `call'
|
422
|
+
actionpack (4.1.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
423
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
424
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
425
|
+
activesupport (4.1.5) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
|
426
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
427
|
+
actionpack (4.1.5) lib/action_dispatch/middleware/static.rb:64:in `call'
|
428
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
429
|
+
railties (4.1.5) lib/rails/engine.rb:514:in `call'
|
430
|
+
railties (4.1.5) lib/rails/application.rb:144:in `call'
|
431
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
432
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
433
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
434
|
+
/home/chris/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
435
|
+
/home/chris/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
436
|
+
/home/chris/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
437
|
+
|
438
|
+
|
439
|
+
Rendered /home/chris/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (0.4ms)
|
440
|
+
|
441
|
+
|
442
|
+
Started GET "/login" for 192.168.0.27 at 2014-09-18 20:55:03 -0400
|
443
|
+
Processing by UsersController#login as HTML
|
444
|
+
Rendered users/login.html.erb within layouts/application (0.3ms)
|
445
|
+
Completed 200 OK in 44ms (Views: 43.8ms | ActiveRecord: 0.0ms)
|
446
|
+
|
447
|
+
|
448
|
+
Started GET "/assets/scaffold.css?body=1" for 192.168.0.27 at 2014-09-18 20:55:03 -0400
|
449
|
+
|
450
|
+
|
451
|
+
Started GET "/assets/main.css?body=1" for 192.168.0.27 at 2014-09-18 20:55:03 -0400
|
452
|
+
|
453
|
+
|
454
|
+
Started GET "/assets/main.js?body=1" for 192.168.0.27 at 2014-09-18 20:55:03 -0400
|
455
|
+
|
456
|
+
|
457
|
+
Started GET "/assets/application.css?body=1" for 192.168.0.27 at 2014-09-18 20:55:03 -0400
|
458
|
+
|
459
|
+
|
460
|
+
Started GET "/assets/users.css?body=1" for 192.168.0.27 at 2014-09-18 20:55:03 -0400
|
461
|
+
|
462
|
+
|
463
|
+
Started GET "/assets/application.js?body=1" for 192.168.0.27 at 2014-09-18 20:55:03 -0400
|
464
|
+
|
465
|
+
|
466
|
+
Started GET "/assets/users.js?body=1" for 192.168.0.27 at 2014-09-18 20:55:03 -0400
|
467
|
+
|
468
|
+
|
469
|
+
Started GET "/users" for 192.168.0.27 at 2014-09-18 20:55:10 -0400
|
470
|
+
Processing by UsersController#index as HTML
|
471
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users"
|
472
|
+
Rendered users/index.html.erb within layouts/application (5.5ms)
|
473
|
+
Completed 200 OK in 26ms (Views: 24.3ms | ActiveRecord: 0.4ms)
|
474
|
+
|
475
|
+
|
476
|
+
Started GET "/assets/main.css?body=1" for 192.168.0.27 at 2014-09-18 20:55:10 -0400
|
477
|
+
|
478
|
+
|
479
|
+
Started GET "/assets/users.css?body=1" for 192.168.0.27 at 2014-09-18 20:55:10 -0400
|
480
|
+
|
481
|
+
|
482
|
+
Started GET "/assets/main.js?body=1" for 192.168.0.27 at 2014-09-18 20:55:10 -0400
|
483
|
+
|
484
|
+
|
485
|
+
Started GET "/assets/users.js?body=1" for 192.168.0.27 at 2014-09-18 20:55:10 -0400
|
486
|
+
|
487
|
+
|
488
|
+
Started GET "/assets/application.js?body=1" for 192.168.0.27 at 2014-09-18 20:55:10 -0400
|
489
|
+
|
490
|
+
|
491
|
+
Started GET "/assets/scaffold.css?body=1" for 192.168.0.27 at 2014-09-18 20:55:10 -0400
|
492
|
+
|
493
|
+
|
494
|
+
Started GET "/assets/application.css?body=1" for 192.168.0.27 at 2014-09-18 20:55:10 -0400
|
495
|
+
|
496
|
+
|
497
|
+
Started GET "/users/new" for 192.168.0.27 at 2014-09-18 20:55:11 -0400
|
498
|
+
Processing by UsersController#new as HTML
|
499
|
+
Completed 500 Internal Server Error in 0ms
|
500
|
+
|
501
|
+
ArgumentError (wrong number of arguments (1 for 2..3)):
|
502
|
+
app/controllers/application_controller.rb:8:in `verify_token'
|
503
|
+
|
504
|
+
|
505
|
+
Rendered /home/chris/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
|
506
|
+
Rendered /home/chris/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (22.5ms)
|
507
|
+
Rendered /home/chris/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
|
508
|
+
Rendered /home/chris/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (31.5ms)
|
509
|
+
|
510
|
+
|
511
|
+
Started GET "/users/new" for 192.168.0.27 at 2014-09-18 20:55:30 -0400
|
512
|
+
Processing by UsersController#new as HTML
|
513
|
+
Rendered users/_form.html.erb (17.3ms)
|
514
|
+
Rendered users/new.html.erb within layouts/application (19.7ms)
|
515
|
+
Completed 200 OK in 42ms (Views: 39.4ms | ActiveRecord: 0.4ms)
|
516
|
+
|
517
|
+
|
518
|
+
Started GET "/assets/main.css?body=1" for 192.168.0.27 at 2014-09-18 20:55:30 -0400
|
519
|
+
|
520
|
+
|
521
|
+
Started GET "/assets/scaffold.css?body=1" for 192.168.0.27 at 2014-09-18 20:55:30 -0400
|
522
|
+
|
523
|
+
|
524
|
+
Started GET "/assets/users.css?body=1" for 192.168.0.27 at 2014-09-18 20:55:30 -0400
|
525
|
+
|
526
|
+
|
527
|
+
Started GET "/assets/main.js?body=1" for 192.168.0.27 at 2014-09-18 20:55:30 -0400
|
528
|
+
|
529
|
+
|
530
|
+
Started GET "/assets/users.js?body=1" for 192.168.0.27 at 2014-09-18 20:55:30 -0400
|
531
|
+
|
532
|
+
|
533
|
+
Started GET "/assets/application.css?body=1" for 192.168.0.27 at 2014-09-18 20:55:30 -0400
|
534
|
+
|
535
|
+
|
536
|
+
Started GET "/assets/application.js?body=1" for 192.168.0.27 at 2014-09-18 20:55:30 -0400
|
537
|
+
|
538
|
+
|
539
|
+
Started GET "/users" for 192.168.0.27 at 2014-09-18 20:55:50 -0400
|
540
|
+
Processing by UsersController#index as HTML
|
541
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users"[0m
|
542
|
+
Rendered users/index.html.erb within layouts/application (4.5ms)
|
543
|
+
Completed 200 OK in 26ms (Views: 23.9ms | ActiveRecord: 0.5ms)
|
544
|
+
|
545
|
+
|
546
|
+
Started GET "/assets/scaffold.css?body=1" for 192.168.0.27 at 2014-09-18 20:55:50 -0400
|
547
|
+
|
548
|
+
|
549
|
+
Started GET "/assets/users.css?body=1" for 192.168.0.27 at 2014-09-18 20:55:50 -0400
|
550
|
+
|
551
|
+
|
552
|
+
Started GET "/assets/main.css?body=1" for 192.168.0.27 at 2014-09-18 20:55:50 -0400
|
553
|
+
|
554
|
+
|
555
|
+
Started GET "/assets/users.js?body=1" for 192.168.0.27 at 2014-09-18 20:55:50 -0400
|
556
|
+
|
557
|
+
|
558
|
+
Started GET "/assets/application.css?body=1" for 192.168.0.27 at 2014-09-18 20:55:50 -0400
|
559
|
+
|
560
|
+
|
561
|
+
Started GET "/assets/main.js?body=1" for 192.168.0.27 at 2014-09-18 20:55:50 -0400
|
562
|
+
|
563
|
+
|
564
|
+
Started GET "/assets/application.js?body=1" for 192.168.0.27 at 2014-09-18 20:55:50 -0400
|
565
|
+
|
566
|
+
|
567
|
+
Started GET "/users" for 192.168.0.27 at 2014-09-18 20:55:50 -0400
|
568
|
+
Processing by UsersController#index as HTML
|
569
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
570
|
+
Rendered users/index.html.erb within layouts/application (1.0ms)
|
571
|
+
Completed 200 OK in 20ms (Views: 20.1ms | ActiveRecord: 0.1ms)
|
572
|
+
|
573
|
+
|
574
|
+
Started GET "/assets/scaffold.css?body=1" for 192.168.0.27 at 2014-09-18 20:55:50 -0400
|
575
|
+
|
576
|
+
|
577
|
+
Started GET "/assets/main.css?body=1" for 192.168.0.27 at 2014-09-18 20:55:50 -0400
|
578
|
+
|
579
|
+
|
580
|
+
Started GET "/assets/users.js?body=1" for 192.168.0.27 at 2014-09-18 20:55:50 -0400
|
581
|
+
|
582
|
+
|
583
|
+
Started GET "/assets/main.js?body=1" for 192.168.0.27 at 2014-09-18 20:55:50 -0400
|
584
|
+
|
585
|
+
|
586
|
+
Started GET "/assets/application.css?body=1" for 192.168.0.27 at 2014-09-18 20:55:50 -0400
|
587
|
+
|
588
|
+
|
589
|
+
Started GET "/assets/application.js?body=1" for 192.168.0.27 at 2014-09-18 20:55:50 -0400
|
590
|
+
|
591
|
+
|
592
|
+
Started GET "/assets/users.css?body=1" for 192.168.0.27 at 2014-09-18 20:55:50 -0400
|
593
|
+
|
594
|
+
|
595
|
+
Started GET "/users" for 192.168.0.27 at 2014-09-18 20:56:00 -0400
|
596
|
+
Processing by UsersController#index as HTML
|
597
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users"[0m
|
598
|
+
Rendered users/index.html.erb within layouts/application (4.4ms)
|
599
|
+
Completed 200 OK in 25ms (Views: 23.5ms | ActiveRecord: 0.5ms)
|
600
|
+
|
601
|
+
|
602
|
+
Started GET "/assets/main.css?body=1" for 192.168.0.27 at 2014-09-18 20:56:00 -0400
|
603
|
+
|
604
|
+
|
605
|
+
Started GET "/assets/scaffold.css?body=1" for 192.168.0.27 at 2014-09-18 20:56:00 -0400
|
606
|
+
|
607
|
+
|
608
|
+
Started GET "/assets/users.css?body=1" for 192.168.0.27 at 2014-09-18 20:56:00 -0400
|
609
|
+
|
610
|
+
|
611
|
+
Started GET "/assets/users.js?body=1" for 192.168.0.27 at 2014-09-18 20:56:00 -0400
|
612
|
+
|
613
|
+
|
614
|
+
Started GET "/assets/main.js?body=1" for 192.168.0.27 at 2014-09-18 20:56:00 -0400
|
615
|
+
|
616
|
+
|
617
|
+
Started GET "/assets/application.js?body=1" for 192.168.0.27 at 2014-09-18 20:56:00 -0400
|
618
|
+
|
619
|
+
|
620
|
+
Started GET "/assets/application.css?body=1" for 192.168.0.27 at 2014-09-18 20:56:00 -0400
|
621
|
+
|
622
|
+
|
623
|
+
Started GET "/users/1" for 192.168.0.27 at 2014-09-18 20:56:01 -0400
|
624
|
+
Processing by UsersController#show as HTML
|
625
|
+
Parameters: {"id"=>"1"}
|
626
|
+
Rendered users/show.html.erb within layouts/application (1.2ms)
|
627
|
+
Completed 500 Internal Server Error in 7ms
|
628
|
+
|
629
|
+
ActionView::Template::Error (undefined method `name' for nil:NilClass):
|
630
|
+
2:
|
631
|
+
3: <p>
|
632
|
+
4: <strong>Name:</strong>
|
633
|
+
5: <%= @user.name %>
|
634
|
+
6: </p>
|
635
|
+
7:
|
636
|
+
8: <p>
|
637
|
+
app/views/users/show.html.erb:5:in `_app_views_users_show_html_erb___4017526762025216059_11087580'
|
638
|
+
|
639
|
+
|
640
|
+
Rendered /home/chris/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
|
641
|
+
Rendered /home/chris/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
|
642
|
+
Rendered /home/chris/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (7.1ms)
|
643
|
+
|
644
|
+
|
645
|
+
Started GET "/users/1" for 192.168.0.27 at 2014-09-18 20:56:18 -0400
|
646
|
+
Processing by UsersController#show as HTML
|
647
|
+
Parameters: {"id"=>"1"}
|
648
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
|
649
|
+
Rendered users/show.html.erb within layouts/application (0.6ms)
|
650
|
+
Completed 500 Internal Server Error in 9ms
|
651
|
+
|
652
|
+
ActionView::Template::Error (undefined method `name' for nil:NilClass):
|
653
|
+
2:
|
654
|
+
3: <p>
|
655
|
+
4: <strong>Name:</strong>
|
656
|
+
5: <%= @user.name %>
|
657
|
+
6: </p>
|
658
|
+
7:
|
659
|
+
8: <p>
|
660
|
+
app/views/users/show.html.erb:5:in `_app_views_users_show_html_erb___4017526762025216059_11087580'
|
661
|
+
|
662
|
+
|
663
|
+
Rendered /home/chris/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
|
664
|
+
Rendered /home/chris/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
|
665
|
+
Rendered /home/chris/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (7.3ms)
|
666
|
+
|
667
|
+
|
668
|
+
Started GET "/users/1" for 192.168.0.27 at 2014-09-18 20:56:24 -0400
|
669
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
670
|
+
Processing by UsersController#show as HTML
|
671
|
+
Parameters: {"id"=>"1"}
|
672
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
|
673
|
+
Rendered users/show.html.erb within layouts/application (9.4ms)
|
674
|
+
Completed 500 Internal Server Error in 20ms
|
675
|
+
|
676
|
+
ActionView::Template::Error (undefined method `name' for nil:NilClass):
|
677
|
+
2:
|
678
|
+
3: <p>
|
679
|
+
4: <strong>Name:</strong>
|
680
|
+
5: <%= @user.name %>
|
681
|
+
6: </p>
|
682
|
+
7:
|
683
|
+
8: <p>
|
684
|
+
app/views/users/show.html.erb:5:in `_app_views_users_show_html_erb__2942852387966758345_69935961625500'
|
685
|
+
|
686
|
+
|
687
|
+
Rendered /home/chris/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
|
688
|
+
Rendered /home/chris/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
|
689
|
+
Rendered /home/chris/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (7.2ms)
|
690
|
+
|
691
|
+
|
692
|
+
Started GET "/users/1" for 192.168.0.27 at 2014-09-18 20:56:50 -0400
|
693
|
+
Processing by UsersController#show as HTML
|
694
|
+
Parameters: {"id"=>"1"}
|
695
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
|
696
|
+
Rendered users/show.html.erb within layouts/application (0.6ms)
|
697
|
+
Completed 200 OK in 42ms (Views: 37.0ms | ActiveRecord: 0.5ms)
|
698
|
+
|
699
|
+
|
700
|
+
Started GET "/assets/scaffold.css?body=1" for 192.168.0.27 at 2014-09-18 20:56:50 -0400
|
701
|
+
|
702
|
+
|
703
|
+
Started GET "/assets/users.css?body=1" for 192.168.0.27 at 2014-09-18 20:56:50 -0400
|
704
|
+
|
705
|
+
|
706
|
+
Started GET "/assets/application.js?body=1" for 192.168.0.27 at 2014-09-18 20:56:50 -0400
|
707
|
+
|
708
|
+
|
709
|
+
Started GET "/assets/application.css?body=1" for 192.168.0.27 at 2014-09-18 20:56:50 -0400
|
710
|
+
|
711
|
+
|
712
|
+
Started GET "/assets/users.js?body=1" for 192.168.0.27 at 2014-09-18 20:56:50 -0400
|
713
|
+
|
714
|
+
|
715
|
+
Started GET "/assets/main.js?body=1" for 192.168.0.27 at 2014-09-18 20:56:50 -0400
|
716
|
+
|
717
|
+
|
718
|
+
Started GET "/assets/main.css?body=1" for 192.168.0.27 at 2014-09-18 20:56:50 -0400
|
719
|
+
|
720
|
+
|
721
|
+
Started GET "/users" for 192.168.0.27 at 2014-09-18 20:56:52 -0400
|
722
|
+
Processing by UsersController#index as HTML
|
723
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
|
724
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users"[0m
|
725
|
+
Rendered users/index.html.erb within layouts/application (1.8ms)
|
726
|
+
Completed 200 OK in 22ms (Views: 21.2ms | ActiveRecord: 0.2ms)
|
727
|
+
|
728
|
+
|
729
|
+
Started GET "/assets/users.css?body=1" for 192.168.0.27 at 2014-09-18 20:56:52 -0400
|
730
|
+
|
731
|
+
|
732
|
+
Started GET "/assets/main.css?body=1" for 192.168.0.27 at 2014-09-18 20:56:52 -0400
|
733
|
+
|
734
|
+
|
735
|
+
Started GET "/assets/application.css?body=1" for 192.168.0.27 at 2014-09-18 20:56:52 -0400
|
736
|
+
|
737
|
+
|
738
|
+
Started GET "/assets/scaffold.css?body=1" for 192.168.0.27 at 2014-09-18 20:56:52 -0400
|
739
|
+
|
740
|
+
|
741
|
+
Started GET "/assets/application.js?body=1" for 192.168.0.27 at 2014-09-18 20:56:52 -0400
|
742
|
+
|
743
|
+
|
744
|
+
Started GET "/assets/users.js?body=1" for 192.168.0.27 at 2014-09-18 20:56:52 -0400
|
745
|
+
|
746
|
+
|
747
|
+
Started GET "/assets/main.js?body=1" for 192.168.0.27 at 2014-09-18 20:56:52 -0400
|
748
|
+
|
749
|
+
|
750
|
+
Started GET "/users" for 192.168.0.27 at 2014-09-18 20:56:54 -0400
|
751
|
+
Processing by UsersController#index as HTML
|
752
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
|
753
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users"[0m
|
754
|
+
Rendered users/index.html.erb within layouts/application (0.9ms)
|
755
|
+
Completed 200 OK in 42ms (Views: 40.3ms | ActiveRecord: 0.2ms)
|
756
|
+
|
757
|
+
|
758
|
+
Started GET "/assets/scaffold.css?body=1" for 192.168.0.27 at 2014-09-18 20:56:54 -0400
|
759
|
+
|
760
|
+
|
761
|
+
Started GET "/assets/main.css?body=1" for 192.168.0.27 at 2014-09-18 20:56:54 -0400
|
762
|
+
|
763
|
+
|
764
|
+
Started GET "/assets/application.css?body=1" for 192.168.0.27 at 2014-09-18 20:56:54 -0400
|
765
|
+
|
766
|
+
|
767
|
+
Started GET "/assets/main.js?body=1" for 192.168.0.27 at 2014-09-18 20:56:54 -0400
|
768
|
+
|
769
|
+
|
770
|
+
Started GET "/assets/users.js?body=1" for 192.168.0.27 at 2014-09-18 20:56:54 -0400
|
771
|
+
|
772
|
+
|
773
|
+
Started GET "/assets/application.js?body=1" for 192.168.0.27 at 2014-09-18 20:56:54 -0400
|
774
|
+
|
775
|
+
|
776
|
+
Started GET "/assets/users.css?body=1" for 192.168.0.27 at 2014-09-18 20:56:54 -0400
|
777
|
+
|
778
|
+
|
779
|
+
Started GET "/users" for 192.168.0.27 at 2014-09-18 20:56:55 -0400
|
780
|
+
Processing by UsersController#index as HTML
|
781
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
|
782
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users"[0m
|
783
|
+
Rendered users/index.html.erb within layouts/application (0.9ms)
|
784
|
+
Completed 200 OK in 21ms (Views: 20.2ms | ActiveRecord: 0.2ms)
|
785
|
+
|
786
|
+
|
787
|
+
Started GET "/assets/main.css?body=1" for 192.168.0.27 at 2014-09-18 20:56:56 -0400
|
788
|
+
|
789
|
+
|
790
|
+
Started GET "/assets/scaffold.css?body=1" for 192.168.0.27 at 2014-09-18 20:56:56 -0400
|
791
|
+
|
792
|
+
|
793
|
+
Started GET "/assets/users.js?body=1" for 192.168.0.27 at 2014-09-18 20:56:56 -0400
|
794
|
+
|
795
|
+
|
796
|
+
Started GET "/assets/main.js?body=1" for 192.168.0.27 at 2014-09-18 20:56:56 -0400
|
797
|
+
|
798
|
+
|
799
|
+
Started GET "/assets/users.css?body=1" for 192.168.0.27 at 2014-09-18 20:56:56 -0400
|
800
|
+
|
801
|
+
|
802
|
+
Started GET "/assets/application.css?body=1" for 192.168.0.27 at 2014-09-18 20:56:56 -0400
|
803
|
+
|
804
|
+
|
805
|
+
Started GET "/assets/application.js?body=1" for 192.168.0.27 at 2014-09-18 20:56:56 -0400
|
806
|
+
|
807
|
+
|
808
|
+
Started GET "/users" for 192.168.0.27 at 2014-09-18 20:56:58 -0400
|
809
|
+
Processing by UsersController#index as HTML
|
810
|
+
Redirected to http://192.168.0.11:3000/
|
811
|
+
Filter chain halted as :verify_token rendered or redirected
|
812
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
813
|
+
|
814
|
+
|
815
|
+
Started GET "/" for 192.168.0.27 at 2014-09-18 20:56:58 -0400
|
816
|
+
Processing by MainController#index as HTML
|
817
|
+
Rendered main/index.html.erb within layouts/application (0.3ms)
|
818
|
+
Completed 200 OK in 20ms (Views: 20.0ms | ActiveRecord: 0.0ms)
|
819
|
+
|
820
|
+
|
821
|
+
Started GET "/assets/main.css?body=1" for 192.168.0.27 at 2014-09-18 20:56:59 -0400
|
822
|
+
|
823
|
+
|
824
|
+
Started GET "/assets/users.css?body=1" for 192.168.0.27 at 2014-09-18 20:56:59 -0400
|
825
|
+
|
826
|
+
|
827
|
+
Started GET "/assets/application.css?body=1" for 192.168.0.27 at 2014-09-18 20:56:59 -0400
|
828
|
+
|
829
|
+
|
830
|
+
Started GET "/assets/scaffold.css?body=1" for 192.168.0.27 at 2014-09-18 20:56:59 -0400
|
831
|
+
|
832
|
+
|
833
|
+
Started GET "/assets/main.js?body=1" for 192.168.0.27 at 2014-09-18 20:56:59 -0400
|
834
|
+
|
835
|
+
|
836
|
+
Started GET "/assets/application.js?body=1" for 192.168.0.27 at 2014-09-18 20:56:59 -0400
|
837
|
+
|
838
|
+
|
839
|
+
Started GET "/assets/users.js?body=1" for 192.168.0.27 at 2014-09-18 20:56:59 -0400
|
840
|
+
|
841
|
+
|
842
|
+
Started GET "/users" for 192.168.0.27 at 2014-09-18 20:57:02 -0400
|
843
|
+
Processing by UsersController#index as HTML
|
844
|
+
Redirected to http://192.168.0.11:3000/
|
845
|
+
Filter chain halted as :verify_token rendered or redirected
|
846
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
847
|
+
|
848
|
+
|
849
|
+
Started GET "/users/login" for 192.168.0.27 at 2014-09-18 20:57:03 -0400
|
850
|
+
Processing by UsersController#show as HTML
|
851
|
+
Parameters: {"id"=>"login"}
|
852
|
+
Redirected to http://192.168.0.11:3000/
|
853
|
+
Filter chain halted as :verify_token rendered or redirected
|
854
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
855
|
+
|
856
|
+
|
857
|
+
Started GET "/" for 192.168.0.27 at 2014-09-18 20:57:03 -0400
|
858
|
+
Processing by MainController#index as HTML
|
859
|
+
Rendered main/index.html.erb within layouts/application (0.0ms)
|
860
|
+
Completed 200 OK in 19ms (Views: 19.2ms | ActiveRecord: 0.0ms)
|
861
|
+
|
862
|
+
|
863
|
+
Started GET "/assets/scaffold.css?body=1" for 192.168.0.27 at 2014-09-18 20:57:03 -0400
|
864
|
+
|
865
|
+
|
866
|
+
Started GET "/assets/main.css?body=1" for 192.168.0.27 at 2014-09-18 20:57:03 -0400
|
867
|
+
|
868
|
+
|
869
|
+
Started GET "/assets/users.css?body=1" for 192.168.0.27 at 2014-09-18 20:57:03 -0400
|
870
|
+
|
871
|
+
|
872
|
+
Started GET "/assets/application.css?body=1" for 192.168.0.27 at 2014-09-18 20:57:03 -0400
|
873
|
+
|
874
|
+
|
875
|
+
Started GET "/assets/main.js?body=1" for 192.168.0.27 at 2014-09-18 20:57:03 -0400
|
876
|
+
|
877
|
+
|
878
|
+
Started GET "/assets/application.js?body=1" for 192.168.0.27 at 2014-09-18 20:57:03 -0400
|
879
|
+
|
880
|
+
|
881
|
+
Started GET "/assets/users.js?body=1" for 192.168.0.27 at 2014-09-18 20:57:03 -0400
|
882
|
+
|
883
|
+
|
884
|
+
Started GET "/login" for 192.168.0.27 at 2014-09-18 20:57:11 -0400
|
885
|
+
Processing by UsersController#login as HTML
|
886
|
+
Rendered users/login.html.erb within layouts/application (0.3ms)
|
887
|
+
Completed 200 OK in 20ms (Views: 20.0ms | ActiveRecord: 0.0ms)
|
888
|
+
|
889
|
+
|
890
|
+
Started GET "/assets/main.css?body=1" for 192.168.0.27 at 2014-09-18 20:57:11 -0400
|
891
|
+
|
892
|
+
|
893
|
+
Started GET "/assets/main.js?body=1" for 192.168.0.27 at 2014-09-18 20:57:11 -0400
|
894
|
+
|
895
|
+
|
896
|
+
Started GET "/assets/users.js?body=1" for 192.168.0.27 at 2014-09-18 20:57:11 -0400
|
897
|
+
|
898
|
+
|
899
|
+
Started GET "/assets/application.css?body=1" for 192.168.0.27 at 2014-09-18 20:57:11 -0400
|
900
|
+
|
901
|
+
|
902
|
+
Started GET "/assets/scaffold.css?body=1" for 192.168.0.27 at 2014-09-18 20:57:11 -0400
|
903
|
+
|
904
|
+
|
905
|
+
Started GET "/assets/application.js?body=1" for 192.168.0.27 at 2014-09-18 20:57:11 -0400
|
906
|
+
|
907
|
+
|
908
|
+
Started GET "/assets/users.css?body=1" for 192.168.0.27 at 2014-09-18 20:57:11 -0400
|
909
|
+
|
910
|
+
|
911
|
+
Started GET "/users/" for 192.168.0.27 at 2014-09-18 20:57:25 -0400
|
912
|
+
Processing by UsersController#index as HTML
|
913
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
|
914
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users"[0m
|
915
|
+
Rendered users/index.html.erb within layouts/application (0.9ms)
|
916
|
+
Completed 200 OK in 25ms (Views: 24.1ms | ActiveRecord: 0.2ms)
|
917
|
+
|
918
|
+
|
919
|
+
Started GET "/assets/main.css?body=1" for 192.168.0.27 at 2014-09-18 20:57:26 -0400
|
920
|
+
|
921
|
+
|
922
|
+
Started GET "/assets/scaffold.css?body=1" for 192.168.0.27 at 2014-09-18 20:57:26 -0400
|
923
|
+
|
924
|
+
|
925
|
+
Started GET "/assets/main.js?body=1" for 192.168.0.27 at 2014-09-18 20:57:26 -0400
|
926
|
+
|
927
|
+
|
928
|
+
Started GET "/assets/application.css?body=1" for 192.168.0.27 at 2014-09-18 20:57:26 -0400
|
929
|
+
|
930
|
+
|
931
|
+
Started GET "/assets/application.js?body=1" for 192.168.0.27 at 2014-09-18 20:57:26 -0400
|
932
|
+
|
933
|
+
|
934
|
+
Started GET "/assets/users.js?body=1" for 192.168.0.27 at 2014-09-18 20:57:26 -0400
|
935
|
+
|
936
|
+
|
937
|
+
Started GET "/assets/users.css?body=1" for 192.168.0.27 at 2014-09-18 20:57:26 -0400
|
938
|
+
|
939
|
+
|
940
|
+
Started GET "/users/1" for 192.168.0.27 at 2014-09-18 20:57:27 -0400
|
941
|
+
Processing by UsersController#show as HTML
|
942
|
+
Parameters: {"id"=>"1"}
|
943
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
|
944
|
+
Rendered users/show.html.erb within layouts/application (0.4ms)
|
945
|
+
Completed 200 OK in 20ms (Views: 19.4ms | ActiveRecord: 0.1ms)
|
946
|
+
|
947
|
+
|
948
|
+
Started GET "/assets/main.css?body=1" for 192.168.0.27 at 2014-09-18 20:57:27 -0400
|
949
|
+
|
950
|
+
|
951
|
+
Started GET "/assets/users.css?body=1" for 192.168.0.27 at 2014-09-18 20:57:27 -0400
|
952
|
+
|
953
|
+
|
954
|
+
Started GET "/assets/main.js?body=1" for 192.168.0.27 at 2014-09-18 20:57:27 -0400
|
955
|
+
|
956
|
+
|
957
|
+
Started GET "/assets/application.css?body=1" for 192.168.0.27 at 2014-09-18 20:57:27 -0400
|
958
|
+
|
959
|
+
|
960
|
+
Started GET "/assets/scaffold.css?body=1" for 192.168.0.27 at 2014-09-18 20:57:27 -0400
|
961
|
+
|
962
|
+
|
963
|
+
Started GET "/assets/users.js?body=1" for 192.168.0.27 at 2014-09-18 20:57:27 -0400
|
964
|
+
|
965
|
+
|
966
|
+
Started GET "/assets/application.js?body=1" for 192.168.0.27 at 2014-09-18 20:57:27 -0400
|
967
|
+
|
968
|
+
|
969
|
+
Started GET "/users" for 192.168.0.27 at 2014-09-18 20:57:29 -0400
|
970
|
+
Processing by UsersController#index as HTML
|
971
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
|
972
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
973
|
+
Rendered users/index.html.erb within layouts/application (0.8ms)
|
974
|
+
Completed 200 OK in 21ms (Views: 19.8ms | ActiveRecord: 0.3ms)
|
975
|
+
|
976
|
+
|
977
|
+
Started GET "/assets/scaffold.css?body=1" for 192.168.0.27 at 2014-09-18 20:57:29 -0400
|
978
|
+
|
979
|
+
|
980
|
+
Started GET "/assets/main.css?body=1" for 192.168.0.27 at 2014-09-18 20:57:29 -0400
|
981
|
+
|
982
|
+
|
983
|
+
Started GET "/assets/users.css?body=1" for 192.168.0.27 at 2014-09-18 20:57:30 -0400
|
984
|
+
|
985
|
+
|
986
|
+
Started GET "/assets/main.js?body=1" for 192.168.0.27 at 2014-09-18 20:57:30 -0400
|
987
|
+
|
988
|
+
|
989
|
+
Started GET "/assets/users.js?body=1" for 192.168.0.27 at 2014-09-18 20:57:30 -0400
|
990
|
+
|
991
|
+
|
992
|
+
Started GET "/assets/application.css?body=1" for 192.168.0.27 at 2014-09-18 20:57:30 -0400
|
993
|
+
|
994
|
+
|
995
|
+
Started GET "/assets/application.js?body=1" for 192.168.0.27 at 2014-09-18 20:57:30 -0400
|
996
|
+
|
997
|
+
|
998
|
+
Started GET "/users/1" for 192.168.0.27 at 2014-09-18 20:57:31 -0400
|
999
|
+
Processing by UsersController#show as HTML
|
1000
|
+
Parameters: {"id"=>"1"}
|
1001
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
|
1002
|
+
Rendered users/show.html.erb within layouts/application (0.4ms)
|
1003
|
+
Completed 200 OK in 20ms (Views: 19.0ms | ActiveRecord: 0.1ms)
|
1004
|
+
|
1005
|
+
|
1006
|
+
Started GET "/assets/scaffold.css?body=1" for 192.168.0.27 at 2014-09-18 20:57:31 -0400
|
1007
|
+
|
1008
|
+
|
1009
|
+
Started GET "/assets/main.css?body=1" for 192.168.0.27 at 2014-09-18 20:57:31 -0400
|
1010
|
+
|
1011
|
+
|
1012
|
+
Started GET "/assets/application.css?body=1" for 192.168.0.27 at 2014-09-18 20:57:31 -0400
|
1013
|
+
|
1014
|
+
|
1015
|
+
Started GET "/assets/users.js?body=1" for 192.168.0.27 at 2014-09-18 20:57:31 -0400
|
1016
|
+
|
1017
|
+
|
1018
|
+
Started GET "/assets/users.css?body=1" for 192.168.0.27 at 2014-09-18 20:57:31 -0400
|
1019
|
+
|
1020
|
+
|
1021
|
+
Started GET "/assets/application.js?body=1" for 192.168.0.27 at 2014-09-18 20:57:31 -0400
|
1022
|
+
|
1023
|
+
|
1024
|
+
Started GET "/assets/main.js?body=1" for 192.168.0.27 at 2014-09-18 20:57:31 -0400
|
1025
|
+
|
1026
|
+
|
1027
|
+
Started GET "/users" for 192.168.0.27 at 2014-09-18 20:57:34 -0400
|
1028
|
+
Processing by UsersController#index as HTML
|
1029
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
|
1030
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users"[0m
|
1031
|
+
Rendered users/index.html.erb within layouts/application (0.9ms)
|
1032
|
+
Completed 200 OK in 22ms (Views: 20.3ms | ActiveRecord: 0.2ms)
|
1033
|
+
|
1034
|
+
|
1035
|
+
Started GET "/assets/main.css?body=1" for 192.168.0.27 at 2014-09-18 20:57:34 -0400
|
1036
|
+
|
1037
|
+
|
1038
|
+
Started GET "/assets/scaffold.css?body=1" for 192.168.0.27 at 2014-09-18 20:57:34 -0400
|
1039
|
+
|
1040
|
+
|
1041
|
+
Started GET "/assets/users.css?body=1" for 192.168.0.27 at 2014-09-18 20:57:34 -0400
|
1042
|
+
|
1043
|
+
|
1044
|
+
Started GET "/assets/users.js?body=1" for 192.168.0.27 at 2014-09-18 20:57:34 -0400
|
1045
|
+
|
1046
|
+
|
1047
|
+
Started GET "/assets/main.js?body=1" for 192.168.0.27 at 2014-09-18 20:57:34 -0400
|
1048
|
+
|
1049
|
+
|
1050
|
+
Started GET "/assets/application.css?body=1" for 192.168.0.27 at 2014-09-18 20:57:34 -0400
|
1051
|
+
|
1052
|
+
|
1053
|
+
Started GET "/assets/application.js?body=1" for 192.168.0.27 at 2014-09-18 20:57:34 -0400
|
1054
|
+
|
1055
|
+
|
1056
|
+
Started GET "/users/1/edit" for 192.168.0.27 at 2014-09-18 20:57:35 -0400
|
1057
|
+
Processing by UsersController#edit as HTML
|
1058
|
+
Parameters: {"id"=>"1"}
|
1059
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
|
1060
|
+
Rendered users/_form.html.erb (10.7ms)
|
1061
|
+
Rendered users/edit.html.erb within layouts/application (13.3ms)
|
1062
|
+
Completed 200 OK in 34ms (Views: 32.6ms | ActiveRecord: 0.1ms)
|
1063
|
+
|
1064
|
+
|
1065
|
+
Started GET "/assets/main.css?body=1" for 192.168.0.27 at 2014-09-18 20:57:35 -0400
|
1066
|
+
|
1067
|
+
|
1068
|
+
Started GET "/assets/scaffold.css?body=1" for 192.168.0.27 at 2014-09-18 20:57:35 -0400
|
1069
|
+
|
1070
|
+
|
1071
|
+
Started GET "/assets/main.js?body=1" for 192.168.0.27 at 2014-09-18 20:57:35 -0400
|
1072
|
+
|
1073
|
+
|
1074
|
+
Started GET "/assets/users.js?body=1" for 192.168.0.27 at 2014-09-18 20:57:35 -0400
|
1075
|
+
|
1076
|
+
|
1077
|
+
Started GET "/assets/users.css?body=1" for 192.168.0.27 at 2014-09-18 20:57:35 -0400
|
1078
|
+
|
1079
|
+
|
1080
|
+
Started GET "/assets/application.css?body=1" for 192.168.0.27 at 2014-09-18 20:57:35 -0400
|
1081
|
+
|
1082
|
+
|
1083
|
+
Started GET "/assets/application.js?body=1" for 192.168.0.27 at 2014-09-18 20:57:35 -0400
|
1084
|
+
|
1085
|
+
|
1086
|
+
Started GET "/users" for 192.168.0.27 at 2014-09-18 20:57:36 -0400
|
1087
|
+
Processing by UsersController#index as HTML
|
1088
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1]]
|
1089
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
1090
|
+
Rendered users/index.html.erb within layouts/application (0.8ms)
|
1091
|
+
Completed 200 OK in 21ms (Views: 19.8ms | ActiveRecord: 0.3ms)
|
1092
|
+
|
1093
|
+
|
1094
|
+
Started GET "/assets/main.css?body=1" for 192.168.0.27 at 2014-09-18 20:57:36 -0400
|
1095
|
+
|
1096
|
+
|
1097
|
+
Started GET "/assets/users.css?body=1" for 192.168.0.27 at 2014-09-18 20:57:36 -0400
|
1098
|
+
|
1099
|
+
|
1100
|
+
Started GET "/assets/application.css?body=1" for 192.168.0.27 at 2014-09-18 20:57:36 -0400
|
1101
|
+
|
1102
|
+
|
1103
|
+
Started GET "/assets/main.js?body=1" for 192.168.0.27 at 2014-09-18 20:57:36 -0400
|
1104
|
+
|
1105
|
+
|
1106
|
+
Started GET "/assets/application.js?body=1" for 192.168.0.27 at 2014-09-18 20:57:36 -0400
|
1107
|
+
|
1108
|
+
|
1109
|
+
Started GET "/assets/scaffold.css?body=1" for 192.168.0.27 at 2014-09-18 20:57:36 -0400
|
1110
|
+
|
1111
|
+
|
1112
|
+
Started GET "/assets/users.js?body=1" for 192.168.0.27 at 2014-09-18 20:57:36 -0400
|