it would be nice to see some additional info about exceptions just in browser. not only exception itself with few lines of code and not necessary (for me during development) stack traces but, for example, sql and, maybe, some more info – like exact place of problem in looong line of code (it is possible, i guess). it would be very helpful to see exact objects (truncated if it would be long) instead of Array:0x00000103e26ea0 in
undefined method `name' for #<Array:0x00000103e26ea0>
even additional info from log would be nice to see right in browser without switching to log every time
any tricks (gems, monkey-patches) on this?
in other words: what do you use to pleasurify (is this word exists?:)) development process?
thanx in advance
In addition to the development log (which includes your SQL errors) you might take a look at Hammertime or Pry, both of which are good debuggers that let you inspect your code more carefully around an exception.