GitXplorerGitXplorer
a

merb-profile

public
3 stars
4 forks
0 issues

Commits

List of commits on branch master.
Unverified
877c7d2817b51a7c02795e9edfa1a3a218134ae6

fixed profile_action

aasynkayo committed 17 years ago
Unverified
f40b62e1ca7d9c16592649182599d4756b7d55b2

updated README

aasynkayo committed 17 years ago
Unverified
417fab188ffa84d67416c1dde5257a47a8642b1a

initial commit

aasynkayo committed 17 years ago

README

The README file for this repository.

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