Skip to content

Commit

Permalink
fixed a missing require that causes trouble when using AS in a non-ra…
Browse files Browse the repository at this point in the history
…ils env.
  • Loading branch information
apotonick authored and drogus committed Jan 18, 2011
1 parent 54de704 commit 7091d80
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions 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
Expand Down
3 changes: 2 additions & 1 deletion activesupport/lib/active_support/xml_mini/libxmlsax.rb
@@ -1,5 +1,6 @@
require 'libxml'
require 'active_support/core_ext/object/blank'
require 'stringio'

# = XmlMini LibXML implementation using a SAX-based parser
module ActiveSupport
Expand Down Expand Up @@ -82,4 +83,4 @@ def parse(data)
end
end
end
end
end
1 change: 1 addition & 0 deletions activesupport/lib/active_support/xml_mini/nokogiri.rb
Expand Up @@ -5,6 +5,7 @@
raise e
end
require 'active_support/core_ext/object/blank'
require 'stringio'

# = XmlMini Nokogiri implementation
module ActiveSupport
Expand Down
1 change: 1 addition & 0 deletions activesupport/lib/active_support/xml_mini/nokogirisax.rb
Expand Up @@ -5,6 +5,7 @@
raise e
end
require 'active_support/core_ext/object/blank'
require 'stringio'

# = XmlMini Nokogiri implementation using a SAX-based parser
module ActiveSupport
Expand Down
1 change: 1 addition & 0 deletions activesupport/lib/active_support/xml_mini/rexml.rb
@@ -1,5 +1,6 @@
require 'active_support/core_ext/kernel/reporting'
require 'active_support/core_ext/object/blank'
require 'stringio'

# = XmlMini ReXML implementation
module ActiveSupport
Expand Down

0 comments on commit 7091d80

Please sign in to comment.