0.02
Repository is archived
No commit activity in last 3 years
No release in over 3 years
Hooks into the rake task and display performance times
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 0
 Project Readme

rake-performance

Simple performance timings for rake tasks.

Installation

gem install rake-performance

Usage

require 'rake_performance'

Example

task :do_something do
  puts "Hello, good Sir!"
  sleep(5)
end

=>

Task 'dostuff' started at 2011-01-30 19:12:27 +0000
Hello, good Sir!
Task 'dostuff' ended at 2011-01-30 19:12:32 +0000
Total time taken: 00:00:05