sunspot_solr-jts 2.2.0.rc1

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.
Files changed (63) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +12 -0
  3. data/.ruby-gemset +1 -0
  4. data/.ruby-version +1 -0
  5. data/.travis.yml +30 -0
  6. data/Gemfile +3 -0
  7. data/README.rdoc +30 -0
  8. data/Rakefile +1 -0
  9. data/bin/sunspot-installer +20 -0
  10. data/bin/sunspot-solr +80 -0
  11. data/lib/sunspot/solr/installer/config_installer.rb +53 -0
  12. data/lib/sunspot/solr/installer/task_helper.rb +13 -0
  13. data/lib/sunspot/solr/installer.rb +25 -0
  14. data/lib/sunspot/solr/java.rb +13 -0
  15. data/lib/sunspot/solr/railtie.rb +15 -0
  16. data/lib/sunspot/solr/server.rb +225 -0
  17. data/lib/sunspot/solr/tasks.rb +44 -0
  18. data/lib/sunspot/solr/version.rb +5 -0
  19. data/lib/sunspot_solr-jts.rb +5 -0
  20. data/lib/sunspot_solr.rb +1 -0
  21. data/solr/README.txt +42 -0
  22. data/solr/contexts/solr.xml +7 -0
  23. data/solr/etc/jetty.xml +167 -0
  24. data/solr/etc/webdefault.xml +527 -0
  25. data/solr/lib/jetty-continuation-8.1.8.v20121106.jar +0 -0
  26. data/solr/lib/jetty-deploy-8.1.8.v20121106.jar +0 -0
  27. data/solr/lib/jetty-http-8.1.8.v20121106.jar +0 -0
  28. data/solr/lib/jetty-io-8.1.8.v20121106.jar +0 -0
  29. data/solr/lib/jetty-jmx-8.1.8.v20121106.jar +0 -0
  30. data/solr/lib/jetty-security-8.1.8.v20121106.jar +0 -0
  31. data/solr/lib/jetty-server-8.1.8.v20121106.jar +0 -0
  32. data/solr/lib/jetty-servlet-8.1.8.v20121106.jar +0 -0
  33. data/solr/lib/jetty-util-8.1.8.v20121106.jar +0 -0
  34. data/solr/lib/jetty-webapp-8.1.8.v20121106.jar +0 -0
  35. data/solr/lib/jetty-xml-8.1.8.v20121106.jar +0 -0
  36. data/solr/lib/jsp-2.1/ant-1.6.5.jar +0 -0
  37. data/solr/lib/jsp-2.1/core-3.1.1.jar +0 -0
  38. data/solr/lib/jsp-2.1/jsp-2.1.jar +0 -0
  39. data/solr/lib/jsp-2.1/jsp-api-2.1.jar +0 -0
  40. data/solr/lib/servlet-api-3.0.jar +0 -0
  41. data/solr/solr/.gitignore +1 -0
  42. data/solr/solr/conf/admin-extra.html +31 -0
  43. data/solr/solr/conf/elevate.xml +36 -0
  44. data/solr/solr/conf/mapping-ISOLatin1Accent.txt +246 -0
  45. data/solr/solr/conf/protwords.txt +21 -0
  46. data/solr/solr/conf/schema.xml +275 -0
  47. data/solr/solr/conf/scripts.conf +24 -0
  48. data/solr/solr/conf/solrconfig.xml +680 -0
  49. data/solr/solr/conf/spellings.txt +2 -0
  50. data/solr/solr/conf/stopwords.txt +58 -0
  51. data/solr/solr/conf/synonyms.txt +31 -0
  52. data/solr/solr/conf/xslt/example.xsl +132 -0
  53. data/solr/solr/conf/xslt/example_atom.xsl +67 -0
  54. data/solr/solr/conf/xslt/example_rss.xsl +66 -0
  55. data/solr/solr/conf/xslt/luke.xsl +337 -0
  56. data/solr/solr/default/README.txt +54 -0
  57. data/solr/solr/solr.xml +8 -0
  58. data/solr/start.jar +0 -0
  59. data/solr/webapps/solr.war +0 -0
  60. data/spec/server_spec.rb +98 -0
  61. data/spec/spec_helper.rb +18 -0
  62. data/sunspot_solr-jts.gemspec +38 -0
  63. metadata +163 -0
metadata ADDED
@@ -0,0 +1,163 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: sunspot_solr-jts
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.2.0.rc1
5
+ platform: ruby
6
+ authors:
7
+ - Mat Brown
8
+ - Peer Allan
9
+ - Dmitriy Dzema
10
+ - Benjamin Krause
11
+ - Marcel de Graaf
12
+ - Brandon Keepers
13
+ - Peter Berkenbosch
14
+ - Brian Atkinson
15
+ - Tom Coleman
16
+ - Matt Mitchell
17
+ - Nathan Beyer
18
+ - Kieran Topping
19
+ - Nicolas Braem
20
+ - Jeremy Ashkenas
21
+ - Dylan Vaughn
22
+ - Brian Durand
23
+ - Sam Granieri
24
+ - Nick Zadrozny
25
+ - Jason Ronallo
26
+ autorequire:
27
+ bindir: bin
28
+ cert_chain: []
29
+ date: 2015-07-23 00:00:00.000000000 Z
30
+ dependencies:
31
+ - !ruby/object:Gem::Dependency
32
+ name: rspec
33
+ requirement: !ruby/object:Gem::Requirement
34
+ requirements:
35
+ - - "~>"
36
+ - !ruby/object:Gem::Version
37
+ version: '1.1'
38
+ type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ requirements:
42
+ - - "~>"
43
+ - !ruby/object:Gem::Version
44
+ version: '1.1'
45
+ - !ruby/object:Gem::Dependency
46
+ name: rake
47
+ requirement: !ruby/object:Gem::Requirement
48
+ requirements:
49
+ - - ">="
50
+ - !ruby/object:Gem::Version
51
+ version: '10'
52
+ type: :development
53
+ prerelease: false
54
+ version_requirements: !ruby/object:Gem::Requirement
55
+ requirements:
56
+ - - ">="
57
+ - !ruby/object:Gem::Version
58
+ version: '10'
59
+ description: |2
60
+ Sunspot::Solr provides a bundled Solr distribution for use with Sunspot.
61
+ Typical deployment environments will require more configuration, but this
62
+ distribution is well suited to development and testing.
63
+ email:
64
+ - cz@aegisnet.de
65
+ executables:
66
+ - sunspot-installer
67
+ - sunspot-solr
68
+ extensions: []
69
+ extra_rdoc_files: []
70
+ files:
71
+ - ".gitignore"
72
+ - ".ruby-gemset"
73
+ - ".ruby-version"
74
+ - ".travis.yml"
75
+ - Gemfile
76
+ - README.rdoc
77
+ - Rakefile
78
+ - bin/sunspot-installer
79
+ - bin/sunspot-solr
80
+ - lib/sunspot/solr/installer.rb
81
+ - lib/sunspot/solr/installer/config_installer.rb
82
+ - lib/sunspot/solr/installer/task_helper.rb
83
+ - lib/sunspot/solr/java.rb
84
+ - lib/sunspot/solr/railtie.rb
85
+ - lib/sunspot/solr/server.rb
86
+ - lib/sunspot/solr/tasks.rb
87
+ - lib/sunspot/solr/version.rb
88
+ - lib/sunspot_solr-jts.rb
89
+ - lib/sunspot_solr.rb
90
+ - solr/README.txt
91
+ - solr/contexts/solr.xml
92
+ - solr/etc/jetty.xml
93
+ - solr/etc/webdefault.xml
94
+ - solr/lib/jetty-continuation-8.1.8.v20121106.jar
95
+ - solr/lib/jetty-deploy-8.1.8.v20121106.jar
96
+ - solr/lib/jetty-http-8.1.8.v20121106.jar
97
+ - solr/lib/jetty-io-8.1.8.v20121106.jar
98
+ - solr/lib/jetty-jmx-8.1.8.v20121106.jar
99
+ - solr/lib/jetty-security-8.1.8.v20121106.jar
100
+ - solr/lib/jetty-server-8.1.8.v20121106.jar
101
+ - solr/lib/jetty-servlet-8.1.8.v20121106.jar
102
+ - solr/lib/jetty-util-8.1.8.v20121106.jar
103
+ - solr/lib/jetty-webapp-8.1.8.v20121106.jar
104
+ - solr/lib/jetty-xml-8.1.8.v20121106.jar
105
+ - solr/lib/jsp-2.1/ant-1.6.5.jar
106
+ - solr/lib/jsp-2.1/core-3.1.1.jar
107
+ - solr/lib/jsp-2.1/jsp-2.1.jar
108
+ - solr/lib/jsp-2.1/jsp-api-2.1.jar
109
+ - solr/lib/servlet-api-3.0.jar
110
+ - solr/solr/.gitignore
111
+ - solr/solr/conf/admin-extra.html
112
+ - solr/solr/conf/elevate.xml
113
+ - solr/solr/conf/mapping-ISOLatin1Accent.txt
114
+ - solr/solr/conf/protwords.txt
115
+ - solr/solr/conf/schema.xml
116
+ - solr/solr/conf/scripts.conf
117
+ - solr/solr/conf/solrconfig.xml
118
+ - solr/solr/conf/spellings.txt
119
+ - solr/solr/conf/stopwords.txt
120
+ - solr/solr/conf/synonyms.txt
121
+ - solr/solr/conf/xslt/example.xsl
122
+ - solr/solr/conf/xslt/example_atom.xsl
123
+ - solr/solr/conf/xslt/example_rss.xsl
124
+ - solr/solr/conf/xslt/luke.xsl
125
+ - solr/solr/default/README.txt
126
+ - solr/solr/solr.xml
127
+ - solr/start.jar
128
+ - solr/webapps/solr.war
129
+ - spec/server_spec.rb
130
+ - spec/spec_helper.rb
131
+ - sunspot_solr-jts.gemspec
132
+ homepage: https://github.com/absolventa/sunspot_solr-jts
133
+ licenses:
134
+ - MIT
135
+ metadata: {}
136
+ post_install_message:
137
+ rdoc_options:
138
+ - "--webcvs=http://github.com/outoftime/sunspot/tree/master/%s"
139
+ - "--title"
140
+ - Sunspot-Solr - Bundled Solr distribution for Sunspot - API Documentation
141
+ - "--main"
142
+ - README.rdoc
143
+ require_paths:
144
+ - lib
145
+ required_ruby_version: !ruby/object:Gem::Requirement
146
+ requirements:
147
+ - - ">="
148
+ - !ruby/object:Gem::Version
149
+ version: '0'
150
+ required_rubygems_version: !ruby/object:Gem::Requirement
151
+ requirements:
152
+ - - ">"
153
+ - !ruby/object:Gem::Version
154
+ version: 1.3.1
155
+ requirements: []
156
+ rubyforge_project: sunspot_solr-jts
157
+ rubygems_version: 2.4.6
158
+ signing_key:
159
+ specification_version: 4
160
+ summary: Bundled Solr distribution with JTS for Sunspot
161
+ test_files:
162
+ - spec/server_spec.rb
163
+ - spec/spec_helper.rb