rails_exception_handler_admin 0.0.2 → 0.0.3
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 +8 -8
- data/app/controllers/rails_exception_handler_admin/error_messages_controller.rb +16 -0
- data/app/views/rails_exception_handler_admin/error_messages/index.html.erb +6 -0
- data/config/routes.rb +1 -0
- data/lib/rails_exception_handler_admin.rb +1 -0
- data/lib/rails_exception_handler_admin/version.rb +1 -1
- data/test/dummy/log/development.log +3120 -0
- data/test/dummy/tmp/cache/assets/C89/2A0/sprockets%2F2c79634b4a97412b19066956a82e8fb1 +0 -0
- data/test/dummy/tmp/cache/assets/CE6/4C0/sprockets%2F6adb651c91678901768e281924bbf3bb +0 -0
- data/test/dummy/tmp/cache/assets/CF0/C30/sprockets%2F045d3fe09d5945aa96887d0a3d965d27 +0 -0
- data/test/dummy/tmp/cache/assets/D32/A00/sprockets%2Fb1c19c2036c96339e29bc6312dd2e2bc +0 -0
- data/test/dummy/tmp/cache/assets/D39/650/sprockets%2F6919f37ad5ec037ac6003ff3bc122e58 +0 -0
- data/test/dummy/tmp/cache/assets/D3C/A70/sprockets%2Fbd892106a2953d917a22693c2e6edcac +0 -0
- data/test/dummy/tmp/cache/assets/D48/580/sprockets%2F16d3da8990f91f0ba8d9d66c522a681e +0 -0
- data/test/dummy/tmp/cache/assets/D4C/7D0/sprockets%2F76d2a31085c54ebb3cbc0a51d11b45b1 +0 -0
- data/test/dummy/tmp/cache/assets/D53/7F0/sprockets%2F1ded99859dd896437cfa0190dfee2361 +0 -0
- data/test/dummy/tmp/cache/assets/D78/BD0/sprockets%2F81183a6bac758ebebfb39658f08ae904 +0 -0
- data/test/dummy/tmp/cache/assets/DB4/4F0/sprockets%2F3abaca86fb1a1a8156f13a9330aeb48a +0 -0
- data/test/dummy/tmp/cache/assets/DC8/6D0/sprockets%2F0d21f0a634d0c2e8ac8ff3cb269f9a7c +0 -0
- data/test/dummy/tmp/cache/assets/DCD/330/sprockets%2F41708e640a86f20ecd4beceeb698b5ab +0 -0
- data/test/dummy/tmp/cache/assets/DEF/B30/sprockets%2F3a3df0ecdfe03c02f2b69a37ed24c91c +0 -0
- data/test/dummy/tmp/cache/assets/E03/6D0/sprockets%2F5c54089b13f5b9edd4af57ebf0bd5c5e +0 -0
- data/test/dummy/tmp/cache/assets/E70/C40/sprockets%2Ff562d5c6a78aefe8cebaed239de85e3f +0 -0
- data/test/dummy/tmp/pids/server.pid +1 -0
- metadata +50 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
YjI5MTE1YWJiOWRmMGY3NjJhMGNlODc2MzlhZDRjMDJhZDBkNDViOA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ZGVhM2Q0YWMxOTExYTgzN2QzYjQ2Y2FmYWYxODIxYWM0N2ZhOGUxMw==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NzgyNDgyYzkyMDgxN2UyZjA0ZjgxOGZiMWNmMGRiYzY4MjVhMjU1Zjg0OTkx
|
10
|
+
NjdhNjUyMTcxZjIyMjU1NzNkODU4MDBjNjhmYzRkOTJiODdkNTM1NTQ3MDNk
|
11
|
+
Y2VmNTVjNDk2ZDkxOTJmNWIxZmM4ZWRlZTZhYjJlNjNhOWQ0ZTc=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
OTMwZWNmNmU1ZDlmZTA3M2QxMWI2NGM2NDQxY2E1MWMzMTc1MTA5MjJmZTM0
|
14
|
+
MmUyNTRmNzA3NGU2MTA1NGNhNGZkNzc1Mjk5ODJlMjZmNzQxNjQ1MDAxNmYx
|
15
|
+
NTkxY2JjYmViOGJjNjNlMTNhYTM4ZGI0NDJhYWVjODM5Zjk1ZjQ=
|
@@ -6,6 +6,7 @@ module RailsExceptionHandlerAdmin
|
|
6
6
|
# GET /error_messages.json
|
7
7
|
def index
|
8
8
|
@error_messages = params[:app] ? ErrorMessage.where(app_name: params[:app]).order('created_at DESC') : ErrorMessage.order('created_at DESC')
|
9
|
+
@error_messages = @error_messages.paginate(page: params[:page] || 1, per_page: params[:per_page] || 100)
|
9
10
|
|
10
11
|
respond_to do |format|
|
11
12
|
format.html # index.html.erb
|
@@ -51,5 +52,20 @@ module RailsExceptionHandlerAdmin
|
|
51
52
|
format.json { head :no_content }
|
52
53
|
end
|
53
54
|
end
|
55
|
+
|
56
|
+
# DELETE /error_messages
|
57
|
+
# DELETE /error_messages.json
|
58
|
+
def destroy_all
|
59
|
+
if params[:app]
|
60
|
+
ErrorMessage.destroy_all(app_name: params[:app])
|
61
|
+
else
|
62
|
+
ErrorMessage.destroy_all
|
63
|
+
end
|
64
|
+
|
65
|
+
respond_to do |format|
|
66
|
+
format.html { redirect_to error_messages_url }
|
67
|
+
format.json { head :no_content }
|
68
|
+
end
|
69
|
+
end
|
54
70
|
end
|
55
71
|
end
|
@@ -1,6 +1,10 @@
|
|
1
1
|
<div class="page-header">
|
2
2
|
<h1>Errors</h1>
|
3
3
|
</div>
|
4
|
+
<%= will_paginate(@error_messages) %>
|
5
|
+
<span style="float: right;">
|
6
|
+
<%= link_to 'Resolve All', error_messages_path(app: params[:app]), method: :delete, confirm: "This will permanently remove all records#{params[:app] ? ' for this application' : ''}. Are you sure?" %>
|
7
|
+
</span>
|
4
8
|
<table class="table table-striped">
|
5
9
|
<thead>
|
6
10
|
<tr>
|
@@ -33,3 +37,5 @@
|
|
33
37
|
<% end %>
|
34
38
|
</tbody>
|
35
39
|
</table>
|
40
|
+
<%= will_paginate(@error_messages) %>
|
41
|
+
|
data/config/routes.rb
CHANGED
@@ -5385,3 +5385,3123 @@ Served asset /rails_exception_handler_admin/error_messages.js - 304 Not Modified
|
|
5385
5385
|
|
5386
5386
|
Started GET "/assets/rails_exception_handler_admin/application.js?body=1" for 127.0.0.1 at 2013-09-06 22:05:04 -0400
|
5387
5387
|
Served asset /rails_exception_handler_admin/application.js - 304 Not Modified (0ms)
|
5388
|
+
|
5389
|
+
|
5390
|
+
Started GET "/" for 127.0.0.1 at 2013-11-01 20:46:29 -0400
|
5391
|
+
Connecting to database specified by database.yml
|
5392
|
+
|
5393
|
+
Mysql2::Error (Can't connect to MySQL server on '127.0.0.1' (61)):
|
5394
|
+
mysql2 (0.3.13) lib/mysql2/client.rb:58:in `connect'
|
5395
|
+
mysql2 (0.3.13) lib/mysql2/client.rb:58:in `initialize'
|
5396
|
+
activerecord (3.2.14) lib/active_record/connection_adapters/mysql2_adapter.rb:16:in `new'
|
5397
|
+
activerecord (3.2.14) lib/active_record/connection_adapters/mysql2_adapter.rb:16:in `mysql2_connection'
|
5398
|
+
activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:315:in `new_connection'
|
5399
|
+
activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:325:in `checkout_new_connection'
|
5400
|
+
activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:247:in `block (2 levels) in checkout'
|
5401
|
+
activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:242:in `loop'
|
5402
|
+
activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:242:in `block in checkout'
|
5403
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/monitor.rb:211:in `mon_synchronize'
|
5404
|
+
activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:239:in `checkout'
|
5405
|
+
activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:102:in `block in connection'
|
5406
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/monitor.rb:211:in `mon_synchronize'
|
5407
|
+
activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:101:in `connection'
|
5408
|
+
activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:410:in `retrieve_connection'
|
5409
|
+
activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_specification.rb:171:in `retrieve_connection'
|
5410
|
+
activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_specification.rb:145:in `connection'
|
5411
|
+
activerecord (3.2.14) lib/active_record/query_cache.rb:67:in `rescue in call'
|
5412
|
+
activerecord (3.2.14) lib/active_record/query_cache.rb:61:in `call'
|
5413
|
+
activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
5414
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
5415
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__1935274346756548371__call__210803557617171759__callbacks'
|
5416
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
5417
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
5418
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
5419
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
5420
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
5421
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
5422
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
5423
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
5424
|
+
railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
|
5425
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
|
5426
|
+
activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
|
5427
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
|
5428
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
5429
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
5430
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
5431
|
+
activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
5432
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
5433
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
|
5434
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
5435
|
+
railties (3.2.14) lib/rails/application.rb:231:in `call'
|
5436
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
5437
|
+
railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
|
5438
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
5439
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
5440
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
5441
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
5442
|
+
|
5443
|
+
|
5444
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
|
5445
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.2ms)
|
5446
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.5ms)
|
5447
|
+
|
5448
|
+
|
5449
|
+
Started GET "/" for 127.0.0.1 at 2013-11-01 20:46:55 -0400
|
5450
|
+
|
5451
|
+
ActionController::RoutingError (No route matches [GET] "/"):
|
5452
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
5453
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
5454
|
+
railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
|
5455
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
|
5456
|
+
activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
|
5457
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
|
5458
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
5459
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
5460
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
5461
|
+
activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
5462
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
5463
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
|
5464
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
5465
|
+
railties (3.2.14) lib/rails/application.rb:231:in `call'
|
5466
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
5467
|
+
railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
|
5468
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
5469
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
5470
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
5471
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
5472
|
+
|
5473
|
+
|
5474
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
|
5475
|
+
|
5476
|
+
|
5477
|
+
Started GET "/errors" for 127.0.0.1 at 2013-11-01 20:47:03 -0400
|
5478
|
+
|
5479
|
+
ActionController::RoutingError (No route matches [GET] "/errors"):
|
5480
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
5481
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
5482
|
+
railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
|
5483
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
|
5484
|
+
activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
|
5485
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
|
5486
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
5487
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
5488
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
5489
|
+
activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
5490
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
5491
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
|
5492
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
5493
|
+
railties (3.2.14) lib/rails/application.rb:231:in `call'
|
5494
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
5495
|
+
railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
|
5496
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
5497
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
5498
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
5499
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
5500
|
+
|
5501
|
+
|
5502
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
5503
|
+
|
5504
|
+
|
5505
|
+
Started GET "/rails_exception_handler" for 127.0.0.1 at 2013-11-01 20:47:25 -0400
|
5506
|
+
|
5507
|
+
ActionController::RoutingError (No route matches [GET] "/rails_exception_handler"):
|
5508
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
5509
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
5510
|
+
railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
|
5511
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
|
5512
|
+
activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
|
5513
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
|
5514
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
5515
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
5516
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
5517
|
+
activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
5518
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
5519
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
|
5520
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
5521
|
+
railties (3.2.14) lib/rails/application.rb:231:in `call'
|
5522
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
5523
|
+
railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
|
5524
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
5525
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
5526
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
5527
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
5528
|
+
|
5529
|
+
|
5530
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
|
5531
|
+
|
5532
|
+
|
5533
|
+
Started GET "/rails_exception_handler_admin" for 127.0.0.1 at 2013-11-01 20:47:44 -0400
|
5534
|
+
DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:ErrorMessage> at /Users/uranazo/sidework/rails_exception_handler_admin/app/models/rails_exception_handler_admin/error_message.rb:5)
|
5535
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
5536
|
+
[1m[36mRailsExceptionHandlerAdmin::ErrorMessage Load (1.8ms)[0m [1mSELECT `error_messages`.* FROM `error_messages` ORDER BY created_at DESC[0m
|
5537
|
+
Completed 500 Internal Server Error in 60ms
|
5538
|
+
|
5539
|
+
NoMethodError (undefined method `paginate' for []:ActiveRecord::Relation):
|
5540
|
+
activerecord (3.2.14) lib/active_record/relation/delegation.rb:45:in `method_missing'
|
5541
|
+
/Users/uranazo/sidework/rails_exception_handler_admin/app/controllers/rails_exception_handler_admin/error_messages_controller.rb:9:in `index'
|
5542
|
+
actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
5543
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action'
|
5544
|
+
actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
5545
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
5546
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:403:in `_run__3930573922770207485__process_action__4534700103822791435__callbacks'
|
5547
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
5548
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
5549
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
5550
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
5551
|
+
actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
5552
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
5553
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
|
5554
|
+
activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
5555
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
|
5556
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
5557
|
+
actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
5558
|
+
activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
5559
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process'
|
5560
|
+
actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process'
|
5561
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch'
|
5562
|
+
actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
5563
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action'
|
5564
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
5565
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
5566
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
5567
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
5568
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
5569
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
5570
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
5571
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
5572
|
+
railties (3.2.14) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
5573
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
5574
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
5575
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
5576
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
5577
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
5578
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
5579
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
5580
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call'
|
5581
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
5582
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
5583
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
5584
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
5585
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
5586
|
+
activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call'
|
5587
|
+
activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
5588
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
5589
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__1935274346756548371__call__210803557617171759__callbacks'
|
5590
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
5591
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
5592
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
5593
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
5594
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
5595
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
5596
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
5597
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
5598
|
+
railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
|
5599
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
|
5600
|
+
activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
|
5601
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
|
5602
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
5603
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
5604
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
5605
|
+
activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
5606
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
5607
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
|
5608
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
5609
|
+
railties (3.2.14) lib/rails/application.rb:231:in `call'
|
5610
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
5611
|
+
railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
|
5612
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
5613
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
5614
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
5615
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
5616
|
+
|
5617
|
+
|
5618
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
|
5619
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
|
5620
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.8ms)
|
5621
|
+
|
5622
|
+
|
5623
|
+
Started GET "/rails_exception_handler_admin" for 127.0.0.1 at 2013-11-01 20:50:32 -0400
|
5624
|
+
Connecting to database specified by database.yml
|
5625
|
+
DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:ErrorMessage> at /Users/uranazo/sidework/rails_exception_handler_admin/app/models/rails_exception_handler_admin/error_message.rb:5)
|
5626
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
5627
|
+
Completed 500 Internal Server Error in 7ms
|
5628
|
+
|
5629
|
+
NoMethodError (undefined method `paginate' for #<Class:0x007fabb719bb48>):
|
5630
|
+
activerecord (3.2.14) lib/active_record/dynamic_matchers.rb:55:in `method_missing'
|
5631
|
+
/Users/uranazo/sidework/rails_exception_handler_admin/app/controllers/rails_exception_handler_admin/error_messages_controller.rb:8:in `index'
|
5632
|
+
actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
5633
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action'
|
5634
|
+
actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
5635
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
5636
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:403:in `_run__125455499323113821__process_action__130396650144764426__callbacks'
|
5637
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
5638
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
5639
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
5640
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
5641
|
+
actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
5642
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
5643
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
|
5644
|
+
activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
5645
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
|
5646
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
5647
|
+
actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
5648
|
+
activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
5649
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process'
|
5650
|
+
actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process'
|
5651
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch'
|
5652
|
+
actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
5653
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action'
|
5654
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
5655
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
5656
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
5657
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
5658
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
5659
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
5660
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
5661
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
5662
|
+
railties (3.2.14) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
5663
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
5664
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
5665
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
5666
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
5667
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
5668
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
5669
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
5670
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call'
|
5671
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
5672
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
5673
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
5674
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
5675
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
5676
|
+
activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call'
|
5677
|
+
activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
5678
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
5679
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__3087459256503157279__call__3159055386216599700__callbacks'
|
5680
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
5681
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
5682
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
5683
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
5684
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
5685
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
5686
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
5687
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
5688
|
+
railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
|
5689
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
|
5690
|
+
activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
|
5691
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
|
5692
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
5693
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
5694
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
5695
|
+
activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
5696
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
5697
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
|
5698
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
5699
|
+
railties (3.2.14) lib/rails/application.rb:231:in `call'
|
5700
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
5701
|
+
railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
|
5702
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
5703
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
5704
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
5705
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
5706
|
+
|
5707
|
+
|
5708
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
|
5709
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
|
5710
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.1ms)
|
5711
|
+
|
5712
|
+
|
5713
|
+
Started GET "/rails_exception_handler_admin" for 127.0.0.1 at 2013-11-01 20:50:35 -0400
|
5714
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
5715
|
+
Completed 500 Internal Server Error in 0ms
|
5716
|
+
|
5717
|
+
NoMethodError (undefined method `paginate' for #<Class:0x007fabb719bb48>):
|
5718
|
+
activerecord (3.2.14) lib/active_record/dynamic_matchers.rb:55:in `method_missing'
|
5719
|
+
/Users/uranazo/sidework/rails_exception_handler_admin/app/controllers/rails_exception_handler_admin/error_messages_controller.rb:8:in `index'
|
5720
|
+
actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
5721
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action'
|
5722
|
+
actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
5723
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
5724
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:403:in `_run__125455499323113821__process_action__130396650144764426__callbacks'
|
5725
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
5726
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
5727
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
5728
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
5729
|
+
actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
5730
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
5731
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
|
5732
|
+
activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
5733
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
|
5734
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
5735
|
+
actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
5736
|
+
activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
5737
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process'
|
5738
|
+
actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process'
|
5739
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch'
|
5740
|
+
actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
5741
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action'
|
5742
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
5743
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
5744
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
5745
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
5746
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
5747
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
5748
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
5749
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
5750
|
+
railties (3.2.14) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
5751
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
5752
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
5753
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
5754
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
5755
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
5756
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
5757
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
5758
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call'
|
5759
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
5760
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
5761
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
5762
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
5763
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
5764
|
+
activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call'
|
5765
|
+
activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
5766
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
5767
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__3087459256503157279__call__3159055386216599700__callbacks'
|
5768
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
5769
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
5770
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
5771
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
5772
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
5773
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
5774
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
5775
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
5776
|
+
railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
|
5777
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
|
5778
|
+
activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
|
5779
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
|
5780
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
5781
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
5782
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
5783
|
+
activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
5784
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
5785
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
|
5786
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
5787
|
+
railties (3.2.14) lib/rails/application.rb:231:in `call'
|
5788
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
5789
|
+
railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
|
5790
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
5791
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
5792
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
5793
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
5794
|
+
|
5795
|
+
|
5796
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
|
5797
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
|
5798
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.7ms)
|
5799
|
+
|
5800
|
+
|
5801
|
+
Started GET "/rails_exception_handler_admin" for 127.0.0.1 at 2013-11-01 20:50:35 -0400
|
5802
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
5803
|
+
Completed 500 Internal Server Error in 0ms
|
5804
|
+
|
5805
|
+
NoMethodError (undefined method `paginate' for #<Class:0x007fabb719bb48>):
|
5806
|
+
activerecord (3.2.14) lib/active_record/dynamic_matchers.rb:55:in `method_missing'
|
5807
|
+
/Users/uranazo/sidework/rails_exception_handler_admin/app/controllers/rails_exception_handler_admin/error_messages_controller.rb:8:in `index'
|
5808
|
+
actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
5809
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action'
|
5810
|
+
actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
5811
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
5812
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:403:in `_run__125455499323113821__process_action__130396650144764426__callbacks'
|
5813
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
5814
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
5815
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
5816
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
5817
|
+
actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
5818
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
5819
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
|
5820
|
+
activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
5821
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
|
5822
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
5823
|
+
actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
5824
|
+
activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
5825
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process'
|
5826
|
+
actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process'
|
5827
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch'
|
5828
|
+
actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
5829
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action'
|
5830
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
5831
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
5832
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
5833
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
5834
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
5835
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
5836
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
5837
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
5838
|
+
railties (3.2.14) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
5839
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
5840
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
5841
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
5842
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
5843
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
5844
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
5845
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
5846
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call'
|
5847
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
5848
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
5849
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
5850
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
5851
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
5852
|
+
activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call'
|
5853
|
+
activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
5854
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
5855
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__3087459256503157279__call__3159055386216599700__callbacks'
|
5856
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
5857
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
5858
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
5859
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
5860
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
5861
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
5862
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
5863
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
5864
|
+
railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
|
5865
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
|
5866
|
+
activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
|
5867
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
|
5868
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
5869
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
5870
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
5871
|
+
activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
5872
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
5873
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
|
5874
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
5875
|
+
railties (3.2.14) lib/rails/application.rb:231:in `call'
|
5876
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
5877
|
+
railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
|
5878
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
5879
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
5880
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
5881
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
5882
|
+
|
5883
|
+
|
5884
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
|
5885
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
|
5886
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.1ms)
|
5887
|
+
|
5888
|
+
|
5889
|
+
Started GET "/rails_exception_handler_admin" for 127.0.0.1 at 2013-11-01 20:50:36 -0400
|
5890
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
5891
|
+
Completed 500 Internal Server Error in 0ms
|
5892
|
+
|
5893
|
+
NoMethodError (undefined method `paginate' for #<Class:0x007fabb719bb48>):
|
5894
|
+
activerecord (3.2.14) lib/active_record/dynamic_matchers.rb:55:in `method_missing'
|
5895
|
+
/Users/uranazo/sidework/rails_exception_handler_admin/app/controllers/rails_exception_handler_admin/error_messages_controller.rb:8:in `index'
|
5896
|
+
actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
5897
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action'
|
5898
|
+
actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
5899
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
5900
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:403:in `_run__125455499323113821__process_action__130396650144764426__callbacks'
|
5901
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
5902
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
5903
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
5904
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
5905
|
+
actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
5906
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
5907
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
|
5908
|
+
activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
5909
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
|
5910
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
5911
|
+
actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
5912
|
+
activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
5913
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process'
|
5914
|
+
actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process'
|
5915
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch'
|
5916
|
+
actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
5917
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action'
|
5918
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
5919
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
5920
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
5921
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
5922
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
5923
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
5924
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
5925
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
5926
|
+
railties (3.2.14) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
5927
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
5928
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
5929
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
5930
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
5931
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
5932
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
5933
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
5934
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call'
|
5935
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
5936
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
5937
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
5938
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
5939
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
5940
|
+
activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call'
|
5941
|
+
activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
5942
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
5943
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__3087459256503157279__call__3159055386216599700__callbacks'
|
5944
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
5945
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
5946
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
5947
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
5948
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
5949
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
5950
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
5951
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
5952
|
+
railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
|
5953
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
|
5954
|
+
activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
|
5955
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
|
5956
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
5957
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
5958
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
5959
|
+
activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
5960
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
5961
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
|
5962
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
5963
|
+
railties (3.2.14) lib/rails/application.rb:231:in `call'
|
5964
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
5965
|
+
railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
|
5966
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
5967
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
5968
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
5969
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
5970
|
+
|
5971
|
+
|
5972
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.9ms)
|
5973
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
|
5974
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.9ms)
|
5975
|
+
|
5976
|
+
|
5977
|
+
Started GET "/rails_exception_handler_admin" for 127.0.0.1 at 2013-11-01 20:50:36 -0400
|
5978
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
5979
|
+
Completed 500 Internal Server Error in 1ms
|
5980
|
+
|
5981
|
+
NoMethodError (undefined method `paginate' for #<Class:0x007fabb719bb48>):
|
5982
|
+
activerecord (3.2.14) lib/active_record/dynamic_matchers.rb:55:in `method_missing'
|
5983
|
+
/Users/uranazo/sidework/rails_exception_handler_admin/app/controllers/rails_exception_handler_admin/error_messages_controller.rb:8:in `index'
|
5984
|
+
actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
5985
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action'
|
5986
|
+
actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
5987
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
5988
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:403:in `_run__125455499323113821__process_action__130396650144764426__callbacks'
|
5989
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
5990
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
5991
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
5992
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
5993
|
+
actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
5994
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
5995
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
|
5996
|
+
activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
5997
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
|
5998
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
5999
|
+
actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
6000
|
+
activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
6001
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process'
|
6002
|
+
actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process'
|
6003
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch'
|
6004
|
+
actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
6005
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action'
|
6006
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
6007
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
6008
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
6009
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
6010
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
6011
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
6012
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
6013
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
6014
|
+
railties (3.2.14) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
6015
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
6016
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
6017
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
6018
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
6019
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
6020
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
6021
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
6022
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call'
|
6023
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
6024
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
6025
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
6026
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
6027
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
6028
|
+
activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call'
|
6029
|
+
activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
6030
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
6031
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__3087459256503157279__call__3159055386216599700__callbacks'
|
6032
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
6033
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
6034
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
6035
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
6036
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
6037
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
6038
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
6039
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
6040
|
+
railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
|
6041
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
|
6042
|
+
activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
|
6043
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
|
6044
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
6045
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
6046
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
6047
|
+
activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
6048
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
6049
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
|
6050
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
6051
|
+
railties (3.2.14) lib/rails/application.rb:231:in `call'
|
6052
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
6053
|
+
railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
|
6054
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
6055
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
6056
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
6057
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
6058
|
+
|
6059
|
+
|
6060
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
|
6061
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
|
6062
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.3ms)
|
6063
|
+
|
6064
|
+
|
6065
|
+
Started GET "/rails_exception_handler_admin" for 127.0.0.1 at 2013-11-01 20:50:37 -0400
|
6066
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
6067
|
+
Completed 500 Internal Server Error in 1ms
|
6068
|
+
|
6069
|
+
NoMethodError (undefined method `paginate' for #<Class:0x007fabb719bb48>):
|
6070
|
+
activerecord (3.2.14) lib/active_record/dynamic_matchers.rb:55:in `method_missing'
|
6071
|
+
/Users/uranazo/sidework/rails_exception_handler_admin/app/controllers/rails_exception_handler_admin/error_messages_controller.rb:8:in `index'
|
6072
|
+
actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
6073
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action'
|
6074
|
+
actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
6075
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
6076
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:403:in `_run__125455499323113821__process_action__130396650144764426__callbacks'
|
6077
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
6078
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
6079
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
6080
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
6081
|
+
actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
6082
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
6083
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
|
6084
|
+
activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
6085
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
|
6086
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
6087
|
+
actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
6088
|
+
activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
6089
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process'
|
6090
|
+
actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process'
|
6091
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch'
|
6092
|
+
actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
6093
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action'
|
6094
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
6095
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
6096
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
6097
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
6098
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
6099
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
6100
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
6101
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
6102
|
+
railties (3.2.14) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
6103
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
6104
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
6105
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
6106
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
6107
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
6108
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
6109
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
6110
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call'
|
6111
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
6112
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
6113
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
6114
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
6115
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
6116
|
+
activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call'
|
6117
|
+
activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
6118
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
6119
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__3087459256503157279__call__3159055386216599700__callbacks'
|
6120
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
6121
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
6122
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
6123
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
6124
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
6125
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
6126
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
6127
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
6128
|
+
railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
|
6129
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
|
6130
|
+
activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
|
6131
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
|
6132
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
6133
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
6134
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
6135
|
+
activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
6136
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
6137
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
|
6138
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
6139
|
+
railties (3.2.14) lib/rails/application.rb:231:in `call'
|
6140
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
6141
|
+
railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
|
6142
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
6143
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
6144
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
6145
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
6146
|
+
|
6147
|
+
|
6148
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
|
6149
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
|
6150
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.0ms)
|
6151
|
+
|
6152
|
+
|
6153
|
+
Started GET "/rails_exception_handler_admin" for 127.0.0.1 at 2013-11-01 20:50:37 -0400
|
6154
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
6155
|
+
Completed 500 Internal Server Error in 0ms
|
6156
|
+
|
6157
|
+
NoMethodError (undefined method `paginate' for #<Class:0x007fabb719bb48>):
|
6158
|
+
activerecord (3.2.14) lib/active_record/dynamic_matchers.rb:55:in `method_missing'
|
6159
|
+
/Users/uranazo/sidework/rails_exception_handler_admin/app/controllers/rails_exception_handler_admin/error_messages_controller.rb:8:in `index'
|
6160
|
+
actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
6161
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action'
|
6162
|
+
actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
6163
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
6164
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:403:in `_run__125455499323113821__process_action__130396650144764426__callbacks'
|
6165
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
6166
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
6167
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
6168
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
6169
|
+
actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
6170
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
6171
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
|
6172
|
+
activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
6173
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
|
6174
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
6175
|
+
actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
6176
|
+
activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
6177
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process'
|
6178
|
+
actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process'
|
6179
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch'
|
6180
|
+
actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
6181
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action'
|
6182
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
6183
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
6184
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
6185
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
6186
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
6187
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
6188
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
6189
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
6190
|
+
railties (3.2.14) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
6191
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
6192
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
6193
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
6194
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
6195
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
6196
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
6197
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
6198
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call'
|
6199
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
6200
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
6201
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
6202
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
6203
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
6204
|
+
activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call'
|
6205
|
+
activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
6206
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
6207
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__3087459256503157279__call__3159055386216599700__callbacks'
|
6208
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
6209
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
6210
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
6211
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
6212
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
6213
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
6214
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
6215
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
6216
|
+
railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
|
6217
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
|
6218
|
+
activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
|
6219
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
|
6220
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
6221
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
6222
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
6223
|
+
activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
6224
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
6225
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
|
6226
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
6227
|
+
railties (3.2.14) lib/rails/application.rb:231:in `call'
|
6228
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
6229
|
+
railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
|
6230
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
6231
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
6232
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
6233
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
6234
|
+
|
6235
|
+
|
6236
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.9ms)
|
6237
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
|
6238
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.0ms)
|
6239
|
+
|
6240
|
+
|
6241
|
+
Started GET "/rails_exception_handler_admin" for 127.0.0.1 at 2013-11-01 20:50:37 -0400
|
6242
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
6243
|
+
Completed 500 Internal Server Error in 0ms
|
6244
|
+
|
6245
|
+
NoMethodError (undefined method `paginate' for #<Class:0x007fabb719bb48>):
|
6246
|
+
activerecord (3.2.14) lib/active_record/dynamic_matchers.rb:55:in `method_missing'
|
6247
|
+
/Users/uranazo/sidework/rails_exception_handler_admin/app/controllers/rails_exception_handler_admin/error_messages_controller.rb:8:in `index'
|
6248
|
+
actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
6249
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action'
|
6250
|
+
actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
6251
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
6252
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:403:in `_run__125455499323113821__process_action__130396650144764426__callbacks'
|
6253
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
6254
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
6255
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
6256
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
6257
|
+
actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
6258
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
6259
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
|
6260
|
+
activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
6261
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
|
6262
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
6263
|
+
actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
6264
|
+
activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
6265
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process'
|
6266
|
+
actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process'
|
6267
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch'
|
6268
|
+
actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
6269
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action'
|
6270
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
6271
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
6272
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
6273
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
6274
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
6275
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
6276
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
6277
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
6278
|
+
railties (3.2.14) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
6279
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
6280
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
6281
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
6282
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
6283
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
6284
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
6285
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
6286
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call'
|
6287
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
6288
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
6289
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
6290
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
6291
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
6292
|
+
activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call'
|
6293
|
+
activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
6294
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
6295
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__3087459256503157279__call__3159055386216599700__callbacks'
|
6296
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
6297
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
6298
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
6299
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
6300
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
6301
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
6302
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
6303
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
6304
|
+
railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
|
6305
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
|
6306
|
+
activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
|
6307
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
|
6308
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
6309
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
6310
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
6311
|
+
activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
6312
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
6313
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
|
6314
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
6315
|
+
railties (3.2.14) lib/rails/application.rb:231:in `call'
|
6316
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
6317
|
+
railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
|
6318
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
6319
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
6320
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
6321
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
6322
|
+
|
6323
|
+
|
6324
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.7ms)
|
6325
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
|
6326
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.1ms)
|
6327
|
+
|
6328
|
+
|
6329
|
+
Started GET "/rails_exception_handler_admin" for 127.0.0.1 at 2013-11-01 20:51:10 -0400
|
6330
|
+
DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:ErrorMessage> at /Users/uranazo/sidework/rails_exception_handler_admin/app/models/rails_exception_handler_admin/error_message.rb:5)
|
6331
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
6332
|
+
Completed 500 Internal Server Error in 6ms
|
6333
|
+
|
6334
|
+
NoMethodError (undefined method `page' for #<Class:0x007fabb55260f8>):
|
6335
|
+
activerecord (3.2.14) lib/active_record/dynamic_matchers.rb:55:in `method_missing'
|
6336
|
+
/Users/uranazo/sidework/rails_exception_handler_admin/app/controllers/rails_exception_handler_admin/error_messages_controller.rb:8:in `index'
|
6337
|
+
actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
6338
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action'
|
6339
|
+
actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
6340
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
6341
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:403:in `_run__125455499323113821__process_action__130396650144764426__callbacks'
|
6342
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
6343
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
6344
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
6345
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
6346
|
+
actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
6347
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
6348
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
|
6349
|
+
activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
6350
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
|
6351
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
6352
|
+
actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
6353
|
+
activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
6354
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process'
|
6355
|
+
actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process'
|
6356
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch'
|
6357
|
+
actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
6358
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action'
|
6359
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
6360
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
6361
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
6362
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
6363
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
6364
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
6365
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
6366
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
6367
|
+
railties (3.2.14) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
6368
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
6369
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
6370
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
6371
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
6372
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
6373
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
6374
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
6375
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call'
|
6376
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
6377
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
6378
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
6379
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
6380
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
6381
|
+
activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call'
|
6382
|
+
activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
6383
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
6384
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__3087459256503157279__call__3159055386216599700__callbacks'
|
6385
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
6386
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
6387
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
6388
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
6389
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
6390
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
6391
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
6392
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
6393
|
+
railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
|
6394
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
|
6395
|
+
activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
|
6396
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
|
6397
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
6398
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
6399
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
6400
|
+
activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
6401
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
6402
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
|
6403
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
6404
|
+
railties (3.2.14) lib/rails/application.rb:231:in `call'
|
6405
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
6406
|
+
railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
|
6407
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
6408
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
6409
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
6410
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
6411
|
+
|
6412
|
+
|
6413
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
|
6414
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
|
6415
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.7ms)
|
6416
|
+
|
6417
|
+
|
6418
|
+
Started GET "/rails_exception_handler_admin" for 127.0.0.1 at 2013-11-01 20:51:51 -0400
|
6419
|
+
DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:ErrorMessage> at /Users/uranazo/sidework/rails_exception_handler_admin/app/models/rails_exception_handler_admin/error_message.rb:5)
|
6420
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
6421
|
+
[1m[36mRailsExceptionHandlerAdmin::ErrorMessage Load (1.9ms)[0m [1mSELECT `error_messages`.* FROM `error_messages` ORDER BY created_at DESC[0m
|
6422
|
+
Completed 500 Internal Server Error in 11ms
|
6423
|
+
|
6424
|
+
NoMethodError (undefined method `paginate' for []:ActiveRecord::Relation):
|
6425
|
+
activerecord (3.2.14) lib/active_record/relation/delegation.rb:45:in `method_missing'
|
6426
|
+
/Users/uranazo/sidework/rails_exception_handler_admin/app/controllers/rails_exception_handler_admin/error_messages_controller.rb:9:in `index'
|
6427
|
+
actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
6428
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action'
|
6429
|
+
actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
6430
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
6431
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:403:in `_run__125455499323113821__process_action__130396650144764426__callbacks'
|
6432
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
6433
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
6434
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
6435
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
6436
|
+
actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
6437
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
6438
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
|
6439
|
+
activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
6440
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
|
6441
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
6442
|
+
actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
6443
|
+
activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
6444
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process'
|
6445
|
+
actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process'
|
6446
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch'
|
6447
|
+
actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
6448
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action'
|
6449
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
6450
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
6451
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
6452
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
6453
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
6454
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
6455
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
6456
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
6457
|
+
railties (3.2.14) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
6458
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
6459
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
6460
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
6461
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
6462
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
6463
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
6464
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
6465
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call'
|
6466
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
6467
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
6468
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
6469
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
6470
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
6471
|
+
activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call'
|
6472
|
+
activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
6473
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
6474
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__3087459256503157279__call__3159055386216599700__callbacks'
|
6475
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
6476
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
6477
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
6478
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
6479
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
6480
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
6481
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
6482
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
6483
|
+
railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
|
6484
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
|
6485
|
+
activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
|
6486
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
|
6487
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
6488
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
6489
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
6490
|
+
activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
6491
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
6492
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
|
6493
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
6494
|
+
railties (3.2.14) lib/rails/application.rb:231:in `call'
|
6495
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
6496
|
+
railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
|
6497
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
6498
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
6499
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
6500
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
6501
|
+
|
6502
|
+
|
6503
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
|
6504
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
|
6505
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.7ms)
|
6506
|
+
|
6507
|
+
|
6508
|
+
Started GET "/rails_exception_handler_admin" for 127.0.0.1 at 2013-11-01 20:53:09 -0400
|
6509
|
+
DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:ErrorMessage> at /Users/uranazo/sidework/rails_exception_handler_admin/app/models/rails_exception_handler_admin/error_message.rb:5)
|
6510
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
6511
|
+
Completed 500 Internal Server Error in 3ms
|
6512
|
+
|
6513
|
+
NameError (uninitialized constant RailsExceptionHandlerAdmin::ErrorMessagesController::WillPaginate):
|
6514
|
+
/Users/uranazo/sidework/rails_exception_handler_admin/app/controllers/rails_exception_handler_admin/error_messages_controller.rb:8:in `index'
|
6515
|
+
actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
6516
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action'
|
6517
|
+
actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
6518
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
6519
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:403:in `_run__125455499323113821__process_action__130396650144764426__callbacks'
|
6520
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
6521
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
6522
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
6523
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
6524
|
+
actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
6525
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
6526
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
|
6527
|
+
activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
6528
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
|
6529
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
6530
|
+
actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
6531
|
+
activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
6532
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process'
|
6533
|
+
actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process'
|
6534
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch'
|
6535
|
+
actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
6536
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action'
|
6537
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
6538
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
6539
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
6540
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
6541
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
6542
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
6543
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
6544
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
6545
|
+
railties (3.2.14) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
6546
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
6547
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
6548
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
6549
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
6550
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
6551
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
6552
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
6553
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call'
|
6554
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
6555
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
6556
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
6557
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
6558
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
6559
|
+
activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call'
|
6560
|
+
activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
6561
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
6562
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__3087459256503157279__call__3159055386216599700__callbacks'
|
6563
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
6564
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
6565
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
6566
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
6567
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
6568
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
6569
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
6570
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
6571
|
+
railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
|
6572
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
|
6573
|
+
activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
|
6574
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
|
6575
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
6576
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
6577
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
6578
|
+
activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
6579
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
6580
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
|
6581
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
6582
|
+
railties (3.2.14) lib/rails/application.rb:231:in `call'
|
6583
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
6584
|
+
railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
|
6585
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
6586
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
6587
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
6588
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
6589
|
+
|
6590
|
+
|
6591
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
|
6592
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
|
6593
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.4ms)
|
6594
|
+
|
6595
|
+
|
6596
|
+
Started GET "/rails_exception_handler_admin" for 127.0.0.1 at 2013-11-01 20:53:15 -0400
|
6597
|
+
DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:ErrorMessage> at /Users/uranazo/sidework/rails_exception_handler_admin/app/models/rails_exception_handler_admin/error_message.rb:5)
|
6598
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
6599
|
+
Completed 500 Internal Server Error in 1ms
|
6600
|
+
|
6601
|
+
NameError (uninitialized constant WillPaginate):
|
6602
|
+
/Users/uranazo/sidework/rails_exception_handler_admin/app/controllers/rails_exception_handler_admin/error_messages_controller.rb:8:in `index'
|
6603
|
+
actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
6604
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action'
|
6605
|
+
actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
6606
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
6607
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:403:in `_run__125455499323113821__process_action__130396650144764426__callbacks'
|
6608
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
6609
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
6610
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
6611
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
6612
|
+
actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
6613
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
6614
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
|
6615
|
+
activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
6616
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
|
6617
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
6618
|
+
actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
6619
|
+
activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
6620
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process'
|
6621
|
+
actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process'
|
6622
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch'
|
6623
|
+
actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
6624
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action'
|
6625
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
6626
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
6627
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
6628
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
6629
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
6630
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
6631
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
6632
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
6633
|
+
railties (3.2.14) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
6634
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
6635
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
6636
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
6637
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
6638
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
6639
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
6640
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
6641
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call'
|
6642
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
6643
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
6644
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
6645
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
6646
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
6647
|
+
activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call'
|
6648
|
+
activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
6649
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
6650
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__3087459256503157279__call__3159055386216599700__callbacks'
|
6651
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
6652
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
6653
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
6654
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
6655
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
6656
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
6657
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
6658
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
6659
|
+
railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
|
6660
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
|
6661
|
+
activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
|
6662
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
|
6663
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
6664
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
6665
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
6666
|
+
activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
6667
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
6668
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
|
6669
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
6670
|
+
railties (3.2.14) lib/rails/application.rb:231:in `call'
|
6671
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
6672
|
+
railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
|
6673
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
6674
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
6675
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
6676
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
6677
|
+
|
6678
|
+
|
6679
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
|
6680
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
|
6681
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.3ms)
|
6682
|
+
|
6683
|
+
|
6684
|
+
Started GET "/rails_exception_handler_admin" for 127.0.0.1 at 2013-11-01 20:54:04 -0400
|
6685
|
+
Connecting to database specified by database.yml
|
6686
|
+
DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:ErrorMessage> at /Users/uranazo/sidework/rails_exception_handler_admin/app/models/rails_exception_handler_admin/error_message.rb:5)
|
6687
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
6688
|
+
[1m[36mRailsExceptionHandlerAdmin::ErrorMessage Load (2.2ms)[0m [1mSELECT `error_messages`.* FROM `error_messages` ORDER BY created_at DESC LIMIT 100 OFFSET 0[0m
|
6689
|
+
Rendered /Users/uranazo/sidework/rails_exception_handler_admin/app/views/rails_exception_handler_admin/error_messages/index.html.erb within layouts/rails_exception_handler_admin/application (94.1ms)
|
6690
|
+
Compiled rails_exception_handler_admin/bootstrap.min.css (0ms) (pid 2102)
|
6691
|
+
Compiled rails_exception_handler_admin/error_messages.css (0ms) (pid 2102)
|
6692
|
+
Compiled rails_exception_handler_admin/application.css (47ms) (pid 2102)
|
6693
|
+
Compiled jquery.js (2ms) (pid 2102)
|
6694
|
+
Compiled jquery_ujs.js (0ms) (pid 2102)
|
6695
|
+
Compiled rails_exception_handler_admin/error_messages.js (0ms) (pid 2102)
|
6696
|
+
Compiled rails_exception_handler_admin/application.js (94ms) (pid 2102)
|
6697
|
+
[1m[35mSQL (0.7ms)[0m SELECT DISTINCT `error_messages`.`app_name` FROM `error_messages`
|
6698
|
+
Completed 200 OK in 344ms (Views: 323.7ms | ActiveRecord: 19.1ms)
|
6699
|
+
|
6700
|
+
|
6701
|
+
Started GET "/assets/rails_exception_handler_admin/application.css?body=1" for 127.0.0.1 at 2013-11-01 20:54:05 -0400
|
6702
|
+
Served asset /rails_exception_handler_admin/application.css - 200 OK (32ms)
|
6703
|
+
|
6704
|
+
|
6705
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.css?body=1" for 127.0.0.1 at 2013-11-01 20:54:05 -0400
|
6706
|
+
Served asset /rails_exception_handler_admin/error_messages.css - 200 OK (4ms)
|
6707
|
+
|
6708
|
+
|
6709
|
+
Started GET "/assets/rails_exception_handler_admin/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-11-01 20:54:05 -0400
|
6710
|
+
Served asset /rails_exception_handler_admin/bootstrap.min.css - 200 OK (28ms)
|
6711
|
+
|
6712
|
+
|
6713
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.js?body=1" for 127.0.0.1 at 2013-11-01 20:54:05 -0400
|
6714
|
+
Served asset /rails_exception_handler_admin/error_messages.js - 200 OK (3ms)
|
6715
|
+
|
6716
|
+
|
6717
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-01 20:54:05 -0400
|
6718
|
+
Served asset /jquery_ujs.js - 200 OK (3ms)
|
6719
|
+
|
6720
|
+
|
6721
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-01 20:54:05 -0400
|
6722
|
+
Served asset /jquery.js - 200 OK (3ms)
|
6723
|
+
|
6724
|
+
|
6725
|
+
Started GET "/assets/rails_exception_handler_admin/application.js?body=1" for 127.0.0.1 at 2013-11-01 20:54:05 -0400
|
6726
|
+
Served asset /rails_exception_handler_admin/application.js - 200 OK (15ms)
|
6727
|
+
|
6728
|
+
|
6729
|
+
Started GET "/assets/favicon.ico" for 127.0.0.1 at 2013-11-01 20:54:05 -0400
|
6730
|
+
Served asset /favicon.ico - 404 Not Found (5ms)
|
6731
|
+
|
6732
|
+
ActionController::RoutingError (No route matches [GET] "/assets/favicon.ico"):
|
6733
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
6734
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
6735
|
+
railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
|
6736
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
|
6737
|
+
activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
|
6738
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
|
6739
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
6740
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
6741
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
6742
|
+
activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
6743
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
6744
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
|
6745
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
6746
|
+
railties (3.2.14) lib/rails/application.rb:231:in `call'
|
6747
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
6748
|
+
railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
|
6749
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
6750
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
6751
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
6752
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
6753
|
+
|
6754
|
+
|
6755
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
|
6756
|
+
|
6757
|
+
|
6758
|
+
Started GET "/rails_exception_handler_admin" for 127.0.0.1 at 2013-11-01 20:55:10 -0400
|
6759
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
6760
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM `error_messages` [0m
|
6761
|
+
[1m[35mRailsExceptionHandlerAdmin::ErrorMessage Load (0.5ms)[0m SELECT `error_messages`.* FROM `error_messages` ORDER BY created_at DESC LIMIT 100 OFFSET 0
|
6762
|
+
Rendered /Users/uranazo/sidework/rails_exception_handler_admin/app/views/rails_exception_handler_admin/error_messages/index.html.erb within layouts/rails_exception_handler_admin/application (6.1ms)
|
6763
|
+
[1m[36mSQL (0.3ms)[0m [1mSELECT DISTINCT `error_messages`.`app_name` FROM `error_messages` [0m
|
6764
|
+
Completed 200 OK in 18ms (Views: 15.7ms | ActiveRecord: 1.2ms)
|
6765
|
+
|
6766
|
+
|
6767
|
+
Started GET "/assets/rails_exception_handler_admin/application.css?body=1" for 127.0.0.1 at 2013-11-01 20:55:10 -0400
|
6768
|
+
Served asset /rails_exception_handler_admin/application.css - 304 Not Modified (0ms)
|
6769
|
+
|
6770
|
+
|
6771
|
+
Started GET "/assets/rails_exception_handler_admin/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-11-01 20:55:10 -0400
|
6772
|
+
Served asset /rails_exception_handler_admin/bootstrap.min.css - 304 Not Modified (0ms)
|
6773
|
+
|
6774
|
+
|
6775
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.css?body=1" for 127.0.0.1 at 2013-11-01 20:55:11 -0400
|
6776
|
+
Served asset /rails_exception_handler_admin/error_messages.css - 304 Not Modified (0ms)
|
6777
|
+
|
6778
|
+
|
6779
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-01 20:55:11 -0400
|
6780
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
6781
|
+
|
6782
|
+
|
6783
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-01 20:55:11 -0400
|
6784
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
6785
|
+
|
6786
|
+
|
6787
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.js?body=1" for 127.0.0.1 at 2013-11-01 20:55:11 -0400
|
6788
|
+
Served asset /rails_exception_handler_admin/error_messages.js - 304 Not Modified (0ms)
|
6789
|
+
|
6790
|
+
|
6791
|
+
Started GET "/assets/rails_exception_handler_admin/application.js?body=1" for 127.0.0.1 at 2013-11-01 20:55:11 -0400
|
6792
|
+
Served asset /rails_exception_handler_admin/application.js - 304 Not Modified (0ms)
|
6793
|
+
|
6794
|
+
|
6795
|
+
Started GET "/rails_exception_handler_admin" for 127.0.0.1 at 2013-11-01 20:55:13 -0400
|
6796
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
6797
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM `error_messages`
|
6798
|
+
[1m[36mRailsExceptionHandlerAdmin::ErrorMessage Load (0.6ms)[0m [1mSELECT `error_messages`.* FROM `error_messages` ORDER BY created_at DESC LIMIT 100 OFFSET 0[0m
|
6799
|
+
Rendered /Users/uranazo/sidework/rails_exception_handler_admin/app/views/rails_exception_handler_admin/error_messages/index.html.erb within layouts/rails_exception_handler_admin/application (4.7ms)
|
6800
|
+
[1m[35mSQL (0.8ms)[0m SELECT DISTINCT `error_messages`.`app_name` FROM `error_messages`
|
6801
|
+
Completed 200 OK in 34ms (Views: 31.6ms | ActiveRecord: 1.6ms)
|
6802
|
+
|
6803
|
+
|
6804
|
+
Started GET "/assets/rails_exception_handler_admin/application.css?body=1" for 127.0.0.1 at 2013-11-01 20:55:13 -0400
|
6805
|
+
Served asset /rails_exception_handler_admin/application.css - 304 Not Modified (0ms)
|
6806
|
+
|
6807
|
+
|
6808
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-01 20:55:13 -0400
|
6809
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
6810
|
+
|
6811
|
+
|
6812
|
+
Started GET "/assets/rails_exception_handler_admin/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-11-01 20:55:13 -0400
|
6813
|
+
Served asset /rails_exception_handler_admin/bootstrap.min.css - 304 Not Modified (0ms)
|
6814
|
+
|
6815
|
+
|
6816
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-01 20:55:13 -0400
|
6817
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
6818
|
+
|
6819
|
+
|
6820
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.js?body=1" for 127.0.0.1 at 2013-11-01 20:55:13 -0400
|
6821
|
+
Served asset /rails_exception_handler_admin/error_messages.js - 304 Not Modified (0ms)
|
6822
|
+
|
6823
|
+
|
6824
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.css?body=1" for 127.0.0.1 at 2013-11-01 20:55:13 -0400
|
6825
|
+
Served asset /rails_exception_handler_admin/error_messages.css - 304 Not Modified (0ms)
|
6826
|
+
|
6827
|
+
|
6828
|
+
Started GET "/assets/rails_exception_handler_admin/application.js?body=1" for 127.0.0.1 at 2013-11-01 20:55:13 -0400
|
6829
|
+
Served asset /rails_exception_handler_admin/application.js - 304 Not Modified (0ms)
|
6830
|
+
|
6831
|
+
|
6832
|
+
Started GET "/rails_exception_handler_admin" for 127.0.0.1 at 2013-11-01 20:55:13 -0400
|
6833
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
6834
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM `error_messages` [0m
|
6835
|
+
[1m[35mRailsExceptionHandlerAdmin::ErrorMessage Load (0.3ms)[0m SELECT `error_messages`.* FROM `error_messages` ORDER BY created_at DESC LIMIT 100 OFFSET 0
|
6836
|
+
Rendered /Users/uranazo/sidework/rails_exception_handler_admin/app/views/rails_exception_handler_admin/error_messages/index.html.erb within layouts/rails_exception_handler_admin/application (4.6ms)
|
6837
|
+
[1m[36mSQL (0.6ms)[0m [1mSELECT DISTINCT `error_messages`.`app_name` FROM `error_messages` [0m
|
6838
|
+
Completed 200 OK in 16ms (Views: 14.2ms | ActiveRecord: 1.2ms)
|
6839
|
+
|
6840
|
+
|
6841
|
+
Started GET "/assets/rails_exception_handler_admin/application.css?body=1" for 127.0.0.1 at 2013-11-01 20:55:13 -0400
|
6842
|
+
Served asset /rails_exception_handler_admin/application.css - 304 Not Modified (0ms)
|
6843
|
+
|
6844
|
+
|
6845
|
+
Started GET "/assets/rails_exception_handler_admin/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-11-01 20:55:13 -0400
|
6846
|
+
Served asset /rails_exception_handler_admin/bootstrap.min.css - 304 Not Modified (0ms)
|
6847
|
+
|
6848
|
+
|
6849
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-01 20:55:13 -0400
|
6850
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
6851
|
+
|
6852
|
+
|
6853
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-01 20:55:13 -0400
|
6854
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
6855
|
+
|
6856
|
+
|
6857
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.css?body=1" for 127.0.0.1 at 2013-11-01 20:55:13 -0400
|
6858
|
+
Served asset /rails_exception_handler_admin/error_messages.css - 304 Not Modified (0ms)
|
6859
|
+
|
6860
|
+
|
6861
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.js?body=1" for 127.0.0.1 at 2013-11-01 20:55:13 -0400
|
6862
|
+
Served asset /rails_exception_handler_admin/error_messages.js - 304 Not Modified (0ms)
|
6863
|
+
|
6864
|
+
|
6865
|
+
Started GET "/assets/rails_exception_handler_admin/application.js?body=1" for 127.0.0.1 at 2013-11-01 20:55:13 -0400
|
6866
|
+
Served asset /rails_exception_handler_admin/application.js - 304 Not Modified (0ms)
|
6867
|
+
|
6868
|
+
|
6869
|
+
Started GET "/rails_exception_handler_admin" for 127.0.0.1 at 2013-11-01 20:55:14 -0400
|
6870
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
6871
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM `error_messages`
|
6872
|
+
[1m[36mRailsExceptionHandlerAdmin::ErrorMessage Load (0.4ms)[0m [1mSELECT `error_messages`.* FROM `error_messages` ORDER BY created_at DESC LIMIT 100 OFFSET 0[0m
|
6873
|
+
Rendered /Users/uranazo/sidework/rails_exception_handler_admin/app/views/rails_exception_handler_admin/error_messages/index.html.erb within layouts/rails_exception_handler_admin/application (6.2ms)
|
6874
|
+
[1m[35mSQL (0.5ms)[0m SELECT DISTINCT `error_messages`.`app_name` FROM `error_messages`
|
6875
|
+
Completed 200 OK in 23ms (Views: 20.2ms | ActiveRecord: 1.3ms)
|
6876
|
+
|
6877
|
+
|
6878
|
+
Started GET "/assets/rails_exception_handler_admin/application.css?body=1" for 127.0.0.1 at 2013-11-01 20:55:14 -0400
|
6879
|
+
Served asset /rails_exception_handler_admin/application.css - 304 Not Modified (0ms)
|
6880
|
+
|
6881
|
+
|
6882
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.css?body=1" for 127.0.0.1 at 2013-11-01 20:55:14 -0400
|
6883
|
+
Served asset /rails_exception_handler_admin/error_messages.css - 304 Not Modified (0ms)
|
6884
|
+
|
6885
|
+
|
6886
|
+
Started GET "/assets/rails_exception_handler_admin/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-11-01 20:55:14 -0400
|
6887
|
+
Served asset /rails_exception_handler_admin/bootstrap.min.css - 304 Not Modified (0ms)
|
6888
|
+
|
6889
|
+
|
6890
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-01 20:55:14 -0400
|
6891
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
6892
|
+
|
6893
|
+
|
6894
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-01 20:55:14 -0400
|
6895
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
6896
|
+
|
6897
|
+
|
6898
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.js?body=1" for 127.0.0.1 at 2013-11-01 20:55:14 -0400
|
6899
|
+
Served asset /rails_exception_handler_admin/error_messages.js - 304 Not Modified (0ms)
|
6900
|
+
|
6901
|
+
|
6902
|
+
Started GET "/assets/rails_exception_handler_admin/application.js?body=1" for 127.0.0.1 at 2013-11-01 20:55:14 -0400
|
6903
|
+
Served asset /rails_exception_handler_admin/application.js - 304 Not Modified (0ms)
|
6904
|
+
|
6905
|
+
|
6906
|
+
Started GET "/rails_exception_handler_admin" for 127.0.0.1 at 2013-11-01 20:55:14 -0400
|
6907
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
6908
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM `error_messages` [0m
|
6909
|
+
[1m[35mRailsExceptionHandlerAdmin::ErrorMessage Load (0.3ms)[0m SELECT `error_messages`.* FROM `error_messages` ORDER BY created_at DESC LIMIT 100 OFFSET 0
|
6910
|
+
Rendered /Users/uranazo/sidework/rails_exception_handler_admin/app/views/rails_exception_handler_admin/error_messages/index.html.erb within layouts/rails_exception_handler_admin/application (4.1ms)
|
6911
|
+
[1m[36mSQL (0.4ms)[0m [1mSELECT DISTINCT `error_messages`.`app_name` FROM `error_messages` [0m
|
6912
|
+
Completed 200 OK in 16ms (Views: 14.3ms | ActiveRecord: 1.0ms)
|
6913
|
+
|
6914
|
+
|
6915
|
+
Started GET "/assets/rails_exception_handler_admin/application.css?body=1" for 127.0.0.1 at 2013-11-01 20:55:14 -0400
|
6916
|
+
Served asset /rails_exception_handler_admin/application.css - 304 Not Modified (0ms)
|
6917
|
+
|
6918
|
+
|
6919
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.js?body=1" for 127.0.0.1 at 2013-11-01 20:55:14 -0400
|
6920
|
+
Served asset /rails_exception_handler_admin/error_messages.js - 200 OK (0ms)
|
6921
|
+
|
6922
|
+
|
6923
|
+
Started GET "/assets/rails_exception_handler_admin/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-11-01 20:55:14 -0400
|
6924
|
+
Served asset /rails_exception_handler_admin/bootstrap.min.css - 304 Not Modified (0ms)
|
6925
|
+
|
6926
|
+
|
6927
|
+
Started GET "/assets/rails_exception_handler_admin/application.js?body=1" for 127.0.0.1 at 2013-11-01 20:55:14 -0400
|
6928
|
+
Served asset /rails_exception_handler_admin/application.js - 200 OK (0ms)
|
6929
|
+
|
6930
|
+
|
6931
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.css?body=1" for 127.0.0.1 at 2013-11-01 20:55:14 -0400
|
6932
|
+
Served asset /rails_exception_handler_admin/error_messages.css - 304 Not Modified (0ms)
|
6933
|
+
|
6934
|
+
|
6935
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-01 20:55:14 -0400
|
6936
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
6937
|
+
|
6938
|
+
|
6939
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-01 20:55:14 -0400
|
6940
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
6941
|
+
|
6942
|
+
|
6943
|
+
Started GET "/rails_exception_handler_admin" for 127.0.0.1 at 2013-11-01 20:55:14 -0400
|
6944
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
6945
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM `error_messages`
|
6946
|
+
[1m[36mRailsExceptionHandlerAdmin::ErrorMessage Load (0.3ms)[0m [1mSELECT `error_messages`.* FROM `error_messages` ORDER BY created_at DESC LIMIT 100 OFFSET 0[0m
|
6947
|
+
Rendered /Users/uranazo/sidework/rails_exception_handler_admin/app/views/rails_exception_handler_admin/error_messages/index.html.erb within layouts/rails_exception_handler_admin/application (5.4ms)
|
6948
|
+
[1m[35mSQL (0.5ms)[0m SELECT DISTINCT `error_messages`.`app_name` FROM `error_messages`
|
6949
|
+
Completed 200 OK in 19ms (Views: 16.2ms | ActiveRecord: 1.2ms)
|
6950
|
+
|
6951
|
+
|
6952
|
+
Started GET "/assets/rails_exception_handler_admin/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-11-01 20:55:14 -0400
|
6953
|
+
Served asset /rails_exception_handler_admin/bootstrap.min.css - 304 Not Modified (0ms)
|
6954
|
+
|
6955
|
+
|
6956
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-01 20:55:14 -0400
|
6957
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
6958
|
+
|
6959
|
+
|
6960
|
+
Started GET "/assets/rails_exception_handler_admin/application.css?body=1" for 127.0.0.1 at 2013-11-01 20:55:14 -0400
|
6961
|
+
Served asset /rails_exception_handler_admin/application.css - 304 Not Modified (0ms)
|
6962
|
+
|
6963
|
+
|
6964
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.css?body=1" for 127.0.0.1 at 2013-11-01 20:55:14 -0400
|
6965
|
+
Served asset /rails_exception_handler_admin/error_messages.css - 304 Not Modified (0ms)
|
6966
|
+
|
6967
|
+
|
6968
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-01 20:55:14 -0400
|
6969
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
6970
|
+
|
6971
|
+
|
6972
|
+
Started GET "/rails_exception_handler_admin" for 127.0.0.1 at 2013-11-01 20:55:14 -0400
|
6973
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
6974
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM `error_messages` [0m
|
6975
|
+
[1m[35mRailsExceptionHandlerAdmin::ErrorMessage Load (0.5ms)[0m SELECT `error_messages`.* FROM `error_messages` ORDER BY created_at DESC LIMIT 100 OFFSET 0
|
6976
|
+
Rendered /Users/uranazo/sidework/rails_exception_handler_admin/app/views/rails_exception_handler_admin/error_messages/index.html.erb within layouts/rails_exception_handler_admin/application (4.7ms)
|
6977
|
+
[1m[36mSQL (0.4ms)[0m [1mSELECT DISTINCT `error_messages`.`app_name` FROM `error_messages` [0m
|
6978
|
+
Completed 200 OK in 16ms (Views: 14.1ms | ActiveRecord: 1.2ms)
|
6979
|
+
|
6980
|
+
|
6981
|
+
Started GET "/assets/rails_exception_handler_admin/application.css?body=1" for 127.0.0.1 at 2013-11-01 20:55:14 -0400
|
6982
|
+
Served asset /rails_exception_handler_admin/application.css - 304 Not Modified (0ms)
|
6983
|
+
|
6984
|
+
|
6985
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.css?body=1" for 127.0.0.1 at 2013-11-01 20:55:14 -0400
|
6986
|
+
Served asset /rails_exception_handler_admin/error_messages.css - 304 Not Modified (0ms)
|
6987
|
+
|
6988
|
+
|
6989
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-01 20:55:14 -0400
|
6990
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
6991
|
+
|
6992
|
+
|
6993
|
+
Started GET "/assets/rails_exception_handler_admin/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-11-01 20:55:14 -0400
|
6994
|
+
Served asset /rails_exception_handler_admin/bootstrap.min.css - 304 Not Modified (0ms)
|
6995
|
+
|
6996
|
+
|
6997
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-01 20:55:14 -0400
|
6998
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
6999
|
+
|
7000
|
+
|
7001
|
+
Started GET "/rails_exception_handler_admin" for 127.0.0.1 at 2013-11-01 20:55:14 -0400
|
7002
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
7003
|
+
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM `error_messages`
|
7004
|
+
[1m[36mRailsExceptionHandlerAdmin::ErrorMessage Load (0.3ms)[0m [1mSELECT `error_messages`.* FROM `error_messages` ORDER BY created_at DESC LIMIT 100 OFFSET 0[0m
|
7005
|
+
Rendered /Users/uranazo/sidework/rails_exception_handler_admin/app/views/rails_exception_handler_admin/error_messages/index.html.erb within layouts/rails_exception_handler_admin/application (4.3ms)
|
7006
|
+
[1m[35mSQL (0.4ms)[0m SELECT DISTINCT `error_messages`.`app_name` FROM `error_messages`
|
7007
|
+
Completed 200 OK in 15ms (Views: 13.0ms | ActiveRecord: 1.1ms)
|
7008
|
+
|
7009
|
+
|
7010
|
+
Started GET "/assets/rails_exception_handler_admin/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-11-01 20:55:14 -0400
|
7011
|
+
Served asset /rails_exception_handler_admin/bootstrap.min.css - 200 OK (0ms)
|
7012
|
+
|
7013
|
+
|
7014
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-01 20:55:14 -0400
|
7015
|
+
Served asset /jquery_ujs.js - 200 OK (0ms)
|
7016
|
+
|
7017
|
+
|
7018
|
+
Started GET "/assets/rails_exception_handler_admin/application.css?body=1" for 127.0.0.1 at 2013-11-01 20:55:14 -0400
|
7019
|
+
Served asset /rails_exception_handler_admin/application.css - 304 Not Modified (0ms)
|
7020
|
+
|
7021
|
+
|
7022
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-01 20:55:14 -0400
|
7023
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
7024
|
+
|
7025
|
+
|
7026
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.css?body=1" for 127.0.0.1 at 2013-11-01 20:55:14 -0400
|
7027
|
+
Served asset /rails_exception_handler_admin/error_messages.css - 304 Not Modified (0ms)
|
7028
|
+
|
7029
|
+
|
7030
|
+
Started GET "/rails_exception_handler_admin" for 127.0.0.1 at 2013-11-01 20:55:14 -0400
|
7031
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
7032
|
+
[1m[36m (0.4ms)[0m [1mSELECT COUNT(*) FROM `error_messages` [0m
|
7033
|
+
[1m[35mRailsExceptionHandlerAdmin::ErrorMessage Load (0.5ms)[0m SELECT `error_messages`.* FROM `error_messages` ORDER BY created_at DESC LIMIT 100 OFFSET 0
|
7034
|
+
Rendered /Users/uranazo/sidework/rails_exception_handler_admin/app/views/rails_exception_handler_admin/error_messages/index.html.erb within layouts/rails_exception_handler_admin/application (4.6ms)
|
7035
|
+
[1m[36mSQL (0.4ms)[0m [1mSELECT DISTINCT `error_messages`.`app_name` FROM `error_messages` [0m
|
7036
|
+
Completed 200 OK in 17ms (Views: 14.4ms | ActiveRecord: 1.3ms)
|
7037
|
+
|
7038
|
+
|
7039
|
+
Started GET "/assets/rails_exception_handler_admin/application.css?body=1" for 127.0.0.1 at 2013-11-01 20:55:15 -0400
|
7040
|
+
Served asset /rails_exception_handler_admin/application.css - 200 OK (0ms)
|
7041
|
+
|
7042
|
+
|
7043
|
+
Started GET "/assets/rails_exception_handler_admin/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-11-01 20:55:15 -0400
|
7044
|
+
Served asset /rails_exception_handler_admin/bootstrap.min.css - 200 OK (0ms)
|
7045
|
+
|
7046
|
+
|
7047
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.css?body=1" for 127.0.0.1 at 2013-11-01 20:55:15 -0400
|
7048
|
+
Served asset /rails_exception_handler_admin/error_messages.css - 200 OK (0ms)
|
7049
|
+
|
7050
|
+
|
7051
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-01 20:55:15 -0400
|
7052
|
+
Served asset /jquery_ujs.js - 200 OK (0ms)
|
7053
|
+
|
7054
|
+
|
7055
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-01 20:55:15 -0400
|
7056
|
+
Served asset /jquery.js - 200 OK (0ms)
|
7057
|
+
|
7058
|
+
|
7059
|
+
Started GET "/rails_exception_handler_admin" for 127.0.0.1 at 2013-11-01 20:55:15 -0400
|
7060
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
7061
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM `error_messages`
|
7062
|
+
[1m[36mRailsExceptionHandlerAdmin::ErrorMessage Load (0.4ms)[0m [1mSELECT `error_messages`.* FROM `error_messages` ORDER BY created_at DESC LIMIT 100 OFFSET 0[0m
|
7063
|
+
Rendered /Users/uranazo/sidework/rails_exception_handler_admin/app/views/rails_exception_handler_admin/error_messages/index.html.erb within layouts/rails_exception_handler_admin/application (5.9ms)
|
7064
|
+
[1m[35mSQL (0.5ms)[0m SELECT DISTINCT `error_messages`.`app_name` FROM `error_messages`
|
7065
|
+
Completed 200 OK in 41ms (Views: 39.3ms | ActiveRecord: 1.2ms)
|
7066
|
+
|
7067
|
+
|
7068
|
+
Started GET "/assets/rails_exception_handler_admin/application.css?body=1" for 127.0.0.1 at 2013-11-01 20:55:15 -0400
|
7069
|
+
Served asset /rails_exception_handler_admin/application.css - 304 Not Modified (0ms)
|
7070
|
+
|
7071
|
+
|
7072
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.css?body=1" for 127.0.0.1 at 2013-11-01 20:55:15 -0400
|
7073
|
+
Served asset /rails_exception_handler_admin/error_messages.css - 304 Not Modified (0ms)
|
7074
|
+
|
7075
|
+
|
7076
|
+
Started GET "/assets/rails_exception_handler_admin/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-11-01 20:55:15 -0400
|
7077
|
+
Served asset /rails_exception_handler_admin/bootstrap.min.css - 304 Not Modified (0ms)
|
7078
|
+
|
7079
|
+
|
7080
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-01 20:55:15 -0400
|
7081
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
7082
|
+
|
7083
|
+
|
7084
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-01 20:55:15 -0400
|
7085
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
7086
|
+
|
7087
|
+
|
7088
|
+
Started GET "/rails_exception_handler_admin" for 127.0.0.1 at 2013-11-01 20:55:15 -0400
|
7089
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
7090
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM `error_messages` [0m
|
7091
|
+
[1m[35mRailsExceptionHandlerAdmin::ErrorMessage Load (0.4ms)[0m SELECT `error_messages`.* FROM `error_messages` ORDER BY created_at DESC LIMIT 100 OFFSET 0
|
7092
|
+
Rendered /Users/uranazo/sidework/rails_exception_handler_admin/app/views/rails_exception_handler_admin/error_messages/index.html.erb within layouts/rails_exception_handler_admin/application (6.5ms)
|
7093
|
+
[1m[36mSQL (0.4ms)[0m [1mSELECT DISTINCT `error_messages`.`app_name` FROM `error_messages` [0m
|
7094
|
+
Completed 200 OK in 23ms (Views: 20.2ms | ActiveRecord: 1.1ms)
|
7095
|
+
|
7096
|
+
|
7097
|
+
Started GET "/assets/rails_exception_handler_admin/application.css?body=1" for 127.0.0.1 at 2013-11-01 20:55:15 -0400
|
7098
|
+
Served asset /rails_exception_handler_admin/application.css - 304 Not Modified (0ms)
|
7099
|
+
|
7100
|
+
|
7101
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.css?body=1" for 127.0.0.1 at 2013-11-01 20:55:15 -0400
|
7102
|
+
Served asset /rails_exception_handler_admin/error_messages.css - 304 Not Modified (0ms)
|
7103
|
+
|
7104
|
+
|
7105
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-01 20:55:15 -0400
|
7106
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
7107
|
+
|
7108
|
+
|
7109
|
+
Started GET "/assets/rails_exception_handler_admin/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-11-01 20:55:15 -0400
|
7110
|
+
Served asset /rails_exception_handler_admin/bootstrap.min.css - 304 Not Modified (0ms)
|
7111
|
+
|
7112
|
+
|
7113
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-01 20:55:15 -0400
|
7114
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
7115
|
+
|
7116
|
+
|
7117
|
+
Started GET "/rails_exception_handler_admin" for 127.0.0.1 at 2013-11-01 20:55:15 -0400
|
7118
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
7119
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM `error_messages`
|
7120
|
+
[1m[36mRailsExceptionHandlerAdmin::ErrorMessage Load (0.4ms)[0m [1mSELECT `error_messages`.* FROM `error_messages` ORDER BY created_at DESC LIMIT 100 OFFSET 0[0m
|
7121
|
+
Rendered /Users/uranazo/sidework/rails_exception_handler_admin/app/views/rails_exception_handler_admin/error_messages/index.html.erb within layouts/rails_exception_handler_admin/application (5.6ms)
|
7122
|
+
[1m[35mSQL (0.4ms)[0m SELECT DISTINCT `error_messages`.`app_name` FROM `error_messages`
|
7123
|
+
Completed 200 OK in 18ms (Views: 15.9ms | ActiveRecord: 1.1ms)
|
7124
|
+
|
7125
|
+
|
7126
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-01 20:55:15 -0400
|
7127
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
7128
|
+
|
7129
|
+
|
7130
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.css?body=1" for 127.0.0.1 at 2013-11-01 20:55:15 -0400
|
7131
|
+
Served asset /rails_exception_handler_admin/error_messages.css - 304 Not Modified (0ms)
|
7132
|
+
|
7133
|
+
|
7134
|
+
Started GET "/assets/rails_exception_handler_admin/application.css?body=1" for 127.0.0.1 at 2013-11-01 20:55:15 -0400
|
7135
|
+
Served asset /rails_exception_handler_admin/application.css - 304 Not Modified (0ms)
|
7136
|
+
|
7137
|
+
|
7138
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-01 20:55:15 -0400
|
7139
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
7140
|
+
|
7141
|
+
|
7142
|
+
Started GET "/assets/rails_exception_handler_admin/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-11-01 20:55:15 -0400
|
7143
|
+
Served asset /rails_exception_handler_admin/bootstrap.min.css - 304 Not Modified (0ms)
|
7144
|
+
|
7145
|
+
|
7146
|
+
Started GET "/rails_exception_handler_admin" for 127.0.0.1 at 2013-11-01 20:57:02 -0400
|
7147
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
7148
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM `error_messages` [0m
|
7149
|
+
[1m[35mRailsExceptionHandlerAdmin::ErrorMessage Load (0.4ms)[0m SELECT `error_messages`.* FROM `error_messages` ORDER BY created_at DESC LIMIT 100 OFFSET 0
|
7150
|
+
Rendered /Users/uranazo/sidework/rails_exception_handler_admin/app/views/rails_exception_handler_admin/error_messages/index.html.erb within layouts/rails_exception_handler_admin/application (42.0ms)
|
7151
|
+
Completed 500 Internal Server Error in 46ms
|
7152
|
+
|
7153
|
+
ActionView::Template::Error (Object must be a Date, DateTime or Time object. nil given.):
|
7154
|
+
22: <td><%= error_message.trace.try(:split, "\n").try(:first).try(:gsub, Regexp.new(/(.*\/)|(?=:\d+:).*/), '') %></td>
|
7155
|
+
23: <td><%= error_message.target_url %></td>
|
7156
|
+
24: <td><%= error_message.user_info %></td>
|
7157
|
+
25: <td><%=l error_message.created_at %></td>
|
7158
|
+
26: <td>
|
7159
|
+
27: <%= link_to t('rails_exception_handler.resolve'),
|
7160
|
+
28: rails_exception_handler_admin.error_message_path(error_message),
|
7161
|
+
i18n (0.6.5) lib/i18n/backend/base.rb:49:in `localize'
|
7162
|
+
i18n (0.6.5) lib/i18n.rb:237:in `localize'
|
7163
|
+
actionpack (3.2.14) lib/action_view/helpers/translation_helper.rb:66:in `localize'
|
7164
|
+
/Users/uranazo/sidework/rails_exception_handler_admin/app/views/rails_exception_handler_admin/error_messages/index.html.erb:25:in `block in ___sers_uranazo_sidework_rails_exception_handler_admin_app_views_rails_exception_handler_admin_error_messages_index_html_erb___2269346366953990685_70165825848680'
|
7165
|
+
activerecord (3.2.14) lib/active_record/relation/delegation.rb:6:in `each'
|
7166
|
+
activerecord (3.2.14) lib/active_record/relation/delegation.rb:6:in `each'
|
7167
|
+
/Users/uranazo/sidework/rails_exception_handler_admin/app/views/rails_exception_handler_admin/error_messages/index.html.erb:18:in `___sers_uranazo_sidework_rails_exception_handler_admin_app_views_rails_exception_handler_admin_error_messages_index_html_erb___2269346366953990685_70165825848680'
|
7168
|
+
actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render'
|
7169
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument'
|
7170
|
+
actionpack (3.2.14) lib/action_view/template.rb:143:in `render'
|
7171
|
+
actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:48:in `block (2 levels) in render_template'
|
7172
|
+
actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
7173
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
|
7174
|
+
activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
7175
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
|
7176
|
+
actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
7177
|
+
actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:47:in `block in render_template'
|
7178
|
+
actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:55:in `render_with_layout'
|
7179
|
+
actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template'
|
7180
|
+
actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render'
|
7181
|
+
actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
7182
|
+
actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render'
|
7183
|
+
actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
7184
|
+
actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
7185
|
+
actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
7186
|
+
actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
7187
|
+
actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
7188
|
+
actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render'
|
7189
|
+
actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render'
|
7190
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
7191
|
+
activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
7192
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
7193
|
+
activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
7194
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
7195
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
7196
|
+
activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
7197
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
7198
|
+
actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
7199
|
+
actionpack (3.2.14) lib/action_controller/metal/mime_responds.rb:196:in `respond_to'
|
7200
|
+
/Users/uranazo/sidework/rails_exception_handler_admin/app/controllers/rails_exception_handler_admin/error_messages_controller.rb:11:in `index'
|
7201
|
+
actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
7202
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action'
|
7203
|
+
actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
7204
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
7205
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:403:in `_run__157679599748607979__process_action__3050382108224351302__callbacks'
|
7206
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
7207
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
7208
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
7209
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
7210
|
+
actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
7211
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
7212
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
|
7213
|
+
activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
7214
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
|
7215
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
7216
|
+
actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
7217
|
+
activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
7218
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process'
|
7219
|
+
actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process'
|
7220
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch'
|
7221
|
+
actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
7222
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action'
|
7223
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
7224
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
7225
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
7226
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
7227
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
7228
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
7229
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
7230
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
7231
|
+
railties (3.2.14) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
7232
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
7233
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
7234
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
7235
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
7236
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
7237
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
7238
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
7239
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call'
|
7240
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
7241
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
7242
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
7243
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
7244
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
7245
|
+
activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call'
|
7246
|
+
activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
7247
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
7248
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__535241896603894664__call__1306046504838594753__callbacks'
|
7249
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
7250
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
7251
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
7252
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
7253
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
7254
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
7255
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
7256
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
7257
|
+
railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
|
7258
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
|
7259
|
+
activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
|
7260
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
|
7261
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
7262
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
7263
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
7264
|
+
activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
7265
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
7266
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
|
7267
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
7268
|
+
railties (3.2.14) lib/rails/application.rb:231:in `call'
|
7269
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
7270
|
+
railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
|
7271
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
7272
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
7273
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
7274
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
7275
|
+
|
7276
|
+
|
7277
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
|
7278
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
|
7279
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.5ms)
|
7280
|
+
|
7281
|
+
|
7282
|
+
Started GET "/rails_exception_handler_admin" for 127.0.0.1 at 2013-11-01 20:57:34 -0400
|
7283
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
7284
|
+
[1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM `error_messages` [0m
|
7285
|
+
[1m[35mRailsExceptionHandlerAdmin::ErrorMessage Load (0.4ms)[0m SELECT `error_messages`.* FROM `error_messages` ORDER BY created_at DESC LIMIT 100 OFFSET 0
|
7286
|
+
Rendered /Users/uranazo/sidework/rails_exception_handler_admin/app/views/rails_exception_handler_admin/error_messages/index.html.erb within layouts/rails_exception_handler_admin/application (21.7ms)
|
7287
|
+
[1m[36mSQL (0.5ms)[0m [1mSELECT DISTINCT `error_messages`.`app_name` FROM `error_messages` [0m
|
7288
|
+
Completed 200 OK in 34ms (Views: 31.7ms | ActiveRecord: 1.4ms)
|
7289
|
+
|
7290
|
+
|
7291
|
+
Started GET "/assets/rails_exception_handler_admin/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-11-01 20:57:34 -0400
|
7292
|
+
Served asset /rails_exception_handler_admin/bootstrap.min.css - 304 Not Modified (0ms)
|
7293
|
+
|
7294
|
+
|
7295
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-01 20:57:34 -0400
|
7296
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
7297
|
+
|
7298
|
+
|
7299
|
+
Started GET "/assets/rails_exception_handler_admin/application.css?body=1" for 127.0.0.1 at 2013-11-01 20:57:34 -0400
|
7300
|
+
Served asset /rails_exception_handler_admin/application.css - 304 Not Modified (0ms)
|
7301
|
+
|
7302
|
+
|
7303
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-01 20:57:34 -0400
|
7304
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
7305
|
+
|
7306
|
+
|
7307
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.css?body=1" for 127.0.0.1 at 2013-11-01 20:57:34 -0400
|
7308
|
+
Served asset /rails_exception_handler_admin/error_messages.css - 304 Not Modified (0ms)
|
7309
|
+
|
7310
|
+
|
7311
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.js?body=1" for 127.0.0.1 at 2013-11-01 20:57:34 -0400
|
7312
|
+
Served asset /rails_exception_handler_admin/error_messages.js - 304 Not Modified (0ms)
|
7313
|
+
|
7314
|
+
|
7315
|
+
Started GET "/assets/rails_exception_handler_admin/application.js?body=1" for 127.0.0.1 at 2013-11-01 20:57:34 -0400
|
7316
|
+
Served asset /rails_exception_handler_admin/application.js - 304 Not Modified (0ms)
|
7317
|
+
|
7318
|
+
|
7319
|
+
Started GET "/rails_exception_handler_admin?per_page=10" for 127.0.0.1 at 2013-11-01 20:58:23 -0400
|
7320
|
+
DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:ErrorMessage> at /Users/uranazo/sidework/rails_exception_handler_admin/app/models/rails_exception_handler_admin/error_message.rb:5)
|
7321
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
7322
|
+
Parameters: {"per_page"=>"10"}
|
7323
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM `error_messages`
|
7324
|
+
[1m[36mRailsExceptionHandlerAdmin::ErrorMessage Load (0.7ms)[0m [1mSELECT `error_messages`.* FROM `error_messages` ORDER BY created_at DESC LIMIT 10 OFFSET 0[0m
|
7325
|
+
Rendered /Users/uranazo/sidework/rails_exception_handler_admin/app/views/rails_exception_handler_admin/error_messages/index.html.erb within layouts/rails_exception_handler_admin/application (80.6ms)
|
7326
|
+
[1m[35mSQL (0.8ms)[0m SELECT DISTINCT `error_messages`.`app_name` FROM `error_messages`
|
7327
|
+
Completed 200 OK in 93ms (Views: 84.2ms | ActiveRecord: 8.0ms)
|
7328
|
+
|
7329
|
+
|
7330
|
+
Started GET "/assets/rails_exception_handler_admin/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-11-01 20:58:24 -0400
|
7331
|
+
Served asset /rails_exception_handler_admin/bootstrap.min.css - 304 Not Modified (0ms)
|
7332
|
+
|
7333
|
+
|
7334
|
+
Started GET "/assets/rails_exception_handler_admin/application.css?body=1" for 127.0.0.1 at 2013-11-01 20:58:24 -0400
|
7335
|
+
Served asset /rails_exception_handler_admin/application.css - 304 Not Modified (0ms)
|
7336
|
+
|
7337
|
+
|
7338
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-01 20:58:24 -0400
|
7339
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
7340
|
+
|
7341
|
+
|
7342
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.css?body=1" for 127.0.0.1 at 2013-11-01 20:58:24 -0400
|
7343
|
+
Served asset /rails_exception_handler_admin/error_messages.css - 304 Not Modified (0ms)
|
7344
|
+
|
7345
|
+
|
7346
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-01 20:58:24 -0400
|
7347
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
7348
|
+
|
7349
|
+
|
7350
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.js?body=1" for 127.0.0.1 at 2013-11-01 20:58:24 -0400
|
7351
|
+
Served asset /rails_exception_handler_admin/error_messages.js - 304 Not Modified (0ms)
|
7352
|
+
|
7353
|
+
|
7354
|
+
Started GET "/assets/rails_exception_handler_admin/application.js?body=1" for 127.0.0.1 at 2013-11-01 20:58:24 -0400
|
7355
|
+
Served asset /rails_exception_handler_admin/application.js - 304 Not Modified (0ms)
|
7356
|
+
Connecting to database specified by database.yml
|
7357
|
+
|
7358
|
+
|
7359
|
+
Started GET "/rails_exception_handler_admin/error_messages?app=La+ti+da" for 127.0.0.1 at 2013-11-01 21:04:39 -0400
|
7360
|
+
DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:ErrorMessage> at /Users/uranazo/sidework/rails_exception_handler_admin/app/models/rails_exception_handler_admin/error_message.rb:5)
|
7361
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
7362
|
+
Parameters: {"app"=>"La ti da"}
|
7363
|
+
[1m[36m (0.6ms)[0m [1mSELECT COUNT(*) FROM `error_messages` WHERE `error_messages`.`app_name` = 'La ti da'[0m
|
7364
|
+
[1m[35mRailsExceptionHandlerAdmin::ErrorMessage Load (0.8ms)[0m SELECT `error_messages`.* FROM `error_messages` WHERE `error_messages`.`app_name` = 'La ti da' ORDER BY created_at DESC LIMIT 100 OFFSET 0
|
7365
|
+
Rendered /Users/uranazo/sidework/rails_exception_handler_admin/app/views/rails_exception_handler_admin/error_messages/index.html.erb within layouts/rails_exception_handler_admin/application (147.2ms)
|
7366
|
+
[1m[36mSQL (0.5ms)[0m [1mSELECT DISTINCT `error_messages`.`app_name` FROM `error_messages` [0m
|
7367
|
+
Completed 200 OK in 172ms (Views: 152.7ms | ActiveRecord: 4.7ms)
|
7368
|
+
|
7369
|
+
|
7370
|
+
Started GET "/assets/rails_exception_handler_admin/application.css?body=1" for 127.0.0.1 at 2013-11-01 21:04:40 -0400
|
7371
|
+
Served asset /rails_exception_handler_admin/application.css - 304 Not Modified (0ms)
|
7372
|
+
|
7373
|
+
|
7374
|
+
Started GET "/assets/rails_exception_handler_admin/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-11-01 21:04:40 -0400
|
7375
|
+
Served asset /rails_exception_handler_admin/bootstrap.min.css - 304 Not Modified (0ms)
|
7376
|
+
|
7377
|
+
|
7378
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-01 21:04:40 -0400
|
7379
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
7380
|
+
|
7381
|
+
|
7382
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.js?body=1" for 127.0.0.1 at 2013-11-01 21:04:40 -0400
|
7383
|
+
Served asset /rails_exception_handler_admin/error_messages.js - 304 Not Modified (0ms)
|
7384
|
+
|
7385
|
+
|
7386
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-01 21:04:40 -0400
|
7387
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
7388
|
+
|
7389
|
+
|
7390
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.css?body=1" for 127.0.0.1 at 2013-11-01 21:04:40 -0400
|
7391
|
+
Served asset /rails_exception_handler_admin/error_messages.css - 304 Not Modified (0ms)
|
7392
|
+
|
7393
|
+
|
7394
|
+
Started GET "/assets/rails_exception_handler_admin/application.js?body=1" for 127.0.0.1 at 2013-11-01 21:04:40 -0400
|
7395
|
+
Served asset /rails_exception_handler_admin/application.js - 304 Not Modified (0ms)
|
7396
|
+
|
7397
|
+
|
7398
|
+
Started GET "/rails_exception_handler_admin/error_messages?app=La+ti+da" for 127.0.0.1 at 2013-11-01 21:07:11 -0400
|
7399
|
+
DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:ErrorMessage> at /Users/uranazo/sidework/rails_exception_handler_admin/app/models/rails_exception_handler_admin/error_message.rb:5)
|
7400
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
7401
|
+
Parameters: {"app"=>"La ti da"}
|
7402
|
+
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM `error_messages` WHERE `error_messages`.`app_name` = 'La ti da'
|
7403
|
+
[1m[36mRailsExceptionHandlerAdmin::ErrorMessage Load (1.0ms)[0m [1mSELECT `error_messages`.* FROM `error_messages` WHERE `error_messages`.`app_name` = 'La ti da' ORDER BY created_at DESC LIMIT 100 OFFSET 0[0m
|
7404
|
+
Rendered /Users/uranazo/sidework/rails_exception_handler_admin/app/views/rails_exception_handler_admin/error_messages/index.html.erb within layouts/rails_exception_handler_admin/application (161.9ms)
|
7405
|
+
[1m[35mSQL (0.5ms)[0m SELECT DISTINCT `error_messages`.`app_name` FROM `error_messages`
|
7406
|
+
Completed 200 OK in 177ms (Views: 170.6ms | ActiveRecord: 4.9ms)
|
7407
|
+
|
7408
|
+
|
7409
|
+
Started GET "/assets/rails_exception_handler_admin/application.css?body=1" for 127.0.0.1 at 2013-11-01 21:07:11 -0400
|
7410
|
+
Served asset /rails_exception_handler_admin/application.css - 304 Not Modified (0ms)
|
7411
|
+
|
7412
|
+
|
7413
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.css?body=1" for 127.0.0.1 at 2013-11-01 21:07:11 -0400
|
7414
|
+
Served asset /rails_exception_handler_admin/error_messages.css - 304 Not Modified (0ms)
|
7415
|
+
|
7416
|
+
|
7417
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-01 21:07:11 -0400
|
7418
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
7419
|
+
|
7420
|
+
|
7421
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-01 21:07:11 -0400
|
7422
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
7423
|
+
|
7424
|
+
|
7425
|
+
Started GET "/assets/rails_exception_handler_admin/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-11-01 21:07:11 -0400
|
7426
|
+
Served asset /rails_exception_handler_admin/bootstrap.min.css - 304 Not Modified (0ms)
|
7427
|
+
|
7428
|
+
|
7429
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.js?body=1" for 127.0.0.1 at 2013-11-01 21:07:11 -0400
|
7430
|
+
Served asset /rails_exception_handler_admin/error_messages.js - 304 Not Modified (0ms)
|
7431
|
+
|
7432
|
+
|
7433
|
+
Started GET "/assets/rails_exception_handler_admin/application.js?body=1" for 127.0.0.1 at 2013-11-01 21:07:11 -0400
|
7434
|
+
Served asset /rails_exception_handler_admin/application.js - 304 Not Modified (0ms)
|
7435
|
+
|
7436
|
+
|
7437
|
+
Started GET "/rails_exception_handler_admin/error_messages?app=La+ti+da" for 127.0.0.1 at 2013-11-01 21:08:35 -0400
|
7438
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
7439
|
+
Parameters: {"app"=>"La ti da"}
|
7440
|
+
[1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM `error_messages` WHERE `error_messages`.`app_name` = 'La ti da'[0m
|
7441
|
+
[1m[35mRailsExceptionHandlerAdmin::ErrorMessage Load (0.8ms)[0m SELECT `error_messages`.* FROM `error_messages` WHERE `error_messages`.`app_name` = 'La ti da' ORDER BY created_at DESC LIMIT 100 OFFSET 0
|
7442
|
+
Rendered /Users/uranazo/sidework/rails_exception_handler_admin/app/views/rails_exception_handler_admin/error_messages/index.html.erb within layouts/rails_exception_handler_admin/application (112.4ms)
|
7443
|
+
[1m[36mSQL (0.5ms)[0m [1mSELECT DISTINCT `error_messages`.`app_name` FROM `error_messages` [0m
|
7444
|
+
Completed 200 OK in 125ms (Views: 121.9ms | ActiveRecord: 1.8ms)
|
7445
|
+
|
7446
|
+
|
7447
|
+
Started GET "/assets/rails_exception_handler_admin/application.css?body=1" for 127.0.0.1 at 2013-11-01 21:08:35 -0400
|
7448
|
+
Served asset /rails_exception_handler_admin/application.css - 304 Not Modified (0ms)
|
7449
|
+
|
7450
|
+
|
7451
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-01 21:08:35 -0400
|
7452
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
7453
|
+
|
7454
|
+
|
7455
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.css?body=1" for 127.0.0.1 at 2013-11-01 21:08:35 -0400
|
7456
|
+
Served asset /rails_exception_handler_admin/error_messages.css - 304 Not Modified (0ms)
|
7457
|
+
|
7458
|
+
|
7459
|
+
Started GET "/assets/rails_exception_handler_admin/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-11-01 21:08:35 -0400
|
7460
|
+
Served asset /rails_exception_handler_admin/bootstrap.min.css - 304 Not Modified (0ms)
|
7461
|
+
|
7462
|
+
|
7463
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-01 21:08:35 -0400
|
7464
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
7465
|
+
|
7466
|
+
|
7467
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.js?body=1" for 127.0.0.1 at 2013-11-01 21:08:35 -0400
|
7468
|
+
Served asset /rails_exception_handler_admin/error_messages.js - 304 Not Modified (0ms)
|
7469
|
+
|
7470
|
+
|
7471
|
+
Started GET "/assets/rails_exception_handler_admin/application.js?body=1" for 127.0.0.1 at 2013-11-01 21:08:35 -0400
|
7472
|
+
Served asset /rails_exception_handler_admin/application.js - 304 Not Modified (0ms)
|
7473
|
+
|
7474
|
+
|
7475
|
+
Started GET "/rails_exception_handler_admin/error_messages?app=La+ti+da" for 127.0.0.1 at 2013-11-01 21:08:40 -0400
|
7476
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
7477
|
+
Parameters: {"app"=>"La ti da"}
|
7478
|
+
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM `error_messages` WHERE `error_messages`.`app_name` = 'La ti da'
|
7479
|
+
[1m[36mRailsExceptionHandlerAdmin::ErrorMessage Load (1.0ms)[0m [1mSELECT `error_messages`.* FROM `error_messages` WHERE `error_messages`.`app_name` = 'La ti da' ORDER BY created_at DESC LIMIT 100 OFFSET 0[0m
|
7480
|
+
Rendered /Users/uranazo/sidework/rails_exception_handler_admin/app/views/rails_exception_handler_admin/error_messages/index.html.erb within layouts/rails_exception_handler_admin/application (109.2ms)
|
7481
|
+
[1m[35mSQL (0.7ms)[0m SELECT DISTINCT `error_messages`.`app_name` FROM `error_messages`
|
7482
|
+
Completed 200 OK in 123ms (Views: 119.7ms | ActiveRecord: 2.1ms)
|
7483
|
+
|
7484
|
+
|
7485
|
+
Started GET "/assets/rails_exception_handler_admin/application.css?body=1" for 127.0.0.1 at 2013-11-01 21:08:40 -0400
|
7486
|
+
Served asset /rails_exception_handler_admin/application.css - 304 Not Modified (0ms)
|
7487
|
+
|
7488
|
+
|
7489
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.css?body=1" for 127.0.0.1 at 2013-11-01 21:08:40 -0400
|
7490
|
+
Served asset /rails_exception_handler_admin/error_messages.css - 304 Not Modified (0ms)
|
7491
|
+
|
7492
|
+
|
7493
|
+
Started GET "/assets/rails_exception_handler_admin/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-11-01 21:08:40 -0400
|
7494
|
+
Served asset /rails_exception_handler_admin/bootstrap.min.css - 304 Not Modified (0ms)
|
7495
|
+
|
7496
|
+
|
7497
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-01 21:08:40 -0400
|
7498
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
7499
|
+
|
7500
|
+
|
7501
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.js?body=1" for 127.0.0.1 at 2013-11-01 21:08:40 -0400
|
7502
|
+
Served asset /rails_exception_handler_admin/error_messages.js - 304 Not Modified (0ms)
|
7503
|
+
|
7504
|
+
|
7505
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-01 21:08:40 -0400
|
7506
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
7507
|
+
|
7508
|
+
|
7509
|
+
Started GET "/assets/rails_exception_handler_admin/application.js?body=1" for 127.0.0.1 at 2013-11-01 21:08:40 -0400
|
7510
|
+
Served asset /rails_exception_handler_admin/application.js - 304 Not Modified (0ms)
|
7511
|
+
|
7512
|
+
|
7513
|
+
Started GET "/rails_exception_handler_admin/" for 127.0.0.1 at 2013-11-01 21:08:47 -0400
|
7514
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
7515
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM `error_messages` [0m
|
7516
|
+
[1m[35mRailsExceptionHandlerAdmin::ErrorMessage Load (0.8ms)[0m SELECT `error_messages`.* FROM `error_messages` ORDER BY created_at DESC LIMIT 100 OFFSET 0
|
7517
|
+
Rendered /Users/uranazo/sidework/rails_exception_handler_admin/app/views/rails_exception_handler_admin/error_messages/index.html.erb within layouts/rails_exception_handler_admin/application (122.5ms)
|
7518
|
+
[1m[36mSQL (0.7ms)[0m [1mSELECT DISTINCT `error_messages`.`app_name` FROM `error_messages` [0m
|
7519
|
+
Completed 200 OK in 134ms (Views: 131.2ms | ActiveRecord: 1.8ms)
|
7520
|
+
|
7521
|
+
|
7522
|
+
Started GET "/assets/rails_exception_handler_admin/application.css?body=1" for 127.0.0.1 at 2013-11-01 21:08:48 -0400
|
7523
|
+
Served asset /rails_exception_handler_admin/application.css - 304 Not Modified (0ms)
|
7524
|
+
|
7525
|
+
|
7526
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-01 21:08:48 -0400
|
7527
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
7528
|
+
|
7529
|
+
|
7530
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.css?body=1" for 127.0.0.1 at 2013-11-01 21:08:48 -0400
|
7531
|
+
Served asset /rails_exception_handler_admin/error_messages.css - 304 Not Modified (0ms)
|
7532
|
+
|
7533
|
+
|
7534
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-01 21:08:48 -0400
|
7535
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
7536
|
+
|
7537
|
+
|
7538
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.js?body=1" for 127.0.0.1 at 2013-11-01 21:08:48 -0400
|
7539
|
+
Served asset /rails_exception_handler_admin/error_messages.js - 304 Not Modified (0ms)
|
7540
|
+
|
7541
|
+
|
7542
|
+
Started GET "/assets/rails_exception_handler_admin/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-11-01 21:08:48 -0400
|
7543
|
+
Served asset /rails_exception_handler_admin/bootstrap.min.css - 304 Not Modified (0ms)
|
7544
|
+
|
7545
|
+
|
7546
|
+
Started GET "/assets/rails_exception_handler_admin/application.js?body=1" for 127.0.0.1 at 2013-11-01 21:08:48 -0400
|
7547
|
+
Served asset /rails_exception_handler_admin/application.js - 304 Not Modified (0ms)
|
7548
|
+
|
7549
|
+
|
7550
|
+
Started GET "/rails_exception_handler_admin/error_messages?app=La+ti+da" for 127.0.0.1 at 2013-11-01 21:08:53 -0400
|
7551
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
7552
|
+
Parameters: {"app"=>"La ti da"}
|
7553
|
+
[1m[35m (0.6ms)[0m SELECT COUNT(*) FROM `error_messages` WHERE `error_messages`.`app_name` = 'La ti da'
|
7554
|
+
[1m[36mRailsExceptionHandlerAdmin::ErrorMessage Load (0.7ms)[0m [1mSELECT `error_messages`.* FROM `error_messages` WHERE `error_messages`.`app_name` = 'La ti da' ORDER BY created_at DESC LIMIT 100 OFFSET 0[0m
|
7555
|
+
Rendered /Users/uranazo/sidework/rails_exception_handler_admin/app/views/rails_exception_handler_admin/error_messages/index.html.erb within layouts/rails_exception_handler_admin/application (110.5ms)
|
7556
|
+
[1m[35mSQL (0.7ms)[0m SELECT DISTINCT `error_messages`.`app_name` FROM `error_messages`
|
7557
|
+
Completed 200 OK in 123ms (Views: 119.8ms | ActiveRecord: 2.1ms)
|
7558
|
+
|
7559
|
+
|
7560
|
+
Started GET "/assets/rails_exception_handler_admin/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-11-01 21:08:53 -0400
|
7561
|
+
Served asset /rails_exception_handler_admin/bootstrap.min.css - 304 Not Modified (0ms)
|
7562
|
+
|
7563
|
+
|
7564
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-01 21:08:53 -0400
|
7565
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
7566
|
+
|
7567
|
+
|
7568
|
+
Started GET "/assets/rails_exception_handler_admin/application.css?body=1" for 127.0.0.1 at 2013-11-01 21:08:53 -0400
|
7569
|
+
Served asset /rails_exception_handler_admin/application.css - 304 Not Modified (0ms)
|
7570
|
+
|
7571
|
+
|
7572
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-01 21:08:53 -0400
|
7573
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
7574
|
+
|
7575
|
+
|
7576
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.css?body=1" for 127.0.0.1 at 2013-11-01 21:08:53 -0400
|
7577
|
+
Served asset /rails_exception_handler_admin/error_messages.css - 304 Not Modified (0ms)
|
7578
|
+
|
7579
|
+
|
7580
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.js?body=1" for 127.0.0.1 at 2013-11-01 21:08:53 -0400
|
7581
|
+
Served asset /rails_exception_handler_admin/error_messages.js - 304 Not Modified (0ms)
|
7582
|
+
|
7583
|
+
|
7584
|
+
Started GET "/assets/rails_exception_handler_admin/application.js?body=1" for 127.0.0.1 at 2013-11-01 21:08:53 -0400
|
7585
|
+
Served asset /rails_exception_handler_admin/application.js - 304 Not Modified (0ms)
|
7586
|
+
|
7587
|
+
|
7588
|
+
Started DELETE "/rails_exception_handler_admin/error_messages?app=La+ti+da" for 127.0.0.1 at 2013-11-01 21:08:56 -0400
|
7589
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#destroy_all as HTML
|
7590
|
+
Parameters: {"authenticity_token"=>"vSD5yY1imQqKLUQqMOYIe3UKLiJ7zWznSnIvTqjl8KQ=", "app"=>"La ti da"}
|
7591
|
+
Completed 500 Internal Server Error in 1ms
|
7592
|
+
|
7593
|
+
ArgumentError (Unknown key: app_name):
|
7594
|
+
activesupport (3.2.14) lib/active_support/core_ext/hash/keys.rb:51:in `block in assert_valid_keys'
|
7595
|
+
activesupport (3.2.14) lib/active_support/core_ext/hash/keys.rb:50:in `each_key'
|
7596
|
+
activesupport (3.2.14) lib/active_support/core_ext/hash/keys.rb:50:in `assert_valid_keys'
|
7597
|
+
activerecord (3.2.14) lib/active_record/relation/spawn_methods.rb:132:in `apply_finder_options'
|
7598
|
+
activerecord (3.2.14) lib/active_record/relation/finder_methods.rb:101:in `find'
|
7599
|
+
activerecord (3.2.14) lib/active_record/relation.rb:382:in `destroy'
|
7600
|
+
activerecord (3.2.14) lib/active_record/querying.rb:7:in `destroy'
|
7601
|
+
/Users/uranazo/sidework/rails_exception_handler_admin/app/controllers/rails_exception_handler_admin/error_messages_controller.rb:60:in `destroy_all'
|
7602
|
+
actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
7603
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action'
|
7604
|
+
actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
7605
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
7606
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:403:in `_run__157679599748607979__process_action__3982799446965905150__callbacks'
|
7607
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
7608
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
7609
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
7610
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
7611
|
+
actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
7612
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
7613
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
|
7614
|
+
activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
7615
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
|
7616
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
7617
|
+
actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
7618
|
+
activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
7619
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process'
|
7620
|
+
actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process'
|
7621
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch'
|
7622
|
+
actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
7623
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action'
|
7624
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
7625
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
7626
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
7627
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
7628
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
7629
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
7630
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
7631
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
7632
|
+
railties (3.2.14) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
7633
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
7634
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
7635
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
7636
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
7637
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
7638
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
7639
|
+
rack (1.4.5) lib/rack/conditionalget.rb:35:in `call'
|
7640
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call'
|
7641
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
7642
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
7643
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
7644
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
7645
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
7646
|
+
activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call'
|
7647
|
+
activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
7648
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
7649
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__535241896603894664__call__1306046504838594753__callbacks'
|
7650
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
7651
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
7652
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
7653
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
7654
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
7655
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
7656
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
7657
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
7658
|
+
railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
|
7659
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
|
7660
|
+
activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
|
7661
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
|
7662
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
7663
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
7664
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
7665
|
+
activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
7666
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
7667
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
|
7668
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
7669
|
+
railties (3.2.14) lib/rails/application.rb:231:in `call'
|
7670
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
7671
|
+
railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
|
7672
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
7673
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
7674
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
7675
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
7676
|
+
|
7677
|
+
|
7678
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (21.3ms)
|
7679
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
|
7680
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (29.2ms)
|
7681
|
+
|
7682
|
+
|
7683
|
+
Started GET "/rails_exception_handler_admin/error_messages?app=La+ti+da" for 127.0.0.1 at 2013-11-01 21:09:16 -0400
|
7684
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
7685
|
+
Parameters: {"app"=>"La ti da"}
|
7686
|
+
[1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM `error_messages` WHERE `error_messages`.`app_name` = 'La ti da'[0m
|
7687
|
+
[1m[35mRailsExceptionHandlerAdmin::ErrorMessage Load (0.9ms)[0m SELECT `error_messages`.* FROM `error_messages` WHERE `error_messages`.`app_name` = 'La ti da' ORDER BY created_at DESC LIMIT 100 OFFSET 0
|
7688
|
+
Rendered /Users/uranazo/sidework/rails_exception_handler_admin/app/views/rails_exception_handler_admin/error_messages/index.html.erb within layouts/rails_exception_handler_admin/application (127.5ms)
|
7689
|
+
[1m[36mSQL (0.5ms)[0m [1mSELECT DISTINCT `error_messages`.`app_name` FROM `error_messages` [0m
|
7690
|
+
Completed 200 OK in 139ms (Views: 136.7ms | ActiveRecord: 1.9ms)
|
7691
|
+
|
7692
|
+
|
7693
|
+
Started GET "/assets/rails_exception_handler_admin/application.css?body=1" for 127.0.0.1 at 2013-11-01 21:09:16 -0400
|
7694
|
+
Served asset /rails_exception_handler_admin/application.css - 304 Not Modified (0ms)
|
7695
|
+
|
7696
|
+
|
7697
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.css?body=1" for 127.0.0.1 at 2013-11-01 21:09:16 -0400
|
7698
|
+
Served asset /rails_exception_handler_admin/error_messages.css - 304 Not Modified (0ms)
|
7699
|
+
|
7700
|
+
|
7701
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-01 21:09:16 -0400
|
7702
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
7703
|
+
|
7704
|
+
|
7705
|
+
Started GET "/assets/rails_exception_handler_admin/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-11-01 21:09:16 -0400
|
7706
|
+
Served asset /rails_exception_handler_admin/bootstrap.min.css - 304 Not Modified (0ms)
|
7707
|
+
|
7708
|
+
|
7709
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-01 21:09:16 -0400
|
7710
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
7711
|
+
|
7712
|
+
|
7713
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.js?body=1" for 127.0.0.1 at 2013-11-01 21:09:16 -0400
|
7714
|
+
Served asset /rails_exception_handler_admin/error_messages.js - 304 Not Modified (0ms)
|
7715
|
+
|
7716
|
+
|
7717
|
+
Started GET "/assets/rails_exception_handler_admin/application.js?body=1" for 127.0.0.1 at 2013-11-01 21:09:16 -0400
|
7718
|
+
Served asset /rails_exception_handler_admin/application.js - 304 Not Modified (0ms)
|
7719
|
+
|
7720
|
+
|
7721
|
+
Started GET "/rails_exception_handler_admin/error_messages?app=La+ti+da" for 127.0.0.1 at 2013-11-01 21:12:58 -0400
|
7722
|
+
DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:ErrorMessage> at /Users/uranazo/sidework/rails_exception_handler_admin/app/models/rails_exception_handler_admin/error_message.rb:5)
|
7723
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
7724
|
+
Parameters: {"app"=>"La ti da"}
|
7725
|
+
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM `error_messages` WHERE `error_messages`.`app_name` = 'La ti da'
|
7726
|
+
[1m[36mRailsExceptionHandlerAdmin::ErrorMessage Load (0.8ms)[0m [1mSELECT `error_messages`.* FROM `error_messages` WHERE `error_messages`.`app_name` = 'La ti da' ORDER BY created_at DESC LIMIT 100 OFFSET 0[0m
|
7727
|
+
Rendered /Users/uranazo/sidework/rails_exception_handler_admin/app/views/rails_exception_handler_admin/error_messages/index.html.erb within layouts/rails_exception_handler_admin/application (154.2ms)
|
7728
|
+
[1m[35mSQL (0.6ms)[0m SELECT DISTINCT `error_messages`.`app_name` FROM `error_messages`
|
7729
|
+
Completed 200 OK in 168ms (Views: 162.3ms | ActiveRecord: 4.4ms)
|
7730
|
+
|
7731
|
+
|
7732
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.css?body=1" for 127.0.0.1 at 2013-11-01 21:12:59 -0400
|
7733
|
+
Served asset /rails_exception_handler_admin/error_messages.css - 304 Not Modified (0ms)
|
7734
|
+
|
7735
|
+
|
7736
|
+
Started GET "/assets/rails_exception_handler_admin/application.css?body=1" for 127.0.0.1 at 2013-11-01 21:12:59 -0400
|
7737
|
+
Served asset /rails_exception_handler_admin/application.css - 304 Not Modified (0ms)
|
7738
|
+
|
7739
|
+
|
7740
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.js?body=1" for 127.0.0.1 at 2013-11-01 21:12:59 -0400
|
7741
|
+
Served asset /rails_exception_handler_admin/error_messages.js - 304 Not Modified (0ms)
|
7742
|
+
|
7743
|
+
|
7744
|
+
Started GET "/assets/rails_exception_handler_admin/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-11-01 21:12:59 -0400
|
7745
|
+
Served asset /rails_exception_handler_admin/bootstrap.min.css - 304 Not Modified (0ms)
|
7746
|
+
|
7747
|
+
|
7748
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-01 21:12:59 -0400
|
7749
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
7750
|
+
|
7751
|
+
|
7752
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-01 21:12:59 -0400
|
7753
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
7754
|
+
|
7755
|
+
|
7756
|
+
Started GET "/assets/rails_exception_handler_admin/application.js?body=1" for 127.0.0.1 at 2013-11-01 21:12:59 -0400
|
7757
|
+
Served asset /rails_exception_handler_admin/application.js - 304 Not Modified (0ms)
|
7758
|
+
|
7759
|
+
|
7760
|
+
Started DELETE "/rails_exception_handler_admin/error_messages?app=La+ti+da" for 127.0.0.1 at 2013-11-01 21:13:02 -0400
|
7761
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#destroy_all as HTML
|
7762
|
+
Parameters: {"authenticity_token"=>"vSD5yY1imQqKLUQqMOYIe3UKLiJ7zWznSnIvTqjl8KQ=", "app"=>"La ti da"}
|
7763
|
+
Completed 500 Internal Server Error in 1ms
|
7764
|
+
|
7765
|
+
ArgumentError (wrong number of arguments (0 for 1)):
|
7766
|
+
activerecord (3.2.14) lib/active_record/relation.rb:378:in `destroy'
|
7767
|
+
/Users/uranazo/sidework/rails_exception_handler_admin/app/controllers/rails_exception_handler_admin/error_messages_controller.rb:60:in `destroy_all'
|
7768
|
+
actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
7769
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action'
|
7770
|
+
actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
7771
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
7772
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:403:in `_run__157679599748607979__process_action__3982799446965905150__callbacks'
|
7773
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
7774
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
7775
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
7776
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
7777
|
+
actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
7778
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
7779
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
|
7780
|
+
activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
7781
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
|
7782
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
7783
|
+
actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
7784
|
+
activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
7785
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process'
|
7786
|
+
actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process'
|
7787
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch'
|
7788
|
+
actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
7789
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action'
|
7790
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
7791
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
7792
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
7793
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
7794
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
7795
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
7796
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
7797
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
7798
|
+
railties (3.2.14) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
7799
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
7800
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
7801
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
7802
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
7803
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
7804
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
7805
|
+
rack (1.4.5) lib/rack/conditionalget.rb:35:in `call'
|
7806
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call'
|
7807
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
7808
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
7809
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
7810
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
7811
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
7812
|
+
activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call'
|
7813
|
+
activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
7814
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
7815
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__535241896603894664__call__1306046504838594753__callbacks'
|
7816
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
7817
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
7818
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
7819
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
7820
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
7821
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
7822
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
7823
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
7824
|
+
railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
|
7825
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
|
7826
|
+
activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
|
7827
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
|
7828
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
7829
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
7830
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
7831
|
+
activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
7832
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
7833
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
|
7834
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
7835
|
+
railties (3.2.14) lib/rails/application.rb:231:in `call'
|
7836
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
7837
|
+
railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
|
7838
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
7839
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
7840
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
7841
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
7842
|
+
|
7843
|
+
|
7844
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
|
7845
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
|
7846
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.9ms)
|
7847
|
+
|
7848
|
+
|
7849
|
+
Started GET "/rails_exception_handler_admin/error_messages?app=La+ti+da" for 127.0.0.1 at 2013-11-01 21:13:22 -0400
|
7850
|
+
DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:ErrorMessage> at /Users/uranazo/sidework/rails_exception_handler_admin/app/models/rails_exception_handler_admin/error_message.rb:5)
|
7851
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
7852
|
+
Parameters: {"app"=>"La ti da"}
|
7853
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM `error_messages` WHERE `error_messages`.`app_name` = 'La ti da'[0m
|
7854
|
+
[1m[35mRailsExceptionHandlerAdmin::ErrorMessage Load (0.6ms)[0m SELECT `error_messages`.* FROM `error_messages` WHERE `error_messages`.`app_name` = 'La ti da' ORDER BY created_at DESC LIMIT 100 OFFSET 0
|
7855
|
+
Rendered /Users/uranazo/sidework/rails_exception_handler_admin/app/views/rails_exception_handler_admin/error_messages/index.html.erb within layouts/rails_exception_handler_admin/application (154.1ms)
|
7856
|
+
[1m[36mSQL (0.5ms)[0m [1mSELECT DISTINCT `error_messages`.`app_name` FROM `error_messages` [0m
|
7857
|
+
Completed 200 OK in 168ms (Views: 163.0ms | ActiveRecord: 4.1ms)
|
7858
|
+
|
7859
|
+
|
7860
|
+
Started GET "/assets/rails_exception_handler_admin/application.css?body=1" for 127.0.0.1 at 2013-11-01 21:13:22 -0400
|
7861
|
+
Served asset /rails_exception_handler_admin/application.css - 304 Not Modified (0ms)
|
7862
|
+
|
7863
|
+
|
7864
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.css?body=1" for 127.0.0.1 at 2013-11-01 21:13:23 -0400
|
7865
|
+
Served asset /rails_exception_handler_admin/error_messages.css - 304 Not Modified (0ms)
|
7866
|
+
|
7867
|
+
|
7868
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.js?body=1" for 127.0.0.1 at 2013-11-01 21:13:23 -0400
|
7869
|
+
Served asset /rails_exception_handler_admin/error_messages.js - 304 Not Modified (0ms)
|
7870
|
+
|
7871
|
+
|
7872
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-01 21:13:23 -0400
|
7873
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
7874
|
+
|
7875
|
+
|
7876
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-01 21:13:23 -0400
|
7877
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
7878
|
+
|
7879
|
+
|
7880
|
+
Started GET "/assets/rails_exception_handler_admin/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-11-01 21:13:23 -0400
|
7881
|
+
Served asset /rails_exception_handler_admin/bootstrap.min.css - 304 Not Modified (0ms)
|
7882
|
+
|
7883
|
+
|
7884
|
+
Started GET "/assets/rails_exception_handler_admin/application.js?body=1" for 127.0.0.1 at 2013-11-01 21:13:23 -0400
|
7885
|
+
Served asset /rails_exception_handler_admin/application.js - 304 Not Modified (0ms)
|
7886
|
+
|
7887
|
+
|
7888
|
+
Started DELETE "/rails_exception_handler_admin/error_messages?app=La+ti+da" for 127.0.0.1 at 2013-11-01 21:13:25 -0400
|
7889
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#destroy_all as HTML
|
7890
|
+
Parameters: {"authenticity_token"=>"vSD5yY1imQqKLUQqMOYIe3UKLiJ7zWznSnIvTqjl8KQ=", "app"=>"La ti da"}
|
7891
|
+
Completed 500 Internal Server Error in 1ms
|
7892
|
+
|
7893
|
+
ArgumentError (Unknown key: app_name):
|
7894
|
+
activesupport (3.2.14) lib/active_support/core_ext/hash/keys.rb:51:in `block in assert_valid_keys'
|
7895
|
+
activesupport (3.2.14) lib/active_support/core_ext/hash/keys.rb:50:in `each_key'
|
7896
|
+
activesupport (3.2.14) lib/active_support/core_ext/hash/keys.rb:50:in `assert_valid_keys'
|
7897
|
+
activerecord (3.2.14) lib/active_record/relation/spawn_methods.rb:132:in `apply_finder_options'
|
7898
|
+
activerecord (3.2.14) lib/active_record/relation/finder_methods.rb:159:in `all'
|
7899
|
+
activerecord (3.2.14) lib/active_record/querying.rb:5:in `all'
|
7900
|
+
/Users/uranazo/sidework/rails_exception_handler_admin/app/controllers/rails_exception_handler_admin/error_messages_controller.rb:60:in `destroy_all'
|
7901
|
+
actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
7902
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action'
|
7903
|
+
actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
7904
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
7905
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:403:in `_run__157679599748607979__process_action__3982799446965905150__callbacks'
|
7906
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
7907
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
7908
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
7909
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
7910
|
+
actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
7911
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
7912
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
|
7913
|
+
activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
7914
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
|
7915
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
7916
|
+
actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
7917
|
+
activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
7918
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process'
|
7919
|
+
actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process'
|
7920
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch'
|
7921
|
+
actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
7922
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action'
|
7923
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
7924
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
7925
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
7926
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
7927
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
7928
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
7929
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
7930
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
7931
|
+
railties (3.2.14) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
7932
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
7933
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
7934
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
7935
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
7936
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
7937
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
7938
|
+
rack (1.4.5) lib/rack/conditionalget.rb:35:in `call'
|
7939
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call'
|
7940
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
7941
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
7942
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
7943
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
7944
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
7945
|
+
activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call'
|
7946
|
+
activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
7947
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
7948
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__535241896603894664__call__1306046504838594753__callbacks'
|
7949
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
7950
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
7951
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
7952
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
7953
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
7954
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
7955
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
7956
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
7957
|
+
railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
|
7958
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
|
7959
|
+
activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
|
7960
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
|
7961
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
7962
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
7963
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
7964
|
+
activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
7965
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
7966
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
|
7967
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
7968
|
+
railties (3.2.14) lib/rails/application.rb:231:in `call'
|
7969
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
7970
|
+
railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
|
7971
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
7972
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
7973
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
7974
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
7975
|
+
|
7976
|
+
|
7977
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms)
|
7978
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.5ms)
|
7979
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.1ms)
|
7980
|
+
|
7981
|
+
|
7982
|
+
Started GET "/rails_exception_handler_admin/error_messages?app=La+ti+da" for 127.0.0.1 at 2013-11-01 21:16:52 -0400
|
7983
|
+
DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:ErrorMessage> at /Users/uranazo/sidework/rails_exception_handler_admin/app/models/rails_exception_handler_admin/error_message.rb:5)
|
7984
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
7985
|
+
Parameters: {"app"=>"La ti da"}
|
7986
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM `error_messages` WHERE `error_messages`.`app_name` = 'La ti da'
|
7987
|
+
[1m[36mRailsExceptionHandlerAdmin::ErrorMessage Load (0.9ms)[0m [1mSELECT `error_messages`.* FROM `error_messages` WHERE `error_messages`.`app_name` = 'La ti da' ORDER BY created_at DESC LIMIT 100 OFFSET 0[0m
|
7988
|
+
Rendered /Users/uranazo/sidework/rails_exception_handler_admin/app/views/rails_exception_handler_admin/error_messages/index.html.erb within layouts/rails_exception_handler_admin/application (152.5ms)
|
7989
|
+
[1m[35mSQL (0.5ms)[0m SELECT DISTINCT `error_messages`.`app_name` FROM `error_messages`
|
7990
|
+
Completed 200 OK in 166ms (Views: 160.5ms | ActiveRecord: 4.4ms)
|
7991
|
+
|
7992
|
+
|
7993
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-01 21:16:53 -0400
|
7994
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
7995
|
+
|
7996
|
+
|
7997
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.css?body=1" for 127.0.0.1 at 2013-11-01 21:16:53 -0400
|
7998
|
+
Served asset /rails_exception_handler_admin/error_messages.css - 304 Not Modified (0ms)
|
7999
|
+
|
8000
|
+
|
8001
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.js?body=1" for 127.0.0.1 at 2013-11-01 21:16:53 -0400
|
8002
|
+
Served asset /rails_exception_handler_admin/error_messages.js - 304 Not Modified (0ms)
|
8003
|
+
|
8004
|
+
|
8005
|
+
Started GET "/assets/rails_exception_handler_admin/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-11-01 21:16:53 -0400
|
8006
|
+
Served asset /rails_exception_handler_admin/bootstrap.min.css - 304 Not Modified (0ms)
|
8007
|
+
|
8008
|
+
|
8009
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-01 21:16:53 -0400
|
8010
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
8011
|
+
|
8012
|
+
|
8013
|
+
Started GET "/assets/rails_exception_handler_admin/application.css?body=1" for 127.0.0.1 at 2013-11-01 21:16:53 -0400
|
8014
|
+
Served asset /rails_exception_handler_admin/application.css - 304 Not Modified (0ms)
|
8015
|
+
|
8016
|
+
|
8017
|
+
Started GET "/assets/rails_exception_handler_admin/application.js?body=1" for 127.0.0.1 at 2013-11-01 21:16:53 -0400
|
8018
|
+
Served asset /rails_exception_handler_admin/application.js - 304 Not Modified (0ms)
|
8019
|
+
|
8020
|
+
|
8021
|
+
Started DELETE "/rails_exception_handler_admin/error_messages?app=La+ti+da" for 127.0.0.1 at 2013-11-01 21:16:59 -0400
|
8022
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#destroy_all as HTML
|
8023
|
+
Parameters: {"authenticity_token"=>"vSD5yY1imQqKLUQqMOYIe3UKLiJ7zWznSnIvTqjl8KQ=", "app"=>"La ti da"}
|
8024
|
+
[1m[36mRailsExceptionHandlerAdmin::ErrorMessage Load (0.6ms)[0m [1mSELECT `error_messages`.* FROM `error_messages` WHERE `error_messages`.`app_name` = 'La ti da'[0m
|
8025
|
+
[1m[35m (0.4ms)[0m BEGIN
|
8026
|
+
[1m[36mSQL (0.4ms)[0m [1mDELETE FROM `error_messages` WHERE `error_messages`.`id` = 1[0m
|
8027
|
+
[1m[35m (0.7ms)[0m COMMIT
|
8028
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
8029
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM `error_messages` WHERE `error_messages`.`id` = 2
|
8030
|
+
[1m[36m (0.7ms)[0m [1mCOMMIT[0m
|
8031
|
+
[1m[35m (0.1ms)[0m BEGIN
|
8032
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM `error_messages` WHERE `error_messages`.`id` = 3[0m
|
8033
|
+
[1m[35m (0.6ms)[0m COMMIT
|
8034
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
8035
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM `error_messages` WHERE `error_messages`.`id` = 4
|
8036
|
+
[1m[36m (0.6ms)[0m [1mCOMMIT[0m
|
8037
|
+
[1m[35m (0.1ms)[0m BEGIN
|
8038
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM `error_messages` WHERE `error_messages`.`id` = 5[0m
|
8039
|
+
[1m[35m (0.6ms)[0m COMMIT
|
8040
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
8041
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM `error_messages` WHERE `error_messages`.`id` = 6
|
8042
|
+
[1m[36m (0.5ms)[0m [1mCOMMIT[0m
|
8043
|
+
[1m[35m (0.1ms)[0m BEGIN
|
8044
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM `error_messages` WHERE `error_messages`.`id` = 7[0m
|
8045
|
+
[1m[35m (0.6ms)[0m COMMIT
|
8046
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
8047
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM `error_messages` WHERE `error_messages`.`id` = 8
|
8048
|
+
[1m[36m (0.5ms)[0m [1mCOMMIT[0m
|
8049
|
+
[1m[35m (0.1ms)[0m BEGIN
|
8050
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM `error_messages` WHERE `error_messages`.`id` = 9[0m
|
8051
|
+
[1m[35m (0.6ms)[0m COMMIT
|
8052
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
8053
|
+
[1m[35mSQL (0.4ms)[0m DELETE FROM `error_messages` WHERE `error_messages`.`id` = 10
|
8054
|
+
[1m[36m (0.5ms)[0m [1mCOMMIT[0m
|
8055
|
+
[1m[35m (0.1ms)[0m BEGIN
|
8056
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM `error_messages` WHERE `error_messages`.`id` = 11[0m
|
8057
|
+
[1m[35m (0.6ms)[0m COMMIT
|
8058
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
8059
|
+
[1m[35mSQL (0.4ms)[0m DELETE FROM `error_messages` WHERE `error_messages`.`id` = 12
|
8060
|
+
[1m[36m (0.6ms)[0m [1mCOMMIT[0m
|
8061
|
+
[1m[35m (0.1ms)[0m BEGIN
|
8062
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM `error_messages` WHERE `error_messages`.`id` = 13[0m
|
8063
|
+
[1m[35m (0.7ms)[0m COMMIT
|
8064
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
8065
|
+
[1m[35mSQL (0.5ms)[0m DELETE FROM `error_messages` WHERE `error_messages`.`id` = 14
|
8066
|
+
[1m[36m (0.6ms)[0m [1mCOMMIT[0m
|
8067
|
+
[1m[35m (0.1ms)[0m BEGIN
|
8068
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM `error_messages` WHERE `error_messages`.`id` = 15[0m
|
8069
|
+
[1m[35m (0.5ms)[0m COMMIT
|
8070
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
8071
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM `error_messages` WHERE `error_messages`.`id` = 16
|
8072
|
+
[1m[36m (0.6ms)[0m [1mCOMMIT[0m
|
8073
|
+
[1m[35m (0.1ms)[0m BEGIN
|
8074
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM `error_messages` WHERE `error_messages`.`id` = 17[0m
|
8075
|
+
[1m[35m (0.6ms)[0m COMMIT
|
8076
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
8077
|
+
[1m[35mSQL (0.5ms)[0m DELETE FROM `error_messages` WHERE `error_messages`.`id` = 18
|
8078
|
+
[1m[36m (0.7ms)[0m [1mCOMMIT[0m
|
8079
|
+
[1m[35m (0.1ms)[0m BEGIN
|
8080
|
+
[1m[36mSQL (7.4ms)[0m [1mDELETE FROM `error_messages` WHERE `error_messages`.`id` = 19[0m
|
8081
|
+
[1m[35m (0.6ms)[0m COMMIT
|
8082
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
8083
|
+
[1m[35mSQL (0.4ms)[0m DELETE FROM `error_messages` WHERE `error_messages`.`id` = 20
|
8084
|
+
[1m[36m (0.5ms)[0m [1mCOMMIT[0m
|
8085
|
+
[1m[35m (0.1ms)[0m BEGIN
|
8086
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM `error_messages` WHERE `error_messages`.`id` = 21[0m
|
8087
|
+
[1m[35m (0.8ms)[0m COMMIT
|
8088
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
8089
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM `error_messages` WHERE `error_messages`.`id` = 22
|
8090
|
+
[1m[36m (0.6ms)[0m [1mCOMMIT[0m
|
8091
|
+
[1m[35m (0.1ms)[0m BEGIN
|
8092
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM `error_messages` WHERE `error_messages`.`id` = 23[0m
|
8093
|
+
[1m[35m (0.6ms)[0m COMMIT
|
8094
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
8095
|
+
[1m[35mSQL (0.5ms)[0m DELETE FROM `error_messages` WHERE `error_messages`.`id` = 24
|
8096
|
+
[1m[36m (0.7ms)[0m [1mCOMMIT[0m
|
8097
|
+
[1m[35m (0.1ms)[0m BEGIN
|
8098
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM `error_messages` WHERE `error_messages`.`id` = 25[0m
|
8099
|
+
[1m[35m (0.5ms)[0m COMMIT
|
8100
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
8101
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM `error_messages` WHERE `error_messages`.`id` = 26
|
8102
|
+
[1m[36m (0.7ms)[0m [1mCOMMIT[0m
|
8103
|
+
[1m[35m (0.1ms)[0m BEGIN
|
8104
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM `error_messages` WHERE `error_messages`.`id` = 27[0m
|
8105
|
+
[1m[35m (0.6ms)[0m COMMIT
|
8106
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
8107
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM `error_messages` WHERE `error_messages`.`id` = 28
|
8108
|
+
[1m[36m (0.6ms)[0m [1mCOMMIT[0m
|
8109
|
+
[1m[35m (0.1ms)[0m BEGIN
|
8110
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM `error_messages` WHERE `error_messages`.`id` = 29[0m
|
8111
|
+
[1m[35m (0.7ms)[0m COMMIT
|
8112
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
8113
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM `error_messages` WHERE `error_messages`.`id` = 30
|
8114
|
+
[1m[36m (0.5ms)[0m [1mCOMMIT[0m
|
8115
|
+
[1m[35m (0.1ms)[0m BEGIN
|
8116
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM `error_messages` WHERE `error_messages`.`id` = 31[0m
|
8117
|
+
[1m[35m (0.7ms)[0m COMMIT
|
8118
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
8119
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM `error_messages` WHERE `error_messages`.`id` = 32
|
8120
|
+
[1m[36m (0.6ms)[0m [1mCOMMIT[0m
|
8121
|
+
[1m[35m (0.1ms)[0m BEGIN
|
8122
|
+
[1m[36mSQL (0.5ms)[0m [1mDELETE FROM `error_messages` WHERE `error_messages`.`id` = 33[0m
|
8123
|
+
[1m[35m (0.5ms)[0m COMMIT
|
8124
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
8125
|
+
[1m[35mSQL (0.4ms)[0m DELETE FROM `error_messages` WHERE `error_messages`.`id` = 34
|
8126
|
+
[1m[36m (0.6ms)[0m [1mCOMMIT[0m
|
8127
|
+
[1m[35m (0.1ms)[0m BEGIN
|
8128
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM `error_messages` WHERE `error_messages`.`id` = 35[0m
|
8129
|
+
[1m[35m (0.7ms)[0m COMMIT
|
8130
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
8131
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM `error_messages` WHERE `error_messages`.`id` = 36
|
8132
|
+
[1m[36m (0.6ms)[0m [1mCOMMIT[0m
|
8133
|
+
[1m[35m (0.2ms)[0m BEGIN
|
8134
|
+
[1m[36mSQL (0.4ms)[0m [1mDELETE FROM `error_messages` WHERE `error_messages`.`id` = 37[0m
|
8135
|
+
[1m[35m (0.7ms)[0m COMMIT
|
8136
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
8137
|
+
[1m[35mSQL (0.5ms)[0m DELETE FROM `error_messages` WHERE `error_messages`.`id` = 38
|
8138
|
+
[1m[36m (0.6ms)[0m [1mCOMMIT[0m
|
8139
|
+
[1m[35m (0.1ms)[0m BEGIN
|
8140
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM `error_messages` WHERE `error_messages`.`id` = 39[0m
|
8141
|
+
[1m[35m (0.5ms)[0m COMMIT
|
8142
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
8143
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM `error_messages` WHERE `error_messages`.`id` = 40
|
8144
|
+
[1m[36m (0.6ms)[0m [1mCOMMIT[0m
|
8145
|
+
[1m[35m (0.1ms)[0m BEGIN
|
8146
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM `error_messages` WHERE `error_messages`.`id` = 41[0m
|
8147
|
+
[1m[35m (0.7ms)[0m COMMIT
|
8148
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
8149
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM `error_messages` WHERE `error_messages`.`id` = 42
|
8150
|
+
[1m[36m (0.8ms)[0m [1mCOMMIT[0m
|
8151
|
+
[1m[35m (0.1ms)[0m BEGIN
|
8152
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM `error_messages` WHERE `error_messages`.`id` = 43[0m
|
8153
|
+
[1m[35m (0.6ms)[0m COMMIT
|
8154
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
8155
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM `error_messages` WHERE `error_messages`.`id` = 44
|
8156
|
+
[1m[36m (0.7ms)[0m [1mCOMMIT[0m
|
8157
|
+
[1m[35m (0.1ms)[0m BEGIN
|
8158
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM `error_messages` WHERE `error_messages`.`id` = 45[0m
|
8159
|
+
[1m[35m (0.7ms)[0m COMMIT
|
8160
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
8161
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM `error_messages` WHERE `error_messages`.`id` = 46
|
8162
|
+
[1m[36m (0.5ms)[0m [1mCOMMIT[0m
|
8163
|
+
[1m[35m (0.1ms)[0m BEGIN
|
8164
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM `error_messages` WHERE `error_messages`.`id` = 47[0m
|
8165
|
+
[1m[35m (0.6ms)[0m COMMIT
|
8166
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
8167
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM `error_messages` WHERE `error_messages`.`id` = 48
|
8168
|
+
[1m[36m (0.6ms)[0m [1mCOMMIT[0m
|
8169
|
+
[1m[35m (0.1ms)[0m BEGIN
|
8170
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM `error_messages` WHERE `error_messages`.`id` = 49[0m
|
8171
|
+
[1m[35m (0.6ms)[0m COMMIT
|
8172
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
8173
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM `error_messages` WHERE `error_messages`.`id` = 50
|
8174
|
+
[1m[36m (0.6ms)[0m [1mCOMMIT[0m
|
8175
|
+
[1m[35m (0.1ms)[0m BEGIN
|
8176
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM `error_messages` WHERE `error_messages`.`id` = 51[0m
|
8177
|
+
[1m[35m (0.6ms)[0m COMMIT
|
8178
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
8179
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM `error_messages` WHERE `error_messages`.`id` = 52
|
8180
|
+
[1m[36m (0.6ms)[0m [1mCOMMIT[0m
|
8181
|
+
[1m[35m (0.1ms)[0m BEGIN
|
8182
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM `error_messages` WHERE `error_messages`.`id` = 53[0m
|
8183
|
+
[1m[35m (1.0ms)[0m COMMIT
|
8184
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
8185
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM `error_messages` WHERE `error_messages`.`id` = 54
|
8186
|
+
[1m[36m (0.6ms)[0m [1mCOMMIT[0m
|
8187
|
+
[1m[35m (0.1ms)[0m BEGIN
|
8188
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM `error_messages` WHERE `error_messages`.`id` = 55[0m
|
8189
|
+
[1m[35m (0.6ms)[0m COMMIT
|
8190
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
8191
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM `error_messages` WHERE `error_messages`.`id` = 56
|
8192
|
+
[1m[36m (0.6ms)[0m [1mCOMMIT[0m
|
8193
|
+
Redirected to http://localhost:3001/rails_exception_handler_admin/error_messages
|
8194
|
+
Completed 302 Found in 209ms (ActiveRecord: 64.6ms)
|
8195
|
+
|
8196
|
+
|
8197
|
+
Started GET "/rails_exception_handler_admin/error_messages" for 127.0.0.1 at 2013-11-01 21:16:59 -0400
|
8198
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
8199
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM `error_messages`
|
8200
|
+
[1m[36mRailsExceptionHandlerAdmin::ErrorMessage Load (0.3ms)[0m [1mSELECT `error_messages`.* FROM `error_messages` ORDER BY created_at DESC LIMIT 100 OFFSET 0[0m
|
8201
|
+
Rendered /Users/uranazo/sidework/rails_exception_handler_admin/app/views/rails_exception_handler_admin/error_messages/index.html.erb within layouts/rails_exception_handler_admin/application (7.0ms)
|
8202
|
+
[1m[35mSQL (0.5ms)[0m SELECT DISTINCT `error_messages`.`app_name` FROM `error_messages`
|
8203
|
+
Completed 200 OK in 18ms (Views: 15.7ms | ActiveRecord: 1.1ms)
|
8204
|
+
|
8205
|
+
|
8206
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.js?body=1" for 127.0.0.1 at 2013-11-01 21:16:59 -0400
|
8207
|
+
Served asset /rails_exception_handler_admin/error_messages.js - 304 Not Modified (0ms)
|
8208
|
+
|
8209
|
+
|
8210
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-01 21:16:59 -0400
|
8211
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
8212
|
+
|
8213
|
+
|
8214
|
+
Started GET "/assets/rails_exception_handler_admin/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-11-01 21:16:59 -0400
|
8215
|
+
Served asset /rails_exception_handler_admin/bootstrap.min.css - 304 Not Modified (0ms)
|
8216
|
+
|
8217
|
+
|
8218
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.css?body=1" for 127.0.0.1 at 2013-11-01 21:16:59 -0400
|
8219
|
+
Served asset /rails_exception_handler_admin/error_messages.css - 304 Not Modified (0ms)
|
8220
|
+
|
8221
|
+
|
8222
|
+
Started GET "/assets/rails_exception_handler_admin/application.css?body=1" for 127.0.0.1 at 2013-11-01 21:16:59 -0400
|
8223
|
+
Served asset /rails_exception_handler_admin/application.css - 304 Not Modified (0ms)
|
8224
|
+
|
8225
|
+
|
8226
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-01 21:16:59 -0400
|
8227
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
8228
|
+
|
8229
|
+
|
8230
|
+
Started GET "/assets/rails_exception_handler_admin/application.js?body=1" for 127.0.0.1 at 2013-11-01 21:16:59 -0400
|
8231
|
+
Served asset /rails_exception_handler_admin/application.js - 304 Not Modified (0ms)
|
8232
|
+
|
8233
|
+
|
8234
|
+
Started GET "/rails_exception_handler_admin/" for 127.0.0.1 at 2013-11-01 21:17:03 -0400
|
8235
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
8236
|
+
[1m[36m (0.6ms)[0m [1mSELECT COUNT(*) FROM `error_messages` [0m
|
8237
|
+
[1m[35mRailsExceptionHandlerAdmin::ErrorMessage Load (0.6ms)[0m SELECT `error_messages`.* FROM `error_messages` ORDER BY created_at DESC LIMIT 100 OFFSET 0
|
8238
|
+
Rendered /Users/uranazo/sidework/rails_exception_handler_admin/app/views/rails_exception_handler_admin/error_messages/index.html.erb within layouts/rails_exception_handler_admin/application (6.9ms)
|
8239
|
+
[1m[36mSQL (0.6ms)[0m [1mSELECT DISTINCT `error_messages`.`app_name` FROM `error_messages` [0m
|
8240
|
+
Completed 200 OK in 19ms (Views: 16.0ms | ActiveRecord: 1.7ms)
|
8241
|
+
|
8242
|
+
|
8243
|
+
Started GET "/assets/rails_exception_handler_admin/application.css?body=1" for 127.0.0.1 at 2013-11-01 21:17:03 -0400
|
8244
|
+
Served asset /rails_exception_handler_admin/application.css - 304 Not Modified (0ms)
|
8245
|
+
|
8246
|
+
|
8247
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-01 21:17:03 -0400
|
8248
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
8249
|
+
|
8250
|
+
|
8251
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.css?body=1" for 127.0.0.1 at 2013-11-01 21:17:03 -0400
|
8252
|
+
Served asset /rails_exception_handler_admin/error_messages.css - 304 Not Modified (0ms)
|
8253
|
+
|
8254
|
+
|
8255
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-01 21:17:03 -0400
|
8256
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
8257
|
+
|
8258
|
+
|
8259
|
+
Started GET "/assets/rails_exception_handler_admin/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-11-01 21:17:03 -0400
|
8260
|
+
Served asset /rails_exception_handler_admin/bootstrap.min.css - 304 Not Modified (0ms)
|
8261
|
+
|
8262
|
+
|
8263
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.js?body=1" for 127.0.0.1 at 2013-11-01 21:17:03 -0400
|
8264
|
+
Served asset /rails_exception_handler_admin/error_messages.js - 304 Not Modified (0ms)
|
8265
|
+
|
8266
|
+
|
8267
|
+
Started GET "/assets/rails_exception_handler_admin/application.js?body=1" for 127.0.0.1 at 2013-11-01 21:17:03 -0400
|
8268
|
+
Served asset /rails_exception_handler_admin/application.js - 304 Not Modified (0ms)
|
8269
|
+
|
8270
|
+
|
8271
|
+
Started GET "/rails_exception_handler_admin/" for 127.0.0.1 at 2013-11-01 21:17:16 -0400
|
8272
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
8273
|
+
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM `error_messages`
|
8274
|
+
[1m[36mRailsExceptionHandlerAdmin::ErrorMessage Load (0.7ms)[0m [1mSELECT `error_messages`.* FROM `error_messages` ORDER BY created_at DESC LIMIT 100 OFFSET 0[0m
|
8275
|
+
Rendered /Users/uranazo/sidework/rails_exception_handler_admin/app/views/rails_exception_handler_admin/error_messages/index.html.erb within layouts/rails_exception_handler_admin/application (25.3ms)
|
8276
|
+
[1m[35mSQL (0.5ms)[0m SELECT DISTINCT `error_messages`.`app_name` FROM `error_messages`
|
8277
|
+
Completed 200 OK in 38ms (Views: 35.7ms | ActiveRecord: 1.7ms)
|
8278
|
+
|
8279
|
+
|
8280
|
+
Started GET "/assets/rails_exception_handler_admin/application.css?body=1" for 127.0.0.1 at 2013-11-01 21:17:16 -0400
|
8281
|
+
Served asset /rails_exception_handler_admin/application.css - 304 Not Modified (0ms)
|
8282
|
+
|
8283
|
+
|
8284
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-01 21:17:16 -0400
|
8285
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
8286
|
+
|
8287
|
+
|
8288
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.css?body=1" for 127.0.0.1 at 2013-11-01 21:17:16 -0400
|
8289
|
+
Served asset /rails_exception_handler_admin/error_messages.css - 304 Not Modified (0ms)
|
8290
|
+
|
8291
|
+
|
8292
|
+
Started GET "/assets/rails_exception_handler_admin/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-11-01 21:17:16 -0400
|
8293
|
+
Served asset /rails_exception_handler_admin/bootstrap.min.css - 304 Not Modified (0ms)
|
8294
|
+
|
8295
|
+
|
8296
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-01 21:17:16 -0400
|
8297
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
8298
|
+
|
8299
|
+
|
8300
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.js?body=1" for 127.0.0.1 at 2013-11-01 21:17:16 -0400
|
8301
|
+
Served asset /rails_exception_handler_admin/error_messages.js - 304 Not Modified (0ms)
|
8302
|
+
|
8303
|
+
|
8304
|
+
Started GET "/assets/rails_exception_handler_admin/application.js?body=1" for 127.0.0.1 at 2013-11-01 21:17:16 -0400
|
8305
|
+
Served asset /rails_exception_handler_admin/application.js - 304 Not Modified (0ms)
|
8306
|
+
|
8307
|
+
|
8308
|
+
Started DELETE "/rails_exception_handler_admin/error_messages" for 127.0.0.1 at 2013-11-01 21:17:20 -0400
|
8309
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#destroy_all as HTML
|
8310
|
+
Parameters: {"authenticity_token"=>"vSD5yY1imQqKLUQqMOYIe3UKLiJ7zWznSnIvTqjl8KQ="}
|
8311
|
+
[1m[36mRailsExceptionHandlerAdmin::ErrorMessage Load (0.5ms)[0m [1mSELECT `error_messages`.* FROM `error_messages` [0m
|
8312
|
+
Completed 500 Internal Server Error in 6ms
|
8313
|
+
|
8314
|
+
NoMethodError (undefined method `destroy' for #<Array:0x007fa182079a60>):
|
8315
|
+
/Users/uranazo/sidework/rails_exception_handler_admin/app/controllers/rails_exception_handler_admin/error_messages_controller.rb:62:in `destroy_all'
|
8316
|
+
actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
8317
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action'
|
8318
|
+
actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
8319
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
8320
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:403:in `_run__157679599748607979__process_action__3982799446965905150__callbacks'
|
8321
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
8322
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
8323
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
8324
|
+
actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
8325
|
+
actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
8326
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
8327
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
|
8328
|
+
activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
8329
|
+
activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
|
8330
|
+
actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
8331
|
+
actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
8332
|
+
activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
8333
|
+
actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process'
|
8334
|
+
actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process'
|
8335
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch'
|
8336
|
+
actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
8337
|
+
actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action'
|
8338
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
8339
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
8340
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
8341
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
8342
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
8343
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
8344
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
8345
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
8346
|
+
railties (3.2.14) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
8347
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
8348
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
8349
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
8350
|
+
actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
|
8351
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
8352
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
8353
|
+
rack (1.4.5) lib/rack/conditionalget.rb:35:in `call'
|
8354
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call'
|
8355
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
8356
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
8357
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
8358
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
8359
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
8360
|
+
activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call'
|
8361
|
+
activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
8362
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
8363
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__535241896603894664__call__1306046504838594753__callbacks'
|
8364
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
|
8365
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
8366
|
+
activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
8367
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
8368
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
8369
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
8370
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
8371
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
8372
|
+
railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
|
8373
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
|
8374
|
+
activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
|
8375
|
+
railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
|
8376
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
8377
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
8378
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
8379
|
+
activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
8380
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
8381
|
+
actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
|
8382
|
+
railties (3.2.14) lib/rails/engine.rb:484:in `call'
|
8383
|
+
railties (3.2.14) lib/rails/application.rb:231:in `call'
|
8384
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
8385
|
+
railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
|
8386
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
8387
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
8388
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
8389
|
+
/Users/uranazo/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
8390
|
+
|
8391
|
+
|
8392
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
|
8393
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
|
8394
|
+
Rendered /Users/uranazo/.rvm/gems/ruby-1.9.3-p448@global/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.3ms)
|
8395
|
+
|
8396
|
+
|
8397
|
+
Started GET "/rails_exception_handler_admin/error_messages" for 127.0.0.1 at 2013-11-01 21:17:38 -0400
|
8398
|
+
DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:ErrorMessage> at /Users/uranazo/sidework/rails_exception_handler_admin/app/models/rails_exception_handler_admin/error_message.rb:5)
|
8399
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
8400
|
+
[1m[35m (0.5ms)[0m SELECT COUNT(*) FROM `error_messages`
|
8401
|
+
[1m[36mRailsExceptionHandlerAdmin::ErrorMessage Load (0.7ms)[0m [1mSELECT `error_messages`.* FROM `error_messages` ORDER BY created_at DESC LIMIT 100 OFFSET 0[0m
|
8402
|
+
Rendered /Users/uranazo/sidework/rails_exception_handler_admin/app/views/rails_exception_handler_admin/error_messages/index.html.erb within layouts/rails_exception_handler_admin/application (75.5ms)
|
8403
|
+
[1m[35mSQL (0.8ms)[0m SELECT DISTINCT `error_messages`.`app_name` FROM `error_messages`
|
8404
|
+
Completed 200 OK in 89ms (Views: 83.4ms | ActiveRecord: 4.4ms)
|
8405
|
+
|
8406
|
+
|
8407
|
+
Started GET "/assets/rails_exception_handler_admin/application.css?body=1" for 127.0.0.1 at 2013-11-01 21:17:38 -0400
|
8408
|
+
Served asset /rails_exception_handler_admin/application.css - 304 Not Modified (0ms)
|
8409
|
+
|
8410
|
+
|
8411
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-01 21:17:38 -0400
|
8412
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
8413
|
+
|
8414
|
+
|
8415
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-01 21:17:38 -0400
|
8416
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
8417
|
+
|
8418
|
+
|
8419
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.js?body=1" for 127.0.0.1 at 2013-11-01 21:17:38 -0400
|
8420
|
+
Served asset /rails_exception_handler_admin/error_messages.js - 304 Not Modified (0ms)
|
8421
|
+
|
8422
|
+
|
8423
|
+
Started GET "/assets/rails_exception_handler_admin/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-11-01 21:17:38 -0400
|
8424
|
+
Served asset /rails_exception_handler_admin/bootstrap.min.css - 304 Not Modified (0ms)
|
8425
|
+
|
8426
|
+
|
8427
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.css?body=1" for 127.0.0.1 at 2013-11-01 21:17:38 -0400
|
8428
|
+
Served asset /rails_exception_handler_admin/error_messages.css - 304 Not Modified (0ms)
|
8429
|
+
|
8430
|
+
|
8431
|
+
Started GET "/assets/rails_exception_handler_admin/application.js?body=1" for 127.0.0.1 at 2013-11-01 21:17:38 -0400
|
8432
|
+
Served asset /rails_exception_handler_admin/application.js - 304 Not Modified (0ms)
|
8433
|
+
|
8434
|
+
|
8435
|
+
Started DELETE "/rails_exception_handler_admin/error_messages" for 127.0.0.1 at 2013-11-01 21:17:41 -0400
|
8436
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#destroy_all as HTML
|
8437
|
+
Parameters: {"authenticity_token"=>"vSD5yY1imQqKLUQqMOYIe3UKLiJ7zWznSnIvTqjl8KQ="}
|
8438
|
+
[1m[36mRailsExceptionHandlerAdmin::ErrorMessage Load (0.4ms)[0m [1mSELECT `error_messages`.* FROM `error_messages` [0m
|
8439
|
+
[1m[35m (0.1ms)[0m BEGIN
|
8440
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM `error_messages` WHERE `error_messages`.`id` = 57[0m
|
8441
|
+
[1m[35m (0.6ms)[0m COMMIT
|
8442
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
8443
|
+
[1m[35mSQL (0.4ms)[0m DELETE FROM `error_messages` WHERE `error_messages`.`id` = 58
|
8444
|
+
[1m[36m (0.6ms)[0m [1mCOMMIT[0m
|
8445
|
+
[1m[35m (0.1ms)[0m BEGIN
|
8446
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM `error_messages` WHERE `error_messages`.`id` = 59[0m
|
8447
|
+
[1m[35m (0.6ms)[0m COMMIT
|
8448
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
8449
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM `error_messages` WHERE `error_messages`.`id` = 60
|
8450
|
+
[1m[36m (0.6ms)[0m [1mCOMMIT[0m
|
8451
|
+
[1m[35m (0.1ms)[0m BEGIN
|
8452
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM `error_messages` WHERE `error_messages`.`id` = 61[0m
|
8453
|
+
[1m[35m (0.5ms)[0m COMMIT
|
8454
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
8455
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM `error_messages` WHERE `error_messages`.`id` = 62
|
8456
|
+
[1m[36m (0.6ms)[0m [1mCOMMIT[0m
|
8457
|
+
[1m[35m (0.1ms)[0m BEGIN
|
8458
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM `error_messages` WHERE `error_messages`.`id` = 63[0m
|
8459
|
+
[1m[35m (0.5ms)[0m COMMIT
|
8460
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
8461
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM `error_messages` WHERE `error_messages`.`id` = 64
|
8462
|
+
[1m[36m (0.5ms)[0m [1mCOMMIT[0m
|
8463
|
+
[1m[35m (0.1ms)[0m BEGIN
|
8464
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM `error_messages` WHERE `error_messages`.`id` = 65[0m
|
8465
|
+
[1m[35m (0.6ms)[0m COMMIT
|
8466
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
8467
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM `error_messages` WHERE `error_messages`.`id` = 66
|
8468
|
+
[1m[36m (0.6ms)[0m [1mCOMMIT[0m
|
8469
|
+
Redirected to http://localhost:3001/rails_exception_handler_admin/error_messages
|
8470
|
+
Completed 302 Found in 26ms (ActiveRecord: 9.5ms)
|
8471
|
+
|
8472
|
+
|
8473
|
+
Started GET "/rails_exception_handler_admin/error_messages" for 127.0.0.1 at 2013-11-01 21:17:41 -0400
|
8474
|
+
Processing by RailsExceptionHandlerAdmin::ErrorMessagesController#index as HTML
|
8475
|
+
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM `error_messages`
|
8476
|
+
[1m[36mRailsExceptionHandlerAdmin::ErrorMessage Load (0.5ms)[0m [1mSELECT `error_messages`.* FROM `error_messages` ORDER BY created_at DESC LIMIT 100 OFFSET 0[0m
|
8477
|
+
Rendered /Users/uranazo/sidework/rails_exception_handler_admin/app/views/rails_exception_handler_admin/error_messages/index.html.erb within layouts/rails_exception_handler_admin/application (5.2ms)
|
8478
|
+
[1m[35mSQL (0.5ms)[0m SELECT DISTINCT `error_messages`.`app_name` FROM `error_messages`
|
8479
|
+
Completed 200 OK in 15ms (Views: 13.0ms | ActiveRecord: 1.4ms)
|
8480
|
+
|
8481
|
+
|
8482
|
+
Started GET "/assets/rails_exception_handler_admin/application.css?body=1" for 127.0.0.1 at 2013-11-01 21:17:41 -0400
|
8483
|
+
Served asset /rails_exception_handler_admin/application.css - 304 Not Modified (0ms)
|
8484
|
+
|
8485
|
+
|
8486
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.css?body=1" for 127.0.0.1 at 2013-11-01 21:17:41 -0400
|
8487
|
+
Served asset /rails_exception_handler_admin/error_messages.css - 304 Not Modified (0ms)
|
8488
|
+
|
8489
|
+
|
8490
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-01 21:17:41 -0400
|
8491
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
8492
|
+
|
8493
|
+
|
8494
|
+
Started GET "/assets/rails_exception_handler_admin/error_messages.js?body=1" for 127.0.0.1 at 2013-11-01 21:17:41 -0400
|
8495
|
+
Served asset /rails_exception_handler_admin/error_messages.js - 304 Not Modified (0ms)
|
8496
|
+
|
8497
|
+
|
8498
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-01 21:17:41 -0400
|
8499
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
8500
|
+
|
8501
|
+
|
8502
|
+
Started GET "/assets/rails_exception_handler_admin/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-11-01 21:17:41 -0400
|
8503
|
+
Served asset /rails_exception_handler_admin/bootstrap.min.css - 304 Not Modified (0ms)
|
8504
|
+
|
8505
|
+
|
8506
|
+
Started GET "/assets/rails_exception_handler_admin/application.js?body=1" for 127.0.0.1 at 2013-11-01 21:17:41 -0400
|
8507
|
+
Served asset /rails_exception_handler_admin/application.js - 304 Not Modified (0ms)
|