script_executor 1.6.0 → 1.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.idea/jsTestFinder.xml +17 -0
- data/.idea/script_executor.iml +35 -42
- data/.idea/workspace.xml +532 -276
- data/CHANGES +5 -1
- data/Gemfile +5 -3
- data/Gemfile.lock +25 -16
- data/lib/script_executor/base_provision.rb +2 -2
- data/lib/script_executor/script_locator.rb +24 -48
- data/lib/script_executor/scripts_parser.rb +44 -0
- data/lib/script_executor/scripts_transformer.rb +25 -0
- data/lib/script_executor/version.rb +1 -1
- data/script_executor.gemspec +4 -1
- data/spec/base_provision_spec.rb +18 -0
- data/spec/executable_spec.rb +6 -8
- data/spec/script_locator_spec.rb +12 -15
- data/spec/scripts_parser_spec.rb +17 -0
- data/spec/spec_helper.rb +2 -1
- data/spec/support/base.conf.json +16 -0
- data/spec/support/big_script.sh +96 -0
- data/spec/{test.conf → support/test.conf} +0 -0
- data/spec/support/test2.conf +8 -0
- metadata +61 -6
data/.idea/workspace.xml
CHANGED
@@ -1,16 +1,27 @@
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
2
|
<project version="4">
|
3
3
|
<component name="ChangeListManager">
|
4
|
-
<list default="true" id="6995392e-f204-4557-be32-fd20f300d877" name="Default" comment="">
|
5
|
-
<change type="
|
4
|
+
<list default="true" id="6995392e-f204-4557-be32-fd20f300d877" name="Default" comment="bug fix">
|
5
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/jsTestFinder.xml" />
|
6
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/lib/script_executor/scripts_parser.rb" />
|
7
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/lib/script_executor/scripts_transformer.rb" />
|
8
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/spec/base_provision_spec.rb" />
|
9
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/spec/scripts_parser_spec.rb" />
|
10
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/spec/support/base.conf.json" />
|
11
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/spec/support/big_script.sh" />
|
12
|
+
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/spec/support/test2.conf" />
|
13
|
+
<change type="MOVED" beforePath="$PROJECT_DIR$/spec/test.conf" afterPath="$PROJECT_DIR$/spec/support/test.conf" />
|
6
14
|
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/.idea/script_executor.iml" afterPath="$PROJECT_DIR$/.idea/script_executor.iml" />
|
7
15
|
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/.idea/workspace.xml" afterPath="$PROJECT_DIR$/.idea/workspace.xml" />
|
8
|
-
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/.ruby-version" afterPath="$PROJECT_DIR$/.ruby-version" />
|
9
16
|
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/CHANGES" afterPath="$PROJECT_DIR$/CHANGES" />
|
10
17
|
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/Gemfile" afterPath="$PROJECT_DIR$/Gemfile" />
|
11
18
|
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/Gemfile.lock" afterPath="$PROJECT_DIR$/Gemfile.lock" />
|
12
|
-
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/script_executor/
|
19
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/script_executor/base_provision.rb" afterPath="$PROJECT_DIR$/lib/script_executor/base_provision.rb" />
|
20
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/script_executor/script_locator.rb" afterPath="$PROJECT_DIR$/lib/script_executor/script_locator.rb" />
|
13
21
|
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/script_executor/version.rb" afterPath="$PROJECT_DIR$/lib/script_executor/version.rb" />
|
22
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/spec/executable_spec.rb" afterPath="$PROJECT_DIR$/spec/executable_spec.rb" />
|
23
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/spec/script_locator_spec.rb" afterPath="$PROJECT_DIR$/spec/script_locator_spec.rb" />
|
24
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/spec/spec_helper.rb" afterPath="$PROJECT_DIR$/spec/spec_helper.rb" />
|
14
25
|
</list>
|
15
26
|
<ignored path="script_executor.iws" />
|
16
27
|
<ignored path=".idea/workspace.xml" />
|
@@ -25,12 +36,21 @@
|
|
25
36
|
</component>
|
26
37
|
<component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
|
27
38
|
<component name="CoverageDataManager">
|
28
|
-
<SUITE FILE_PATH="coverage/script_executor@
|
39
|
+
<SUITE FILE_PATH="coverage/script_executor@Run_spec__script_locator_spec___script_executor.coverage" NAME="Run spec 'script_locator_spec': script_executor Coverage Results" MODIFIED="1445795256513" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="script_executor" />
|
29
40
|
<SUITE FILE_PATH="coverage/script_executor@MyScriptLocator_evaluate_script_body_locates_script_inside_current_file__script_executor.coverage" NAME="MyScriptLocator#evaluate_script_body locates script inside current file: script_executor Coverage Results" MODIFIED="1402110491955" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="script_executor" />
|
30
41
|
<SUITE FILE_PATH="coverage/script_executor@MyExecutable_remote_execution_should_execute_commands_from__script_parameter.coverage" NAME="MyExecutable remote execution should execute commands from :script parameter Coverage Results" MODIFIED="1385833810234" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="script_executor" />
|
42
|
+
<SUITE FILE_PATH="coverage/script_executor@MyScriptLocator_evaluate_script_body_locates_script_inside_external_file_and_evaluates_it_as_string__script_executor.coverage" NAME="MyScriptLocator#evaluate_script_body locates script inside external file and evaluates it as string: script_executor Coverage Results" MODIFIED="1445795101484" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="script_executor" />
|
43
|
+
<SUITE FILE_PATH="coverage/script_executor@BaseProvision_parse_parses_content_from_file__script_executor.coverage" NAME="BaseProvision#parse parses content from file: script_executor Coverage Results" MODIFIED="1445796298491" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="script_executor" />
|
44
|
+
<SUITE FILE_PATH="coverage/script_executor@MyScriptLocator_scripts_reads_from_file_completely_if_it_does_not_have___END___tag__script_executor.coverage" NAME="MyScriptLocator#scripts reads from file completely if it does not have __END__ tag: script_executor Coverage Results" MODIFIED="1445709701319" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="script_executor" />
|
45
|
+
<SUITE FILE_PATH="coverage/script_executor@ScriptsParser_parse_parses_content_from_file__script_executor.coverage" NAME="ScriptsParser#parse parses content from file: script_executor Coverage Results" MODIFIED="1445794969267" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="script_executor" />
|
46
|
+
<SUITE FILE_PATH="coverage/script_executor@MyExecutable__script_executor.coverage" NAME="MyExecutable: script_executor Coverage Results" MODIFIED="1445795454515" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="script_executor" />
|
47
|
+
<SUITE FILE_PATH="coverage/script_executor@Run_spec__executable_spec___script_executor.coverage" NAME="Run spec 'executable_spec': script_executor Coverage Results" MODIFIED="1445795458696" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="script_executor" />
|
31
48
|
<SUITE FILE_PATH="coverage/script_executor@MyExecutable_local_execution_should_execute_commands_locally_from__script_parameter__script_executor.coverage" NAME="MyExecutable local execution should execute commands locally from :script parameter: script_executor Coverage Results" MODIFIED="1385833654466" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="script_executor" />
|
32
|
-
<SUITE FILE_PATH="coverage/script_executor@MyExecutable_vagrant_should_execute_commands_from__script_parameter__script_executor.coverage" NAME="MyExecutable vagrant should execute commands from :script parameter: script_executor Coverage Results" MODIFIED="1402343358557" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="script_executor" />
|
33
49
|
<SUITE FILE_PATH="coverage/script_executor@script_locator_spec.coverage" NAME="script_locator_spec Coverage Results" MODIFIED="1402147217968" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="script_executor" />
|
50
|
+
<SUITE FILE_PATH="coverage/script_executor@MyExecutable_vagrant_should_execute_commands_from__script_parameter__script_executor.coverage" NAME="MyExecutable vagrant should execute commands from :script parameter: script_executor Coverage Results" MODIFIED="1445747978970" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="script_executor" />
|
51
|
+
<SUITE FILE_PATH="coverage/script_executor@executable_spec.coverage" NAME="executable_spec Coverage Results" MODIFIED="1407439589640" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="script_executor" />
|
52
|
+
<SUITE FILE_PATH="coverage/script_executor@ScriptsParser_parse_test1__script_executor.coverage" NAME="ScriptsParser#parse test1: script_executor Coverage Results" MODIFIED="1445783256329" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="script_executor" />
|
53
|
+
<SUITE FILE_PATH="coverage/script_executor@ScriptParser_parse_test1__script_executor.coverage" NAME="ScriptParser#parse test1: script_executor Coverage Results" MODIFIED="1445783000847" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="script_executor" />
|
34
54
|
</component>
|
35
55
|
<component name="CreatePatchCommitExecutor">
|
36
56
|
<option name="PATCH_PATH" value="" />
|
@@ -41,90 +61,31 @@
|
|
41
61
|
</component>
|
42
62
|
<component name="FileEditorManager">
|
43
63
|
<leaf SIDE_TABS_SIZE_LIMIT_KEY="300">
|
44
|
-
<file leaf-file-name="
|
45
|
-
<entry file="file://$PROJECT_DIR$/lib/script_executor/
|
46
|
-
<provider selected="true" editor-type-id="text-editor">
|
47
|
-
<state vertical-scroll-proportion="-0.5555556">
|
48
|
-
<caret line="1" column="18" selection-start-line="1" selection-start-column="18" selection-end-line="1" selection-end-column="18" />
|
49
|
-
<folding />
|
50
|
-
</state>
|
51
|
-
</provider>
|
52
|
-
</entry>
|
53
|
-
</file>
|
54
|
-
<file leaf-file-name="Gemfile" pinned="false" current-in-tab="false">
|
55
|
-
<entry file="file://$PROJECT_DIR$/Gemfile">
|
56
|
-
<provider selected="true" editor-type-id="text-editor">
|
57
|
-
<state vertical-scroll-proportion="-2.2222223">
|
58
|
-
<caret line="4" column="23" selection-start-line="4" selection-start-column="23" selection-end-line="4" selection-end-column="23" />
|
59
|
-
<folding />
|
60
|
-
</state>
|
61
|
-
</provider>
|
62
|
-
</entry>
|
63
|
-
</file>
|
64
|
-
<file leaf-file-name="CHANGES" pinned="false" current-in-tab="true">
|
65
|
-
<entry file="file://$PROJECT_DIR$/CHANGES">
|
66
|
-
<provider selected="true" editor-type-id="text-editor">
|
67
|
-
<state vertical-scroll-proportion="0.95238096">
|
68
|
-
<caret line="90" column="2" selection-start-line="90" selection-start-column="2" selection-end-line="90" selection-end-column="41" />
|
69
|
-
<folding />
|
70
|
-
</state>
|
71
|
-
</provider>
|
72
|
-
</entry>
|
73
|
-
</file>
|
74
|
-
<file leaf-file-name="README.md" pinned="false" current-in-tab="false">
|
75
|
-
<entry file="file://$PROJECT_DIR$/README.md">
|
76
|
-
<provider selected="true" editor-type-id="text-editor">
|
77
|
-
<state vertical-scroll-proportion="2.9655173">
|
78
|
-
<caret line="93" column="24" selection-start-line="93" selection-start-column="24" selection-end-line="93" selection-end-column="24" />
|
79
|
-
<folding />
|
80
|
-
</state>
|
81
|
-
</provider>
|
82
|
-
<provider editor-type-id="MultiMarkdownFxPreviewEditor">
|
83
|
-
<state />
|
84
|
-
</provider>
|
85
|
-
<provider editor-type-id="MarkdownPreviewEditor">
|
86
|
-
<state />
|
87
|
-
</provider>
|
88
|
-
<provider editor-type-id="MultiMarkdownFxHtmlEditor">
|
89
|
-
<state />
|
90
|
-
</provider>
|
91
|
-
</entry>
|
92
|
-
</file>
|
93
|
-
<file leaf-file-name=".ruby-version" pinned="false" current-in-tab="false">
|
94
|
-
<entry file="file://$PROJECT_DIR$/.ruby-version">
|
95
|
-
<provider selected="true" editor-type-id="text-editor">
|
96
|
-
<state vertical-scroll-proportion="0.0">
|
97
|
-
<caret line="0" column="5" selection-start-line="0" selection-start-column="5" selection-end-line="0" selection-end-column="5" />
|
98
|
-
<folding />
|
99
|
-
</state>
|
100
|
-
</provider>
|
101
|
-
</entry>
|
102
|
-
</file>
|
103
|
-
<file leaf-file-name=".ruby-gemset" pinned="false" current-in-tab="false">
|
104
|
-
<entry file="file://$PROJECT_DIR$/.ruby-gemset">
|
64
|
+
<file leaf-file-name="base_provision.rb" pinned="false" current-in-tab="false">
|
65
|
+
<entry file="file://$PROJECT_DIR$/lib/script_executor/base_provision.rb">
|
105
66
|
<provider selected="true" editor-type-id="text-editor">
|
106
67
|
<state vertical-scroll-proportion="0.0">
|
107
|
-
<caret line="
|
68
|
+
<caret line="46" column="38" selection-start-line="46" selection-start-column="38" selection-end-line="46" selection-end-column="38" />
|
108
69
|
<folding />
|
109
70
|
</state>
|
110
71
|
</provider>
|
111
72
|
</entry>
|
112
73
|
</file>
|
113
|
-
<file leaf-file-name="
|
114
|
-
<entry file="file://$PROJECT_DIR$/lib/script_executor/
|
74
|
+
<file leaf-file-name="script_locator.rb" pinned="false" current-in-tab="false">
|
75
|
+
<entry file="file://$PROJECT_DIR$/lib/script_executor/script_locator.rb">
|
115
76
|
<provider selected="true" editor-type-id="text-editor">
|
116
77
|
<state vertical-scroll-proportion="0.0">
|
117
|
-
<caret line="
|
78
|
+
<caret line="43" column="5" selection-start-line="43" selection-start-column="5" selection-end-line="43" selection-end-column="5" />
|
118
79
|
<folding />
|
119
80
|
</state>
|
120
81
|
</provider>
|
121
82
|
</entry>
|
122
83
|
</file>
|
123
|
-
<file leaf-file-name="
|
124
|
-
<entry file="file://$PROJECT_DIR$/
|
84
|
+
<file leaf-file-name="CHANGES" pinned="false" current-in-tab="true">
|
85
|
+
<entry file="file://$PROJECT_DIR$/CHANGES">
|
125
86
|
<provider selected="true" editor-type-id="text-editor">
|
126
|
-
<state vertical-scroll-proportion="
|
127
|
-
<caret line="
|
87
|
+
<state vertical-scroll-proportion="0.7809524">
|
88
|
+
<caret line="106" column="2" selection-start-line="106" selection-start-column="2" selection-end-line="106" selection-end-column="52" />
|
128
89
|
<folding />
|
129
90
|
</state>
|
130
91
|
</provider>
|
@@ -150,9 +111,30 @@
|
|
150
111
|
<list>
|
151
112
|
<option value="$PROJECT_DIR$/lib/script_executor/local_command.rb" />
|
152
113
|
<option value="$PROJECT_DIR$/.ruby-version" />
|
114
|
+
<option value="$PROJECT_DIR$/spec/parslet_spec.rb" />
|
115
|
+
<option value="$PROJECT_DIR$/lib/script_executor/remote_command.rb" />
|
116
|
+
<option value="$PROJECT_DIR$/spec/spec_helper.rb" />
|
117
|
+
<option value="$PROJECT_DIR$/spec/test_script.sh" />
|
118
|
+
<option value="$PROJECT_DIR$/spec/script_parser_spec.rb" />
|
119
|
+
<option value="$PROJECT_DIR$/lib/script_executor/script_transformer.rb" />
|
120
|
+
<option value="$PROJECT_DIR$/spec/big_script.sh" />
|
121
|
+
<option value="$PROJECT_DIR$/spec/bug_script2.sh" />
|
122
|
+
<option value="$PROJECT_DIR$/spec/big_script2.sh" />
|
123
|
+
<option value="$PROJECT_DIR$/spec/test.conf" />
|
124
|
+
<option value="$PROJECT_DIR$/spec/test2.conf" />
|
125
|
+
<option value="$PROJECT_DIR$/lib/script_executor/scripts_parser.rb" />
|
126
|
+
<option value="$PROJECT_DIR$/lib/script_executor/scripts_transformer.rb" />
|
127
|
+
<option value="$PROJECT_DIR$/lib/script_executor/script_locator.rb" />
|
128
|
+
<option value="$PROJECT_DIR$/spec/script_locator_spec.rb" />
|
129
|
+
<option value="$PROJECT_DIR$/spec/executable_spec.rb" />
|
130
|
+
<option value="$PROJECT_DIR$/spec/base_provision_spec.js" />
|
131
|
+
<option value="$PROJECT_DIR$/spec/scripts_parser_spec.rb" />
|
132
|
+
<option value="$PROJECT_DIR$/spec/support/base.conf.js" />
|
133
|
+
<option value="$PROJECT_DIR$/spec/support/base.conf.json" />
|
153
134
|
<option value="$PROJECT_DIR$/Gemfile" />
|
135
|
+
<option value="$PROJECT_DIR$/spec/base_provision_spec.rb" />
|
136
|
+
<option value="$PROJECT_DIR$/lib/script_executor/base_provision.rb" />
|
154
137
|
<option value="$PROJECT_DIR$/lib/script_executor/version.rb" />
|
155
|
-
<option value="$PROJECT_DIR$/lib/script_executor/remote_command.rb" />
|
156
138
|
<option value="$PROJECT_DIR$/CHANGES" />
|
157
139
|
</list>
|
158
140
|
</option>
|
@@ -196,7 +178,6 @@
|
|
196
178
|
<foldersAlwaysOnTop value="true" />
|
197
179
|
</navigator>
|
198
180
|
<panes>
|
199
|
-
<pane id="Scratches" />
|
200
181
|
<pane id="ProjectPane">
|
201
182
|
<subPane>
|
202
183
|
<PATH>
|
@@ -204,6 +185,126 @@
|
|
204
185
|
<option name="myItemId" value="script_executor" />
|
205
186
|
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
206
187
|
</PATH_ELEMENT>
|
188
|
+
<PATH_ELEMENT>
|
189
|
+
<option name="myItemId" value="External Libraries" />
|
190
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ExternalLibrariesNode" />
|
191
|
+
</PATH_ELEMENT>
|
192
|
+
</PATH>
|
193
|
+
<PATH>
|
194
|
+
<PATH_ELEMENT>
|
195
|
+
<option name="myItemId" value="script_executor" />
|
196
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
197
|
+
</PATH_ELEMENT>
|
198
|
+
<PATH_ELEMENT>
|
199
|
+
<option name="myItemId" value="External Libraries" />
|
200
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ExternalLibrariesNode" />
|
201
|
+
</PATH_ELEMENT>
|
202
|
+
<PATH_ELEMENT>
|
203
|
+
<option name="myItemId" value="rspec-core (v3.3.2, RVM: ruby-2.2.3 [script_executor]) [gem]" />
|
204
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.NamedLibraryElementNode" />
|
205
|
+
</PATH_ELEMENT>
|
206
|
+
<PATH_ELEMENT>
|
207
|
+
<option name="myItemId" value="lib" />
|
208
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
209
|
+
</PATH_ELEMENT>
|
210
|
+
<PATH_ELEMENT>
|
211
|
+
<option name="myItemId" value="rspec" />
|
212
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
213
|
+
</PATH_ELEMENT>
|
214
|
+
</PATH>
|
215
|
+
<PATH>
|
216
|
+
<PATH_ELEMENT>
|
217
|
+
<option name="myItemId" value="script_executor" />
|
218
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
219
|
+
</PATH_ELEMENT>
|
220
|
+
<PATH_ELEMENT>
|
221
|
+
<option name="myItemId" value="External Libraries" />
|
222
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ExternalLibrariesNode" />
|
223
|
+
</PATH_ELEMENT>
|
224
|
+
<PATH_ELEMENT>
|
225
|
+
<option name="myItemId" value="rspec-core (v3.3.2, RVM: ruby-2.2.3 [script_executor]) [gem]" />
|
226
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.NamedLibraryElementNode" />
|
227
|
+
</PATH_ELEMENT>
|
228
|
+
<PATH_ELEMENT>
|
229
|
+
<option name="myItemId" value="lib" />
|
230
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
231
|
+
</PATH_ELEMENT>
|
232
|
+
<PATH_ELEMENT>
|
233
|
+
<option name="myItemId" value="rspec" />
|
234
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
235
|
+
</PATH_ELEMENT>
|
236
|
+
<PATH_ELEMENT>
|
237
|
+
<option name="myItemId" value="core" />
|
238
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
239
|
+
</PATH_ELEMENT>
|
240
|
+
</PATH>
|
241
|
+
<PATH>
|
242
|
+
<PATH_ELEMENT>
|
243
|
+
<option name="myItemId" value="script_executor" />
|
244
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
245
|
+
</PATH_ELEMENT>
|
246
|
+
<PATH_ELEMENT>
|
247
|
+
<option name="myItemId" value="External Libraries" />
|
248
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ExternalLibrariesNode" />
|
249
|
+
</PATH_ELEMENT>
|
250
|
+
<PATH_ELEMENT>
|
251
|
+
<option name="myItemId" value="rspec-core (v3.3.2, RVM: ruby-2.2.3 [script_executor]) [gem]" />
|
252
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.NamedLibraryElementNode" />
|
253
|
+
</PATH_ELEMENT>
|
254
|
+
</PATH>
|
255
|
+
<PATH>
|
256
|
+
<PATH_ELEMENT>
|
257
|
+
<option name="myItemId" value="script_executor" />
|
258
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
259
|
+
</PATH_ELEMENT>
|
260
|
+
<PATH_ELEMENT>
|
261
|
+
<option name="myItemId" value="External Libraries" />
|
262
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ExternalLibrariesNode" />
|
263
|
+
</PATH_ELEMENT>
|
264
|
+
<PATH_ELEMENT>
|
265
|
+
<option name="myItemId" value="parslet (v1.7.1, RVM: ruby-2.2.3 [script_executor]) [gem]" />
|
266
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.NamedLibraryElementNode" />
|
267
|
+
</PATH_ELEMENT>
|
268
|
+
<PATH_ELEMENT>
|
269
|
+
<option name="myItemId" value="lib" />
|
270
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
271
|
+
</PATH_ELEMENT>
|
272
|
+
</PATH>
|
273
|
+
<PATH>
|
274
|
+
<PATH_ELEMENT>
|
275
|
+
<option name="myItemId" value="script_executor" />
|
276
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
277
|
+
</PATH_ELEMENT>
|
278
|
+
<PATH_ELEMENT>
|
279
|
+
<option name="myItemId" value="External Libraries" />
|
280
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ExternalLibrariesNode" />
|
281
|
+
</PATH_ELEMENT>
|
282
|
+
<PATH_ELEMENT>
|
283
|
+
<option name="myItemId" value="parslet (v1.7.1, RVM: ruby-2.2.3 [script_executor]) [gem]" />
|
284
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.NamedLibraryElementNode" />
|
285
|
+
</PATH_ELEMENT>
|
286
|
+
<PATH_ELEMENT>
|
287
|
+
<option name="myItemId" value="lib" />
|
288
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
289
|
+
</PATH_ELEMENT>
|
290
|
+
<PATH_ELEMENT>
|
291
|
+
<option name="myItemId" value="parslet" />
|
292
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
293
|
+
</PATH_ELEMENT>
|
294
|
+
</PATH>
|
295
|
+
<PATH>
|
296
|
+
<PATH_ELEMENT>
|
297
|
+
<option name="myItemId" value="script_executor" />
|
298
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
299
|
+
</PATH_ELEMENT>
|
300
|
+
<PATH_ELEMENT>
|
301
|
+
<option name="myItemId" value="External Libraries" />
|
302
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ExternalLibrariesNode" />
|
303
|
+
</PATH_ELEMENT>
|
304
|
+
<PATH_ELEMENT>
|
305
|
+
<option name="myItemId" value="parslet (v1.7.1, RVM: ruby-2.2.3 [script_executor]) [gem]" />
|
306
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.NamedLibraryElementNode" />
|
307
|
+
</PATH_ELEMENT>
|
207
308
|
</PATH>
|
208
309
|
<PATH>
|
209
310
|
<PATH_ELEMENT>
|
@@ -215,6 +316,38 @@
|
|
215
316
|
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
216
317
|
</PATH_ELEMENT>
|
217
318
|
</PATH>
|
319
|
+
<PATH>
|
320
|
+
<PATH_ELEMENT>
|
321
|
+
<option name="myItemId" value="script_executor" />
|
322
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
323
|
+
</PATH_ELEMENT>
|
324
|
+
<PATH_ELEMENT>
|
325
|
+
<option name="myItemId" value="script_executor" />
|
326
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
327
|
+
</PATH_ELEMENT>
|
328
|
+
<PATH_ELEMENT>
|
329
|
+
<option name="myItemId" value="spec" />
|
330
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
331
|
+
</PATH_ELEMENT>
|
332
|
+
</PATH>
|
333
|
+
<PATH>
|
334
|
+
<PATH_ELEMENT>
|
335
|
+
<option name="myItemId" value="script_executor" />
|
336
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
337
|
+
</PATH_ELEMENT>
|
338
|
+
<PATH_ELEMENT>
|
339
|
+
<option name="myItemId" value="script_executor" />
|
340
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
341
|
+
</PATH_ELEMENT>
|
342
|
+
<PATH_ELEMENT>
|
343
|
+
<option name="myItemId" value="spec" />
|
344
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
345
|
+
</PATH_ELEMENT>
|
346
|
+
<PATH_ELEMENT>
|
347
|
+
<option name="myItemId" value="support" />
|
348
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
349
|
+
</PATH_ELEMENT>
|
350
|
+
</PATH>
|
218
351
|
<PATH>
|
219
352
|
<PATH_ELEMENT>
|
220
353
|
<option name="myItemId" value="script_executor" />
|
@@ -249,6 +382,7 @@
|
|
249
382
|
</PATH>
|
250
383
|
</subPane>
|
251
384
|
</pane>
|
385
|
+
<pane id="Scratches" />
|
252
386
|
<pane id="Scope" />
|
253
387
|
</panes>
|
254
388
|
</component>
|
@@ -258,29 +392,37 @@
|
|
258
392
|
<property name="options.lastSelected" value="org.jetbrains.plugins.ruby.settings.RubyActiveModuleSdkConfigurable" />
|
259
393
|
<property name="recentsLimit" value="5" />
|
260
394
|
<property name="restartRequiresConfirmation" value="true" />
|
261
|
-
<property name="FullScreen" value="false" />
|
262
395
|
<property name="options.searchVisible" value="true" />
|
263
396
|
<property name="options.splitter.details.proportions" value="0.2" />
|
264
397
|
<property name="last_opened_file_path" value="$PROJECT_DIR$" />
|
265
|
-
<property name="FileHistory.git4idea.history.GitHistoryProvider_flatWidth0" value="
|
398
|
+
<property name="FileHistory.git4idea.history.GitHistoryProvider_flatWidth0" value="197" />
|
266
399
|
<property name="FileHistory.git4idea.history.GitHistoryProvider_flatOrder0" value="0" />
|
267
|
-
<property name="FileHistory.git4idea.history.GitHistoryProvider_flatWidth1" value="
|
400
|
+
<property name="FileHistory.git4idea.history.GitHistoryProvider_flatWidth1" value="199" />
|
268
401
|
<property name="FileHistory.git4idea.history.GitHistoryProvider_flatOrder1" value="1" />
|
269
|
-
<property name="FileHistory.git4idea.history.GitHistoryProvider_flatWidth2" value="
|
402
|
+
<property name="FileHistory.git4idea.history.GitHistoryProvider_flatWidth2" value="202" />
|
270
403
|
<property name="FileHistory.git4idea.history.GitHistoryProvider_flatOrder2" value="2" />
|
271
|
-
<property name="FileHistory.git4idea.history.GitHistoryProvider_flatWidth3" value="
|
404
|
+
<property name="FileHistory.git4idea.history.GitHistoryProvider_flatWidth3" value="971" />
|
272
405
|
<property name="FileHistory.git4idea.history.GitHistoryProvider_flatOrder3" value="3" />
|
273
|
-
<property name="FileHistory.git4idea.history.GitHistoryProvider_treeWidth0" value="
|
406
|
+
<property name="FileHistory.git4idea.history.GitHistoryProvider_treeWidth0" value="222" />
|
274
407
|
<property name="FileHistory.git4idea.history.GitHistoryProvider_treeOrder0" value="0" />
|
275
|
-
<property name="FileHistory.git4idea.history.GitHistoryProvider_treeWidth1" value="
|
408
|
+
<property name="FileHistory.git4idea.history.GitHistoryProvider_treeWidth1" value="224" />
|
276
409
|
<property name="FileHistory.git4idea.history.GitHistoryProvider_treeOrder1" value="1" />
|
277
|
-
<property name="FileHistory.git4idea.history.GitHistoryProvider_treeWidth2" value="
|
410
|
+
<property name="FileHistory.git4idea.history.GitHistoryProvider_treeWidth2" value="228" />
|
278
411
|
<property name="FileHistory.git4idea.history.GitHistoryProvider_treeOrder2" value="2" />
|
279
|
-
<property name="FileHistory.git4idea.history.GitHistoryProvider_treeWidth3" value="
|
412
|
+
<property name="FileHistory.git4idea.history.GitHistoryProvider_treeWidth3" value="895" />
|
280
413
|
<property name="FileHistory.git4idea.history.GitHistoryProvider_treeOrder3" value="3" />
|
414
|
+
<property name="settings.editor.selected.configurable" value="org.jetbrains.plugins.ruby.settings.RubyActiveModuleSdkConfigurable" />
|
415
|
+
<property name="settings.editor.splitter.proportion" value="0.2" />
|
416
|
+
<property name="js-jscs-nodeInterpreter" value="/usr/local/bin/node" />
|
417
|
+
<property name="SearchEverywhereHistoryKey" value="remC	FILE	file:///Users/alex/Dropbox/Alex/work/projects/script_executor/lib/script_executor/remote_command.rb" />
|
418
|
+
</component>
|
419
|
+
<component name="RecentsManager">
|
420
|
+
<key name="MoveFile.RECENT_KEYS">
|
421
|
+
<recent name="$PROJECT_DIR$/spec/support" />
|
422
|
+
</key>
|
281
423
|
</component>
|
282
|
-
<component name="RunManager" selected="RSpec.
|
283
|
-
<configuration default="false" name="
|
424
|
+
<component name="RunManager" selected="RSpec.BaseProvision#parse parses content from file: script_executor">
|
425
|
+
<configuration default="false" name="MyExecutable: script_executor" type="RSpecRunConfigurationType" factoryName="RSpec" temporary="true">
|
284
426
|
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
285
427
|
<module name="script_executor" />
|
286
428
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
@@ -302,7 +444,7 @@
|
|
302
444
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="$MODULE_DIR$/spec/executable_spec.rb" />
|
303
445
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
304
446
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
305
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
|
447
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="MyExecutable" />
|
306
448
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
307
449
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
308
450
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
@@ -311,11 +453,9 @@
|
|
311
453
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
312
454
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
313
455
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
314
|
-
<RunnerSettings RunnerId="RubyRunner" />
|
315
|
-
<ConfigurationWrapper RunnerId="RubyRunner" />
|
316
456
|
<method />
|
317
457
|
</configuration>
|
318
|
-
<configuration default="false" name="
|
458
|
+
<configuration default="false" name="Run spec 'script_locator_spec': script_executor" type="RSpecRunConfigurationType" factoryName="RSpec" temporary="true">
|
319
459
|
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
320
460
|
<module name="script_executor" />
|
321
461
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
@@ -326,7 +466,7 @@
|
|
326
466
|
<envs>
|
327
467
|
<env name="JRUBY_OPTS" value="-X+O" />
|
328
468
|
</envs>
|
329
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="
|
469
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
|
330
470
|
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
331
471
|
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
332
472
|
<COVERAGE_PATTERN ENABLED="true">
|
@@ -334,10 +474,10 @@
|
|
334
474
|
</COVERAGE_PATTERN>
|
335
475
|
</EXTENSION>
|
336
476
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
337
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="$MODULE_DIR$/spec/
|
477
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="$MODULE_DIR$/spec/script_locator_spec.rb" />
|
338
478
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
339
479
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
340
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="
|
480
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
|
341
481
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
342
482
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
343
483
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
@@ -346,11 +486,9 @@
|
|
346
486
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
347
487
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
348
488
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
349
|
-
<RunnerSettings RunnerId="RubyRunner" />
|
350
|
-
<ConfigurationWrapper RunnerId="RubyRunner" />
|
351
489
|
<method />
|
352
490
|
</configuration>
|
353
|
-
<configuration default="false" name="
|
491
|
+
<configuration default="false" name="MyScriptLocator#evaluate_script_body locates script inside external file and evaluates it as string: script_executor" type="RSpecRunConfigurationType" factoryName="RSpec" temporary="true">
|
354
492
|
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
355
493
|
<module name="script_executor" />
|
356
494
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
@@ -361,7 +499,7 @@
|
|
361
499
|
<envs>
|
362
500
|
<env name="JRUBY_OPTS" value="-X+O" />
|
363
501
|
</envs>
|
364
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="
|
502
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
|
365
503
|
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
366
504
|
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
367
505
|
<COVERAGE_PATTERN ENABLED="true">
|
@@ -369,10 +507,10 @@
|
|
369
507
|
</COVERAGE_PATTERN>
|
370
508
|
</EXTENSION>
|
371
509
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
372
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="$MODULE_DIR$/spec/
|
510
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="$MODULE_DIR$/spec/script_locator_spec.rb" />
|
373
511
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
374
512
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
375
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="
|
513
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="MyScriptLocator#evaluate_script_body locates script inside external file and evaluates it as string" />
|
376
514
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
377
515
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
378
516
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
@@ -381,11 +519,9 @@
|
|
381
519
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
382
520
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
383
521
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
384
|
-
<RunnerSettings RunnerId="RubyRunner" />
|
385
|
-
<ConfigurationWrapper RunnerId="RubyRunner" />
|
386
522
|
<method />
|
387
523
|
</configuration>
|
388
|
-
<configuration default="false" name="
|
524
|
+
<configuration default="false" name="Run spec 'executable_spec': script_executor" type="RSpecRunConfigurationType" factoryName="RSpec" temporary="true">
|
389
525
|
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
390
526
|
<module name="script_executor" />
|
391
527
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
@@ -404,10 +540,10 @@
|
|
404
540
|
</COVERAGE_PATTERN>
|
405
541
|
</EXTENSION>
|
406
542
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
407
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="$MODULE_DIR$/spec/
|
543
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="$MODULE_DIR$/spec/executable_spec.rb" />
|
408
544
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
409
545
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
410
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="
|
546
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
|
411
547
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
412
548
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
413
549
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
@@ -416,11 +552,9 @@
|
|
416
552
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
417
553
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
418
554
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
419
|
-
<RunnerSettings RunnerId="RubyDebugRunner" />
|
420
|
-
<ConfigurationWrapper RunnerId="RubyDebugRunner" />
|
421
555
|
<method />
|
422
556
|
</configuration>
|
423
|
-
<configuration default="false" name="
|
557
|
+
<configuration default="false" name="BaseProvision#parse parses content from file: script_executor" type="RSpecRunConfigurationType" factoryName="RSpec" temporary="true">
|
424
558
|
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
425
559
|
<module name="script_executor" />
|
426
560
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
@@ -439,10 +573,10 @@
|
|
439
573
|
</COVERAGE_PATTERN>
|
440
574
|
</EXTENSION>
|
441
575
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
442
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="$MODULE_DIR$/spec/
|
576
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="$MODULE_DIR$/spec/base_provision_spec.rb" />
|
443
577
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
444
578
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
445
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="
|
579
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="BaseProvision#parse parses content from file" />
|
446
580
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
447
581
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
448
582
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
@@ -451,8 +585,6 @@
|
|
451
585
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
452
586
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
453
587
|
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
454
|
-
<RunnerSettings RunnerId="RubyRunner" />
|
455
|
-
<ConfigurationWrapper RunnerId="RubyRunner" />
|
456
588
|
<method />
|
457
589
|
</configuration>
|
458
590
|
<configuration default="true" type="BashConfigurationType" factoryName="Bash">
|
@@ -466,6 +598,40 @@
|
|
466
598
|
<envs />
|
467
599
|
<method />
|
468
600
|
</configuration>
|
601
|
+
<configuration default="true" type="CucumberRunConfigurationType" factoryName="Cucumber">
|
602
|
+
<predefined_log_file id="RUBY_CUCUMBER" enabled="true" />
|
603
|
+
<module name="" />
|
604
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
605
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
606
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
607
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
608
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
609
|
+
<envs />
|
610
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
611
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
612
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
613
|
+
<COVERAGE_PATTERN ENABLED="true">
|
614
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
615
|
+
</COVERAGE_PATTERN>
|
616
|
+
</EXTENSION>
|
617
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*.feature" />
|
618
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
619
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
620
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
621
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TAGS_FILTER" VALUE="" />
|
622
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_NAME_FILTER" VALUE="" />
|
623
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_ARGS" VALUE="--color -r features" />
|
624
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
625
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
626
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="VERBOSE_OPTION" VALUE="false" />
|
627
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
628
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
629
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
630
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_RUNNER_PATH" VALUE="" />
|
631
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_RUNNER" VALUE="false" />
|
632
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SETTINGS_VERSION" VALUE="2" />
|
633
|
+
<method />
|
634
|
+
</configuration>
|
469
635
|
<configuration default="true" type="JavaScriptTestRunnerKarma" factoryName="Karma" config-file="">
|
470
636
|
<envs />
|
471
637
|
<method />
|
@@ -570,6 +736,24 @@
|
|
570
736
|
<envs />
|
571
737
|
<method />
|
572
738
|
</configuration>
|
739
|
+
<configuration default="true" type="js.build_tools.npm" factoryName="npm">
|
740
|
+
<command value="run-script" />
|
741
|
+
<scripts />
|
742
|
+
<envs />
|
743
|
+
<method />
|
744
|
+
</configuration>
|
745
|
+
<configuration default="true" type="mocha-javascript-test-runner" factoryName="Mocha">
|
746
|
+
<node-options />
|
747
|
+
<working-directory>$PROJECT_DIR$</working-directory>
|
748
|
+
<pass-parent-env>true</pass-parent-env>
|
749
|
+
<envs />
|
750
|
+
<ui>bdd</ui>
|
751
|
+
<extra-mocha-options />
|
752
|
+
<test-kind>DIRECTORY</test-kind>
|
753
|
+
<test-directory />
|
754
|
+
<recursive>false</recursive>
|
755
|
+
<method />
|
756
|
+
</configuration>
|
573
757
|
<configuration default="false" name="remote" type="RubyRemoteDebugConfigurationType" factoryName="Ruby remote debug">
|
574
758
|
<RUBY_REMOTE_DEBUG_CONFIG NAME="REMOTE_HOST" VALUE="localhost" />
|
575
759
|
<RUBY_REMOTE_DEBUG_CONFIG NAME="PORT" VALUE="1234" />
|
@@ -582,19 +766,19 @@
|
|
582
766
|
</configuration>
|
583
767
|
<list size="6">
|
584
768
|
<item index="0" class="java.lang.String" itemvalue="Ruby remote debug.remote" />
|
585
|
-
<item index="1" class="java.lang.String" itemvalue="RSpec.
|
586
|
-
<item index="2" class="java.lang.String" itemvalue="RSpec.
|
587
|
-
<item index="3" class="java.lang.String" itemvalue="RSpec.
|
588
|
-
<item index="4" class="java.lang.String" itemvalue="RSpec.
|
589
|
-
<item index="5" class="java.lang.String" itemvalue="RSpec.
|
769
|
+
<item index="1" class="java.lang.String" itemvalue="RSpec.MyExecutable: script_executor" />
|
770
|
+
<item index="2" class="java.lang.String" itemvalue="RSpec.Run spec 'script_locator_spec': script_executor" />
|
771
|
+
<item index="3" class="java.lang.String" itemvalue="RSpec.MyScriptLocator#evaluate_script_body locates script inside external file and evaluates it as string: script_executor" />
|
772
|
+
<item index="4" class="java.lang.String" itemvalue="RSpec.Run spec 'executable_spec': script_executor" />
|
773
|
+
<item index="5" class="java.lang.String" itemvalue="RSpec.BaseProvision#parse parses content from file: script_executor" />
|
590
774
|
</list>
|
591
775
|
<recent_temporary>
|
592
776
|
<list size="5">
|
593
|
-
<item index="0" class="java.lang.String" itemvalue="RSpec.
|
594
|
-
<item index="1" class="java.lang.String" itemvalue="RSpec.
|
595
|
-
<item index="2" class="java.lang.String" itemvalue="RSpec.MyExecutable
|
596
|
-
<item index="3" class="java.lang.String" itemvalue="RSpec.
|
597
|
-
<item index="4" class="java.lang.String" itemvalue="RSpec.
|
777
|
+
<item index="0" class="java.lang.String" itemvalue="RSpec.BaseProvision#parse parses content from file: script_executor" />
|
778
|
+
<item index="1" class="java.lang.String" itemvalue="RSpec.Run spec 'executable_spec': script_executor" />
|
779
|
+
<item index="2" class="java.lang.String" itemvalue="RSpec.MyExecutable: script_executor" />
|
780
|
+
<item index="3" class="java.lang.String" itemvalue="RSpec.Run spec 'script_locator_spec': script_executor" />
|
781
|
+
<item index="4" class="java.lang.String" itemvalue="RSpec.MyScriptLocator#evaluate_script_body locates script inside external file and evaluates it as string: script_executor" />
|
598
782
|
</list>
|
599
783
|
</recent_temporary>
|
600
784
|
</component>
|
@@ -715,20 +899,66 @@
|
|
715
899
|
<option name="localTasksCounter" value="18" />
|
716
900
|
<servers />
|
717
901
|
</component>
|
902
|
+
<component name="TestHistory">
|
903
|
+
<history-entry file="BaseProvision#parse_parses_content_from_file__script_executor - 2015.10.25 at 13h 59m 26s.xml">
|
904
|
+
<configuration name="BaseProvision#parse parses content from file: script_executor" configurationId="RSpecRunConfigurationType" />
|
905
|
+
</history-entry>
|
906
|
+
<history-entry file="BaseProvision#parse_parses_content_from_file__script_executor - 2015.10.25 at 13h 59m 41s.xml">
|
907
|
+
<configuration name="BaseProvision#parse parses content from file: script_executor" configurationId="RSpecRunConfigurationType" />
|
908
|
+
</history-entry>
|
909
|
+
<history-entry file="BaseProvision#parse_parses_content_from_file__script_executor - 2015.10.25 at 14h 00m 26s.xml">
|
910
|
+
<configuration name="BaseProvision#parse parses content from file: script_executor" configurationId="RSpecRunConfigurationType" />
|
911
|
+
</history-entry>
|
912
|
+
<history-entry file="BaseProvision#parse_parses_content_from_file__script_executor - 2015.10.25 at 14h 00m 38s.xml">
|
913
|
+
<configuration name="BaseProvision#parse parses content from file: script_executor" configurationId="RSpecRunConfigurationType" />
|
914
|
+
</history-entry>
|
915
|
+
<history-entry file="BaseProvision#parse_parses_content_from_file__script_executor - 2015.10.25 at 14h 01m 09s.xml">
|
916
|
+
<configuration name="BaseProvision#parse parses content from file: script_executor" configurationId="RSpecRunConfigurationType" />
|
917
|
+
</history-entry>
|
918
|
+
<history-entry file="BaseProvision#parse_parses_content_from_file__script_executor - 2015.10.25 at 14h 03m 44s.xml">
|
919
|
+
<configuration name="BaseProvision#parse parses content from file: script_executor" configurationId="RSpecRunConfigurationType" />
|
920
|
+
</history-entry>
|
921
|
+
<history-entry file="BaseProvision#parse_parses_content_from_file__script_executor - 2015.10.25 at 14h 03m 48s.xml">
|
922
|
+
<configuration name="BaseProvision#parse parses content from file: script_executor" configurationId="RSpecRunConfigurationType" />
|
923
|
+
</history-entry>
|
924
|
+
<history-entry file="BaseProvision#parse_parses_content_from_file__script_executor - 2015.10.25 at 14h 04m 34s.xml">
|
925
|
+
<configuration name="BaseProvision#parse parses content from file: script_executor" configurationId="RSpecRunConfigurationType" />
|
926
|
+
</history-entry>
|
927
|
+
<history-entry file="BaseProvision#parse_parses_content_from_file__script_executor - 2015.10.25 at 14h 04m 40s.xml">
|
928
|
+
<configuration name="BaseProvision#parse parses content from file: script_executor" configurationId="RSpecRunConfigurationType" />
|
929
|
+
</history-entry>
|
930
|
+
<history-entry file="BaseProvision#parse_parses_content_from_file__script_executor - 2015.10.25 at 14h 05m 18s.xml">
|
931
|
+
<configuration name="BaseProvision#parse parses content from file: script_executor" configurationId="RSpecRunConfigurationType" />
|
932
|
+
</history-entry>
|
933
|
+
</component>
|
934
|
+
<component name="TodoView">
|
935
|
+
<todo-panel id="selected-file">
|
936
|
+
<is-autoscroll-to-source value="true" />
|
937
|
+
</todo-panel>
|
938
|
+
<todo-panel id="all">
|
939
|
+
<are-packages-shown value="true" />
|
940
|
+
<is-autoscroll-to-source value="true" />
|
941
|
+
</todo-panel>
|
942
|
+
</component>
|
718
943
|
<component name="ToolWindowManager">
|
719
944
|
<frame x="39" y="23" width="1401" height="877" extended-state="0" />
|
720
|
-
<editor active="
|
945
|
+
<editor active="false" />
|
721
946
|
<layout>
|
722
|
-
<window_info id="
|
723
|
-
<window_info id="
|
947
|
+
<window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.3298153" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
|
948
|
+
<window_info id="Messages" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.32822478" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
724
949
|
<window_info id="Event Log" 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="true" content_ui="tabs" />
|
950
|
+
<window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.5474934" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
951
|
+
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.48548812" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
952
|
+
<window_info id="Terminal" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.39313984" sideWeight="0.5" order="8" side_tool="false" content_ui="tabs" />
|
953
|
+
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.26710817" sideWeight="0.64040405" order="0" side_tool="false" content_ui="combo" />
|
954
|
+
<window_info id="Tail" 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="10" side_tool="false" content_ui="tabs" />
|
725
955
|
<window_info id="Dilbert" 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="0" side_tool="false" content_ui="tabs" />
|
726
956
|
<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" />
|
957
|
+
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.43403694" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
727
958
|
<window_info id="Copy/Paste" 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="4" side_tool="false" content_ui="tabs" />
|
728
|
-
<window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.32585752" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
729
959
|
<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="true" content_ui="tabs" />
|
730
|
-
<window_info id="Terminal" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.26781002" sideWeight="0.5" order="8" side_tool="false" content_ui="tabs" />
|
731
960
|
<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" />
|
961
|
+
<window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.39577836" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
732
962
|
<window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" />
|
733
963
|
<window_info id="Message" 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="0" side_tool="false" content_ui="tabs" />
|
734
964
|
<window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="SLIDING" type="SLIDING" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
@@ -736,38 +966,37 @@
|
|
736
966
|
<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" />
|
737
967
|
<window_info id="Atlassian " 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" />
|
738
968
|
<window_info id="LuaJ" 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="4" side_tool="false" content_ui="tabs" />
|
739
|
-
<window_info id="Tail" 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="10" side_tool="false" content_ui="tabs" />
|
740
969
|
<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" />
|
741
|
-
<window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.3971903" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
742
970
|
<window_info id="Changes" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.34827146" sideWeight="0.9955329" order="7" side_tool="false" content_ui="tabs" />
|
743
|
-
<window_info id="Messages" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.32822478" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
744
971
|
<window_info id="Heroku" 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="8" side_tool="false" content_ui="tabs" />
|
745
972
|
<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" />
|
746
|
-
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.32056195" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
747
|
-
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.43482906" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
748
973
|
</layout>
|
749
974
|
<layout-to-restore>
|
750
|
-
<window_info id="Changes" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.357985" sideWeight="0.9955329" order="8" side_tool="false" content_ui="tabs" />
|
751
975
|
<window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="5" side_tool="false" content_ui="tabs" />
|
752
|
-
<window_info id="
|
753
|
-
<window_info id="Messages" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.32925683" sideWeight="0.5" order="11" side_tool="false" content_ui="tabs" />
|
754
|
-
<window_info id="Message" 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" />
|
755
|
-
<window_info id="Heroku" 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="13" side_tool="false" content_ui="tabs" />
|
976
|
+
<window_info id="Message" 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="0" side_tool="false" content_ui="tabs" />
|
756
977
|
<window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="SLIDING" type="SLIDING" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
757
|
-
<window_info id="Event Log" 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="
|
758
|
-
<window_info id="
|
759
|
-
<window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.3290461" sideWeight="0.5" order="10" side_tool="false" content_ui="tabs" />
|
760
|
-
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.3226152" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
761
|
-
<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="12" side_tool="false" content_ui="tabs" />
|
762
|
-
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.3199498" sideWeight="0.64040405" order="0" side_tool="false" content_ui="combo" />
|
978
|
+
<window_info id="Event Log" 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="8" side_tool="true" content_ui="tabs" />
|
979
|
+
<window_info id="Application Servers" 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="15" side_tool="false" content_ui="tabs" />
|
763
980
|
<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" />
|
981
|
+
<window_info id="Atlassian " 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="9" side_tool="false" content_ui="tabs" />
|
764
982
|
<window_info id="LuaJ" 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="4" side_tool="false" content_ui="tabs" />
|
765
|
-
<window_info id="
|
766
|
-
<window_info id="
|
983
|
+
<window_info id="Tail" 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="16" side_tool="false" content_ui="tabs" />
|
984
|
+
<window_info id="Dilbert" 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" />
|
767
985
|
<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" />
|
768
986
|
<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="true" content_ui="tabs" />
|
769
987
|
<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" />
|
770
|
-
<window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.
|
988
|
+
<window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.39577836" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" />
|
989
|
+
<window_info id="Changes" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.34827146" sideWeight="0.9955329" order="10" side_tool="false" content_ui="tabs" />
|
990
|
+
<window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.3298153" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
991
|
+
<window_info id="Messages" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.32822478" sideWeight="0.5" order="11" side_tool="false" content_ui="tabs" />
|
992
|
+
<window_info id="Heroku" 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="13" side_tool="false" content_ui="tabs" />
|
993
|
+
<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="6" side_tool="false" content_ui="tabs" />
|
994
|
+
<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.32453826" sideWeight="0.5" order="12" side_tool="false" content_ui="tabs" />
|
995
|
+
<window_info id="Run" active="true" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.48548812" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
996
|
+
<window_info id="Terminal" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.39313984" sideWeight="0.5" order="14" side_tool="false" content_ui="tabs" />
|
997
|
+
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.267844" sideWeight="0.64040405" order="0" side_tool="false" content_ui="combo" />
|
998
|
+
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.43403694" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
999
|
+
<window_info id="Copy/Paste" 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="5" side_tool="false" content_ui="tabs" />
|
771
1000
|
<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" />
|
772
1001
|
</layout-to-restore>
|
773
1002
|
</component>
|
@@ -801,20 +1030,30 @@
|
|
801
1030
|
<breakpoint-manager>
|
802
1031
|
<breakpoints>
|
803
1032
|
<line-breakpoint enabled="true" type="ruby-line">
|
804
|
-
<url>file://$PROJECT_DIR$/lib/script_executor/
|
805
|
-
<line>
|
806
|
-
<option name="timeStamp" value="
|
1033
|
+
<url>file://$PROJECT_DIR$/lib/script_executor/remote_command.rb</url>
|
1034
|
+
<line>23</line>
|
1035
|
+
<option name="timeStamp" value="18" />
|
807
1036
|
</line-breakpoint>
|
808
1037
|
<line-breakpoint enabled="true" type="ruby-line">
|
809
|
-
<url>file://$PROJECT_DIR$/
|
1038
|
+
<url>file://$PROJECT_DIR$/lib/script_executor/remote_command.rb</url>
|
810
1039
|
<line>37</line>
|
811
|
-
<option name="timeStamp" value="
|
1040
|
+
<option name="timeStamp" value="19" />
|
1041
|
+
</line-breakpoint>
|
1042
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
1043
|
+
<url>file://$PROJECT_DIR$/spec/script_locator_spec.rb</url>
|
1044
|
+
<line>46</line>
|
1045
|
+
<option name="timeStamp" value="29" />
|
1046
|
+
</line-breakpoint>
|
1047
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
1048
|
+
<url>file://$PROJECT_DIR$/spec/scripts_parser_spec.rb</url>
|
1049
|
+
<line>9</line>
|
1050
|
+
<option name="timeStamp" value="38" />
|
812
1051
|
</line-breakpoint>
|
813
1052
|
</breakpoints>
|
814
1053
|
<breakpoints-dialog>
|
815
1054
|
<breakpoints-dialog />
|
816
1055
|
</breakpoints-dialog>
|
817
|
-
<option name="time" value="
|
1056
|
+
<option name="time" value="43" />
|
818
1057
|
</breakpoint-manager>
|
819
1058
|
<watches-manager />
|
820
1059
|
</component>
|
@@ -826,34 +1065,6 @@
|
|
826
1065
|
</option>
|
827
1066
|
</component>
|
828
1067
|
<component name="editorHistoryManager">
|
829
|
-
<entry file="file://$PROJECT_DIR$/spec/spec_helper.rb">
|
830
|
-
<provider selected="true" editor-type-id="text-editor">
|
831
|
-
<state vertical-scroll-proportion="0.0">
|
832
|
-
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
833
|
-
</state>
|
834
|
-
</provider>
|
835
|
-
</entry>
|
836
|
-
<entry file="file://$PROJECT_DIR$/Gemfile">
|
837
|
-
<provider selected="true" editor-type-id="text-editor">
|
838
|
-
<state vertical-scroll-proportion="0.0">
|
839
|
-
<caret line="23" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
840
|
-
</state>
|
841
|
-
</provider>
|
842
|
-
</entry>
|
843
|
-
<entry file="file://$PROJECT_DIR$/Rakefile">
|
844
|
-
<provider selected="true" editor-type-id="text-editor">
|
845
|
-
<state vertical-scroll-proportion="0.0">
|
846
|
-
<caret line="11" column="67" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
847
|
-
</state>
|
848
|
-
</provider>
|
849
|
-
</entry>
|
850
|
-
<entry file="file://$PROJECT_DIR$/script_executor.gemspec.erb">
|
851
|
-
<provider selected="true" editor-type-id="text-editor">
|
852
|
-
<state vertical-scroll-proportion="0.0">
|
853
|
-
<caret line="14" column="56" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
854
|
-
</state>
|
855
|
-
</provider>
|
856
|
-
</entry>
|
857
1068
|
<entry file="file://$PROJECT_DIR$/lib/script_executor/script_executor.rb">
|
858
1069
|
<provider selected="true" editor-type-id="text-editor">
|
859
1070
|
<state vertical-scroll-proportion="0.0">
|
@@ -864,7 +1075,7 @@
|
|
864
1075
|
<entry file="file://$PROJECT_DIR$/lib/script_executor/executable.rb">
|
865
1076
|
<provider selected="true" editor-type-id="text-editor">
|
866
1077
|
<state vertical-scroll-proportion="0.0">
|
867
|
-
<caret line="
|
1078
|
+
<caret line="181" column="36" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
868
1079
|
<folding />
|
869
1080
|
</state>
|
870
1081
|
</provider>
|
@@ -925,159 +1136,181 @@
|
|
925
1136
|
</state>
|
926
1137
|
</provider>
|
927
1138
|
</entry>
|
928
|
-
<entry file="file://$PROJECT_DIR$/
|
1139
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
929
1140
|
<provider selected="true" editor-type-id="text-editor">
|
930
1141
|
<state vertical-scroll-proportion="0.0">
|
931
|
-
<caret line="
|
932
|
-
<folding />
|
1142
|
+
<caret line="23" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
933
1143
|
</state>
|
934
1144
|
</provider>
|
935
1145
|
</entry>
|
936
|
-
<entry file="file://$PROJECT_DIR
|
1146
|
+
<entry file="file://$PROJECT_DIR$/Rakefile">
|
937
1147
|
<provider selected="true" editor-type-id="text-editor">
|
938
1148
|
<state vertical-scroll-proportion="0.0">
|
939
|
-
<caret line="
|
1149
|
+
<caret line="11" column="67" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
940
1150
|
</state>
|
941
1151
|
</provider>
|
942
1152
|
</entry>
|
943
|
-
<entry file="file://$PROJECT_DIR$/
|
1153
|
+
<entry file="file://$PROJECT_DIR$/script_executor.gemspec.erb">
|
944
1154
|
<provider selected="true" editor-type-id="text-editor">
|
945
1155
|
<state vertical-scroll-proportion="0.0">
|
946
|
-
<caret line="
|
1156
|
+
<caret line="14" column="56" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
947
1157
|
</state>
|
948
1158
|
</provider>
|
949
1159
|
</entry>
|
950
|
-
<entry file="file://$PROJECT_DIR$/lib/script_executor/
|
1160
|
+
<entry file="file://$PROJECT_DIR$/lib/script_executor/script_executor.rb">
|
951
1161
|
<provider selected="true" editor-type-id="text-editor">
|
952
1162
|
<state vertical-scroll-proportion="0.0">
|
953
1163
|
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
954
1164
|
</state>
|
955
1165
|
</provider>
|
956
1166
|
</entry>
|
957
|
-
<entry file="file://$
|
1167
|
+
<entry file="file://$APPLICATION_HOME_DIR$/rubystubs193/kernel.rb">
|
1168
|
+
<provider selected="true" editor-type-id="text-editor">
|
1169
|
+
<state vertical-scroll-proportion="1.5721831">
|
1170
|
+
<caret line="1245" column="8" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
1171
|
+
</state>
|
1172
|
+
</provider>
|
1173
|
+
</entry>
|
1174
|
+
<entry file="file://$PROJECT_DIR$/lib/script_executor/output_buffer.rb">
|
958
1175
|
<provider selected="true" editor-type-id="text-editor">
|
959
1176
|
<state vertical-scroll-proportion="0.0">
|
960
1177
|
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
961
1178
|
</state>
|
962
1179
|
</provider>
|
963
1180
|
</entry>
|
964
|
-
<entry file="file://$PROJECT_DIR$/
|
1181
|
+
<entry file="file://$PROJECT_DIR$/script_executor.gemspec.erb">
|
965
1182
|
<provider selected="true" editor-type-id="text-editor">
|
966
|
-
<state vertical-scroll-proportion="0.
|
967
|
-
<caret line="
|
1183
|
+
<state vertical-scroll-proportion="0.15822785">
|
1184
|
+
<caret line="5" column="33" selection-start-line="5" selection-start-column="33" selection-end-line="5" selection-end-column="33" />
|
968
1185
|
</state>
|
969
1186
|
</provider>
|
970
1187
|
</entry>
|
971
|
-
<entry file="file://$PROJECT_DIR$/
|
1188
|
+
<entry file="file://$PROJECT_DIR$/script_executor.gemspec">
|
972
1189
|
<provider selected="true" editor-type-id="text-editor">
|
973
|
-
<state vertical-scroll-proportion="0.
|
974
|
-
<caret line="
|
1190
|
+
<state vertical-scroll-proportion="0.13509934">
|
1191
|
+
<caret line="6" column="43" selection-start-line="6" selection-start-column="43" selection-end-line="6" selection-end-column="43" />
|
975
1192
|
</state>
|
976
1193
|
</provider>
|
977
1194
|
</entry>
|
978
|
-
<entry file="file://$PROJECT_DIR$/
|
1195
|
+
<entry file="file://$PROJECT_DIR$/lib/executable.rb">
|
979
1196
|
<provider selected="true" editor-type-id="text-editor">
|
980
1197
|
<state vertical-scroll-proportion="0.0">
|
981
|
-
<caret line="
|
1198
|
+
<caret line="0" column="26" selection-start-line="0" selection-start-column="26" selection-end-line="0" selection-end-column="26" />
|
982
1199
|
</state>
|
983
1200
|
</provider>
|
984
1201
|
</entry>
|
985
|
-
<entry file="file://$PROJECT_DIR$/lib/script_executor
|
1202
|
+
<entry file="file://$PROJECT_DIR$/lib/script_executor.rb">
|
986
1203
|
<provider selected="true" editor-type-id="text-editor">
|
987
1204
|
<state vertical-scroll-proportion="0.0">
|
988
|
-
<caret line="0" column="
|
1205
|
+
<caret line="0" column="41" selection-start-line="0" selection-start-column="41" selection-end-line="0" selection-end-column="41" />
|
989
1206
|
</state>
|
990
1207
|
</provider>
|
991
1208
|
</entry>
|
992
|
-
<entry file="file://$PROJECT_DIR$/
|
1209
|
+
<entry file="file://$PROJECT_DIR$/lib/script_executor/local_command.rb">
|
993
1210
|
<provider selected="true" editor-type-id="text-editor">
|
994
|
-
<state vertical-scroll-proportion="
|
995
|
-
<caret line="
|
1211
|
+
<state vertical-scroll-proportion="1.1590909">
|
1212
|
+
<caret line="36" column="13" selection-start-line="36" selection-start-column="13" selection-end-line="36" selection-end-column="13" />
|
996
1213
|
</state>
|
997
1214
|
</provider>
|
998
1215
|
</entry>
|
999
1216
|
<entry file="file://$PROJECT_DIR$/Rakefile">
|
1000
1217
|
<provider selected="true" editor-type-id="text-editor">
|
1001
|
-
<state vertical-scroll-proportion="0.
|
1002
|
-
<caret line="
|
1218
|
+
<state vertical-scroll-proportion="0.9015151">
|
1219
|
+
<caret line="28" column="0" selection-start-line="28" selection-start-column="0" selection-end-line="28" selection-end-column="0" />
|
1003
1220
|
</state>
|
1004
1221
|
</provider>
|
1005
1222
|
</entry>
|
1006
|
-
<entry file="file://$PROJECT_DIR$/
|
1223
|
+
<entry file="file://$PROJECT_DIR$/README.md">
|
1007
1224
|
<provider selected="true" editor-type-id="text-editor">
|
1008
|
-
<state vertical-scroll-proportion="
|
1009
|
-
<caret line="
|
1225
|
+
<state vertical-scroll-proportion="3.1683366">
|
1226
|
+
<caret line="93" column="24" selection-start-line="93" selection-start-column="24" selection-end-line="93" selection-end-column="24" />
|
1010
1227
|
</state>
|
1011
1228
|
</provider>
|
1229
|
+
<provider editor-type-id="MultiMarkdownFxHtmlEditor">
|
1230
|
+
<state />
|
1231
|
+
</provider>
|
1232
|
+
<provider editor-type-id="MarkdownPreviewEditor">
|
1233
|
+
<state />
|
1234
|
+
</provider>
|
1235
|
+
<provider editor-type-id="MultiMarkdownFxPreviewEditor">
|
1236
|
+
<state />
|
1237
|
+
</provider>
|
1012
1238
|
</entry>
|
1013
|
-
<entry file="file://$PROJECT_DIR
|
1239
|
+
<entry file="file://$PROJECT_DIR$/.ruby-version">
|
1014
1240
|
<provider selected="true" editor-type-id="text-editor">
|
1015
1241
|
<state vertical-scroll-proportion="0.0">
|
1016
|
-
<caret line="0" column="
|
1242
|
+
<caret line="0" column="5" selection-start-line="0" selection-start-column="5" selection-end-line="0" selection-end-column="5" />
|
1017
1243
|
</state>
|
1018
1244
|
</provider>
|
1019
1245
|
</entry>
|
1020
|
-
<entry file="file://$
|
1246
|
+
<entry file="file://$PROJECT_DIR$/Gemfile.lock">
|
1021
1247
|
<provider selected="true" editor-type-id="text-editor">
|
1022
|
-
<state vertical-scroll-proportion="
|
1023
|
-
<caret line="
|
1248
|
+
<state vertical-scroll-proportion="0.24418604">
|
1249
|
+
<caret line="7" column="28" selection-start-line="7" selection-start-column="28" selection-end-line="7" selection-end-column="28" />
|
1024
1250
|
</state>
|
1025
1251
|
</provider>
|
1026
1252
|
</entry>
|
1027
|
-
<entry file="file://$PROJECT_DIR$/lib/script_executor/
|
1253
|
+
<entry file="file://$PROJECT_DIR$/lib/script_executor/remote_command.rb">
|
1028
1254
|
<provider selected="true" editor-type-id="text-editor">
|
1029
1255
|
<state vertical-scroll-proportion="0.0">
|
1030
|
-
<caret line="
|
1256
|
+
<caret line="23" column="13" selection-start-line="23" selection-start-column="13" selection-end-line="23" selection-end-column="13" />
|
1257
|
+
<folding />
|
1031
1258
|
</state>
|
1032
1259
|
</provider>
|
1033
1260
|
</entry>
|
1034
|
-
<entry file="file://$PROJECT_DIR$/script_executor.
|
1261
|
+
<entry file="file://$PROJECT_DIR$/lib/script_executor/executable.rb">
|
1035
1262
|
<provider selected="true" editor-type-id="text-editor">
|
1036
|
-
<state vertical-scroll-proportion="0.
|
1037
|
-
<caret line="
|
1263
|
+
<state vertical-scroll-proportion="0.0">
|
1264
|
+
<caret line="25" column="12" selection-start-line="25" selection-start-column="6" selection-end-line="25" selection-end-column="12" />
|
1265
|
+
<folding />
|
1038
1266
|
</state>
|
1039
1267
|
</provider>
|
1040
1268
|
</entry>
|
1041
|
-
<entry file="file://$PROJECT_DIR
|
1269
|
+
<entry file="file://$PROJECT_DIR$/.ruby-gemset">
|
1042
1270
|
<provider selected="true" editor-type-id="text-editor">
|
1043
1271
|
<state vertical-scroll-proportion="0.0">
|
1044
|
-
<caret line="0" column="
|
1272
|
+
<caret line="0" column="15" selection-start-line="0" selection-start-column="15" selection-end-line="0" selection-end-column="15" />
|
1273
|
+
<folding />
|
1045
1274
|
</state>
|
1046
1275
|
</provider>
|
1047
1276
|
</entry>
|
1048
|
-
<entry file="file://$
|
1277
|
+
<entry file="file://$USER_HOME$/.rvm/gems/ruby-2.2.3@script_executor/gems/parslet-1.7.1/lib/parslet.rb">
|
1049
1278
|
<provider selected="true" editor-type-id="text-editor">
|
1050
1279
|
<state vertical-scroll-proportion="0.0">
|
1051
|
-
<caret line="
|
1280
|
+
<caret line="285" column="4" selection-start-line="285" selection-start-column="4" selection-end-line="285" selection-end-column="36" />
|
1281
|
+
<folding />
|
1052
1282
|
</state>
|
1053
1283
|
</provider>
|
1054
1284
|
</entry>
|
1055
|
-
<entry file="file://$
|
1285
|
+
<entry file="file://$USER_HOME$/.rvm/gems/ruby-2.2.3@script_executor/gems/rspec-core-3.3.2/lib/rspec/core/configuration.rb">
|
1056
1286
|
<provider selected="true" editor-type-id="text-editor">
|
1057
|
-
<state vertical-scroll-proportion="0.
|
1058
|
-
<caret line="
|
1287
|
+
<state vertical-scroll-proportion="0.0">
|
1288
|
+
<caret line="1330" column="0" selection-start-line="1330" selection-start-column="0" selection-end-line="1330" selection-end-column="0" />
|
1289
|
+
<folding />
|
1059
1290
|
</state>
|
1060
1291
|
</provider>
|
1061
1292
|
</entry>
|
1062
|
-
<entry file="file://$
|
1293
|
+
<entry file="file://$USER_HOME$/.rvm/gems/ruby-2.2.3@script_executor/gems/rspec-core-3.3.2/lib/rspec/core/runner.rb">
|
1063
1294
|
<provider selected="true" editor-type-id="text-editor">
|
1064
1295
|
<state vertical-scroll-proportion="0.0">
|
1065
|
-
<caret line="
|
1296
|
+
<caret line="88" column="0" selection-start-line="88" selection-start-column="0" selection-end-line="88" selection-end-column="0" />
|
1066
1297
|
<folding />
|
1067
1298
|
</state>
|
1068
1299
|
</provider>
|
1069
1300
|
</entry>
|
1070
|
-
<entry file="file://$PROJECT_DIR$/
|
1301
|
+
<entry file="file://$PROJECT_DIR$/spec/spec_helper.rb">
|
1071
1302
|
<provider selected="true" editor-type-id="text-editor">
|
1072
|
-
<state vertical-scroll-proportion="0.
|
1073
|
-
<caret line="
|
1303
|
+
<state vertical-scroll-proportion="0.041436464">
|
1304
|
+
<caret line="1" column="12" selection-start-line="1" selection-start-column="12" selection-end-line="1" selection-end-column="12" />
|
1305
|
+
<folding />
|
1074
1306
|
</state>
|
1075
1307
|
</provider>
|
1076
1308
|
</entry>
|
1077
|
-
<entry file="file://$PROJECT_DIR$/lib/script_executor.rb">
|
1309
|
+
<entry file="file://$PROJECT_DIR$/lib/script_executor/script_executor.rb">
|
1078
1310
|
<provider selected="true" editor-type-id="text-editor">
|
1079
|
-
<state vertical-scroll-proportion="0.
|
1080
|
-
<caret line="
|
1311
|
+
<state vertical-scroll-proportion="0.14962594">
|
1312
|
+
<caret line="4" column="22" selection-start-line="4" selection-start-column="22" selection-end-line="4" selection-end-column="22" />
|
1313
|
+
<folding />
|
1081
1314
|
</state>
|
1082
1315
|
</provider>
|
1083
1316
|
</entry>
|
@@ -1085,121 +1318,144 @@
|
|
1085
1318
|
<provider selected="true" editor-type-id="text-editor">
|
1086
1319
|
<state vertical-scroll-proportion="0.0">
|
1087
1320
|
<caret line="0" column="40" selection-start-line="0" selection-start-column="40" selection-end-line="0" selection-end-column="40" />
|
1321
|
+
<folding />
|
1088
1322
|
</state>
|
1089
1323
|
</provider>
|
1090
1324
|
</entry>
|
1091
|
-
<entry file="file://$
|
1325
|
+
<entry file="file://$USER_HOME$/.rvm/gems/ruby-2.2.3@script_executor/gems/parslet-1.7.1/lib/parslet/transform.rb">
|
1092
1326
|
<provider selected="true" editor-type-id="text-editor">
|
1093
1327
|
<state vertical-scroll-proportion="0.0">
|
1094
|
-
<caret line="
|
1328
|
+
<caret line="186" column="0" selection-start-line="186" selection-start-column="0" selection-end-line="186" selection-end-column="0" />
|
1329
|
+
<folding />
|
1095
1330
|
</state>
|
1096
1331
|
</provider>
|
1097
1332
|
</entry>
|
1098
|
-
<entry file="file://$
|
1333
|
+
<entry file="file://$USER_HOME$/.rvm/gems/ruby-2.2.3@script_executor/gems/rspec-core-3.3.2/lib/rspec/core/memoized_helpers.rb">
|
1099
1334
|
<provider selected="true" editor-type-id="text-editor">
|
1100
1335
|
<state vertical-scroll-proportion="0.0">
|
1101
|
-
<caret line="
|
1336
|
+
<caret line="57" column="0" selection-start-line="57" selection-start-column="0" selection-end-line="57" selection-end-column="0" />
|
1337
|
+
<folding />
|
1102
1338
|
</state>
|
1103
1339
|
</provider>
|
1104
1340
|
</entry>
|
1105
|
-
<entry file="file://$PROJECT_DIR$/lib/script_executor/
|
1341
|
+
<entry file="file://$PROJECT_DIR$/lib/script_executor/scripts_parser.rb">
|
1106
1342
|
<provider selected="true" editor-type-id="text-editor">
|
1107
1343
|
<state vertical-scroll-proportion="0.0">
|
1108
|
-
<caret line="
|
1344
|
+
<caret line="23" column="0" selection-start-line="23" selection-start-column="0" selection-end-line="23" selection-end-column="0" />
|
1345
|
+
<folding />
|
1109
1346
|
</state>
|
1110
1347
|
</provider>
|
1111
1348
|
</entry>
|
1112
|
-
<entry file="file://$PROJECT_DIR$/lib/script_executor/
|
1349
|
+
<entry file="file://$PROJECT_DIR$/lib/script_executor/scripts_transformer.rb">
|
1113
1350
|
<provider selected="true" editor-type-id="text-editor">
|
1114
1351
|
<state vertical-scroll-proportion="0.0">
|
1115
|
-
<caret line="
|
1352
|
+
<caret line="15" column="9" selection-start-line="15" selection-start-column="9" selection-end-line="15" selection-end-column="9" />
|
1353
|
+
<folding />
|
1116
1354
|
</state>
|
1117
1355
|
</provider>
|
1118
1356
|
</entry>
|
1119
|
-
<entry file="file://$PROJECT_DIR$/
|
1357
|
+
<entry file="file://$PROJECT_DIR$/spec/support/big_script.sh">
|
1120
1358
|
<provider selected="true" editor-type-id="text-editor">
|
1121
|
-
<state vertical-scroll-proportion="0.
|
1122
|
-
<caret line="
|
1359
|
+
<state vertical-scroll-proportion="0.037406486">
|
1360
|
+
<caret line="2" column="0" selection-start-line="2" selection-start-column="0" selection-end-line="5" selection-end-column="18" />
|
1361
|
+
<folding />
|
1123
1362
|
</state>
|
1124
1363
|
</provider>
|
1125
1364
|
</entry>
|
1126
|
-
<entry file="file://$PROJECT_DIR$/
|
1365
|
+
<entry file="file://$PROJECT_DIR$/spec/support/test.conf">
|
1127
1366
|
<provider selected="true" editor-type-id="text-editor">
|
1128
|
-
<state vertical-scroll-proportion="0.
|
1129
|
-
<caret line="
|
1367
|
+
<state vertical-scroll-proportion="0.07481297">
|
1368
|
+
<caret line="2" column="4" selection-start-line="2" selection-start-column="4" selection-end-line="2" selection-end-column="4" />
|
1130
1369
|
<folding />
|
1131
1370
|
</state>
|
1132
1371
|
</provider>
|
1133
1372
|
</entry>
|
1134
|
-
<entry file="file://$PROJECT_DIR$/
|
1373
|
+
<entry file="file://$PROJECT_DIR$/spec/support/test2.conf">
|
1135
1374
|
<provider selected="true" editor-type-id="text-editor">
|
1136
1375
|
<state vertical-scroll-proportion="0.0">
|
1137
|
-
<caret line="
|
1376
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="7" selection-end-column="12" />
|
1138
1377
|
<folding />
|
1139
1378
|
</state>
|
1140
1379
|
</provider>
|
1141
1380
|
</entry>
|
1142
|
-
<entry file="file://$PROJECT_DIR
|
1381
|
+
<entry file="file://$PROJECT_DIR$/spec/executable_spec.rb">
|
1143
1382
|
<provider selected="true" editor-type-id="text-editor">
|
1144
|
-
<state vertical-scroll-proportion="0.
|
1145
|
-
<caret line="
|
1383
|
+
<state vertical-scroll-proportion="0.1388889">
|
1384
|
+
<caret line="4" column="0" selection-start-line="4" selection-start-column="0" selection-end-line="4" selection-end-column="0" />
|
1146
1385
|
<folding />
|
1147
1386
|
</state>
|
1148
1387
|
</provider>
|
1149
1388
|
</entry>
|
1150
|
-
<entry file="file://$PROJECT_DIR
|
1389
|
+
<entry file="file://$PROJECT_DIR$/spec/script_locator_spec.rb">
|
1151
1390
|
<provider selected="true" editor-type-id="text-editor">
|
1152
|
-
<state vertical-scroll-proportion="0.
|
1153
|
-
<caret line="
|
1391
|
+
<state vertical-scroll-proportion="0.20833333">
|
1392
|
+
<caret line="6" column="0" selection-start-line="6" selection-start-column="0" selection-end-line="6" selection-end-column="45" />
|
1393
|
+
<folding>
|
1394
|
+
<element signature="e#1260#1338#0" expanded="true" />
|
1395
|
+
</folding>
|
1396
|
+
</state>
|
1397
|
+
</provider>
|
1398
|
+
</entry>
|
1399
|
+
<entry file="file://$PROJECT_DIR$/spec/scripts_parser_spec.rb">
|
1400
|
+
<provider selected="true" editor-type-id="text-editor">
|
1401
|
+
<state vertical-scroll-proportion="0.5555556">
|
1402
|
+
<caret line="16" column="0" selection-start-line="16" selection-start-column="0" selection-end-line="16" selection-end-column="0" />
|
1154
1403
|
<folding />
|
1155
1404
|
</state>
|
1156
1405
|
</provider>
|
1157
1406
|
</entry>
|
1158
|
-
<entry file="file://$PROJECT_DIR$/
|
1407
|
+
<entry file="file://$PROJECT_DIR$/spec/support/base.conf.json">
|
1159
1408
|
<provider selected="true" editor-type-id="text-editor">
|
1160
|
-
<state vertical-scroll-proportion="
|
1161
|
-
<caret line="
|
1409
|
+
<state vertical-scroll-proportion="0.59681696">
|
1410
|
+
<caret line="15" column="1" selection-start-line="15" selection-start-column="1" selection-end-line="15" selection-end-column="1" />
|
1162
1411
|
<folding />
|
1163
1412
|
</state>
|
1164
1413
|
</provider>
|
1165
1414
|
</entry>
|
1166
1415
|
<entry file="file://$PROJECT_DIR$/lib/script_executor/version.rb">
|
1167
1416
|
<provider selected="true" editor-type-id="text-editor">
|
1168
|
-
<state vertical-scroll-proportion="
|
1169
|
-
<caret line="1" column="
|
1417
|
+
<state vertical-scroll-proportion="0.034883723">
|
1418
|
+
<caret line="1" column="16" selection-start-line="1" selection-start-column="16" selection-end-line="1" selection-end-column="16" />
|
1170
1419
|
<folding />
|
1171
1420
|
</state>
|
1172
1421
|
</provider>
|
1173
1422
|
</entry>
|
1174
|
-
<entry file="file://$PROJECT_DIR$/lib/script_executor/
|
1423
|
+
<entry file="file://$PROJECT_DIR$/lib/script_executor/base_provision.rb">
|
1175
1424
|
<provider selected="true" editor-type-id="text-editor">
|
1176
|
-
<state vertical-scroll-proportion="
|
1177
|
-
<caret line="
|
1425
|
+
<state vertical-scroll-proportion="0.0">
|
1426
|
+
<caret line="46" column="38" selection-start-line="46" selection-start-column="38" selection-end-line="46" selection-end-column="38" />
|
1178
1427
|
<folding />
|
1179
1428
|
</state>
|
1180
1429
|
</provider>
|
1181
1430
|
</entry>
|
1182
|
-
<entry file="file://$PROJECT_DIR$/
|
1431
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
1183
1432
|
<provider selected="true" editor-type-id="text-editor">
|
1184
|
-
<state vertical-scroll-proportion="
|
1185
|
-
<caret line="
|
1433
|
+
<state vertical-scroll-proportion="0.41860464">
|
1434
|
+
<caret line="12" column="26" selection-start-line="12" selection-start-column="26" selection-end-line="12" selection-end-column="26" />
|
1186
1435
|
<folding />
|
1187
1436
|
</state>
|
1188
1437
|
</provider>
|
1189
|
-
|
1190
|
-
|
1191
|
-
|
1192
|
-
|
1193
|
-
|
1438
|
+
</entry>
|
1439
|
+
<entry file="file://$PROJECT_DIR$/spec/base_provision_spec.rb">
|
1440
|
+
<provider selected="true" editor-type-id="text-editor">
|
1441
|
+
<state vertical-scroll-proportion="0.41860464">
|
1442
|
+
<caret line="12" column="25" selection-start-line="12" selection-start-column="25" selection-end-line="12" selection-end-column="25" />
|
1443
|
+
<folding />
|
1444
|
+
</state>
|
1194
1445
|
</provider>
|
1195
|
-
|
1196
|
-
|
1446
|
+
</entry>
|
1447
|
+
<entry file="file://$PROJECT_DIR$/lib/script_executor/script_locator.rb">
|
1448
|
+
<provider selected="true" editor-type-id="text-editor">
|
1449
|
+
<state vertical-scroll-proportion="0.0">
|
1450
|
+
<caret line="43" column="5" selection-start-line="43" selection-start-column="5" selection-end-line="43" selection-end-column="5" />
|
1451
|
+
<folding />
|
1452
|
+
</state>
|
1197
1453
|
</provider>
|
1198
1454
|
</entry>
|
1199
1455
|
<entry file="file://$PROJECT_DIR$/CHANGES">
|
1200
1456
|
<provider selected="true" editor-type-id="text-editor">
|
1201
|
-
<state vertical-scroll-proportion="0.
|
1202
|
-
<caret line="
|
1457
|
+
<state vertical-scroll-proportion="0.7809524">
|
1458
|
+
<caret line="106" column="2" selection-start-line="106" selection-start-column="2" selection-end-line="106" selection-end-column="52" />
|
1203
1459
|
<folding />
|
1204
1460
|
</state>
|
1205
1461
|
</provider>
|