gojee-sunspot-solr 2.0.2 → 2.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (44) hide show
  1. metadata +4 -51
  2. data/Gemfile +0 -3
  3. data/README.rdoc +0 -24
  4. data/bin/sunspot-installer +0 -20
  5. data/bin/sunspot-solr +0 -80
  6. data/lib/sunspot/solr/installer.rb +0 -25
  7. data/lib/sunspot/solr/installer/config_installer.rb +0 -46
  8. data/lib/sunspot/solr/installer/task_helper.rb +0 -13
  9. data/lib/sunspot/solr/java.rb +0 -10
  10. data/lib/sunspot/solr/railtie.rb +0 -15
  11. data/lib/sunspot/solr/server.rb +0 -229
  12. data/lib/sunspot/solr/tasks.rb +0 -49
  13. data/lib/sunspot_solr.rb +0 -5
  14. data/solr/README.txt +0 -42
  15. data/solr/etc/jetty.xml +0 -219
  16. data/solr/etc/webdefault.xml +0 -379
  17. data/solr/lib/jetty-6.1.26-patched-JETTY-1340.jar +0 -0
  18. data/solr/lib/jetty-util-6.1.26-patched-JETTY-1340.jar +0 -0
  19. data/solr/lib/jsp-2.1/ant-1.6.5.jar +0 -0
  20. data/solr/lib/jsp-2.1/core-3.1.1.jar +0 -0
  21. data/solr/lib/jsp-2.1/jsp-2.1.jar +0 -0
  22. data/solr/lib/jsp-2.1/jsp-api-2.1.jar +0 -0
  23. data/solr/lib/servlet-api-2.5-20081211.jar +0 -0
  24. data/solr/solr/.gitignore +0 -1
  25. data/solr/solr/README.txt +0 -54
  26. data/solr/solr/conf/admin-extra.html +0 -31
  27. data/solr/solr/conf/elevate.xml +0 -36
  28. data/solr/solr/conf/mapping-ISOLatin1Accent.txt +0 -246
  29. data/solr/solr/conf/protwords.txt +0 -21
  30. data/solr/solr/conf/schema.xml +0 -250
  31. data/solr/solr/conf/scripts.conf +0 -24
  32. data/solr/solr/conf/solrconfig.xml +0 -934
  33. data/solr/solr/conf/spellings.txt +0 -2
  34. data/solr/solr/conf/stopwords.txt +0 -58
  35. data/solr/solr/conf/synonyms.txt +0 -31
  36. data/solr/solr/conf/xslt/example.xsl +0 -132
  37. data/solr/solr/conf/xslt/example_atom.xsl +0 -67
  38. data/solr/solr/conf/xslt/example_rss.xsl +0 -66
  39. data/solr/solr/conf/xslt/luke.xsl +0 -337
  40. data/solr/start.jar +0 -0
  41. data/solr/webapps/solr.war +0 -0
  42. data/spec/server_spec.rb +0 -98
  43. data/spec/spec_helper.rb +0 -18
  44. data/sunspot_solr.gemspec +0 -39
data/solr/start.jar DELETED
Binary file
Binary file
data/spec/server_spec.rb DELETED
@@ -1,98 +0,0 @@
1
- require File.expand_path('spec_helper', File.dirname(__FILE__))
2
- require 'tempfile'
3
-
4
- describe Sunspot::Solr::Server do
5
- SUNSPOT_START_JAR = File.expand_path(
6
- File.join(File.dirname(__FILE__), '..', '..', 'solr', 'start.jar')
7
- )
8
-
9
- before :each do
10
- @server = Sunspot::Solr::Server.new
11
- end
12
-
13
- it 'runs server in current process' do
14
- @server.should_not_receive(:fork)
15
- @server.should_receive(:exec).with(/java .*-jar start.jar/)
16
- @server.run
17
- end
18
-
19
- it 'runs Java with min memory' do
20
- @server.min_memory = 1024
21
- @server.should_receive(:exec).with(/-Xms1024/)
22
- @server.run
23
- end
24
-
25
- it 'runs Java with max memory' do
26
- @server.max_memory = 2048
27
- @server.should_receive(:exec).with(/-Xmx2048/)
28
- @server.run
29
- end
30
-
31
- it 'runs Jetty with specified port' do
32
- @server.port = 8981
33
- @server.should_receive(:exec).with(/-Djetty\.port=8981/)
34
- @server.run
35
- end
36
-
37
- it 'runs Solr with specified data dir' do
38
- @server.solr_data_dir = '/tmp/var/solr/data'
39
- @server.should_receive(:exec).with(%r(-Dsolr\.data\.dir=/tmp/var/solr/data))
40
- @server.run
41
- end
42
-
43
- it 'runs Solr with specified Solr home' do
44
- @server.solr_home = '/tmp/var/solr'
45
- @server.should_receive(:exec).with(%r(-Dsolr\.solr\.home=/tmp/var/solr))
46
- @server.run
47
- end
48
-
49
- it 'runs Solr with specified Solr jar' do
50
- @server.solr_jar = SUNSPOT_START_JAR
51
- FileUtils.should_receive(:cd).with(File.dirname(SUNSPOT_START_JAR))
52
- @server.run
53
- end
54
-
55
- it 'raises an error if java is missing' do
56
- Sunspot::Solr::Java.stub(:installed? => false)
57
- expect {
58
- Sunspot::Solr::Server.new
59
- }.to raise_error(Sunspot::Solr::Server::JavaMissing)
60
- end
61
-
62
- describe 'with logging' do
63
- before :each do
64
- @server.log_level = 'info'
65
- @server.log_file = 'log/sunspot-development.log'
66
- Tempfile.should_receive(:new).with('logging.properties').and_return(@tempfile = StringIO.new)
67
- @tempfile.should_receive(:flush)
68
- @tempfile.should_receive(:close)
69
- @tempfile.stub!(:path).and_return('/tmp/logging.properties.12345')
70
- @server.stub!(:exec)
71
- end
72
-
73
- it 'runs Solr with logging properties file' do
74
- @server.should_receive(:exec).with(%r(-Djava\.util\.logging\.config\.file=/tmp/logging\.properties\.12345))
75
- @server.run
76
- end
77
-
78
- it 'sets logging level' do
79
- @server.run
80
- @tempfile.string.should =~ /^java\.util\.logging\.FileHandler\.level *= *INFO$/
81
- end
82
-
83
- it 'sets handler' do
84
- @server.run
85
- @tempfile.string.should =~ /^handlers *= *java.util.logging.FileHandler$/
86
- end
87
-
88
- it 'sets formatter' do
89
- @server.run
90
- @tempfile.string.should =~ /^java\.util\.logging\.FileHandler\.formatter *= *java\.util\.logging\.SimpleFormatter$/
91
- end
92
-
93
- it 'sets log file' do
94
- @server.run
95
- @tempfile.string.should =~ /^java\.util\.logging\.FileHandler\.pattern *= *log\/sunspot-development\.log$/
96
- end
97
- end
98
- end
data/spec/spec_helper.rb DELETED
@@ -1,18 +0,0 @@
1
- begin
2
- require 'rspec'
3
- rescue LoadError => e
4
- require 'spec'
5
- end
6
-
7
- require 'sunspot_solr'
8
-
9
- rspec =
10
- begin
11
- RSpec
12
- rescue NameError, ArgumentError
13
- Spec::Runner
14
- end
15
-
16
- rspec.configure do |config|
17
- # Maybe later...
18
- end
data/sunspot_solr.gemspec DELETED
@@ -1,39 +0,0 @@
1
- # -*- encoding: utf-8 -*-
2
- lib = File.expand_path('../../sunspot/lib/', __FILE__)
3
-
4
- $:.unshift(lib) unless $:.include?(lib)
5
-
6
- require 'sunspot/version'
7
-
8
- Gem::Specification.new do |s|
9
- s.name = "gojee-sunspot-solr"
10
- s.version = Sunspot::VERSION
11
- s.platform = Gem::Platform::RUBY
12
- s.authors = ['Mat Brown', 'Peer Allan', 'Dmitriy Dzema', 'Benjamin Krause', 'Marcel de Graaf', 'Brandon Keepers', 'Peter Berkenbosch',
13
- 'Brian Atkinson', 'Tom Coleman', 'Matt Mitchell', 'Nathan Beyer', 'Kieran Topping', 'Nicolas Braem', 'Jeremy Ashkenas',
14
- 'Dylan Vaughn', 'Brian Durand', 'Sam Granieri', 'Nick Zadrozny', 'Jason Ronallo']
15
- s.email = ["mat@patch.com"]
16
- s.homepage = 'https://github.com/outoftime/sunspot/tree/master/sunspot_solr'
17
- s.summary = 'Bundled Solr distribution for Sunspot'
18
- s.description = <<-TEXT
19
- Sunspot::Solr provides a bundled Solr distribution for use with Sunspot.
20
- Typical deployment environments will require more configuration, but this
21
- distribution is well suited to development and testing.
22
- TEXT
23
-
24
- s.rubyforge_project = "sunspot"
25
-
26
- s.files = `git ls-files`.split("\n")
27
- s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
28
- s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
29
- s.require_paths = ["lib"]
30
-
31
- s.add_dependency 'escape', '~>0.0.4'
32
-
33
- s.add_development_dependency 'rspec', '~> 1.1'
34
- s.add_development_dependency 'hanna'
35
-
36
- s.rdoc_options << '--webcvs=http://github.com/outoftime/sunspot/tree/master/%s' <<
37
- '--title' << 'Sunspot-Solr - Bundled Solr distribution for Sunspot - API Documentation' <<
38
- '--main' << 'README.rdoc'
39
- end