diff options
author | Arun Agrawal <arunagw@gmail.com> | 2012-05-13 21:10:16 +0530 |
---|---|---|
committer | Arun Agrawal <arunagw@gmail.com> | 2012-05-13 21:10:16 +0530 |
commit | 22e31774b1e5cd6bcf00bce272fb2ebc4307a0f3 (patch) | |
tree | d8d8706fc1b5db06ed49bc35836cde8043eb3d87 /activesupport | |
parent | 91c26e8e8662407a30e26c0e1c780ccfd01dbfcc (diff) | |
download | rails-22e31774b1e5cd6bcf00bce272fb2ebc4307a0f3.tar.gz rails-22e31774b1e5cd6bcf00bce272fb2ebc4307a0f3.tar.bz2 rails-22e31774b1e5cd6bcf00bce272fb2ebc4307a0f3.zip |
Need to include "OutputSaftyHelper" here to prevent
`number_with_delimiter': undefined method
`safe_join' for
#<ActiveSupport::Testing::Performance::Metrics::Objects
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/testing/performance.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/testing/performance.rb b/activesupport/lib/active_support/testing/performance.rb index f6bf0318f7..5048c4a0d0 100644 --- a/activesupport/lib/active_support/testing/performance.rb +++ b/activesupport/lib/active_support/testing/performance.rb @@ -196,6 +196,7 @@ module ActiveSupport class Base include ActionView::Helpers::NumberHelper + include ActionView::Helpers::OutputSafetyHelper attr_reader :total |