rere 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.classpath +260 -0
- data/.gitignore +28 -0
- data/.project +14 -0
- data/.ruby-version +1 -0
- data/.settings/org.eclim.prefs +3 -0
- data/.settings/org.eclipse.jdt.core.prefs +5 -0
- data/.settings/org.eclipse.jdt.ui.prefs +2 -0
- data/Gemfile +7 -0
- data/LICENSE +22 -0
- data/README.md +44 -0
- data/Rakefile +65 -0
- data/bin/solr +61 -0
- data/example/config/solr.yml +23 -0
- data/example/log/.gitkeep +0 -0
- data/example/solr/README.txt +63 -0
- data/example/solr/collection1/README.txt +50 -0
- data/example/solr/collection1/conf/admin-extra.html +24 -0
- data/example/solr/collection1/conf/admin-extra.menu-bottom.html +25 -0
- data/example/solr/collection1/conf/admin-extra.menu-top.html +25 -0
- data/example/solr/collection1/conf/currency.xml +67 -0
- data/example/solr/collection1/conf/elevate.xml +38 -0
- data/example/solr/collection1/conf/lang/contractions_ca.txt +8 -0
- data/example/solr/collection1/conf/lang/contractions_fr.txt +15 -0
- data/example/solr/collection1/conf/lang/contractions_ga.txt +5 -0
- data/example/solr/collection1/conf/lang/contractions_it.txt +23 -0
- data/example/solr/collection1/conf/lang/hyphenations_ga.txt +5 -0
- data/example/solr/collection1/conf/lang/stemdict_nl.txt +6 -0
- data/example/solr/collection1/conf/lang/stoptags_ja.txt +420 -0
- data/example/solr/collection1/conf/lang/stopwords_ar.txt +125 -0
- data/example/solr/collection1/conf/lang/stopwords_bg.txt +193 -0
- data/example/solr/collection1/conf/lang/stopwords_ca.txt +220 -0
- data/example/solr/collection1/conf/lang/stopwords_cz.txt +172 -0
- data/example/solr/collection1/conf/lang/stopwords_da.txt +108 -0
- data/example/solr/collection1/conf/lang/stopwords_de.txt +292 -0
- data/example/solr/collection1/conf/lang/stopwords_el.txt +78 -0
- data/example/solr/collection1/conf/lang/stopwords_en.txt +54 -0
- data/example/solr/collection1/conf/lang/stopwords_es.txt +354 -0
- data/example/solr/collection1/conf/lang/stopwords_eu.txt +99 -0
- data/example/solr/collection1/conf/lang/stopwords_fa.txt +313 -0
- data/example/solr/collection1/conf/lang/stopwords_fi.txt +95 -0
- data/example/solr/collection1/conf/lang/stopwords_fr.txt +184 -0
- data/example/solr/collection1/conf/lang/stopwords_ga.txt +110 -0
- data/example/solr/collection1/conf/lang/stopwords_gl.txt +161 -0
- data/example/solr/collection1/conf/lang/stopwords_hi.txt +235 -0
- data/example/solr/collection1/conf/lang/stopwords_hu.txt +209 -0
- data/example/solr/collection1/conf/lang/stopwords_hy.txt +46 -0
- data/example/solr/collection1/conf/lang/stopwords_id.txt +359 -0
- data/example/solr/collection1/conf/lang/stopwords_it.txt +301 -0
- data/example/solr/collection1/conf/lang/stopwords_ja.txt +127 -0
- data/example/solr/collection1/conf/lang/stopwords_lv.txt +172 -0
- data/example/solr/collection1/conf/lang/stopwords_nl.txt +117 -0
- data/example/solr/collection1/conf/lang/stopwords_no.txt +192 -0
- data/example/solr/collection1/conf/lang/stopwords_pt.txt +251 -0
- data/example/solr/collection1/conf/lang/stopwords_ro.txt +233 -0
- data/example/solr/collection1/conf/lang/stopwords_ru.txt +241 -0
- data/example/solr/collection1/conf/lang/stopwords_sv.txt +131 -0
- data/example/solr/collection1/conf/lang/stopwords_th.txt +119 -0
- data/example/solr/collection1/conf/lang/stopwords_tr.txt +212 -0
- data/example/solr/collection1/conf/lang/userdict_ja.txt +29 -0
- data/example/solr/collection1/conf/mapping-FoldToASCII.txt +3813 -0
- data/example/solr/collection1/conf/mapping-ISOLatin1Accent.txt +246 -0
- data/example/solr/collection1/conf/protwords.txt +21 -0
- data/example/solr/collection1/conf/schema.xml +1125 -0
- data/example/solr/collection1/conf/scripts.conf +24 -0
- data/example/solr/collection1/conf/solrconfig.xml +1816 -0
- data/example/solr/collection1/conf/spellings.txt +2 -0
- data/example/solr/collection1/conf/stopwords.txt +14 -0
- data/example/solr/collection1/conf/synonyms.txt +29 -0
- data/example/solr/collection1/conf/update-script.js +53 -0
- data/example/solr/collection1/conf/velocity/VM_global_library.vm +170 -0
- data/example/solr/collection1/conf/velocity/browse.vm +50 -0
- data/example/solr/collection1/conf/velocity/cluster.vm +9 -0
- data/example/solr/collection1/conf/velocity/clusterResults.vm +12 -0
- data/example/solr/collection1/conf/velocity/debug.vm +17 -0
- data/example/solr/collection1/conf/velocity/did_you_mean.vm +4 -0
- data/example/solr/collection1/conf/velocity/facet_fields.vm +15 -0
- data/example/solr/collection1/conf/velocity/facet_pivot.vm +3 -0
- data/example/solr/collection1/conf/velocity/facet_queries.vm +3 -0
- data/example/solr/collection1/conf/velocity/facet_ranges.vm +15 -0
- data/example/solr/collection1/conf/velocity/facets.vm +5 -0
- data/example/solr/collection1/conf/velocity/footer.vm +17 -0
- data/example/solr/collection1/conf/velocity/head.vm +32 -0
- data/example/solr/collection1/conf/velocity/header.vm +3 -0
- data/example/solr/collection1/conf/velocity/hit.vm +11 -0
- data/example/solr/collection1/conf/velocity/hitGrouped.vm +24 -0
- data/example/solr/collection1/conf/velocity/join-doc.vm +4 -0
- data/example/solr/collection1/conf/velocity/jquery.autocomplete.css +48 -0
- data/example/solr/collection1/conf/velocity/jquery.autocomplete.js +763 -0
- data/example/solr/collection1/conf/velocity/layout.vm +20 -0
- data/example/solr/collection1/conf/velocity/main.css +208 -0
- data/example/solr/collection1/conf/velocity/product-doc.vm +27 -0
- data/example/solr/collection1/conf/velocity/query.vm +42 -0
- data/example/solr/collection1/conf/velocity/queryGroup.vm +19 -0
- data/example/solr/collection1/conf/velocity/querySpatial.vm +40 -0
- data/example/solr/collection1/conf/velocity/richtext-doc.vm +114 -0
- data/example/solr/collection1/conf/velocity/suggest.vm +3 -0
- data/example/solr/collection1/conf/velocity/tabs.vm +6 -0
- data/example/solr/collection1/conf/xslt/example.xsl +132 -0
- data/example/solr/collection1/conf/xslt/example_atom.xsl +67 -0
- data/example/solr/collection1/conf/xslt/example_rss.xsl +66 -0
- data/example/solr/collection1/conf/xslt/luke.xsl +337 -0
- data/example/solr/collection1/conf/xslt/updateXml.xsl +70 -0
- data/example/solr/collection1/data/index/segments.gen +0 -0
- data/example/solr/collection1/data/index/segments_1 +0 -0
- data/example/solr/data/development/index/segments.gen +0 -0
- data/example/solr/data/development/index/segments_1 +0 -0
- data/example/solr/solr.xml +53 -0
- data/example/solr/zoo.cfg +17 -0
- data/lib/rere.rb +66 -0
- data/lib/rere/railtie.rb +8 -0
- data/lib/rere/server.rb +380 -0
- data/lib/rere/tasks/solr.rake +47 -0
- data/lib/rere/version.rb +3 -0
- data/pom.xml +168 -0
- data/rere.gemspec +26 -0
- data/server/README.txt +78 -0
- data/server/cloud-scripts/zkcli.bat +12 -0
- data/server/cloud-scripts/zkcli.sh +14 -0
- data/server/contexts/solr-jetty-context.xml +8 -0
- data/server/etc/create-solrtest.keystore.sh +37 -0
- data/server/etc/jetty.xml +205 -0
- data/server/etc/logging.properties +38 -0
- data/server/etc/solrtest.keystore +0 -0
- data/server/etc/webdefault.xml +527 -0
- data/server/exampledocs/books.csv +11 -0
- data/server/exampledocs/books.json +51 -0
- data/server/exampledocs/gb18030-example.xml +32 -0
- data/server/exampledocs/hd.xml +56 -0
- data/server/exampledocs/ipod_other.xml +60 -0
- data/server/exampledocs/ipod_video.xml +40 -0
- data/server/exampledocs/manufacturers.xml +75 -0
- data/server/exampledocs/mem.xml +77 -0
- data/server/exampledocs/money.xml +65 -0
- data/server/exampledocs/monitor.xml +35 -0
- data/server/exampledocs/monitor2.xml +34 -0
- data/server/exampledocs/mp500.xml +43 -0
- data/server/exampledocs/post.jar +0 -0
- data/server/exampledocs/post.sh +30 -0
- data/server/exampledocs/sd500.xml +38 -0
- data/server/exampledocs/solr.xml +38 -0
- data/server/exampledocs/test_utf8.sh +93 -0
- data/server/exampledocs/utf8-example.xml +42 -0
- data/server/exampledocs/vidcard.xml +62 -0
- data/server/lib/ext/jcl-over-slf4j-1.6.6.jar +0 -0
- data/server/lib/ext/jul-to-slf4j-1.6.6.jar +0 -0
- data/server/lib/ext/log4j-1.2.16.jar +0 -0
- data/server/lib/ext/slf4j-api-1.6.6.jar +0 -0
- data/server/lib/ext/slf4j-log4j12-1.6.6.jar +0 -0
- data/server/lib/jetty-continuation-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-deploy-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-http-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-io-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-jmx-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-security-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-server-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-servlet-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-util-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-webapp-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-xml-8.1.8.v20121106.jar +0 -0
- data/server/lib/servlet-api-3.0.jar +0 -0
- data/server/resources/log4j.properties +19 -0
- data/server/solr/README.txt +63 -0
- data/server/solr/solr.xml +53 -0
- data/server/solr/zoo.cfg +17 -0
- data/server/start.jar +0 -0
- data/server/webapps/solr.war +0 -0
- data/solr/lib/solr-winds-0.1.jar +0 -0
- metadata +284 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Logging level
|
|
2
|
+
log4j.rootLogger=INFO, file, CONSOLE
|
|
3
|
+
|
|
4
|
+
log4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender
|
|
5
|
+
|
|
6
|
+
log4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout
|
|
7
|
+
log4j.appender.CONSOLE.layout.ConversionPattern=%-4r [%t] %-5p %c %x \u2013 %m%n
|
|
8
|
+
|
|
9
|
+
#- size rotation with log cleanup.
|
|
10
|
+
log4j.appender.file=org.apache.log4j.RollingFileAppender
|
|
11
|
+
log4j.appender.file.MaxFileSize=4MB
|
|
12
|
+
log4j.appender.file.MaxBackupIndex=9
|
|
13
|
+
|
|
14
|
+
#- File to log to and log format
|
|
15
|
+
log4j.appender.file.File=logs/solr.log
|
|
16
|
+
log4j.appender.file.layout=org.apache.log4j.PatternLayout
|
|
17
|
+
log4j.appender.file.layout.ConversionPattern=%-5p - %d{yyyy-MM-dd HH:mm:ss.SSS}; %C; %m\n
|
|
18
|
+
|
|
19
|
+
log4j.logger.org.apache.zookeeper=WARN
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
2
|
+
# contributor license agreements. See the NOTICE file distributed with
|
|
3
|
+
# this work for additional information regarding copyright ownership.
|
|
4
|
+
# The ASF licenses this file to You under the Apache License, Version 2.0
|
|
5
|
+
# (the "License"); you may not use this file except in compliance with
|
|
6
|
+
# the License. You may obtain a copy of the License at
|
|
7
|
+
#
|
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
#
|
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
# See the License for the specific language governing permissions and
|
|
14
|
+
# limitations under the License.
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
Example Solr Home Directory
|
|
18
|
+
=============================
|
|
19
|
+
|
|
20
|
+
This directory is provided as an example of what a "Solr Home" directory
|
|
21
|
+
should look like.
|
|
22
|
+
|
|
23
|
+
It's not strictly necessary that you copy all of the files in this
|
|
24
|
+
directory when setting up a new instance of Solr, but it is recommended.
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
Basic Directory Structure
|
|
28
|
+
-------------------------
|
|
29
|
+
|
|
30
|
+
The Solr Home directory typically contains the following...
|
|
31
|
+
|
|
32
|
+
* solr.xml *
|
|
33
|
+
|
|
34
|
+
This is the primary configuration file Solr looks for when starting.
|
|
35
|
+
This file specifies the list of "SolrCores" it should load, and high
|
|
36
|
+
level configuration options that should be used for all SolrCores.
|
|
37
|
+
|
|
38
|
+
Please see the comments in ./solr.xml for more details.
|
|
39
|
+
|
|
40
|
+
If no solr.xml file is found, then Solr assumes that there should be
|
|
41
|
+
a single SolrCore named "collection1" and that the "Instance Directory"
|
|
42
|
+
for collection1 should be the same as the Solr Home Directory.
|
|
43
|
+
|
|
44
|
+
* Individual SolrCore Instance Directories *
|
|
45
|
+
|
|
46
|
+
Although solr.xml can be configured to look for SolrCore Instance Directories
|
|
47
|
+
in any path, simple sub-directories of the Solr Home Dir using relative paths
|
|
48
|
+
are common for many installations. In this directory you can see the
|
|
49
|
+
"./collection1" Instance Directory.
|
|
50
|
+
|
|
51
|
+
* A Shared 'lib' Directory *
|
|
52
|
+
|
|
53
|
+
Although solr.xml can be configured with an optional "sharedLib" attribute
|
|
54
|
+
that can point to any path, it is common to use a "./lib" sub-directory of the
|
|
55
|
+
Solr Home Directory.
|
|
56
|
+
|
|
57
|
+
* ZooKeeper Files *
|
|
58
|
+
|
|
59
|
+
When using SolrCloud using the embedded ZooKeeper option for Solr, it is
|
|
60
|
+
common to have a "zoo.cfg" file and "zoo_data" directories in the Solr Home
|
|
61
|
+
Directory. Please see the SolrCloud wiki page for more details...
|
|
62
|
+
|
|
63
|
+
https://wiki.apache.org/solr/SolrCloud
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" ?>
|
|
2
|
+
<!--
|
|
3
|
+
Licensed to the Apache Software Foundation (ASF) under one or more
|
|
4
|
+
contributor license agreements. See the NOTICE file distributed with
|
|
5
|
+
this work for additional information regarding copyright ownership.
|
|
6
|
+
The ASF licenses this file to You under the Apache License, Version 2.0
|
|
7
|
+
(the "License"); you may not use this file except in compliance with
|
|
8
|
+
the License. You may obtain a copy of the License at
|
|
9
|
+
|
|
10
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
|
|
12
|
+
Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
See the License for the specific language governing permissions and
|
|
16
|
+
limitations under the License.
|
|
17
|
+
-->
|
|
18
|
+
|
|
19
|
+
<!--
|
|
20
|
+
This is an example of a simple "solr.xml" file for configuring one or
|
|
21
|
+
more Solr Cores, as well as allowing Cores to be added, removed, and
|
|
22
|
+
reloaded via HTTP requests.
|
|
23
|
+
|
|
24
|
+
More information about options available in this configuration file,
|
|
25
|
+
and Solr Core administration can be found online:
|
|
26
|
+
http://wiki.apache.org/solr/CoreAdmin
|
|
27
|
+
-->
|
|
28
|
+
|
|
29
|
+
<!--
|
|
30
|
+
All (relative) paths are relative to the Solr Home Directory
|
|
31
|
+
|
|
32
|
+
persistent: Save changes made via the API to this file
|
|
33
|
+
sharedLib: path to a lib directory that will be shared across all cores
|
|
34
|
+
-->
|
|
35
|
+
<solr persistent="true">
|
|
36
|
+
<!-- by default, this is 50 @ WARN
|
|
37
|
+
<logging enabled="true">
|
|
38
|
+
<watcher size="100" threshold="INFO" />
|
|
39
|
+
</logging>
|
|
40
|
+
-->
|
|
41
|
+
|
|
42
|
+
<!--
|
|
43
|
+
adminPath: RequestHandler path to manage cores.
|
|
44
|
+
If 'null' (or absent), cores will not be manageable via request handler
|
|
45
|
+
defaultCoreName: (optional) core to use when no core name is specified in an access url
|
|
46
|
+
|
|
47
|
+
All of the attributes in cores after defaultCoreName only apply when running in SolrCloud mode.
|
|
48
|
+
You can read more about SolrCloud mode at http://wiki.apache.org/solr/SolrCloud
|
|
49
|
+
-->
|
|
50
|
+
<cores adminPath="/admin/cores" defaultCoreName="collection1" host="${host:}" hostPort="${jetty.port:8983}" hostContext="${hostContext:solr}" zkClientTimeout="${zkClientTimeout:15000}">
|
|
51
|
+
<core name="collection1" instanceDir="collection1" />
|
|
52
|
+
</cores>
|
|
53
|
+
</solr>
|
data/server/solr/zoo.cfg
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# The number of milliseconds of each tick
|
|
2
|
+
tickTime=2000
|
|
3
|
+
# The number of ticks that the initial
|
|
4
|
+
# synchronization phase can take
|
|
5
|
+
initLimit=10
|
|
6
|
+
# The number of ticks that can pass between
|
|
7
|
+
# sending a request and getting an acknowledgement
|
|
8
|
+
syncLimit=5
|
|
9
|
+
|
|
10
|
+
# the directory where the snapshot is stored.
|
|
11
|
+
# dataDir=/opt/zookeeper/data
|
|
12
|
+
# NOTE: Solr defaults the dataDir to <solrHome>/zoo_data
|
|
13
|
+
|
|
14
|
+
# the port at which the clients will connect
|
|
15
|
+
# clientPort=2181
|
|
16
|
+
# NOTE: Solr sets this based on zkRun / zkHost params
|
|
17
|
+
|
data/server/start.jar
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
metadata
ADDED
|
@@ -0,0 +1,284 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: rere
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
prerelease:
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- rainkinz
|
|
9
|
+
autorequire:
|
|
10
|
+
bindir: bin
|
|
11
|
+
cert_chain: []
|
|
12
|
+
date: 2013-10-17 00:00:00.000000000 Z
|
|
13
|
+
dependencies:
|
|
14
|
+
- !ruby/object:Gem::Dependency
|
|
15
|
+
name: childprocess
|
|
16
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
17
|
+
requirements:
|
|
18
|
+
- - ">="
|
|
19
|
+
- !ruby/object:Gem::Version
|
|
20
|
+
version: !binary |-
|
|
21
|
+
MA==
|
|
22
|
+
none: false
|
|
23
|
+
requirement: !ruby/object:Gem::Requirement
|
|
24
|
+
requirements:
|
|
25
|
+
- - ">="
|
|
26
|
+
- !ruby/object:Gem::Version
|
|
27
|
+
version: !binary |-
|
|
28
|
+
MA==
|
|
29
|
+
none: false
|
|
30
|
+
prerelease: false
|
|
31
|
+
type: :runtime
|
|
32
|
+
- !ruby/object:Gem::Dependency
|
|
33
|
+
name: escape
|
|
34
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
35
|
+
requirements:
|
|
36
|
+
- - ">="
|
|
37
|
+
- !ruby/object:Gem::Version
|
|
38
|
+
version: !binary |-
|
|
39
|
+
MA==
|
|
40
|
+
none: false
|
|
41
|
+
requirement: !ruby/object:Gem::Requirement
|
|
42
|
+
requirements:
|
|
43
|
+
- - ">="
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
version: !binary |-
|
|
46
|
+
MA==
|
|
47
|
+
none: false
|
|
48
|
+
prerelease: false
|
|
49
|
+
type: :runtime
|
|
50
|
+
- !ruby/object:Gem::Dependency
|
|
51
|
+
name: timeit
|
|
52
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
53
|
+
requirements:
|
|
54
|
+
- - '='
|
|
55
|
+
- !ruby/object:Gem::Version
|
|
56
|
+
version: 0.0.4
|
|
57
|
+
none: false
|
|
58
|
+
requirement: !ruby/object:Gem::Requirement
|
|
59
|
+
requirements:
|
|
60
|
+
- - '='
|
|
61
|
+
- !ruby/object:Gem::Version
|
|
62
|
+
version: 0.0.4
|
|
63
|
+
none: false
|
|
64
|
+
prerelease: false
|
|
65
|
+
type: :runtime
|
|
66
|
+
- !ruby/object:Gem::Dependency
|
|
67
|
+
name: rspec-core
|
|
68
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
69
|
+
requirements:
|
|
70
|
+
- - "~>"
|
|
71
|
+
- !ruby/object:Gem::Version
|
|
72
|
+
version: 2.11.1
|
|
73
|
+
none: false
|
|
74
|
+
requirement: !ruby/object:Gem::Requirement
|
|
75
|
+
requirements:
|
|
76
|
+
- - "~>"
|
|
77
|
+
- !ruby/object:Gem::Version
|
|
78
|
+
version: 2.11.1
|
|
79
|
+
none: false
|
|
80
|
+
prerelease: false
|
|
81
|
+
type: :development
|
|
82
|
+
description: |2
|
|
83
|
+
Bundles solr in a gem
|
|
84
|
+
email:
|
|
85
|
+
- brendan.grainger@gmail.com
|
|
86
|
+
executables:
|
|
87
|
+
- solr
|
|
88
|
+
extensions: []
|
|
89
|
+
extra_rdoc_files: []
|
|
90
|
+
files:
|
|
91
|
+
- ".classpath"
|
|
92
|
+
- ".gitignore"
|
|
93
|
+
- ".project"
|
|
94
|
+
- ".ruby-version"
|
|
95
|
+
- ".settings/org.eclim.prefs"
|
|
96
|
+
- ".settings/org.eclipse.jdt.core.prefs"
|
|
97
|
+
- ".settings/org.eclipse.jdt.ui.prefs"
|
|
98
|
+
- Gemfile
|
|
99
|
+
- LICENSE
|
|
100
|
+
- README.md
|
|
101
|
+
- Rakefile
|
|
102
|
+
- bin/solr
|
|
103
|
+
- example/config/solr.yml
|
|
104
|
+
- example/log/.gitkeep
|
|
105
|
+
- example/solr/README.txt
|
|
106
|
+
- example/solr/collection1/README.txt
|
|
107
|
+
- example/solr/collection1/conf/admin-extra.html
|
|
108
|
+
- example/solr/collection1/conf/admin-extra.menu-bottom.html
|
|
109
|
+
- example/solr/collection1/conf/admin-extra.menu-top.html
|
|
110
|
+
- example/solr/collection1/conf/currency.xml
|
|
111
|
+
- example/solr/collection1/conf/elevate.xml
|
|
112
|
+
- example/solr/collection1/conf/lang/contractions_ca.txt
|
|
113
|
+
- example/solr/collection1/conf/lang/contractions_fr.txt
|
|
114
|
+
- example/solr/collection1/conf/lang/contractions_ga.txt
|
|
115
|
+
- example/solr/collection1/conf/lang/contractions_it.txt
|
|
116
|
+
- example/solr/collection1/conf/lang/hyphenations_ga.txt
|
|
117
|
+
- example/solr/collection1/conf/lang/stemdict_nl.txt
|
|
118
|
+
- example/solr/collection1/conf/lang/stoptags_ja.txt
|
|
119
|
+
- example/solr/collection1/conf/lang/stopwords_ar.txt
|
|
120
|
+
- example/solr/collection1/conf/lang/stopwords_bg.txt
|
|
121
|
+
- example/solr/collection1/conf/lang/stopwords_ca.txt
|
|
122
|
+
- example/solr/collection1/conf/lang/stopwords_cz.txt
|
|
123
|
+
- example/solr/collection1/conf/lang/stopwords_da.txt
|
|
124
|
+
- example/solr/collection1/conf/lang/stopwords_de.txt
|
|
125
|
+
- example/solr/collection1/conf/lang/stopwords_el.txt
|
|
126
|
+
- example/solr/collection1/conf/lang/stopwords_en.txt
|
|
127
|
+
- example/solr/collection1/conf/lang/stopwords_es.txt
|
|
128
|
+
- example/solr/collection1/conf/lang/stopwords_eu.txt
|
|
129
|
+
- example/solr/collection1/conf/lang/stopwords_fa.txt
|
|
130
|
+
- example/solr/collection1/conf/lang/stopwords_fi.txt
|
|
131
|
+
- example/solr/collection1/conf/lang/stopwords_fr.txt
|
|
132
|
+
- example/solr/collection1/conf/lang/stopwords_ga.txt
|
|
133
|
+
- example/solr/collection1/conf/lang/stopwords_gl.txt
|
|
134
|
+
- example/solr/collection1/conf/lang/stopwords_hi.txt
|
|
135
|
+
- example/solr/collection1/conf/lang/stopwords_hu.txt
|
|
136
|
+
- example/solr/collection1/conf/lang/stopwords_hy.txt
|
|
137
|
+
- example/solr/collection1/conf/lang/stopwords_id.txt
|
|
138
|
+
- example/solr/collection1/conf/lang/stopwords_it.txt
|
|
139
|
+
- example/solr/collection1/conf/lang/stopwords_ja.txt
|
|
140
|
+
- example/solr/collection1/conf/lang/stopwords_lv.txt
|
|
141
|
+
- example/solr/collection1/conf/lang/stopwords_nl.txt
|
|
142
|
+
- example/solr/collection1/conf/lang/stopwords_no.txt
|
|
143
|
+
- example/solr/collection1/conf/lang/stopwords_pt.txt
|
|
144
|
+
- example/solr/collection1/conf/lang/stopwords_ro.txt
|
|
145
|
+
- example/solr/collection1/conf/lang/stopwords_ru.txt
|
|
146
|
+
- example/solr/collection1/conf/lang/stopwords_sv.txt
|
|
147
|
+
- example/solr/collection1/conf/lang/stopwords_th.txt
|
|
148
|
+
- example/solr/collection1/conf/lang/stopwords_tr.txt
|
|
149
|
+
- example/solr/collection1/conf/lang/userdict_ja.txt
|
|
150
|
+
- example/solr/collection1/conf/mapping-FoldToASCII.txt
|
|
151
|
+
- example/solr/collection1/conf/mapping-ISOLatin1Accent.txt
|
|
152
|
+
- example/solr/collection1/conf/protwords.txt
|
|
153
|
+
- example/solr/collection1/conf/schema.xml
|
|
154
|
+
- example/solr/collection1/conf/scripts.conf
|
|
155
|
+
- example/solr/collection1/conf/solrconfig.xml
|
|
156
|
+
- example/solr/collection1/conf/spellings.txt
|
|
157
|
+
- example/solr/collection1/conf/stopwords.txt
|
|
158
|
+
- example/solr/collection1/conf/synonyms.txt
|
|
159
|
+
- example/solr/collection1/conf/update-script.js
|
|
160
|
+
- example/solr/collection1/conf/velocity/VM_global_library.vm
|
|
161
|
+
- example/solr/collection1/conf/velocity/browse.vm
|
|
162
|
+
- example/solr/collection1/conf/velocity/cluster.vm
|
|
163
|
+
- example/solr/collection1/conf/velocity/clusterResults.vm
|
|
164
|
+
- example/solr/collection1/conf/velocity/debug.vm
|
|
165
|
+
- example/solr/collection1/conf/velocity/did_you_mean.vm
|
|
166
|
+
- example/solr/collection1/conf/velocity/facet_fields.vm
|
|
167
|
+
- example/solr/collection1/conf/velocity/facet_pivot.vm
|
|
168
|
+
- example/solr/collection1/conf/velocity/facet_queries.vm
|
|
169
|
+
- example/solr/collection1/conf/velocity/facet_ranges.vm
|
|
170
|
+
- example/solr/collection1/conf/velocity/facets.vm
|
|
171
|
+
- example/solr/collection1/conf/velocity/footer.vm
|
|
172
|
+
- example/solr/collection1/conf/velocity/head.vm
|
|
173
|
+
- example/solr/collection1/conf/velocity/header.vm
|
|
174
|
+
- example/solr/collection1/conf/velocity/hit.vm
|
|
175
|
+
- example/solr/collection1/conf/velocity/hitGrouped.vm
|
|
176
|
+
- example/solr/collection1/conf/velocity/join-doc.vm
|
|
177
|
+
- example/solr/collection1/conf/velocity/jquery.autocomplete.css
|
|
178
|
+
- example/solr/collection1/conf/velocity/jquery.autocomplete.js
|
|
179
|
+
- example/solr/collection1/conf/velocity/layout.vm
|
|
180
|
+
- example/solr/collection1/conf/velocity/main.css
|
|
181
|
+
- example/solr/collection1/conf/velocity/product-doc.vm
|
|
182
|
+
- example/solr/collection1/conf/velocity/query.vm
|
|
183
|
+
- example/solr/collection1/conf/velocity/queryGroup.vm
|
|
184
|
+
- example/solr/collection1/conf/velocity/querySpatial.vm
|
|
185
|
+
- example/solr/collection1/conf/velocity/richtext-doc.vm
|
|
186
|
+
- example/solr/collection1/conf/velocity/suggest.vm
|
|
187
|
+
- example/solr/collection1/conf/velocity/tabs.vm
|
|
188
|
+
- example/solr/collection1/conf/xslt/example.xsl
|
|
189
|
+
- example/solr/collection1/conf/xslt/example_atom.xsl
|
|
190
|
+
- example/solr/collection1/conf/xslt/example_rss.xsl
|
|
191
|
+
- example/solr/collection1/conf/xslt/luke.xsl
|
|
192
|
+
- example/solr/collection1/conf/xslt/updateXml.xsl
|
|
193
|
+
- example/solr/collection1/data/index/segments.gen
|
|
194
|
+
- example/solr/collection1/data/index/segments_1
|
|
195
|
+
- example/solr/data/development/index/segments.gen
|
|
196
|
+
- example/solr/data/development/index/segments_1
|
|
197
|
+
- example/solr/solr.xml
|
|
198
|
+
- example/solr/zoo.cfg
|
|
199
|
+
- lib/rere.rb
|
|
200
|
+
- lib/rere/railtie.rb
|
|
201
|
+
- lib/rere/server.rb
|
|
202
|
+
- lib/rere/tasks/solr.rake
|
|
203
|
+
- lib/rere/version.rb
|
|
204
|
+
- pom.xml
|
|
205
|
+
- rere.gemspec
|
|
206
|
+
- server/README.txt
|
|
207
|
+
- server/cloud-scripts/zkcli.bat
|
|
208
|
+
- server/cloud-scripts/zkcli.sh
|
|
209
|
+
- server/contexts/solr-jetty-context.xml
|
|
210
|
+
- server/etc/create-solrtest.keystore.sh
|
|
211
|
+
- server/etc/jetty.xml
|
|
212
|
+
- server/etc/logging.properties
|
|
213
|
+
- server/etc/solrtest.keystore
|
|
214
|
+
- server/etc/webdefault.xml
|
|
215
|
+
- server/exampledocs/books.csv
|
|
216
|
+
- server/exampledocs/books.json
|
|
217
|
+
- server/exampledocs/gb18030-example.xml
|
|
218
|
+
- server/exampledocs/hd.xml
|
|
219
|
+
- server/exampledocs/ipod_other.xml
|
|
220
|
+
- server/exampledocs/ipod_video.xml
|
|
221
|
+
- server/exampledocs/manufacturers.xml
|
|
222
|
+
- server/exampledocs/mem.xml
|
|
223
|
+
- server/exampledocs/money.xml
|
|
224
|
+
- server/exampledocs/monitor.xml
|
|
225
|
+
- server/exampledocs/monitor2.xml
|
|
226
|
+
- server/exampledocs/mp500.xml
|
|
227
|
+
- server/exampledocs/post.jar
|
|
228
|
+
- server/exampledocs/post.sh
|
|
229
|
+
- server/exampledocs/sd500.xml
|
|
230
|
+
- server/exampledocs/solr.xml
|
|
231
|
+
- server/exampledocs/test_utf8.sh
|
|
232
|
+
- server/exampledocs/utf8-example.xml
|
|
233
|
+
- server/exampledocs/vidcard.xml
|
|
234
|
+
- server/lib/ext/jcl-over-slf4j-1.6.6.jar
|
|
235
|
+
- server/lib/ext/jul-to-slf4j-1.6.6.jar
|
|
236
|
+
- server/lib/ext/log4j-1.2.16.jar
|
|
237
|
+
- server/lib/ext/slf4j-api-1.6.6.jar
|
|
238
|
+
- server/lib/ext/slf4j-log4j12-1.6.6.jar
|
|
239
|
+
- server/lib/jetty-continuation-8.1.8.v20121106.jar
|
|
240
|
+
- server/lib/jetty-deploy-8.1.8.v20121106.jar
|
|
241
|
+
- server/lib/jetty-http-8.1.8.v20121106.jar
|
|
242
|
+
- server/lib/jetty-io-8.1.8.v20121106.jar
|
|
243
|
+
- server/lib/jetty-jmx-8.1.8.v20121106.jar
|
|
244
|
+
- server/lib/jetty-security-8.1.8.v20121106.jar
|
|
245
|
+
- server/lib/jetty-server-8.1.8.v20121106.jar
|
|
246
|
+
- server/lib/jetty-servlet-8.1.8.v20121106.jar
|
|
247
|
+
- server/lib/jetty-util-8.1.8.v20121106.jar
|
|
248
|
+
- server/lib/jetty-webapp-8.1.8.v20121106.jar
|
|
249
|
+
- server/lib/jetty-xml-8.1.8.v20121106.jar
|
|
250
|
+
- server/lib/servlet-api-3.0.jar
|
|
251
|
+
- server/resources/log4j.properties
|
|
252
|
+
- server/solr/README.txt
|
|
253
|
+
- server/solr/solr.xml
|
|
254
|
+
- server/solr/zoo.cfg
|
|
255
|
+
- server/start.jar
|
|
256
|
+
- server/webapps/solr.war
|
|
257
|
+
- solr/lib/solr-winds-0.1.jar
|
|
258
|
+
homepage: ''
|
|
259
|
+
licenses: []
|
|
260
|
+
post_install_message:
|
|
261
|
+
rdoc_options: []
|
|
262
|
+
require_paths:
|
|
263
|
+
- lib
|
|
264
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
265
|
+
requirements:
|
|
266
|
+
- - ">="
|
|
267
|
+
- !ruby/object:Gem::Version
|
|
268
|
+
version: !binary |-
|
|
269
|
+
MA==
|
|
270
|
+
none: false
|
|
271
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
272
|
+
requirements:
|
|
273
|
+
- - ">="
|
|
274
|
+
- !ruby/object:Gem::Version
|
|
275
|
+
version: !binary |-
|
|
276
|
+
MA==
|
|
277
|
+
none: false
|
|
278
|
+
requirements: []
|
|
279
|
+
rubyforge_project:
|
|
280
|
+
rubygems_version: 1.8.24
|
|
281
|
+
signing_key:
|
|
282
|
+
specification_version: 3
|
|
283
|
+
summary: Bundles solr in a gem for easy(-er) distribution
|
|
284
|
+
test_files: []
|