This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Mon Mar 10 17:19:00 -0700 2008 | [booss] |
| |
LICENSE | Mon Mar 10 17:11:40 -0700 2008 | [booss] |
| |
README | Mon Mar 10 17:19:00 -0700 2008 | [booss] |
| |
Rakefile | Mon Mar 10 17:11:40 -0700 2008 | [booss] |
| |
TODO | Mon Mar 10 17:11:40 -0700 2008 | [booss] |
| |
lib/ | Mon Mar 10 17:38:14 -0700 2008 | [booss] |
| |
spec/ | Mon Mar 10 17:11:40 -0700 2008 | [booss] |
README
merb-profile
============
A plugin for the Merb framework that provides action / template profiling
Example
=======
class MyController < Merb::Controller
profile_action :index
def index
render
end
def list
profile "big query" do
@result = MyModel.big_query
end
profile "list render" do
render
end
end
def clear
clear_profiling
end
def results
render_profiling
end
end




