company-mapping 0.1.0 → 0.2.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.
- checksums.yaml +4 -4
- data/.idea/company-mapping.iml +35 -1
- data/.idea/workspace.xml +363 -105
- data/company-mapping.gemspec +27 -27
- data/lib/company/mapping.rb +20 -18
- data/lib/company/mapping/company_mapper.rb +10 -18
- data/lib/company/mapping/document_utils/basic_tokenizer.rb +19 -24
- data/lib/company/mapping/document_utils/company_corpus.rb +32 -0
- data/lib/company/mapping/document_utils/corpus.rb +3 -22
- data/lib/company/mapping/document_utils/text_document.rb +1 -6
- data/lib/company/mapping/tfidf/idf/inverse_document_frequency.rb +6 -32
- data/lib/company/mapping/tfidf/tf/normalized_term_frequency.rb +2 -13
- data/lib/company/mapping/tfidf/tf/term_frequency.rb +6 -19
- data/lib/company/mapping/tfidf/tfidf.rb +20 -48
- data/lib/company/mapping/vector_similarity/cosine_similarity.rb +9 -21
- data/lib/company/mapping/version.rb +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b4fe8d9a5fb200260baa88a3562aab5547725e44
|
|
4
|
+
data.tar.gz: 31962c227941a573077dc5f5f4eba45ccb8f0970
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 741104b4a9ac653258bbd05b77fad390457925fcfb94476b2aa51a0c08f39e7e109a3668c7bb779ddc33c6ba2743c6fad872dd90f13692c40807f930de332bc3
|
|
7
|
+
data.tar.gz: c08624f799442dfd4cdcf6a772d620e5166cc2b1edd4aa731c447937fc3aa0b549fc63108314eaccf40cb9f3a440b714f8daf899e723248dbcaac84472e61884
|
data/.idea/company-mapping.iml
CHANGED
|
@@ -16,13 +16,47 @@
|
|
|
16
16
|
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
|
17
17
|
<method />
|
|
18
18
|
</configuration>
|
|
19
|
+
<configuration default="false" name="Run spec 'company_mapper_spec': company-mapping" type="RSpecRunConfigurationType" factoryName="RSpec" temporary="true">
|
|
20
|
+
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
|
21
|
+
<module name="company-mapping" />
|
|
22
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
|
23
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$MODULE_DIR$" />
|
|
24
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
|
25
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
|
26
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
|
27
|
+
<envs>
|
|
28
|
+
<env name="JRUBY_OPTS" value="-X+O" />
|
|
29
|
+
</envs>
|
|
30
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
|
|
31
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
|
32
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov" />
|
|
33
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
|
34
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="$MODULE_DIR$/spec/company_mapper_spec.rb" />
|
|
35
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
|
36
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
|
37
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
|
|
38
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
|
39
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
|
40
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
|
41
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
|
42
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
|
43
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
|
44
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
|
45
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
|
46
|
+
<method />
|
|
47
|
+
</configuration>
|
|
19
48
|
</component>
|
|
20
49
|
<component name="NewModuleRootManager">
|
|
21
50
|
<content url="file://$MODULE_DIR$" />
|
|
22
51
|
<orderEntry type="inheritedJdk" />
|
|
23
52
|
<orderEntry type="sourceFolder" forTests="false" />
|
|
24
53
|
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.14.6, ruby-2.3.3-p222) [gem]" level="application" />
|
|
25
|
-
<orderEntry type="library" scope="PROVIDED" name="
|
|
54
|
+
<orderEntry type="library" scope="PROVIDED" name="diff-lcs (v1.3, ruby-2.3.3-p222) [gem]" level="application" />
|
|
26
55
|
<orderEntry type="library" scope="PROVIDED" name="rake (v10.4.2, ruby-2.3.3-p222) [gem]" level="application" />
|
|
56
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec (v3.5.0, ruby-2.3.3-p222) [gem]" level="application" />
|
|
57
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-core (v3.5.4, ruby-2.3.3-p222) [gem]" level="application" />
|
|
58
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-expectations (v3.5.0, ruby-2.3.3-p222) [gem]" level="application" />
|
|
59
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-mocks (v3.5.0, ruby-2.3.3-p222) [gem]" level="application" />
|
|
60
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-support (v3.5.0, ruby-2.3.3-p222) [gem]" level="application" />
|
|
27
61
|
</component>
|
|
28
62
|
</module>
|
data/.idea/workspace.xml
CHANGED
|
@@ -1,7 +1,18 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
2
|
<project version="4">
|
|
3
|
+
<component name="AutoTestManager">
|
|
4
|
+
<enabled-run-configurations>
|
|
5
|
+
<run-configuration type="RSpecRunConfigurationType" name="Run spec 'company_mapper_spec': company-mapping" />
|
|
6
|
+
</enabled-run-configurations>
|
|
7
|
+
</component>
|
|
3
8
|
<component name="ChangeListManager">
|
|
4
9
|
<list default="true" id="1b0ea326-c2eb-4c90-966b-e2a1c9adc35d" name="Default" comment="">
|
|
10
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/lib/company/mapping/document_utils/company_corpus.rb" />
|
|
11
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/spec/company_mapper_spec.rb" />
|
|
12
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/spec/spec_helper.rb" />
|
|
13
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/spec/support/data/list_of_wr_companies.csv" />
|
|
14
|
+
<change type="DELETED" beforePath="$PROJECT_DIR$/test/company/mapping_test.rb" afterPath="" />
|
|
15
|
+
<change type="DELETED" beforePath="$PROJECT_DIR$/test/test_helper.rb" afterPath="" />
|
|
5
16
|
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/.idea/company-mapping.iml" afterPath="$PROJECT_DIR$/.idea/company-mapping.iml" />
|
|
6
17
|
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/.idea/workspace.xml" afterPath="$PROJECT_DIR$/.idea/workspace.xml" />
|
|
7
18
|
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/README.md" afterPath="$PROJECT_DIR$/README.md" />
|
|
@@ -16,6 +27,7 @@
|
|
|
16
27
|
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/company/mapping/tfidf/tf/term_frequency.rb" afterPath="$PROJECT_DIR$/lib/company/mapping/tfidf/tf/term_frequency.rb" />
|
|
17
28
|
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/company/mapping/tfidf/tfidf.rb" afterPath="$PROJECT_DIR$/lib/company/mapping/tfidf/tfidf.rb" />
|
|
18
29
|
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/company/mapping/vector_similarity/cosine_similarity.rb" afterPath="$PROJECT_DIR$/lib/company/mapping/vector_similarity/cosine_similarity.rb" />
|
|
30
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/company/mapping/version.rb" afterPath="$PROJECT_DIR$/lib/company/mapping/version.rb" />
|
|
19
31
|
</list>
|
|
20
32
|
<option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
|
|
21
33
|
<option name="TRACKING_ENABLED" value="true" />
|
|
@@ -25,6 +37,7 @@
|
|
|
25
37
|
<option name="LAST_RESOLUTION" value="IGNORE" />
|
|
26
38
|
</component>
|
|
27
39
|
<component name="CoverageDataManager">
|
|
40
|
+
<SUITE FILE_PATH="coverage/company-mapping@Run_spec__company_mapper_spec___company_mapping.coverage" NAME="Run spec 'company_mapper_spec': company-mapping Coverage Results" MODIFIED="1490105957872" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="company-mapping" />
|
|
28
41
|
<SUITE FILE_PATH="coverage/company-mapping@mapping.coverage" NAME="mapping Coverage Results" MODIFIED="1490094044525" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$/lib/company" MODULE_NAME="company-mapping" />
|
|
29
42
|
</component>
|
|
30
43
|
<component name="CreatePatchCommitExecutor">
|
|
@@ -33,101 +46,98 @@
|
|
|
33
46
|
<component name="ExecutionTargetManager" SELECTED_TARGET="default_target" />
|
|
34
47
|
<component name="FileEditorManager">
|
|
35
48
|
<leaf SIDE_TABS_SIZE_LIMIT_KEY="300">
|
|
36
|
-
<file leaf-file-name="
|
|
37
|
-
<entry file="file://$PROJECT_DIR$/lib/company/mapping/
|
|
49
|
+
<file leaf-file-name="corpus.rb" pinned="false" current-in-tab="false">
|
|
50
|
+
<entry file="file://$PROJECT_DIR$/lib/company/mapping/document_utils/corpus.rb">
|
|
38
51
|
<provider selected="true" editor-type-id="text-editor">
|
|
39
|
-
<state relative-caret-position="
|
|
40
|
-
<caret line="
|
|
52
|
+
<state relative-caret-position="119">
|
|
53
|
+
<caret line="7" column="0" lean-forward="true" selection-start-line="7" selection-start-column="0" selection-end-line="7" selection-end-column="0" />
|
|
41
54
|
<folding />
|
|
42
55
|
</state>
|
|
43
56
|
</provider>
|
|
44
57
|
</entry>
|
|
45
58
|
</file>
|
|
46
|
-
<file leaf-file-name="
|
|
47
|
-
<entry file="file://$PROJECT_DIR$/lib/company/mapping/
|
|
59
|
+
<file leaf-file-name="inverse_document_frequency.rb" pinned="false" current-in-tab="false">
|
|
60
|
+
<entry file="file://$PROJECT_DIR$/lib/company/mapping/tfidf/idf/inverse_document_frequency.rb">
|
|
48
61
|
<provider selected="true" editor-type-id="text-editor">
|
|
49
|
-
<state relative-caret-position="
|
|
50
|
-
<caret line="
|
|
62
|
+
<state relative-caret-position="85">
|
|
63
|
+
<caret line="5" column="94" lean-forward="false" selection-start-line="5" selection-start-column="94" selection-end-line="5" selection-end-column="94" />
|
|
51
64
|
<folding />
|
|
52
65
|
</state>
|
|
53
66
|
</provider>
|
|
54
67
|
</entry>
|
|
55
68
|
</file>
|
|
56
|
-
<file leaf-file-name="
|
|
57
|
-
<entry file="file://$PROJECT_DIR$/lib/company/mapping/
|
|
69
|
+
<file leaf-file-name="tfidf.rb" pinned="false" current-in-tab="false">
|
|
70
|
+
<entry file="file://$PROJECT_DIR$/lib/company/mapping/tfidf/tfidf.rb">
|
|
58
71
|
<provider selected="true" editor-type-id="text-editor">
|
|
59
|
-
<state relative-caret-position="
|
|
60
|
-
<caret line="
|
|
72
|
+
<state relative-caret-position="-301">
|
|
73
|
+
<caret line="4" column="119" lean-forward="false" selection-start-line="4" selection-start-column="119" selection-end-line="4" selection-end-column="119" />
|
|
61
74
|
<folding />
|
|
62
75
|
</state>
|
|
63
76
|
</provider>
|
|
64
77
|
</entry>
|
|
65
78
|
</file>
|
|
66
|
-
<file leaf-file-name="
|
|
67
|
-
<entry file="file://$PROJECT_DIR$/lib/company/mapping/tfidf/tf/
|
|
79
|
+
<file leaf-file-name="term_frequency.rb" pinned="false" current-in-tab="false">
|
|
80
|
+
<entry file="file://$PROJECT_DIR$/lib/company/mapping/tfidf/tf/term_frequency.rb">
|
|
68
81
|
<provider selected="true" editor-type-id="text-editor">
|
|
69
|
-
<state relative-caret-position="
|
|
70
|
-
<caret line="
|
|
82
|
+
<state relative-caret-position="374">
|
|
83
|
+
<caret line="22" column="0" lean-forward="false" selection-start-line="22" selection-start-column="0" selection-end-line="22" selection-end-column="0" />
|
|
71
84
|
<folding />
|
|
72
85
|
</state>
|
|
73
86
|
</provider>
|
|
74
87
|
</entry>
|
|
75
88
|
</file>
|
|
76
|
-
<file leaf-file-name="
|
|
77
|
-
<entry file="file://$PROJECT_DIR$/lib/company/mapping/
|
|
89
|
+
<file leaf-file-name="company_mapper.rb" pinned="false" current-in-tab="false">
|
|
90
|
+
<entry file="file://$PROJECT_DIR$/lib/company/mapping/company_mapper.rb">
|
|
78
91
|
<provider selected="true" editor-type-id="text-editor">
|
|
79
|
-
<state relative-caret-position="
|
|
80
|
-
<caret line="
|
|
92
|
+
<state relative-caret-position="515">
|
|
93
|
+
<caret line="32" column="0" lean-forward="false" selection-start-line="32" selection-start-column="0" selection-end-line="32" selection-end-column="0" />
|
|
81
94
|
<folding />
|
|
82
95
|
</state>
|
|
83
96
|
</provider>
|
|
84
97
|
</entry>
|
|
85
98
|
</file>
|
|
86
|
-
<file leaf-file-name="
|
|
87
|
-
<entry file="file://$PROJECT_DIR$/
|
|
99
|
+
<file leaf-file-name="version.rb" pinned="false" current-in-tab="false">
|
|
100
|
+
<entry file="file://$PROJECT_DIR$/lib/company/mapping/version.rb">
|
|
88
101
|
<provider selected="true" editor-type-id="text-editor">
|
|
89
|
-
<state relative-caret-position="
|
|
90
|
-
<caret line="
|
|
102
|
+
<state relative-caret-position="34">
|
|
103
|
+
<caret line="2" column="18" lean-forward="false" selection-start-line="2" selection-start-column="18" selection-end-line="2" selection-end-column="18" />
|
|
91
104
|
<folding />
|
|
92
105
|
</state>
|
|
93
106
|
</provider>
|
|
94
107
|
</entry>
|
|
95
108
|
</file>
|
|
96
|
-
<file leaf-file-name="
|
|
97
|
-
<entry file="file://$PROJECT_DIR$/company
|
|
109
|
+
<file leaf-file-name="cosine_similarity.rb" pinned="false" current-in-tab="false">
|
|
110
|
+
<entry file="file://$PROJECT_DIR$/lib/company/mapping/vector_similarity/cosine_similarity.rb">
|
|
98
111
|
<provider selected="true" editor-type-id="text-editor">
|
|
99
|
-
<state relative-caret-position="
|
|
100
|
-
<caret line="
|
|
112
|
+
<state relative-caret-position="51">
|
|
113
|
+
<caret line="3" column="4" lean-forward="false" selection-start-line="3" selection-start-column="4" selection-end-line="3" selection-end-column="4" />
|
|
101
114
|
<folding />
|
|
102
115
|
</state>
|
|
103
116
|
</provider>
|
|
104
117
|
</entry>
|
|
105
118
|
</file>
|
|
106
|
-
<file leaf-file-name="
|
|
107
|
-
<entry file="file://$PROJECT_DIR$/
|
|
108
|
-
<provider selected="true" editor-type-id="
|
|
109
|
-
<state
|
|
110
|
-
<
|
|
111
|
-
|
|
112
|
-
<folding />
|
|
113
|
-
</first_editor>
|
|
114
|
-
<second_editor />
|
|
119
|
+
<file leaf-file-name="normalized_term_frequency.rb" pinned="false" current-in-tab="false">
|
|
120
|
+
<entry file="file://$PROJECT_DIR$/lib/company/mapping/tfidf/tf/normalized_term_frequency.rb">
|
|
121
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
122
|
+
<state relative-caret-position="204">
|
|
123
|
+
<caret line="12" column="9" lean-forward="false" selection-start-line="12" selection-start-column="9" selection-end-line="12" selection-end-column="9" />
|
|
124
|
+
<folding />
|
|
115
125
|
</state>
|
|
116
126
|
</provider>
|
|
117
127
|
</entry>
|
|
118
128
|
</file>
|
|
119
|
-
<file leaf-file-name="mapping.rb" pinned="false" current-in-tab="
|
|
129
|
+
<file leaf-file-name="mapping.rb" pinned="false" current-in-tab="true">
|
|
120
130
|
<entry file="file://$PROJECT_DIR$/lib/company/mapping.rb">
|
|
121
131
|
<provider selected="true" editor-type-id="text-editor">
|
|
122
132
|
<state relative-caret-position="102">
|
|
123
|
-
<caret line="6" column="
|
|
133
|
+
<caret line="6" column="12" lean-forward="false" selection-start-line="6" selection-start-column="12" selection-end-line="6" selection-end-column="12" />
|
|
124
134
|
<folding />
|
|
125
135
|
</state>
|
|
126
136
|
</provider>
|
|
127
137
|
</entry>
|
|
128
138
|
</file>
|
|
129
|
-
<file leaf-file-name="
|
|
130
|
-
<entry file="file://$PROJECT_DIR$/lib/company/mapping/
|
|
139
|
+
<file leaf-file-name="company_corpus.rb" pinned="false" current-in-tab="false">
|
|
140
|
+
<entry file="file://$PROJECT_DIR$/lib/company/mapping/document_utils/company_corpus.rb">
|
|
131
141
|
<provider selected="true" editor-type-id="text-editor">
|
|
132
142
|
<state relative-caret-position="0">
|
|
133
143
|
<caret line="0" column="0" lean-forward="false" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
|
@@ -144,18 +154,20 @@
|
|
|
144
154
|
<component name="IdeDocumentHistory">
|
|
145
155
|
<option name="CHANGED_PATHS">
|
|
146
156
|
<list>
|
|
147
|
-
<option value="$PROJECT_DIR$/
|
|
157
|
+
<option value="$PROJECT_DIR$/README.md" />
|
|
158
|
+
<option value="$PROJECT_DIR$/company-mapping.gemspec" />
|
|
148
159
|
<option value="$PROJECT_DIR$/lib/company/mapping/document_utils/basic_tokenizer.rb" />
|
|
160
|
+
<option value="$PROJECT_DIR$/lib/company/mapping/document_utils/corpus.rb" />
|
|
149
161
|
<option value="$PROJECT_DIR$/lib/company/mapping/document_utils/text_document.rb" />
|
|
162
|
+
<option value="$PROJECT_DIR$/lib/company/mapping/tfidf/tf/normalized_term_frequency.rb" />
|
|
150
163
|
<option value="$PROJECT_DIR$/lib/company/mapping/tfidf/idf/inverse_document_frequency.rb" />
|
|
164
|
+
<option value="$PROJECT_DIR$/lib/company/mapping/tfidf/tf/term_frequency.rb" />
|
|
151
165
|
<option value="$PROJECT_DIR$/lib/company/mapping/tfidf/tfidf.rb" />
|
|
152
|
-
<option value="$PROJECT_DIR$/lib/company/mapping/company_mapper.rb" />
|
|
153
166
|
<option value="$PROJECT_DIR$/lib/company/mapping/vector_similarity/cosine_similarity.rb" />
|
|
154
|
-
<option value="$PROJECT_DIR$/lib/company/mapping/
|
|
167
|
+
<option value="$PROJECT_DIR$/lib/company/mapping/company_mapper.rb" />
|
|
168
|
+
<option value="$PROJECT_DIR$/lib/company/mapping/version.rb" />
|
|
169
|
+
<option value="$PROJECT_DIR$/lib/company/mapping/document_utils/company_corpus.rb" />
|
|
155
170
|
<option value="$PROJECT_DIR$/lib/company/mapping.rb" />
|
|
156
|
-
<option value="$PROJECT_DIR$/lib/company/mapping/tfidf/tf/term_frequency.rb" />
|
|
157
|
-
<option value="$PROJECT_DIR$/README.md" />
|
|
158
|
-
<option value="$PROJECT_DIR$/company-mapping.gemspec" />
|
|
159
171
|
</list>
|
|
160
172
|
</option>
|
|
161
173
|
</component>
|
|
@@ -211,6 +223,20 @@
|
|
|
211
223
|
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
212
224
|
</PATH_ELEMENT>
|
|
213
225
|
</PATH>
|
|
226
|
+
<PATH>
|
|
227
|
+
<PATH_ELEMENT>
|
|
228
|
+
<option name="myItemId" value="company-mapping" />
|
|
229
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
230
|
+
</PATH_ELEMENT>
|
|
231
|
+
<PATH_ELEMENT>
|
|
232
|
+
<option name="myItemId" value="company-mapping" />
|
|
233
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
234
|
+
</PATH_ELEMENT>
|
|
235
|
+
<PATH_ELEMENT>
|
|
236
|
+
<option name="myItemId" value="spec" />
|
|
237
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
238
|
+
</PATH_ELEMENT>
|
|
239
|
+
</PATH>
|
|
214
240
|
<PATH>
|
|
215
241
|
<PATH_ELEMENT>
|
|
216
242
|
<option name="myItemId" value="company-mapping" />
|
|
@@ -251,6 +277,32 @@
|
|
|
251
277
|
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
252
278
|
</PATH_ELEMENT>
|
|
253
279
|
</PATH>
|
|
280
|
+
<PATH>
|
|
281
|
+
<PATH_ELEMENT>
|
|
282
|
+
<option name="myItemId" value="company-mapping" />
|
|
283
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
284
|
+
</PATH_ELEMENT>
|
|
285
|
+
<PATH_ELEMENT>
|
|
286
|
+
<option name="myItemId" value="company-mapping" />
|
|
287
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
288
|
+
</PATH_ELEMENT>
|
|
289
|
+
<PATH_ELEMENT>
|
|
290
|
+
<option name="myItemId" value="lib" />
|
|
291
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
292
|
+
</PATH_ELEMENT>
|
|
293
|
+
<PATH_ELEMENT>
|
|
294
|
+
<option name="myItemId" value="company" />
|
|
295
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
296
|
+
</PATH_ELEMENT>
|
|
297
|
+
<PATH_ELEMENT>
|
|
298
|
+
<option name="myItemId" value="mapping" />
|
|
299
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
300
|
+
</PATH_ELEMENT>
|
|
301
|
+
<PATH_ELEMENT>
|
|
302
|
+
<option name="myItemId" value="vector_similarity" />
|
|
303
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
304
|
+
</PATH_ELEMENT>
|
|
305
|
+
</PATH>
|
|
254
306
|
<PATH>
|
|
255
307
|
<PATH_ELEMENT>
|
|
256
308
|
<option name="myItemId" value="company-mapping" />
|
|
@@ -307,6 +359,62 @@
|
|
|
307
359
|
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
308
360
|
</PATH_ELEMENT>
|
|
309
361
|
</PATH>
|
|
362
|
+
<PATH>
|
|
363
|
+
<PATH_ELEMENT>
|
|
364
|
+
<option name="myItemId" value="company-mapping" />
|
|
365
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
366
|
+
</PATH_ELEMENT>
|
|
367
|
+
<PATH_ELEMENT>
|
|
368
|
+
<option name="myItemId" value="company-mapping" />
|
|
369
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
370
|
+
</PATH_ELEMENT>
|
|
371
|
+
<PATH_ELEMENT>
|
|
372
|
+
<option name="myItemId" value="lib" />
|
|
373
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
374
|
+
</PATH_ELEMENT>
|
|
375
|
+
<PATH_ELEMENT>
|
|
376
|
+
<option name="myItemId" value="company" />
|
|
377
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
378
|
+
</PATH_ELEMENT>
|
|
379
|
+
<PATH_ELEMENT>
|
|
380
|
+
<option name="myItemId" value="mapping" />
|
|
381
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
382
|
+
</PATH_ELEMENT>
|
|
383
|
+
<PATH_ELEMENT>
|
|
384
|
+
<option name="myItemId" value="tfidf" />
|
|
385
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
386
|
+
</PATH_ELEMENT>
|
|
387
|
+
<PATH_ELEMENT>
|
|
388
|
+
<option name="myItemId" value="idf" />
|
|
389
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
390
|
+
</PATH_ELEMENT>
|
|
391
|
+
</PATH>
|
|
392
|
+
<PATH>
|
|
393
|
+
<PATH_ELEMENT>
|
|
394
|
+
<option name="myItemId" value="company-mapping" />
|
|
395
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
396
|
+
</PATH_ELEMENT>
|
|
397
|
+
<PATH_ELEMENT>
|
|
398
|
+
<option name="myItemId" value="company-mapping" />
|
|
399
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
400
|
+
</PATH_ELEMENT>
|
|
401
|
+
<PATH_ELEMENT>
|
|
402
|
+
<option name="myItemId" value="lib" />
|
|
403
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
404
|
+
</PATH_ELEMENT>
|
|
405
|
+
<PATH_ELEMENT>
|
|
406
|
+
<option name="myItemId" value="company" />
|
|
407
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
408
|
+
</PATH_ELEMENT>
|
|
409
|
+
<PATH_ELEMENT>
|
|
410
|
+
<option name="myItemId" value="mapping" />
|
|
411
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
412
|
+
</PATH_ELEMENT>
|
|
413
|
+
<PATH_ELEMENT>
|
|
414
|
+
<option name="myItemId" value="document_utils" />
|
|
415
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
416
|
+
</PATH_ELEMENT>
|
|
417
|
+
</PATH>
|
|
310
418
|
<PATH>
|
|
311
419
|
<PATH_ELEMENT>
|
|
312
420
|
<option name="myItemId" value="company-mapping" />
|
|
@@ -330,13 +438,14 @@
|
|
|
330
438
|
<property name="nodejs_interpreter_path" value="C:/Program Files/nodejs/node" />
|
|
331
439
|
<property name="js.eslint.eslintPackage" value="" />
|
|
332
440
|
<property name="js-jscs-nodeInterpreter" value="C:\Program Files\nodejs\node.exe" />
|
|
441
|
+
<property name="settings.editor.selected.configurable" value="preferences.keymap" />
|
|
333
442
|
</component>
|
|
334
443
|
<component name="RecentsManager">
|
|
335
444
|
<key name="CopyFile.RECENT_KEYS">
|
|
336
445
|
<recent name="C:\Users\vasgat\RubymineProjects\company-mapping\lib\company\mapping" />
|
|
337
446
|
</key>
|
|
338
447
|
</component>
|
|
339
|
-
<component name="RunManager" selected="
|
|
448
|
+
<component name="RunManager" selected="RSpec.Run spec 'company_mapper_spec': company-mapping">
|
|
340
449
|
<configuration default="false" name="mapping" type="RubyRunConfigurationType" factoryName="Ruby" temporary="true">
|
|
341
450
|
<module name="company-mapping" />
|
|
342
451
|
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
|
@@ -352,6 +461,35 @@
|
|
|
352
461
|
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
|
353
462
|
<method />
|
|
354
463
|
</configuration>
|
|
464
|
+
<configuration default="false" name="Run spec 'company_mapper_spec': company-mapping" type="RSpecRunConfigurationType" factoryName="RSpec" temporary="true">
|
|
465
|
+
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
|
466
|
+
<module name="company-mapping" />
|
|
467
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
|
468
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$MODULE_DIR$" />
|
|
469
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
|
470
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
|
471
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
|
472
|
+
<envs>
|
|
473
|
+
<env name="JRUBY_OPTS" value="-X+O" />
|
|
474
|
+
</envs>
|
|
475
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
|
|
476
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
|
477
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov" />
|
|
478
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
|
479
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="$MODULE_DIR$/spec/company_mapper_spec.rb" />
|
|
480
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
|
481
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
|
482
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
|
|
483
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
|
484
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
|
485
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
|
486
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
|
487
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
|
488
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
|
489
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
|
490
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
|
491
|
+
<method />
|
|
492
|
+
</configuration>
|
|
355
493
|
<configuration default="true" type="CucumberRunConfigurationType" factoryName="Cucumber">
|
|
356
494
|
<predefined_log_file id="RUBY_CUCUMBER" enabled="true" />
|
|
357
495
|
<module name="" />
|
|
@@ -391,6 +529,33 @@
|
|
|
391
529
|
<configuration default="true" type="JavascriptDebugType" factoryName="JavaScript Debug">
|
|
392
530
|
<method />
|
|
393
531
|
</configuration>
|
|
532
|
+
<configuration default="true" type="RSpecRunConfigurationType" factoryName="RSpec">
|
|
533
|
+
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
|
534
|
+
<module name="" />
|
|
535
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
|
536
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
|
537
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
|
538
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
|
539
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
|
540
|
+
<envs />
|
|
541
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
|
542
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
|
543
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov" />
|
|
544
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
|
545
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
|
546
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
|
547
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
|
548
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
|
|
549
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
|
550
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
|
551
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
|
552
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
|
553
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
|
554
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
|
555
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
|
556
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
|
557
|
+
<method />
|
|
558
|
+
</configuration>
|
|
394
559
|
<configuration default="true" type="RubyRunConfigurationType" factoryName="Ruby">
|
|
395
560
|
<module name="" />
|
|
396
561
|
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
|
@@ -445,12 +610,14 @@
|
|
|
445
610
|
<envs />
|
|
446
611
|
<method />
|
|
447
612
|
</configuration>
|
|
448
|
-
<list size="
|
|
613
|
+
<list size="2">
|
|
449
614
|
<item index="0" class="java.lang.String" itemvalue="Ruby.mapping" />
|
|
615
|
+
<item index="1" class="java.lang.String" itemvalue="RSpec.Run spec 'company_mapper_spec': company-mapping" />
|
|
450
616
|
</list>
|
|
451
617
|
<recent_temporary>
|
|
452
|
-
<list size="
|
|
453
|
-
<item index="0" class="java.lang.String" itemvalue="
|
|
618
|
+
<list size="2">
|
|
619
|
+
<item index="0" class="java.lang.String" itemvalue="RSpec.Run spec 'company_mapper_spec': company-mapping" />
|
|
620
|
+
<item index="1" class="java.lang.String" itemvalue="Ruby.mapping" />
|
|
454
621
|
</list>
|
|
455
622
|
</recent_temporary>
|
|
456
623
|
</component>
|
|
@@ -466,23 +633,92 @@
|
|
|
466
633
|
<updated>1490091405243</updated>
|
|
467
634
|
<workItem from="1490091406885" duration="1302000" />
|
|
468
635
|
<workItem from="1490093277867" duration="45000" />
|
|
469
|
-
<workItem from="1490093333788" duration="
|
|
636
|
+
<workItem from="1490093333788" duration="8290000" />
|
|
637
|
+
</task>
|
|
638
|
+
<task id="LOCAL-00001" summary=".gemspec updated">
|
|
639
|
+
<created>1490095337026</created>
|
|
640
|
+
<option name="number" value="00001" />
|
|
641
|
+
<option name="presentableId" value="LOCAL-00001" />
|
|
642
|
+
<option name="project" value="LOCAL" />
|
|
643
|
+
<updated>1490095337026</updated>
|
|
644
|
+
</task>
|
|
645
|
+
<task id="LOCAL-00002" summary="mapping updated">
|
|
646
|
+
<created>1490095941749</created>
|
|
647
|
+
<option name="number" value="00002" />
|
|
648
|
+
<option name="presentableId" value="LOCAL-00002" />
|
|
649
|
+
<option name="project" value="LOCAL" />
|
|
650
|
+
<updated>1490095941749</updated>
|
|
651
|
+
</task>
|
|
652
|
+
<task id="LOCAL-00003" summary="minor updates">
|
|
653
|
+
<created>1490095996907</created>
|
|
654
|
+
<option name="number" value="00003" />
|
|
655
|
+
<option name="presentableId" value="LOCAL-00003" />
|
|
656
|
+
<option name="project" value="LOCAL" />
|
|
657
|
+
<updated>1490095996907</updated>
|
|
658
|
+
</task>
|
|
659
|
+
<task id="LOCAL-00004" summary="minor updates">
|
|
660
|
+
<created>1490096074482</created>
|
|
661
|
+
<option name="number" value="00004" />
|
|
662
|
+
<option name="presentableId" value="LOCAL-00004" />
|
|
663
|
+
<option name="project" value="LOCAL" />
|
|
664
|
+
<updated>1490096074482</updated>
|
|
665
|
+
</task>
|
|
666
|
+
<task id="LOCAL-00005" summary="minor updates">
|
|
667
|
+
<created>1490101230073</created>
|
|
668
|
+
<option name="number" value="00005" />
|
|
669
|
+
<option name="presentableId" value="LOCAL-00005" />
|
|
670
|
+
<option name="project" value="LOCAL" />
|
|
671
|
+
<updated>1490101230073</updated>
|
|
470
672
|
</task>
|
|
673
|
+
<option name="localTasksCounter" value="6" />
|
|
471
674
|
<servers />
|
|
472
675
|
</component>
|
|
676
|
+
<component name="TestHistory">
|
|
677
|
+
<history-entry file="Run_spec_'company_mapper_spec'__company-mapping - 2017.03.21 at 16h 14m 25s.xml">
|
|
678
|
+
<configuration name="Run spec 'company_mapper_spec': company-mapping" configurationId="RSpecRunConfigurationType" />
|
|
679
|
+
</history-entry>
|
|
680
|
+
<history-entry file="Run_spec_'company_mapper_spec'__company-mapping - 2017.03.21 at 16h 14m 47s.xml">
|
|
681
|
+
<configuration name="Run spec 'company_mapper_spec': company-mapping" configurationId="RSpecRunConfigurationType" />
|
|
682
|
+
</history-entry>
|
|
683
|
+
<history-entry file="Run_spec_'company_mapper_spec'__company-mapping - 2017.03.21 at 16h 14m 50s.xml">
|
|
684
|
+
<configuration name="Run spec 'company_mapper_spec': company-mapping" configurationId="RSpecRunConfigurationType" />
|
|
685
|
+
</history-entry>
|
|
686
|
+
<history-entry file="Run_spec_'company_mapper_spec'__company-mapping - 2017.03.21 at 16h 15m 15s.xml">
|
|
687
|
+
<configuration name="Run spec 'company_mapper_spec': company-mapping" configurationId="RSpecRunConfigurationType" />
|
|
688
|
+
</history-entry>
|
|
689
|
+
<history-entry file="Run_spec_'company_mapper_spec'__company-mapping - 2017.03.21 at 16h 15m 33s.xml">
|
|
690
|
+
<configuration name="Run spec 'company_mapper_spec': company-mapping" configurationId="RSpecRunConfigurationType" />
|
|
691
|
+
</history-entry>
|
|
692
|
+
<history-entry file="Run_spec_'company_mapper_spec'__company-mapping - 2017.03.21 at 16h 16m 03s.xml">
|
|
693
|
+
<configuration name="Run spec 'company_mapper_spec': company-mapping" configurationId="RSpecRunConfigurationType" />
|
|
694
|
+
</history-entry>
|
|
695
|
+
<history-entry file="Run_spec_'company_mapper_spec'__company-mapping - 2017.03.21 at 16h 16m 38s.xml">
|
|
696
|
+
<configuration name="Run spec 'company_mapper_spec': company-mapping" configurationId="RSpecRunConfigurationType" />
|
|
697
|
+
</history-entry>
|
|
698
|
+
<history-entry file="Run_spec_'company_mapper_spec'__company-mapping - 2017.03.21 at 16h 17m 03s.xml">
|
|
699
|
+
<configuration name="Run spec 'company_mapper_spec': company-mapping" configurationId="RSpecRunConfigurationType" />
|
|
700
|
+
</history-entry>
|
|
701
|
+
<history-entry file="Run_spec_'company_mapper_spec'__company-mapping - 2017.03.21 at 16h 17m 17s.xml">
|
|
702
|
+
<configuration name="Run spec 'company_mapper_spec': company-mapping" configurationId="RSpecRunConfigurationType" />
|
|
703
|
+
</history-entry>
|
|
704
|
+
<history-entry file="Run_spec_'company_mapper_spec'__company-mapping - 2017.03.21 at 16h 19m 18s.xml">
|
|
705
|
+
<configuration name="Run spec 'company_mapper_spec': company-mapping" configurationId="RSpecRunConfigurationType" />
|
|
706
|
+
</history-entry>
|
|
707
|
+
</component>
|
|
473
708
|
<component name="TimeTrackingManager">
|
|
474
|
-
<option name="totallyTimeSpent" value="
|
|
709
|
+
<option name="totallyTimeSpent" value="9637000" />
|
|
475
710
|
</component>
|
|
476
711
|
<component name="ToolWindowManager">
|
|
477
|
-
<frame x="54" y="-8" width="1874" height="1096" extended-state="
|
|
712
|
+
<frame x="54" y="-8" width="1874" height="1096" extended-state="0" />
|
|
478
713
|
<editor active="true" />
|
|
479
714
|
<layout>
|
|
480
|
-
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.
|
|
715
|
+
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.238699" sideWeight="0.5" order="0" side_tool="false" content_ui="combo" />
|
|
481
716
|
<window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
|
|
482
|
-
<window_info id="Event Log" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="
|
|
717
|
+
<window_info id="Event Log" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.32882413" sideWeight="0.51323044" order="7" side_tool="true" content_ui="tabs" />
|
|
483
718
|
<window_info id="Database" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
|
484
|
-
<window_info id="
|
|
485
|
-
<window_info id="
|
|
719
|
+
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.3298647" sideWeight="0.49779493" order="1" side_tool="false" content_ui="tabs" />
|
|
720
|
+
<window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33714882" sideWeight="0.49338478" order="7" side_tool="false" content_ui="tabs" />
|
|
721
|
+
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.32882413" sideWeight="0.48676956" order="2" side_tool="false" content_ui="tabs" />
|
|
486
722
|
<window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
|
487
723
|
<window_info id="Terminal" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
|
488
724
|
<window_info id="Favorites" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="2" side_tool="true" content_ui="tabs" />
|
|
@@ -492,7 +728,6 @@
|
|
|
492
728
|
<window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
|
493
729
|
<window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="5" side_tool="false" content_ui="tabs" />
|
|
494
730
|
<window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="2" side_tool="false" content_ui="combo" />
|
|
495
|
-
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
|
496
731
|
<window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
|
497
732
|
</layout>
|
|
498
733
|
</component>
|
|
@@ -502,6 +737,12 @@
|
|
|
502
737
|
<component name="VcsContentAnnotationSettings">
|
|
503
738
|
<option name="myLimit" value="2678400000" />
|
|
504
739
|
</component>
|
|
740
|
+
<component name="VcsManagerConfiguration">
|
|
741
|
+
<MESSAGE value=".gemspec updated" />
|
|
742
|
+
<MESSAGE value="mapping updated" />
|
|
743
|
+
<MESSAGE value="minor updates" />
|
|
744
|
+
<option name="LAST_COMMIT_MESSAGE" value="minor updates" />
|
|
745
|
+
</component>
|
|
505
746
|
<component name="XDebuggerManager">
|
|
506
747
|
<breakpoint-manager />
|
|
507
748
|
<watches-manager />
|
|
@@ -659,116 +900,133 @@
|
|
|
659
900
|
</state>
|
|
660
901
|
</provider>
|
|
661
902
|
</entry>
|
|
662
|
-
<entry file="file://$PROJECT_DIR$/
|
|
903
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
|
663
904
|
<provider selected="true" editor-type-id="text-editor">
|
|
664
|
-
<state relative-caret-position="
|
|
665
|
-
<caret line="
|
|
905
|
+
<state relative-caret-position="0">
|
|
906
|
+
<caret line="0" column="0" lean-forward="false" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
|
907
|
+
<folding />
|
|
666
908
|
</state>
|
|
667
909
|
</provider>
|
|
668
910
|
</entry>
|
|
669
|
-
<entry file="file://$PROJECT_DIR$/
|
|
911
|
+
<entry file="file://$PROJECT_DIR$/README.md">
|
|
912
|
+
<provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
|
|
913
|
+
<state split_layout="SPLIT">
|
|
914
|
+
<first_editor relative-caret-position="255">
|
|
915
|
+
<caret line="24" column="36" lean-forward="false" selection-start-line="24" selection-start-column="36" selection-end-line="24" selection-end-column="36" />
|
|
916
|
+
<folding />
|
|
917
|
+
</first_editor>
|
|
918
|
+
<second_editor />
|
|
919
|
+
</state>
|
|
920
|
+
</provider>
|
|
921
|
+
</entry>
|
|
922
|
+
<entry file="file://$PROJECT_DIR$/company-mapping.gemspec">
|
|
670
923
|
<provider selected="true" editor-type-id="text-editor">
|
|
671
|
-
<state relative-caret-position="
|
|
672
|
-
<caret line="
|
|
924
|
+
<state relative-caret-position="459">
|
|
925
|
+
<caret line="27" column="0" lean-forward="false" selection-start-line="13" selection-start-column="68" selection-end-line="27" selection-end-column="0" />
|
|
673
926
|
<folding />
|
|
674
927
|
</state>
|
|
675
928
|
</provider>
|
|
676
929
|
</entry>
|
|
677
|
-
<entry file="file://$PROJECT_DIR$/
|
|
930
|
+
<entry file="file://$PROJECT_DIR$/spec/company_mapper_spec.rb">
|
|
678
931
|
<provider selected="true" editor-type-id="text-editor">
|
|
679
|
-
<state relative-caret-position="
|
|
680
|
-
<caret line="
|
|
932
|
+
<state relative-caret-position="0">
|
|
933
|
+
<caret line="0" column="0" lean-forward="false" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
|
681
934
|
<folding />
|
|
682
935
|
</state>
|
|
683
936
|
</provider>
|
|
684
937
|
</entry>
|
|
685
|
-
<entry file="file://$PROJECT_DIR$/lib/company/mapping/
|
|
938
|
+
<entry file="file://$PROJECT_DIR$/lib/company/mapping/document_utils/basic_tokenizer.rb">
|
|
686
939
|
<provider selected="true" editor-type-id="text-editor">
|
|
687
|
-
<state relative-caret-position="
|
|
688
|
-
<caret line="
|
|
940
|
+
<state relative-caret-position="462">
|
|
941
|
+
<caret line="37" column="9" lean-forward="true" selection-start-line="37" selection-start-column="9" selection-end-line="37" selection-end-column="9" />
|
|
689
942
|
<folding />
|
|
690
943
|
</state>
|
|
691
944
|
</provider>
|
|
692
945
|
</entry>
|
|
693
|
-
<entry file="file://$PROJECT_DIR$/lib/company/mapping/
|
|
946
|
+
<entry file="file://$PROJECT_DIR$/lib/company/mapping/document_utils/text_document.rb">
|
|
694
947
|
<provider selected="true" editor-type-id="text-editor">
|
|
695
|
-
<state relative-caret-position="
|
|
696
|
-
<caret line="
|
|
948
|
+
<state relative-caret-position="544">
|
|
949
|
+
<caret line="32" column="7" lean-forward="false" selection-start-line="32" selection-start-column="7" selection-end-line="32" selection-end-column="7" />
|
|
697
950
|
<folding />
|
|
698
951
|
</state>
|
|
699
952
|
</provider>
|
|
700
953
|
</entry>
|
|
701
|
-
<entry file="file://$PROJECT_DIR$/lib/company/mapping/
|
|
954
|
+
<entry file="file://$PROJECT_DIR$/lib/company/mapping/tfidf/tf/normalized_term_frequency.rb">
|
|
702
955
|
<provider selected="true" editor-type-id="text-editor">
|
|
703
|
-
<state relative-caret-position="
|
|
704
|
-
<caret line="
|
|
956
|
+
<state relative-caret-position="204">
|
|
957
|
+
<caret line="12" column="9" lean-forward="false" selection-start-line="12" selection-start-column="9" selection-end-line="12" selection-end-column="9" />
|
|
705
958
|
<folding />
|
|
706
959
|
</state>
|
|
707
960
|
</provider>
|
|
708
961
|
</entry>
|
|
709
|
-
<entry file="file://$PROJECT_DIR$/
|
|
962
|
+
<entry file="file://$PROJECT_DIR$/lib/company/mapping/tfidf/idf/inverse_document_frequency.rb">
|
|
710
963
|
<provider selected="true" editor-type-id="text-editor">
|
|
711
|
-
<state relative-caret-position="
|
|
712
|
-
<caret line="
|
|
964
|
+
<state relative-caret-position="85">
|
|
965
|
+
<caret line="5" column="94" lean-forward="false" selection-start-line="5" selection-start-column="94" selection-end-line="5" selection-end-column="94" />
|
|
713
966
|
<folding />
|
|
714
967
|
</state>
|
|
715
968
|
</provider>
|
|
716
969
|
</entry>
|
|
717
|
-
<entry file="file://$PROJECT_DIR$/lib/company/mapping/
|
|
970
|
+
<entry file="file://$PROJECT_DIR$/lib/company/mapping/tfidf/tf/term_frequency.rb">
|
|
718
971
|
<provider selected="true" editor-type-id="text-editor">
|
|
719
|
-
<state relative-caret-position="
|
|
720
|
-
<caret line="
|
|
972
|
+
<state relative-caret-position="374">
|
|
973
|
+
<caret line="22" column="0" lean-forward="false" selection-start-line="22" selection-start-column="0" selection-end-line="22" selection-end-column="0" />
|
|
721
974
|
<folding />
|
|
722
975
|
</state>
|
|
723
976
|
</provider>
|
|
724
977
|
</entry>
|
|
725
|
-
<entry file="file://$PROJECT_DIR$/lib/company/mapping/tfidf/
|
|
978
|
+
<entry file="file://$PROJECT_DIR$/lib/company/mapping/tfidf/tfidf.rb">
|
|
726
979
|
<provider selected="true" editor-type-id="text-editor">
|
|
727
|
-
<state relative-caret-position="
|
|
728
|
-
<caret line="
|
|
980
|
+
<state relative-caret-position="-301">
|
|
981
|
+
<caret line="4" column="119" lean-forward="false" selection-start-line="4" selection-start-column="119" selection-end-line="4" selection-end-column="119" />
|
|
729
982
|
<folding />
|
|
730
983
|
</state>
|
|
731
984
|
</provider>
|
|
732
985
|
</entry>
|
|
733
|
-
<entry file="file://$PROJECT_DIR$/lib/company/mapping/
|
|
986
|
+
<entry file="file://$PROJECT_DIR$/lib/company/mapping/vector_similarity/cosine_similarity.rb">
|
|
734
987
|
<provider selected="true" editor-type-id="text-editor">
|
|
735
|
-
<state relative-caret-position="
|
|
736
|
-
<caret line="
|
|
988
|
+
<state relative-caret-position="51">
|
|
989
|
+
<caret line="3" column="4" lean-forward="false" selection-start-line="3" selection-start-column="4" selection-end-line="3" selection-end-column="4" />
|
|
737
990
|
<folding />
|
|
738
991
|
</state>
|
|
739
992
|
</provider>
|
|
740
993
|
</entry>
|
|
741
994
|
<entry file="file://$PROJECT_DIR$/lib/company/mapping/company_mapper.rb">
|
|
742
995
|
<provider selected="true" editor-type-id="text-editor">
|
|
743
|
-
<state relative-caret-position="
|
|
744
|
-
<caret line="
|
|
996
|
+
<state relative-caret-position="515">
|
|
997
|
+
<caret line="32" column="0" lean-forward="false" selection-start-line="32" selection-start-column="0" selection-end-line="32" selection-end-column="0" />
|
|
745
998
|
<folding />
|
|
746
999
|
</state>
|
|
747
1000
|
</provider>
|
|
748
1001
|
</entry>
|
|
749
|
-
<entry file="file://$PROJECT_DIR$/lib/company/mapping.rb">
|
|
1002
|
+
<entry file="file://$PROJECT_DIR$/lib/company/mapping/version.rb">
|
|
750
1003
|
<provider selected="true" editor-type-id="text-editor">
|
|
751
|
-
<state relative-caret-position="
|
|
752
|
-
<caret line="
|
|
1004
|
+
<state relative-caret-position="34">
|
|
1005
|
+
<caret line="2" column="18" lean-forward="false" selection-start-line="2" selection-start-column="18" selection-end-line="2" selection-end-column="18" />
|
|
753
1006
|
<folding />
|
|
754
1007
|
</state>
|
|
755
1008
|
</provider>
|
|
756
1009
|
</entry>
|
|
757
|
-
<entry file="file://$PROJECT_DIR$/
|
|
758
|
-
<provider selected="true" editor-type-id="
|
|
759
|
-
<state
|
|
760
|
-
<
|
|
761
|
-
|
|
762
|
-
<folding />
|
|
763
|
-
</first_editor>
|
|
764
|
-
<second_editor />
|
|
1010
|
+
<entry file="file://$PROJECT_DIR$/lib/company/mapping/document_utils/corpus.rb">
|
|
1011
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
1012
|
+
<state relative-caret-position="119">
|
|
1013
|
+
<caret line="7" column="0" lean-forward="true" selection-start-line="7" selection-start-column="0" selection-end-line="7" selection-end-column="0" />
|
|
1014
|
+
<folding />
|
|
765
1015
|
</state>
|
|
766
1016
|
</provider>
|
|
767
1017
|
</entry>
|
|
768
|
-
<entry file="file://$PROJECT_DIR$/company
|
|
1018
|
+
<entry file="file://$PROJECT_DIR$/lib/company/mapping/document_utils/company_corpus.rb">
|
|
769
1019
|
<provider selected="true" editor-type-id="text-editor">
|
|
770
|
-
<state relative-caret-position="
|
|
771
|
-
<caret line="
|
|
1020
|
+
<state relative-caret-position="0">
|
|
1021
|
+
<caret line="0" column="0" lean-forward="false" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
|
1022
|
+
<folding />
|
|
1023
|
+
</state>
|
|
1024
|
+
</provider>
|
|
1025
|
+
</entry>
|
|
1026
|
+
<entry file="file://$PROJECT_DIR$/lib/company/mapping.rb">
|
|
1027
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
1028
|
+
<state relative-caret-position="102">
|
|
1029
|
+
<caret line="6" column="12" lean-forward="false" selection-start-line="6" selection-start-column="12" selection-end-line="6" selection-end-column="12" />
|
|
772
1030
|
<folding />
|
|
773
1031
|
</state>
|
|
774
1032
|
</provider>
|