xmlpipe2_indexer 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/.document ADDED
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ bin/*
3
+ -
4
+ features/**/*.feature
5
+ LICENSE.txt
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color
data/.rvmrc ADDED
@@ -0,0 +1 @@
1
+ rvm --create use 1.9.3@xmlpipe2
data/Gemfile ADDED
@@ -0,0 +1,9 @@
1
+ source "http://rubygems.org"
2
+
3
+ gem 'activesupport', ">2.2.0"
4
+
5
+ group :development do
6
+ gem "rspec"
7
+ gem "bundler"
8
+ gem "jeweler"
9
+ end
data/Gemfile.lock ADDED
@@ -0,0 +1,36 @@
1
+ GEM
2
+ remote: http://rubygems.org/
3
+ specs:
4
+ activesupport (3.2.3)
5
+ i18n (~> 0.6)
6
+ multi_json (~> 1.0)
7
+ diff-lcs (1.1.3)
8
+ git (1.2.5)
9
+ i18n (0.6.0)
10
+ jeweler (1.8.3)
11
+ bundler (~> 1.0)
12
+ git (>= 1.2.5)
13
+ rake
14
+ rdoc
15
+ json (1.7.0)
16
+ multi_json (1.3.4)
17
+ rake (0.9.2.2)
18
+ rdoc (3.12)
19
+ json (~> 1.4)
20
+ rspec (2.9.0)
21
+ rspec-core (~> 2.9.0)
22
+ rspec-expectations (~> 2.9.0)
23
+ rspec-mocks (~> 2.9.0)
24
+ rspec-core (2.9.0)
25
+ rspec-expectations (2.9.1)
26
+ diff-lcs (~> 1.1.3)
27
+ rspec-mocks (2.9.0)
28
+
29
+ PLATFORMS
30
+ ruby
31
+
32
+ DEPENDENCIES
33
+ activesupport (> 2.2.0)
34
+ bundler
35
+ jeweler
36
+ rspec
data/LICENSE.txt ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2012 Ludwig Bratke
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,19 @@
1
+ = xmlpipe2_indexer
2
+
3
+ Description goes here.
4
+
5
+ == Contributing to xmlpipe2_indexer
6
+
7
+ * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
8
+ * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
9
+ * Fork the project.
10
+ * Start a feature/bugfix branch.
11
+ * Commit and push until you are happy with your contribution.
12
+ * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
13
+ * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
14
+
15
+ == Copyright
16
+
17
+ Copyright (c) 2012 Ludwig Bratke. See LICENSE.txt for
18
+ further details.
19
+
data/Rakefile ADDED
@@ -0,0 +1,49 @@
1
+ # encoding: utf-8
2
+
3
+ require 'rubygems'
4
+ require 'bundler'
5
+ begin
6
+ Bundler.setup(:default, :development)
7
+ rescue Bundler::BundlerError => e
8
+ $stderr.puts e.message
9
+ $stderr.puts "Run `bundle install` to install missing gems"
10
+ exit e.status_code
11
+ end
12
+ require 'rake'
13
+
14
+ require 'jeweler'
15
+ Jeweler::Tasks.new do |gem|
16
+ # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
17
+ gem.name = "xmlpipe2_indexer"
18
+ gem.homepage = "http://github.com/EeCnee/xmlpipe2_indexer"
19
+ gem.license = "MIT"
20
+ gem.summary = %Q{xmlpipe2_indexer provides a small DSL which wrapps sphinx's xmlpipe2}
21
+ gem.description = %Q{xmlpipe2_indexer provides a small DSL which wrapps sphinx's xmlpipe2}
22
+ gem.email = "bratke@servtag.com"
23
+ gem.authors = ["Ludwig Bratke"]
24
+ # dependencies defined in Gemfile
25
+ end
26
+ Jeweler::RubygemsDotOrgTasks.new
27
+
28
+ require 'rspec/core'
29
+ require 'rspec/core/rake_task'
30
+ RSpec::Core::RakeTask.new(:spec) do |spec|
31
+ spec.pattern = FileList['spec/**/*_spec.rb']
32
+ end
33
+
34
+ RSpec::Core::RakeTask.new(:rcov) do |spec|
35
+ spec.pattern = 'spec/**/*_spec.rb'
36
+ spec.rcov = true
37
+ end
38
+
39
+ task :default => :spec
40
+
41
+ require 'rdoc/task'
42
+ Rake::RDocTask.new do |rdoc|
43
+ version = File.exist?('VERSION') ? File.read('VERSION') : ""
44
+
45
+ rdoc.rdoc_dir = 'rdoc'
46
+ rdoc.title = "xmlpipe2_indexer #{version}"
47
+ rdoc.rdoc_files.include('README*')
48
+ rdoc.rdoc_files.include('lib/**/*.rb')
49
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.1
@@ -0,0 +1,33 @@
1
+ indexer
2
+ {
3
+ <%= XMLPipe2::Configuration.indexer.map { |option, value| "#{option} = #{value}" }*"\n" rescue nil %>
4
+ }
5
+
6
+ searchd
7
+ {
8
+ <%= XMLPipe2::Configuration.searchd.map { |option, value| "#{option} = #{value}" }*"\n" rescue nil %>
9
+ }
10
+
11
+ <% index = clazz.to_s.downcase %>
12
+ source <%= index %>
13
+ {
14
+ type = xmlpipe2
15
+ xmlpipe_command = <%= %x(which cat).rstrip %> <%= '<%= xml_stream_path %%>' %>
16
+ xmlpipe_fixup_utf8 = 1
17
+ }
18
+
19
+ index <%= index %>
20
+ {
21
+ source = <%= index %>
22
+ path = <%= XMLPipe2::Configuration.index_path %>
23
+ charset_type = utf-8
24
+ <%= clazz.sphinx_index_options.map { |option, value| "#{option} = #{value}" }*"\n" %>
25
+ }
26
+
27
+ index <%= index %>_delta
28
+ {
29
+ source = <%= index %>
30
+ path = <%= XMLPipe2::Configuration.delta_index_path %>
31
+ charset_type = utf-8
32
+ <%= clazz.sphinx_index_options.map { |option, value| "#{option} = #{value}" }*"\n" %>
33
+ }
@@ -0,0 +1,10 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+
3
+ <sphinx:docset>
4
+
5
+ <sphinx:schema>
6
+ <%= fields.map { |index, _| %(<sphinx:field name="#{index}"/>) }*"\n" %>
7
+ <%= attrs.map { |attr, _| %(<sphinx:attr name="#{attr}" type="string"/>) }*"\n" %>
8
+ </sphinx:schema>
9
+
10
+ </sphinx:docset>
@@ -0,0 +1,15 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+
3
+ <sphinx:docset>
4
+
5
+ <sphinx:schema>
6
+ <%= fields.map { |index, _| %(<sphinx:field name="#{index}"/>) }*"\n" %>
7
+ <%= attrs.map { |attr, _| %(<sphinx:attr name="#{attr}" type="string"/>) }*"\n" %>
8
+ </sphinx:schema>
9
+
10
+ <sphinx:document id="<%= document_id %>">
11
+ <%= fields.map { |index, value| "<#{index}>#{value}</#{index}>" }*"\n" %>
12
+ <%= attrs.map { |attr, value| "<#{attr}>#{value}</#{attr}>" }*"\n" %>
13
+ </sphinx:document>
14
+
15
+ </sphinx:docset>
@@ -0,0 +1,23 @@
1
+ module XMLPipe2
2
+
3
+ class Configuration
4
+
5
+ class << self
6
+
7
+ def set
8
+ yield(self)
9
+ end
10
+
11
+ cattr_accessor :index_path
12
+ cattr_accessor :searchd
13
+ cattr_accessor :indexer
14
+
15
+ def delta_index_path
16
+ index_path + '_delta'
17
+ end
18
+
19
+ end
20
+
21
+ end
22
+
23
+ end
@@ -0,0 +1,32 @@
1
+ module XMLPipe2
2
+
3
+ class DeltaIndexer
4
+
5
+ def initialize instance
6
+ @instance = instance
7
+
8
+ @xml_stream = Tempfile.new('xml_stream.xml')
9
+ @xml_stream.write(instance.xml_stream)
10
+ @xml_stream.close
11
+
12
+ @sphinx_conf = Tempfile.new('sphinx.conf')
13
+ xml_stream_path = @xml_stream.path
14
+ @sphinx_conf.write(ERB.new(instance.class.sphinx_conf).result(binding))
15
+ @sphinx_conf.close
16
+ end
17
+
18
+ attr_reader :instance, :sphinx_conf, :xml_stream
19
+
20
+ def run
21
+ config = '-c ' + sphinx_conf.path
22
+ index = instance.class.to_s.downcase
23
+ system("$(which indexer) #{config} #{index}_delta")
24
+ system("$(which indexer) #{config} --merge #{index} #{index}_delta --rotate")
25
+ sphinx_conf.unlink
26
+ xml_stream.unlink
27
+ end
28
+
29
+ end
30
+
31
+ end
32
+
@@ -0,0 +1,28 @@
1
+ module XMLPipe2
2
+
3
+ class IndexBuilder
4
+
5
+ def initialize clazz
6
+ @clazz = clazz
7
+
8
+ @xml_schema = Tempfile.new('xml_schema.xml')
9
+ @xml_schema.write(clazz.xml_schema)
10
+ @xml_schema.close
11
+
12
+ @sphinx_conf = Tempfile.new('sphinx.conf')
13
+ xml_stream_path = @xml_schema.path
14
+ @sphinx_conf.write(ERB.new(clazz.sphinx_conf).result(binding))
15
+ @sphinx_conf.close
16
+ end
17
+
18
+ attr_reader :clazz, :sphinx_conf, :xml_schema
19
+
20
+ def build
21
+ system("$(which indexer) -c #{sphinx_conf.path} #{clazz.to_s.downcase}")
22
+ sphinx_conf.unlink
23
+ xml_schema.unlink
24
+ end
25
+
26
+ end
27
+
28
+ end
@@ -0,0 +1,21 @@
1
+ module XMLPipe2
2
+
3
+ class SphinxConf
4
+
5
+ TEMPLATE = File.read(File.expand_path(File.dirname(__FILE__) + '/../../erb/sphinx.conf.erb'))
6
+
7
+ def initialize(clazz)
8
+ @clazz = clazz
9
+ end
10
+
11
+ attr_reader :clazz
12
+
13
+ def generate
14
+ ERB.new(TEMPLATE).result(binding)
15
+ end
16
+
17
+ end
18
+
19
+ end
20
+
21
+
@@ -0,0 +1,52 @@
1
+ module XMLPipe2
2
+
3
+ attr_accessor :sphinx_indexes
4
+ attr_accessor :sphinx_index_options
5
+ attr_accessor :sphinx_attributes
6
+
7
+ def define_index(&block)
8
+
9
+ self.sphinx_indexes = []
10
+ self.sphinx_attributes = []
11
+ self.sphinx_index_options = {}
12
+
13
+ block.call
14
+
15
+ define_method :xml_stream do
16
+ XMLStream.new(self).generate
17
+ end
18
+
19
+ define_method :index! do
20
+ DeltaIndexer.new(self).run
21
+ end
22
+
23
+ class << self
24
+ define_method :sphinx_conf do
25
+ SphinxConf.new(self).generate
26
+ end
27
+
28
+ define_method :xml_schema do
29
+ XMLSchema.new(self).generate
30
+ end
31
+
32
+ define_method :create_index! do
33
+ IndexBuilder.new(self).build
34
+ end
35
+
36
+ end
37
+
38
+ end
39
+
40
+ def index method, options = { }
41
+ self.sphinx_indexes << { method: method, options: options }
42
+ end
43
+
44
+ def has method, options = { }
45
+ self.sphinx_attributes << { method: method, options: options }
46
+ end
47
+
48
+ def index_options options = { }
49
+ self.sphinx_index_options = options
50
+ end
51
+
52
+ end
@@ -0,0 +1,37 @@
1
+ module XMLPipe2
2
+
3
+ class XMLSchema < XMLStream
4
+
5
+ TEMPLATE = File.read(File.expand_path(File.dirname(__FILE__) + '/../../erb/xml_schema.xml.erb'))
6
+
7
+ def initialize(clazz)
8
+ @clazz = clazz
9
+ end
10
+
11
+ attr_reader :clazz
12
+
13
+ def generate
14
+ fields = clazz.sphinx_indexes.inject({ }) do |hash, index|
15
+ unless index[:options].has_key?(:as) and index[:options][:as] == :document_id
16
+ if index[:options].has_key?(:as)
17
+ hash.merge!(index[:options][:as] => nil)
18
+ else
19
+ hash.merge!(index[:method] => nil)
20
+ end
21
+ end
22
+ hash
23
+ end
24
+ attrs = clazz.sphinx_attributes.inject({ }) do |hash, attr|
25
+ if attr[:options].has_key?(:as)
26
+ hash.merge!(attr[:options][:as] => nil)
27
+ else
28
+ hash.merge!(attr[:method] => nil)
29
+ end
30
+ hash
31
+ end
32
+ ERB.new(TEMPLATE).result(binding)
33
+ end
34
+
35
+ end
36
+
37
+ end
@@ -0,0 +1,42 @@
1
+ module XMLPipe2
2
+
3
+ class XMLStream
4
+
5
+ TEMPLATE = File.read(File.expand_path(File.dirname(__FILE__) + '/../../erb/xml_stream.xml.erb'))
6
+
7
+ def initialize(instance)
8
+ @instance = instance
9
+ @document_id = instance.id
10
+ end
11
+
12
+ attr_reader :instance
13
+ attr_accessor :document_id
14
+
15
+ def generate
16
+ fields = instance.class.sphinx_indexes.inject({ }) do |hash, index|
17
+ if index[:options].has_key?(:as) and index[:options][:as] == :document_id
18
+ self.document_id = instance.send(index[:method])
19
+ else
20
+ if index[:options].has_key?(:as)
21
+ hash.merge!(index[:options][:as] => instance.send(index[:method]))
22
+ else
23
+ hash.merge!(index[:method] => instance.send(index[:method]))
24
+ end
25
+ end
26
+ hash
27
+ end
28
+ attrs = instance.class.sphinx_attributes.inject({ }) do |hash, attr|
29
+ if attr[:options].has_key?(:as)
30
+ hash.merge!(attr[:options][:as] => instance.send(attr[:method]))
31
+ else
32
+ hash.merge!(attr[:method] => instance.send(attr[:method]))
33
+ end
34
+ hash
35
+ end
36
+ ERB.new(TEMPLATE).result(binding)
37
+ end
38
+
39
+ end
40
+
41
+ end
42
+
@@ -0,0 +1,5 @@
1
+ require "active_support/core_ext/class/attribute_accessors"
2
+ require 'tempfile'
3
+ require 'erb'
4
+
5
+ Dir[File.join(File.dirname(__FILE__) + "/xml_pipe2", "**/*.rb")].each { |file| require file }
@@ -0,0 +1,12 @@
1
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
2
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
3
+ require 'rspec'
4
+ require 'xmlpipe2_indexer'
5
+
6
+ # Requires supporting files with custom matchers and macros, etc,
7
+ # in ./support/ and its subdirectories.
8
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}
9
+
10
+ RSpec.configure do |config|
11
+
12
+ end
@@ -0,0 +1,7 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
2
+
3
+ describe "Xmlpipe2Indexer" do
4
+ it "fails" do
5
+ fail "hey buddy, you should probably rename this file and start specing for real"
6
+ end
7
+ end
@@ -0,0 +1,71 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = "xmlpipe2_indexer"
8
+ s.version = "0.0.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Ludwig Bratke"]
12
+ s.date = "2012-05-01"
13
+ s.description = "xmlpipe2_indexer provides a small DSL which wrapps sphinx's xmlpipe2"
14
+ s.email = "bratke@servtag.com"
15
+ s.extra_rdoc_files = [
16
+ "LICENSE.txt",
17
+ "README.rdoc"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ ".rspec",
22
+ ".rvmrc",
23
+ "Gemfile",
24
+ "Gemfile.lock",
25
+ "LICENSE.txt",
26
+ "README.rdoc",
27
+ "Rakefile",
28
+ "VERSION",
29
+ "erb/sphinx.conf.erb",
30
+ "erb/xml_schema.xml.erb",
31
+ "erb/xml_stream.xml.erb",
32
+ "lib/xml_pipe2/configuration.rb",
33
+ "lib/xml_pipe2/delta_indexer.rb",
34
+ "lib/xml_pipe2/index_builder.rb",
35
+ "lib/xml_pipe2/sphinx_conf.rb",
36
+ "lib/xml_pipe2/xml_pipe2.rb",
37
+ "lib/xml_pipe2/xml_schema.rb",
38
+ "lib/xml_pipe2/xml_stream.rb",
39
+ "lib/xmlpipe2_indexer.rb",
40
+ "spec/spec_helper.rb",
41
+ "spec/xmlpipe2_indexer_spec.rb",
42
+ "xmlpipe2_indexer.gemspec"
43
+ ]
44
+ s.homepage = "http://github.com/EeCnee/xmlpipe2_indexer"
45
+ s.licenses = ["MIT"]
46
+ s.require_paths = ["lib"]
47
+ s.rubygems_version = "1.8.23"
48
+ s.summary = "xmlpipe2_indexer provides a small DSL which wrapps sphinx's xmlpipe2"
49
+
50
+ if s.respond_to? :specification_version then
51
+ s.specification_version = 3
52
+
53
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
54
+ s.add_runtime_dependency(%q<activesupport>, ["> 2.2.0"])
55
+ s.add_development_dependency(%q<rspec>, [">= 0"])
56
+ s.add_development_dependency(%q<bundler>, [">= 0"])
57
+ s.add_development_dependency(%q<jeweler>, [">= 0"])
58
+ else
59
+ s.add_dependency(%q<activesupport>, ["> 2.2.0"])
60
+ s.add_dependency(%q<rspec>, [">= 0"])
61
+ s.add_dependency(%q<bundler>, [">= 0"])
62
+ s.add_dependency(%q<jeweler>, [">= 0"])
63
+ end
64
+ else
65
+ s.add_dependency(%q<activesupport>, ["> 2.2.0"])
66
+ s.add_dependency(%q<rspec>, [">= 0"])
67
+ s.add_dependency(%q<bundler>, [">= 0"])
68
+ s.add_dependency(%q<jeweler>, [">= 0"])
69
+ end
70
+ end
71
+
metadata ADDED
@@ -0,0 +1,137 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: xmlpipe2_indexer
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Ludwig Bratke
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-05-01 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: activesupport
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>'
20
+ - !ruby/object:Gem::Version
21
+ version: 2.2.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: 2.2.0
30
+ - !ruby/object:Gem::Dependency
31
+ name: rspec
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ - !ruby/object:Gem::Dependency
47
+ name: bundler
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ - !ruby/object:Gem::Dependency
63
+ name: jeweler
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ type: :development
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ description: xmlpipe2_indexer provides a small DSL which wrapps sphinx's xmlpipe2
79
+ email: bratke@servtag.com
80
+ executables: []
81
+ extensions: []
82
+ extra_rdoc_files:
83
+ - LICENSE.txt
84
+ - README.rdoc
85
+ files:
86
+ - .document
87
+ - .rspec
88
+ - .rvmrc
89
+ - Gemfile
90
+ - Gemfile.lock
91
+ - LICENSE.txt
92
+ - README.rdoc
93
+ - Rakefile
94
+ - VERSION
95
+ - erb/sphinx.conf.erb
96
+ - erb/xml_schema.xml.erb
97
+ - erb/xml_stream.xml.erb
98
+ - lib/xml_pipe2/configuration.rb
99
+ - lib/xml_pipe2/delta_indexer.rb
100
+ - lib/xml_pipe2/index_builder.rb
101
+ - lib/xml_pipe2/sphinx_conf.rb
102
+ - lib/xml_pipe2/xml_pipe2.rb
103
+ - lib/xml_pipe2/xml_schema.rb
104
+ - lib/xml_pipe2/xml_stream.rb
105
+ - lib/xmlpipe2_indexer.rb
106
+ - spec/spec_helper.rb
107
+ - spec/xmlpipe2_indexer_spec.rb
108
+ - xmlpipe2_indexer.gemspec
109
+ homepage: http://github.com/EeCnee/xmlpipe2_indexer
110
+ licenses:
111
+ - MIT
112
+ post_install_message:
113
+ rdoc_options: []
114
+ require_paths:
115
+ - lib
116
+ required_ruby_version: !ruby/object:Gem::Requirement
117
+ none: false
118
+ requirements:
119
+ - - ! '>='
120
+ - !ruby/object:Gem::Version
121
+ version: '0'
122
+ segments:
123
+ - 0
124
+ hash: 1952783958797074807
125
+ required_rubygems_version: !ruby/object:Gem::Requirement
126
+ none: false
127
+ requirements:
128
+ - - ! '>='
129
+ - !ruby/object:Gem::Version
130
+ version: '0'
131
+ requirements: []
132
+ rubyforge_project:
133
+ rubygems_version: 1.8.23
134
+ signing_key:
135
+ specification_version: 3
136
+ summary: xmlpipe2_indexer provides a small DSL which wrapps sphinx's xmlpipe2
137
+ test_files: []