Changeset 9236
- Timestamp:
- 04/07/08 19:29:09 (3 months ago)
- Files:
-
- trunk/railties/CHANGELOG (modified) (1 diff)
- trunk/railties/lib/commands/performance/profiler.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/railties/CHANGELOG
r9216 r9236 1 1 *SVN* 2 3 * script/performance/profiler compatibility with the ruby-prof >= 0.5.0. Closes #9176. [Catfish] 2 4 3 5 * Flesh out rake gems:unpack to unpack all gems, and add rake gems:build for native extensions. #11513 [ddollar] trunk/railties/lib/commands/performance/profiler.rb
r4673 r9236 20 20 require "ruby-prof" 21 21 $stderr.puts 'Using the ruby-prof extension.' 22 RubyProf. clock_mode = RubyProf::WALL_TIME22 RubyProf.measure_mode = RubyProf::WALL_TIME 23 23 RubyProf.start 24 24 profile_me