aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/xml_mini/libxml.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/libxml.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/libxml.rb')
-rw-r--r--activesupport/lib/active_support/xml_mini/libxml.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/xml_mini/libxml.rb b/activesupport/lib/active_support/xml_mini/libxml.rb
index 7fdcb11465..16570c6aea 100644
--- a/activesupport/lib/active_support/xml_mini/libxml.rb
+++ b/activesupport/lib/active_support/xml_mini/libxml.rb
@@ -1,5 +1,6 @@
require 'libxml'
require 'active_support/core_ext/object/blank'
+require 'stringio'
# = XmlMini LibXML implementation
module ActiveSupport