aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/xml_mini.rb
blob: 99158e4ff7de3acef041535d4e48da50859c3ece (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module ActiveSupport
  # = XmlMini
  #
  # To use the much faster libxml parser:
  #   gem 'libxml-ruby', '=0.9.7'
  #   XmlMini.backend = 'LibXML'
  module XmlMini
    extend self
    delegate :parse, :to => :@backend

    def backend=(name)
      require "active_support/xml_mini/#{name.to_s.downcase}.rb"
      @backend = ActiveSupport.const_get("XmlMini_#{name}")
    end
  end

  XmlMini.backend = 'REXML'
end