No commit activity in last 3 years
No release in over 3 years
Simple Profiler for learning about Rails Development
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

>= 1.1.3
 Project Readme

MiniMini Profiler is a fork of Mini Profiler that is aimed a beginning rails programmers.

To install add the following to your gemfile and then run the bundle command:

gem 'mini-mini-profiler', :require => 'rack-mini-profiler' 

And add the following to ApplicationController in app/controllers/application_controller.rb

before_filter :setup_profiler                                                                                                                                                                                                                                                      

def setup_profiler
  Rack::MiniProfiler.authorize_request
end