aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/testing/performance.rb
diff options
context:
space:
mode:
authorGonçalo Silva <goncalossilva@gmail.com>2011-03-26 03:10:00 +0000
committerGonçalo Silva <goncalossilva@gmail.com>2011-03-26 15:51:44 +0000
commit3872cc4a739db7e0fb5b4a910be371c048667ca7 (patch)
treeae48ee846e67207face3e4be1bdfc1d74f8f01d5 /activesupport/lib/active_support/testing/performance.rb
parent278344b3fab67fcc471f475992a86c3748a83e23 (diff)
downloadrails-3872cc4a739db7e0fb5b4a910be371c048667ca7.tar.gz
rails-3872cc4a739db7e0fb5b4a910be371c048667ca7.tar.bz2
rails-3872cc4a739db7e0fb5b4a910be371c048667ca7.zip
added support for profiling under rubinius
Diffstat (limited to 'activesupport/lib/active_support/testing/performance.rb')
-rw-r--r--activesupport/lib/active_support/testing/performance.rb9
1 files changed, 4 insertions, 5 deletions
diff --git a/activesupport/lib/active_support/testing/performance.rb b/activesupport/lib/active_support/testing/performance.rb
index 9a759433b9..bba05d0a51 100644
--- a/activesupport/lib/active_support/testing/performance.rb
+++ b/activesupport/lib/active_support/testing/performance.rb
@@ -6,9 +6,10 @@ require 'action_view/helpers/number_helper'
module ActiveSupport
module Testing
- module Performance
+ module Performance
+ # modified by each implementation
DEFAULTS =
- if benchmark = ARGV.include?('--benchmark') # HAX for rake test
+ if ARGV.include?('--benchmark') # HAX for rake test
{ :benchmark => true,
:runs => 4,
:metrics => [:wall_time, :memory, :objects, :gc_runs, :gc_time],
@@ -17,10 +18,8 @@ module ActiveSupport
{ :benchmark => false,
:runs => 1,
:min_percent => 0.01,
- :metrics => [:process_time, :memory, :objects],
- :formats => [:flat, :graph_html, :call_tree],
:output => 'tmp/performance' }
- end.freeze
+ end
def self.included(base)
base.superclass_delegating_accessor :profile_options