mirror of https://github.com/apache/lucene.git
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:
parent
80606b5f15
commit
da5722fa35
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue