aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/xml_mini/nokogiri.rb
diff options
context:
space:
mode:
authorNick Sutterer <apotonick@gmail.com>2011-01-18 20:45:52 +0100
committerPiotr Sarnacki <drogus@gmail.com>2011-01-18 23:28:51 +0100
commit7091d800b80dd5cd06c3a232c5386efc16fda6fb (patch)
tree390bcedc5a7a37700470c77261acfaf70fde571b /activesupport/lib/active_support/xml_mini/nokogiri.rb
parent54de7048a56840d853bb14333cefeb0a3a961133 (diff)
downloadrails-7091d800b80dd5cd06c3a232c5386efc16fda6fb.tar.gz
rails-7091d800b80dd5cd06c3a232c5386efc16fda6fb.tar.bz2
rails-7091d800b80dd5cd06c3a232c5386efc16fda6fb.zip
fixed a missing require that causes trouble when using AS in a non-rails env.
Diffstat (limited to 'activesupport/lib/active_support/xml_mini/nokogiri.rb')
-rw-r--r--activesupport/lib/active_support/xml_mini/nokogiri.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/xml_mini/nokogiri.rb b/activesupport/lib/active_support/xml_mini/nokogiri.rb
index e03a744257..04ec9e8ab8 100644
--- a/activesupport/lib/active_support/xml_mini/nokogiri.rb
+++ b/activesupport/lib/active_support/xml_mini/nokogiri.rb
@@ -5,6 +5,7 @@ rescue LoadError => e
raise e
end
require 'active_support/core_ext/object/blank'
+require 'stringio'
# = XmlMini Nokogiri implementation
module ActiveSupport