Peek::ActiveRecord
Peek into your ActiveRecord stats.
Installation
Add this line to your application's Gemfile:
gem 'peek-active_record'
And then execute:
$ bundle
Or install it yourself as:
$ gem install peek-active_record
Usage
# config/initializers/peek.rb
Peek.into Peek::Views::ActiveRecord, :type_tracking => false
# app/assets/application.coffee
#= require 'peek/views/active_record'
Then, in any ActiveRecord model you wish to watch allocations of
(please note that after_initialize does impair performance of your app slightly)
simply include the Peek::ActiveRecord::ObjectStats
module.
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request