aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/testing/performance/ruby.rb
diff options
context:
space:
mode:
authorGonçalo Silva <goncalossilva@gmail.com>2011-03-25 19:03:59 +0000
committerGonçalo Silva <goncalossilva@gmail.com>2011-03-25 19:10:47 +0000
commit278344b3fab67fcc471f475992a86c3748a83e23 (patch)
treea9f2c6dcfcad3ceaeb22d43c5cbbcd9bb52ac88d /activesupport/lib/active_support/testing/performance/ruby.rb
parent417b2baf0fafc48dbfdab8a81b15836599a0613e (diff)
downloadrails-278344b3fab67fcc471f475992a86c3748a83e23.tar.gz
rails-278344b3fab67fcc471f475992a86c3748a83e23.tar.bz2
rails-278344b3fab67fcc471f475992a86c3748a83e23.zip
fixed time and size units (should be seconds / bytes), fixed typo when counting memory allocations under rubinius
Diffstat (limited to 'activesupport/lib/active_support/testing/performance/ruby.rb')
-rw-r--r--activesupport/lib/active_support/testing/performance/ruby.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/testing/performance/ruby.rb b/activesupport/lib/active_support/testing/performance/ruby.rb
index f786b85925..892baceeb2 100644
--- a/activesupport/lib/active_support/testing/performance/ruby.rb
+++ b/activesupport/lib/active_support/testing/performance/ruby.rb
@@ -1,7 +1,7 @@
begin
require 'ruby-prof'
rescue LoadError
- $stderr.puts "Specify ruby-prof as application's dependency in Gemfile to run benchmarks."
+ $stderr.puts 'Specify ruby-prof as application\'s dependency in Gemfile to run benchmarks.'
exit
end