From 6e718906bdf99947d49848b36bc4ed04a018a000 Mon Sep 17 00:00:00 2001 From: Javi Fontan Date: Mon, 13 Feb 2012 15:58:01 +0100 Subject: [PATCH] bug #1094: take out uneeded xmlparser requirement --- share/install_gems/install_gems | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/share/install_gems/install_gems b/share/install_gems/install_gems index 4d8e8844a7..b6e1403e91 100755 --- a/share/install_gems/install_gems +++ b/share/install_gems/install_gems @@ -7,19 +7,12 @@ DEFAULT=%w{optional sunstone quota cloud ozones_server acct auth_ldap} if defined?(RUBY_VERSION) && RUBY_VERSION>="1.8.7" SQLITE='sqlite3' - # xmlparser gem is not compatible with ruby 1.9 - OPTIONAL=%w{nokogiri} - - if RUBY_VERSION=='1.8.7' - OPTIONAL << 'xmlparser' - end else SQLITE='sqlite3-ruby --version 1.2.0' - OPTIONAL=%w{nokogiri xmlparser} end GROUPS={ - :optional => OPTIONAL, + :optional => ['nokogiri'], :quota => [SQLITE, 'sequel'], :sunstone => ['json', 'rack', 'sinatra', 'thin', 'sequel', SQLITE], :cloud => %w{amazon-ec2 rack sinatra thin uuidtools curb json},