super_diff
super_diff copied to clipboard
Add custom inspection for ActionDispatch::Request
Fixes #160.
Per investigation detailed on that issue, the default object inspection tree builder recursively works through all ActionDispatch::Request instance variables. This includes env, which can have enormous values, including and especially the app's entire route set.
Since the Rails code itself customizes inspection for this class, we'll do the same here.