Fix Gemfile

Originally utilised an "optional" parameter, which is proposed not actual functionality.
This commit is contained in:
Daniel Munn 2012-06-06 21:17:05 +01:00
parent 5ed8014964
commit ab50c9ee39

View File

@ -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