DebugExtras

Extras for Ruby on Rails debugging. Screenshots.
Features
At this moment provide next things:
dd <variable>at any place of your application (controllers/models/views/services/etc). After that you can see dump of this variable without any other stuff at your web browser. It's something like simple alternative toddfunction from Laravel for Ruby on Rails.dump <variable>at your views. It's alternative fordebugmethod fromActionView::Helpers::DebugHelper.temporary fix for
better_errorsandbinding_or_callerperformance issue.
Installation
Add this line to your Gemfile:
gem 'debug-extras', group: :development
And then execute:
$ bundle
Or you can install it using rgversion like any other gems.
Screenshots
dd from controller/model/service/etc:
dd Book.all

dump from views:
<%= dump Book.all %>
