Omit functional tests from gem as the overhead of a Solr server and risk someone would run functional tests against an existing Solr instance and remove all documents is not worth it at this point

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@498454 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Erik Hatcher 2007-01-21 21:04:39 +00:00
parent 80606b5f15
commit da5722fa35
1 changed files with 3 additions and 1 deletions

View File

@ -49,7 +49,9 @@ spec = Gem::Specification.new do |s|
s.homepage = 'http://wiki.apache.org/solr/Flare'
s.platform = Gem::Platform::RUBY
s.summary = 'Ruby library for working with Apache Solr'
s.files = Dir.glob("{lib,test}/**/*")
# Omit functional tests from gem for now, as that requires a Solr instance
s.files = Dir.glob("lib/**/*").concat(Dir.glob("test/unit/**/*"))
s.require_path = 'lib'
s.autorequire = 'solr'
s.has_rdoc = true