Sha256: 580007c38c204fe8c2a960afe0bd0230fbb92f2755cbc4bacc02abdc12673086

Contents?: true

Size: 914 Bytes

Versions: 8

Compression:

Stored size: 914 Bytes

Contents

if ARGV.empty?
  $stderr.puts "Usage: ./script/performance/profiler 'Person.expensive_method(10)' [times]"
  exit(1)
end

# Keep the expensive require out of the profile.
$stderr.puts 'Loading Rails...'
require RAILS_ROOT + '/config/environment'

# Define a method to profile.
if ARGV[1] and ARGV[1].to_i > 1
  eval "def profile_me() #{ARGV[1]}.times { #{ARGV[0]} } end"
else
  eval "def profile_me() #{ARGV[0]} end"
end

# Use the ruby-prof extension if available.  Fall back to stdlib profiler.
begin
  require 'prof'
  $stderr.puts 'Using the ruby-prof extension.'
  Prof.clock_mode = Prof::GETTIMEOFDAY
  Prof.start
  profile_me
  results = Prof.stop
  require 'rubyprof_ext'
  Prof.print_profile(results, $stderr)
rescue LoadError
  require 'profiler'
  $stderr.puts 'Using the standard Ruby profiler.'
  Profiler__.start_profile
  profile_me
  Profiler__.stop_profile
  Profiler__.print_profile($stderr)
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
rails-1.1.0 lib/commands/performance/profiler.rb
rails-1.0.0 lib/commands/performance/profiler.rb
rails-1.1.1 lib/commands/performance/profiler.rb
rails-1.1.3 lib/commands/performance/profiler.rb
rails-1.1.6 lib/commands/performance/profiler.rb
rails-1.1.2 lib/commands/performance/profiler.rb
rails-1.1.5 lib/commands/performance/profiler.rb
rails-1.1.4 lib/commands/performance/profiler.rb