From ab50c9ee397e2bb7606acbed3404d77b3c16deca Mon Sep 17 00:00:00 2001 From: Daniel Munn Date: Wed, 6 Jun 2012 21:17:05 +0100 Subject: [PATCH] Fix Gemfile Originally utilised an "optional" parameter, which is proposed not actual functionality. --- Gemfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 83615bf2..aec86684 100644 --- a/Gemfile +++ b/Gemfile @@ -1,4 +1,8 @@ source "https://rubygems.org" gem "zip" -gem "xapian-full", :optional => true, :require => false + +#Allows --without=xapian +group :xapian do + gem "xapian-full", :require => false +end