Rails 3.2.13, 500 error in development without a log

I have a problem with migration rails 2.x → 3.2.13 At some point, after fixing some things, I get Completed 500 Internal Server Error in 76mswithout a trace.

development.rb

config.consider_all_requests_local       = true
config.action_controller.perform_caching = false

Why is there no trace and how to fix it?

+1
source share
1 answer

, , , , . , - 500 - . , - ActionView::Template::Error. , , .

ruby:

http://derrick.pallas.us/ruby-stats/

, 2.x. Array.sum, rails 3 Enumerable.sum. redefine , Array.sum , ActionView::Template::Error.source_extract - , Enumerable.sum . , TypeError: cannot convert String into Fixnum, , . backtrace , , .

, , , ActionView, , , .

+3

Source: https://habr.com/ru/post/1524815/


All Articles