erchef-solr 11.4.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/LICENSE +201 -0
- data/README.rdoc +0 -0
- data/Rakefile +66 -0
- data/bin/chef-solr +27 -0
- data/bin/chef-solr-installer +26 -0
- data/lib/chef/solr.rb +1 -0
- data/lib/chef/solr/application/solr.rb +275 -0
- data/lib/chef/solr/solr_installer.rb +386 -0
- data/lib/chef/solr/version.rb +11 -0
- data/solr/solr-home.tar.gz +0 -0
- data/solr/solr-jetty.tar.gz +0 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_helper.rb +24 -0
- data/spec/unit/application/solr_spec.rb +569 -0
- metadata +78 -0
metadata
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: erchef-solr
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 11.4.0
|
|
5
|
+
prerelease:
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- Adam Jacob
|
|
9
|
+
autorequire:
|
|
10
|
+
bindir: bin
|
|
11
|
+
cert_chain: []
|
|
12
|
+
date: 2013-03-06 00:00:00.000000000 Z
|
|
13
|
+
dependencies:
|
|
14
|
+
- !ruby/object:Gem::Dependency
|
|
15
|
+
name: chef
|
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
|
17
|
+
none: false
|
|
18
|
+
requirements:
|
|
19
|
+
- - ! '>='
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: '0'
|
|
22
|
+
type: :runtime
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
26
|
+
requirements:
|
|
27
|
+
- - ! '>='
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: '0'
|
|
30
|
+
description: ! 'Vendored Apache Solr for use with Chef Server
|
|
31
|
+
|
|
32
|
+
'
|
|
33
|
+
email: adam@opscode.com
|
|
34
|
+
executables:
|
|
35
|
+
- chef-solr
|
|
36
|
+
- chef-solr-installer
|
|
37
|
+
extensions: []
|
|
38
|
+
extra_rdoc_files: []
|
|
39
|
+
files:
|
|
40
|
+
- README.rdoc
|
|
41
|
+
- Rakefile
|
|
42
|
+
- LICENSE
|
|
43
|
+
- bin/chef-solr
|
|
44
|
+
- bin/chef-solr-installer
|
|
45
|
+
- lib/chef/solr/application/solr.rb
|
|
46
|
+
- lib/chef/solr/solr_installer.rb
|
|
47
|
+
- lib/chef/solr/version.rb
|
|
48
|
+
- lib/chef/solr.rb
|
|
49
|
+
- spec/spec.opts
|
|
50
|
+
- spec/spec_helper.rb
|
|
51
|
+
- spec/unit/application/solr_spec.rb
|
|
52
|
+
- solr/solr-home.tar.gz
|
|
53
|
+
- solr/solr-jetty.tar.gz
|
|
54
|
+
homepage: http://wiki.opscode.com/display/chef
|
|
55
|
+
licenses: []
|
|
56
|
+
post_install_message:
|
|
57
|
+
rdoc_options: []
|
|
58
|
+
require_paths:
|
|
59
|
+
- lib
|
|
60
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
61
|
+
none: false
|
|
62
|
+
requirements:
|
|
63
|
+
- - ! '>='
|
|
64
|
+
- !ruby/object:Gem::Version
|
|
65
|
+
version: '0'
|
|
66
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
67
|
+
none: false
|
|
68
|
+
requirements:
|
|
69
|
+
- - ! '>='
|
|
70
|
+
- !ruby/object:Gem::Version
|
|
71
|
+
version: '0'
|
|
72
|
+
requirements: []
|
|
73
|
+
rubyforge_project:
|
|
74
|
+
rubygems_version: 1.8.25
|
|
75
|
+
signing_key:
|
|
76
|
+
specification_version: 3
|
|
77
|
+
summary: Search indexing for Chef
|
|
78
|
+
test_files: []
|