diff options
author | Xavier Noria <fxn@hashref.com> | 2010-01-01 21:09:08 +0100 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2010-01-01 14:28:57 -0800 |
commit | 173f8287604a112d8efcd09572ada09052bd79d2 (patch) | |
tree | dc6f4ecac43039669400378d0822de8a163181d9 /activesupport | |
parent | 388dde9f9d1ee3e6262c79a8ef81c93ab67a8677 (diff) | |
download | rails-173f8287604a112d8efcd09572ada09052bd79d2.tar.gz rails-173f8287604a112d8efcd09572ada09052bd79d2.tar.bz2 rails-173f8287604a112d8efcd09572ada09052bd79d2.zip |
jdom.rb needs active_support/core_ext/object/blank
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/xml_mini/jdom.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/xml_mini/jdom.rb b/activesupport/lib/active_support/xml_mini/jdom.rb index 5c3d93c4a1..48c1cb3fe9 100644 --- a/activesupport/lib/active_support/xml_mini/jdom.rb +++ b/activesupport/lib/active_support/xml_mini/jdom.rb @@ -3,6 +3,8 @@ raise "JRuby is required to use the JDOM backend for XmlMini" unless RUBY_PLATFO require 'jruby' include Java +require 'active_support/core_ext/object/blank' + import javax.xml.parsers.DocumentBuilder unless defined? DocumentBuilder import javax.xml.parsers.DocumentBuilderFactory unless defined? DocumentBuilderFactory import java.io.StringReader unless defined? StringReader |