sunspot_solr 2.0.0 → 2.1.0
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/lib/sunspot/solr/installer/config_installer.rb +7 -0
- data/lib/sunspot/solr/java.rb +5 -2
- data/lib/sunspot_solr.rb +1 -1
- data/solr/contexts/solr.xml +8 -0
- data/solr/etc/jetty.xml +96 -148
- data/solr/etc/webdefault.xml +308 -160
- data/solr/lib/jetty-continuation-8.1.8.v20121106.jar +0 -0
- data/solr/lib/jetty-deploy-8.1.8.v20121106.jar +0 -0
- data/solr/lib/jetty-http-8.1.8.v20121106.jar +0 -0
- data/solr/lib/jetty-io-8.1.8.v20121106.jar +0 -0
- data/solr/lib/jetty-jmx-8.1.8.v20121106.jar +0 -0
- data/solr/lib/jetty-security-8.1.8.v20121106.jar +0 -0
- data/solr/lib/jetty-server-8.1.8.v20121106.jar +0 -0
- data/solr/lib/jetty-servlet-8.1.8.v20121106.jar +0 -0
- data/solr/lib/jetty-util-8.1.8.v20121106.jar +0 -0
- data/solr/lib/jetty-webapp-8.1.8.v20121106.jar +0 -0
- data/solr/lib/jetty-xml-8.1.8.v20121106.jar +0 -0
- data/solr/lib/servlet-api-3.0.jar +0 -0
- data/solr/solr/conf/schema.xml +4 -0
- data/solr/solr/conf/solrconfig.xml +588 -855
- data/solr/solr/{README.txt → default/README.txt} +0 -0
- data/solr/solr/solr.xml +8 -0
- data/solr/start.jar +0 -0
- data/solr/webapps/solr.war +0 -0
- data/spec/server_spec.rb +2 -2
- metadata +26 -14
- data/solr/lib/jetty-6.1.26-patched-JETTY-1340.jar +0 -0
- data/solr/lib/jetty-util-6.1.26-patched-JETTY-1340.jar +0 -0
- data/solr/lib/servlet-api-2.5-20081211.jar +0 -0
File without changes
|
data/solr/solr/solr.xml
ADDED
@@ -0,0 +1,8 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" ?>
|
2
|
+
<solr persistent="false">
|
3
|
+
<cores adminPath="/admin/cores" host="${host:}" hostPort="${jetty.port:}">
|
4
|
+
<core name="default" instanceDir="." dataDir="default/data"/>
|
5
|
+
<core name="development" instanceDir="." dataDir="development/data"/>
|
6
|
+
<core name="test" instanceDir="." dataDir="test/data"/>
|
7
|
+
</cores>
|
8
|
+
</solr>
|
data/solr/start.jar
CHANGED
Binary file
|
data/solr/webapps/solr.war
CHANGED
Binary file
|
data/spec/server_spec.rb
CHANGED
@@ -66,8 +66,8 @@ describe Sunspot::Solr::Server do
|
|
66
66
|
Tempfile.should_receive(:new).with('logging.properties').and_return(@tempfile = StringIO.new)
|
67
67
|
@tempfile.should_receive(:flush)
|
68
68
|
@tempfile.should_receive(:close)
|
69
|
-
@tempfile.stub
|
70
|
-
@server.stub
|
69
|
+
@tempfile.stub(:path).and_return('/tmp/logging.properties.12345')
|
70
|
+
@server.stub(:exec)
|
71
71
|
end
|
72
72
|
|
73
73
|
it 'runs Solr with logging properties file' do
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sunspot_solr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.1.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -27,7 +27,7 @@ authors:
|
|
27
27
|
autorequire:
|
28
28
|
bindir: bin
|
29
29
|
cert_chain: []
|
30
|
-
date: 2013-
|
30
|
+
date: 2013-10-25 00:00:00.000000000 Z
|
31
31
|
dependencies:
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: rspec
|
@@ -50,7 +50,7 @@ dependencies:
|
|
50
50
|
requirement: !ruby/object:Gem::Requirement
|
51
51
|
none: false
|
52
52
|
requirements:
|
53
|
-
- -
|
53
|
+
- - '>='
|
54
54
|
- !ruby/object:Gem::Version
|
55
55
|
version: '0'
|
56
56
|
type: :development
|
@@ -58,12 +58,13 @@ dependencies:
|
|
58
58
|
version_requirements: !ruby/object:Gem::Requirement
|
59
59
|
none: false
|
60
60
|
requirements:
|
61
|
-
- -
|
61
|
+
- - '>='
|
62
62
|
- !ruby/object:Gem::Version
|
63
63
|
version: '0'
|
64
|
-
description:
|
65
|
-
|
66
|
-
|
64
|
+
description: |2
|
65
|
+
Sunspot::Solr provides a bundled Solr distribution for use with Sunspot.
|
66
|
+
Typical deployment environments will require more configuration, but this
|
67
|
+
distribution is well suited to development and testing.
|
67
68
|
email:
|
68
69
|
- mat@patch.com
|
69
70
|
executables:
|
@@ -85,17 +86,26 @@ files:
|
|
85
86
|
- lib/sunspot/solr/tasks.rb
|
86
87
|
- lib/sunspot_solr.rb
|
87
88
|
- solr/README.txt
|
89
|
+
- solr/contexts/solr.xml
|
88
90
|
- solr/etc/jetty.xml
|
89
91
|
- solr/etc/webdefault.xml
|
90
|
-
- solr/lib/jetty-
|
91
|
-
- solr/lib/jetty-
|
92
|
+
- solr/lib/jetty-continuation-8.1.8.v20121106.jar
|
93
|
+
- solr/lib/jetty-deploy-8.1.8.v20121106.jar
|
94
|
+
- solr/lib/jetty-http-8.1.8.v20121106.jar
|
95
|
+
- solr/lib/jetty-io-8.1.8.v20121106.jar
|
96
|
+
- solr/lib/jetty-jmx-8.1.8.v20121106.jar
|
97
|
+
- solr/lib/jetty-security-8.1.8.v20121106.jar
|
98
|
+
- solr/lib/jetty-server-8.1.8.v20121106.jar
|
99
|
+
- solr/lib/jetty-servlet-8.1.8.v20121106.jar
|
100
|
+
- solr/lib/jetty-util-8.1.8.v20121106.jar
|
101
|
+
- solr/lib/jetty-webapp-8.1.8.v20121106.jar
|
102
|
+
- solr/lib/jetty-xml-8.1.8.v20121106.jar
|
92
103
|
- solr/lib/jsp-2.1/ant-1.6.5.jar
|
93
104
|
- solr/lib/jsp-2.1/core-3.1.1.jar
|
94
105
|
- solr/lib/jsp-2.1/jsp-2.1.jar
|
95
106
|
- solr/lib/jsp-2.1/jsp-api-2.1.jar
|
96
|
-
- solr/lib/servlet-api-
|
107
|
+
- solr/lib/servlet-api-3.0.jar
|
97
108
|
- solr/solr/.gitignore
|
98
|
-
- solr/solr/README.txt
|
99
109
|
- solr/solr/conf/admin-extra.html
|
100
110
|
- solr/solr/conf/elevate.xml
|
101
111
|
- solr/solr/conf/mapping-ISOLatin1Accent.txt
|
@@ -110,6 +120,8 @@ files:
|
|
110
120
|
- solr/solr/conf/xslt/example_atom.xsl
|
111
121
|
- solr/solr/conf/xslt/example_rss.xsl
|
112
122
|
- solr/solr/conf/xslt/luke.xsl
|
123
|
+
- solr/solr/default/README.txt
|
124
|
+
- solr/solr/solr.xml
|
113
125
|
- solr/start.jar
|
114
126
|
- solr/webapps/solr.war
|
115
127
|
- spec/server_spec.rb
|
@@ -130,18 +142,18 @@ require_paths:
|
|
130
142
|
required_ruby_version: !ruby/object:Gem::Requirement
|
131
143
|
none: false
|
132
144
|
requirements:
|
133
|
-
- -
|
145
|
+
- - '>='
|
134
146
|
- !ruby/object:Gem::Version
|
135
147
|
version: '0'
|
136
148
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
137
149
|
none: false
|
138
150
|
requirements:
|
139
|
-
- -
|
151
|
+
- - '>='
|
140
152
|
- !ruby/object:Gem::Version
|
141
153
|
version: '0'
|
142
154
|
requirements: []
|
143
155
|
rubyforge_project: sunspot
|
144
|
-
rubygems_version: 1.8.
|
156
|
+
rubygems_version: 1.8.25
|
145
157
|
signing_key:
|
146
158
|
specification_version: 3
|
147
159
|
summary: Bundled Solr distribution for Sunspot
|
Binary file
|
Binary file
|
Binary file
|