Commit 668e1464f5910e326b88da072a6b3cabbf8cef43

Authored by Nick Recobra
1 parent 3c78afce
Exists in master and in 1 other branch production

Switching to Nokogiri parser since it suite for both java and mri platforms.

Showing 2 changed files with 2 additions and 2 deletions   Show diff stats
Gemfile
1 1 source 'http://rubygems.org'
2 2  
3 3 gem 'rails', '3.0.3'
4   -gem 'libxml-ruby'
  4 +gem 'nokogiri'
5 5 gem 'bson_ext', '~> 1.2'
6 6 gem 'mongoid', '~> 2.0.0.rc.6'
7 7 gem 'haml'
... ...
config/initializers/xml_backend.rb
1   -ActiveSupport::XmlMini.backend = 'LibXML'
2 1 \ No newline at end of file
  2 +ActiveSupport::XmlMini.backend = 'Nokogiri'
3 3 \ No newline at end of file
... ...