logstash-filter-sphinx 0.0.3
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.
- checksums.yaml +7 -0
- data/.gitignore +5 -0
- data/.idea/.name +1 -0
- data/.idea/.rakeTasks +7 -0
- data/.idea/encodings.xml +4 -0
- data/.idea/logstash-filter-sphinx.iml +48 -0
- data/.idea/misc.xml +4 -0
- data/.idea/modules.xml +8 -0
- data/.idea/runConfigurations/sphinx.xml +30 -0
- data/.idea/scopes/scope_settings.xml +5 -0
- data/.idea/vcs.xml +6 -0
- data/.idea/workspace.xml +708 -0
- data/CONTRIBUTORS +11 -0
- data/DEVELOPER.md +2 -0
- data/Gemfile +13 -0
- data/LICENSE +13 -0
- data/README.md +86 -0
- data/Rakefile +1 -0
- data/lib/logstash/filters/sphinx.rb +725 -0
- data/logstash-filter-sphinx.gemspec +29 -0
- data/spec/filters/sphinx_spec.rb +20 -0
- data/spec/spec_helper.rb +1 -0
- metadata +158 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 497a9312bcf075b040e0bd9b1115015e6e2a1651
|
4
|
+
data.tar.gz: 2b477bda7c416ea65e24331d58a7a5cd7d7b3bfa
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 3f12aa0746fcc4564bd5cad96b96eabb9868e0a827d890f3ce507ef1070bf29b5e3b2a9a320782ed64a3a87220a6aa96eb45932189f42f6a910b51a38774ad72
|
7
|
+
data.tar.gz: 9c51cffae0b23f8efdef3af27a9a61ee435e6d607503d87ca3fbeff0845fc6f0a0ec370ac2e714bb5c875f65e01f96874cc8c0df653c69334b49531072966ccd
|
data/.gitignore
ADDED
data/.idea/.name
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
logstash-filter-sphinx
|
data/.idea/.rakeTasks
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<Settings><!--This file was automatically generated by Ruby plugin.
|
3
|
+
You are allowed to:
|
4
|
+
1. Remove rake task
|
5
|
+
2. Add existing rake tasks
|
6
|
+
To add existing rake tasks automatically delete this file and reload the project.
|
7
|
+
--><RakeGroup description="" fullCmd="" taksId="rake" /></Settings>
|
data/.idea/encodings.xml
ADDED
@@ -0,0 +1,48 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<module type="RUBY_MODULE" version="4">
|
3
|
+
<component name="FacetManager">
|
4
|
+
<facet type="gem" name="Ruby Gem">
|
5
|
+
<configuration>
|
6
|
+
<option name="GEM_APP_ROOT_PATH" value="$MODULE_DIR$" />
|
7
|
+
<option name="GEM_APP_TEST_PATH" value="" />
|
8
|
+
<option name="GEM_APP_LIB_PATH" value="$MODULE_DIR$/lib" />
|
9
|
+
</configuration>
|
10
|
+
</facet>
|
11
|
+
</component>
|
12
|
+
<component name="ModuleRunConfigurationManager">
|
13
|
+
<configuration default="false" name="sphinx" type="RubyRunConfigurationType" factoryName="Ruby">
|
14
|
+
<module name="logstash-filter-sphinx" />
|
15
|
+
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
16
|
+
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="C:/logstash-1.5.0-rc3/bin" />
|
17
|
+
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
18
|
+
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
19
|
+
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
20
|
+
<envs>
|
21
|
+
<env name="RUBYLIB" value="C:\logstash-1.5.0-rc3\lib" />
|
22
|
+
<env name="JRUBY_BIN" value="C:\logstash-1.5.0-rc3\vendor\jruby\bin\jruby" />
|
23
|
+
<env name="VENDORED_JRUBY" value="1" />
|
24
|
+
<env name="SCRIPT_DIR" value="C:\logstash-1.5.0-rc3\bin\" />
|
25
|
+
<env name="LS_HOME" value="C:\logstash-1.5.0-rc3" />
|
26
|
+
<env name="LS_MAX_MEM" value="1g" />
|
27
|
+
<env name="LS_MIN_MEM" value="256m" />
|
28
|
+
</envs>
|
29
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
30
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
31
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov" />
|
32
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
33
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="C:/logstash-1.5.0-rc3/lib/logstash/runner.rb" />
|
34
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="agent -f ..\logstash.conf -p C:\Users\tak\RubymineProjects\logstash-filter-sphinx\lib" />
|
35
|
+
<RunnerSettings RunnerId="RubyDebugRunner" />
|
36
|
+
<RunnerSettings RunnerId="RubyRunner" />
|
37
|
+
<ConfigurationWrapper RunnerId="RubyDebugRunner" />
|
38
|
+
<ConfigurationWrapper RunnerId="RubyRunner" />
|
39
|
+
<method />
|
40
|
+
</configuration>
|
41
|
+
</component>
|
42
|
+
<component name="NewModuleRootManager">
|
43
|
+
<content url="file://$MODULE_DIR$" />
|
44
|
+
<orderEntry type="jdk" jdkName="jruby-1.7.19-p551" jdkType="JRUBY_SDK" />
|
45
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
46
|
+
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.9.6, jruby-1.7.19-p551) [gem]" level="application" />
|
47
|
+
</component>
|
48
|
+
</module>
|
data/.idea/misc.xml
ADDED
data/.idea/modules.xml
ADDED
@@ -0,0 +1,8 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="ProjectModuleManager">
|
4
|
+
<modules>
|
5
|
+
<module fileurl="file://$PROJECT_DIR$/.idea/logstash-filter-sphinx.iml" filepath="$PROJECT_DIR$/.idea/logstash-filter-sphinx.iml" />
|
6
|
+
</modules>
|
7
|
+
</component>
|
8
|
+
</project>
|
@@ -0,0 +1,30 @@
|
|
1
|
+
<component name="ProjectRunConfigurationManager">
|
2
|
+
<configuration default="false" name="sphinx" type="RubyRunConfigurationType" factoryName="Ruby">
|
3
|
+
<module name="logstash-filter-sphinx" />
|
4
|
+
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
5
|
+
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="C:/logstash-1.5.0-rc3/bin" />
|
6
|
+
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
7
|
+
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
8
|
+
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
9
|
+
<envs>
|
10
|
+
<env name="RUBYLIB" value="C:\logstash-1.5.0-rc3\lib" />
|
11
|
+
<env name="JRUBY_BIN" value="C:\logstash-1.5.0-rc3\vendor\jruby\bin\jruby" />
|
12
|
+
<env name="VENDORED_JRUBY" value="1" />
|
13
|
+
<env name="SCRIPT_DIR" value="C:\logstash-1.5.0-rc3\bin\" />
|
14
|
+
<env name="LS_HOME" value="C:\logstash-1.5.0-rc3" />
|
15
|
+
<env name="LS_MAX_MEM" value="1g" />
|
16
|
+
<env name="LS_MIN_MEM" value="256m" />
|
17
|
+
</envs>
|
18
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
19
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
20
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov" />
|
21
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
22
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="C:/logstash-1.5.0-rc3/lib/logstash/runner.rb" />
|
23
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="agent -f ..\logstash.conf -p C:\Users\tak\RubymineProjects\logstash-filter-sphinx\lib" />
|
24
|
+
<RunnerSettings RunnerId="RubyDebugRunner" />
|
25
|
+
<RunnerSettings RunnerId="RubyRunner" />
|
26
|
+
<ConfigurationWrapper RunnerId="RubyDebugRunner" />
|
27
|
+
<ConfigurationWrapper RunnerId="RubyRunner" />
|
28
|
+
<method />
|
29
|
+
</configuration>
|
30
|
+
</component>
|