Skip to content

Instantly share code, notes, and snippets.

@mudge
Created July 28, 2008 11:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mudge/2877 to your computer and use it in GitHub Desktop.
Save mudge/2877 to your computer and use it in GitHub Desktop.
Fix for using acts_as_solr with libxml-ruby 0.8.1
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
module Solr::XML
end
begin
# If we can load rubygems and libxml-ruby...
require 'rubygems'
require 'xml/libxml'
# then make a few modifications to XML::Node so it can stand in for REXML::Element
#
# There is a problem with libxml-ruby 0.8.1 where XML::Node cannot be monkeypatched
# with just `class XML::Node`; to workaround this, we can use class_eval instead.
XML::Node.class_eval do
# element.add_element(another_element) should work
alias_method :add_element, :<<
# element.attributes['blah'] should work
def attributes
self
end
# element.text = "blah" should work
def text=(x)
self << x.to_s
end
end
# And use XML::Node for our XML generation
Solr::XML::Element = XML::Node
rescue LoadError => e # If we can't load either rubygems or libxml-ruby
# Just use REXML.
require 'rexml/document'
Solr::XML::Element = REXML::Element
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment