From: Tom Hughes Date: Wed, 11 May 2011 22:06:19 +0000 (+0100) Subject: Don't allow libxml 2.0.0 and later to be used X-Git-Tag: live~6798^2~6 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/2c92bf895f4ea0be2a90bce0b83ae39e3d7463ef?hp=6d5c551a7c0c7002acdc62eb9ec1041866da6f84 Don't allow libxml 2.0.0 and later to be used --- diff --git a/config/environment.rb b/config/environment.rb index ce5a89350..15ec24579 100644 --- a/config/environment.rb +++ b/config/environment.rb @@ -18,7 +18,7 @@ Rails::Initializer.run do |config| unless STATUS == :database_offline config.gem 'composite_primary_keys', :version => '2.2.2' end - config.gem 'libxml-ruby', :version => '>= 1.1.1', :lib => 'libxml' + config.gem 'libxml-ruby', :version => ['>= 1.1.1', ' < 2.0.0'], :lib => 'libxml' config.gem 'rmagick', :lib => 'RMagick' config.gem 'oauth', :version => '>= 0.4.3' config.gem 'oauth-plugin', :version => '0.3.14'