aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPrem Sichanugrist <s@sikac.hu>2013-02-21 18:47:18 -0500
committerPrem Sichanugrist <s@sikac.hu>2013-02-24 15:29:24 -0500
commitfe4fce80f3ee80b089fca482f04788af0b9d4d17 (patch)
tree998a2dc4f57f3fa434f054630f1e41b380c890f5
parent2647a3cabfb88ac0dac318207bf611b0b66d495f (diff)
downloadrails-fe4fce80f3ee80b089fca482f04788af0b9d4d17.tar.gz
rails-fe4fce80f3ee80b089fca482f04788af0b9d4d17.tar.bz2
rails-fe4fce80f3ee80b089fca482f04788af0b9d4d17.zip
Add in missing requires
-rw-r--r--activesupport/lib/active_support/core_ext/kernel/reporting.rb2
-rw-r--r--railties/test/application/assets_test.rb1
2 files changed, 3 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/kernel/reporting.rb b/activesupport/lib/active_support/core_ext/kernel/reporting.rb
index 526b8378a5..84986dff3c 100644
--- a/activesupport/lib/active_support/core_ext/kernel/reporting.rb
+++ b/activesupport/lib/active_support/core_ext/kernel/reporting.rb
@@ -1,4 +1,6 @@
require 'rbconfig'
+require 'stringio'
+
module Kernel
# Sets $VERBOSE to nil for the duration of the block and back to its original value afterwards.
#
diff --git a/railties/test/application/assets_test.rb b/railties/test/application/assets_test.rb
index 9e9702efb6..adec9533a9 100644
--- a/railties/test/application/assets_test.rb
+++ b/railties/test/application/assets_test.rb
@@ -2,6 +2,7 @@
require 'isolation/abstract_unit'
require 'active_support/core_ext/kernel/reporting'
require 'rack/test'
+require 'yaml'
module ApplicationTests
class AssetsTest < Test::Unit::TestCase