koara-xml 0.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +4 -0
- data/.gitmodules +3 -0
- data/.idea/compiler.xml +22 -0
- data/.idea/copyright/profiles_settings.xml +3 -0
- data/.idea/koara-rb-xml.iml +9 -0
- data/.idea/misc.xml +61 -0
- data/.idea/modules.xml +8 -0
- data/.idea/vcs.xml +7 -0
- data/.idea/workspace.xml +949 -0
- data/.travis.yml +8 -0
- data/Gemfile +6 -0
- data/LICENSE +202 -0
- data/README.md +37 -0
- data/Rakefile +14 -0
- data/koara-xml.gemspec +24 -0
- data/lib/koara/xml.rb +8 -0
- data/lib/koara/xml/xmlrenderer.rb +210 -0
- data/test/compliance_test.rb +29 -0
- data/test/end_to_end_test.rb +1048 -0
- data/test/test_helper.rb +5 -0
- data/test/xmlrenderer_test.rb +35 -0
- metadata +89 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 5e944f3a698a1d7d28ac7a1651a343338fa6dc97
|
|
4
|
+
data.tar.gz: 5c2b687dd13658056de6ba7f6c95d2387919b3f7
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 22e84df0343435641efdf9b47c43abdd71339c2c5ee586da6415614f1698a162d3d3986944e657ea8e081d91ae19d58f2f54eb032de022cebee08eb1c5fca7eb
|
|
7
|
+
data.tar.gz: c89d6c19ad50b27f21cb0f9e559a939eca3de31a11c05085ea57451802dc94165553886fc292e52095f5677e16f49fee21781340d1b5d9e54a2b50ab12d26ff0
|
data/.gitignore
ADDED
data/.gitmodules
ADDED
data/.idea/compiler.xml
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="CompilerConfiguration">
|
|
4
|
+
<resourceExtensions />
|
|
5
|
+
<wildcardResourcePatterns>
|
|
6
|
+
<entry name="!?*.java" />
|
|
7
|
+
<entry name="!?*.form" />
|
|
8
|
+
<entry name="!?*.class" />
|
|
9
|
+
<entry name="!?*.groovy" />
|
|
10
|
+
<entry name="!?*.scala" />
|
|
11
|
+
<entry name="!?*.flex" />
|
|
12
|
+
<entry name="!?*.kt" />
|
|
13
|
+
<entry name="!?*.clj" />
|
|
14
|
+
<entry name="!?*.aj" />
|
|
15
|
+
</wildcardResourcePatterns>
|
|
16
|
+
<annotationProcessing>
|
|
17
|
+
<profile default="true" name="Default" enabled="false">
|
|
18
|
+
<processorPath useClasspath="true" />
|
|
19
|
+
</profile>
|
|
20
|
+
</annotationProcessing>
|
|
21
|
+
</component>
|
|
22
|
+
</project>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<module type="JAVA_MODULE" version="4">
|
|
3
|
+
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
|
4
|
+
<exclude-output />
|
|
5
|
+
<content url="file://$MODULE_DIR$" />
|
|
6
|
+
<orderEntry type="inheritedJdk" />
|
|
7
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
|
8
|
+
</component>
|
|
9
|
+
</module>
|
data/.idea/misc.xml
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="ProjectInspectionProfilesVisibleTreeState">
|
|
4
|
+
<entry key="Project Default">
|
|
5
|
+
<profile-state>
|
|
6
|
+
<expanded-state>
|
|
7
|
+
<State>
|
|
8
|
+
<id />
|
|
9
|
+
</State>
|
|
10
|
+
<State>
|
|
11
|
+
<id>Cucumber</id>
|
|
12
|
+
</State>
|
|
13
|
+
<State>
|
|
14
|
+
<id>JRuby</id>
|
|
15
|
+
</State>
|
|
16
|
+
<State>
|
|
17
|
+
<id>Naming conventionsRuby</id>
|
|
18
|
+
</State>
|
|
19
|
+
<State>
|
|
20
|
+
<id>Rails</id>
|
|
21
|
+
</State>
|
|
22
|
+
<State>
|
|
23
|
+
<id>Ruby</id>
|
|
24
|
+
</State>
|
|
25
|
+
</expanded-state>
|
|
26
|
+
<selected-state>
|
|
27
|
+
<State>
|
|
28
|
+
<id>Android</id>
|
|
29
|
+
</State>
|
|
30
|
+
</selected-state>
|
|
31
|
+
</profile-state>
|
|
32
|
+
</entry>
|
|
33
|
+
</component>
|
|
34
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
|
35
|
+
<OptionsSetting value="true" id="Add" />
|
|
36
|
+
<OptionsSetting value="true" id="Remove" />
|
|
37
|
+
<OptionsSetting value="true" id="Checkout" />
|
|
38
|
+
<OptionsSetting value="true" id="Update" />
|
|
39
|
+
<OptionsSetting value="true" id="Status" />
|
|
40
|
+
<OptionsSetting value="true" id="Edit" />
|
|
41
|
+
<ConfirmationsSetting value="0" id="Add" />
|
|
42
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
|
43
|
+
</component>
|
|
44
|
+
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_3" default="true" assert-keyword="false" jdk-15="false" />
|
|
45
|
+
<component name="masterDetails">
|
|
46
|
+
<states>
|
|
47
|
+
<state key="ProjectJDKs.UI">
|
|
48
|
+
<settings>
|
|
49
|
+
<last-edited>1.8</last-edited>
|
|
50
|
+
<splitter-proportions>
|
|
51
|
+
<option name="proportions">
|
|
52
|
+
<list>
|
|
53
|
+
<option value="0.2" />
|
|
54
|
+
</list>
|
|
55
|
+
</option>
|
|
56
|
+
</splitter-proportions>
|
|
57
|
+
</settings>
|
|
58
|
+
</state>
|
|
59
|
+
</states>
|
|
60
|
+
</component>
|
|
61
|
+
</project>
|
data/.idea/modules.xml
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="ProjectModuleManager">
|
|
4
|
+
<modules>
|
|
5
|
+
<module fileurl="file://$PROJECT_DIR$/.idea/koara-rb-xml.iml" filepath="$PROJECT_DIR$/.idea/koara-rb-xml.iml" />
|
|
6
|
+
</modules>
|
|
7
|
+
</component>
|
|
8
|
+
</project>
|
data/.idea/vcs.xml
ADDED
data/.idea/workspace.xml
ADDED
|
@@ -0,0 +1,949 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="ChangeListManager">
|
|
4
|
+
<list default="true" id="430d7766-935a-48f1-9057-fc13e4281ea3" name="Default" comment="">
|
|
5
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/.idea/misc.xml" afterPath="$PROJECT_DIR$/.idea/misc.xml" />
|
|
6
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/.idea/vcs.xml" afterPath="$PROJECT_DIR$/.idea/vcs.xml" />
|
|
7
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/.idea/workspace.xml" afterPath="$PROJECT_DIR$/.idea/workspace.xml" />
|
|
8
|
+
</list>
|
|
9
|
+
<ignored path="koara-rb-xml.iws" />
|
|
10
|
+
<ignored path=".idea/workspace.xml" />
|
|
11
|
+
<ignored path=".idea/dataSources.local.xml" />
|
|
12
|
+
<option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
|
|
13
|
+
<option name="TRACKING_ENABLED" value="true" />
|
|
14
|
+
<option name="SHOW_DIALOG" value="false" />
|
|
15
|
+
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
16
|
+
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
17
|
+
<option name="LAST_RESOLUTION" value="IGNORE" />
|
|
18
|
+
</component>
|
|
19
|
+
<component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
|
|
20
|
+
<component name="CreatePatchCommitExecutor">
|
|
21
|
+
<option name="PATCH_PATH" value="" />
|
|
22
|
+
</component>
|
|
23
|
+
<component name="ExecutionTargetManager" SELECTED_TARGET="default_target" />
|
|
24
|
+
<component name="FavoritesManager">
|
|
25
|
+
<favorites_list name="koara-rb-xml" />
|
|
26
|
+
</component>
|
|
27
|
+
<component name="FileEditorManager">
|
|
28
|
+
<leaf SIDE_TABS_SIZE_LIMIT_KEY="300">
|
|
29
|
+
<file leaf-file-name="xmlrenderer.rb" pinned="false" current-in-tab="false">
|
|
30
|
+
<entry file="file://$PROJECT_DIR$/lib/koara/xml/xmlrenderer.rb">
|
|
31
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
32
|
+
<state relative-caret-position="336">
|
|
33
|
+
<caret line="131" column="0" selection-start-line="131" selection-start-column="0" selection-end-line="131" selection-end-column="0" />
|
|
34
|
+
<folding />
|
|
35
|
+
</state>
|
|
36
|
+
</provider>
|
|
37
|
+
</entry>
|
|
38
|
+
</file>
|
|
39
|
+
<file leaf-file-name="Rakefile" pinned="false" current-in-tab="false">
|
|
40
|
+
<entry file="file://$PROJECT_DIR$/Rakefile">
|
|
41
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
42
|
+
<state relative-caret-position="75">
|
|
43
|
+
<caret line="5" column="23" selection-start-line="5" selection-start-column="23" selection-end-line="5" selection-end-column="23" />
|
|
44
|
+
<folding />
|
|
45
|
+
</state>
|
|
46
|
+
</provider>
|
|
47
|
+
</entry>
|
|
48
|
+
</file>
|
|
49
|
+
<file leaf-file-name="koara-xml.gemspec" pinned="false" current-in-tab="false">
|
|
50
|
+
<entry file="file://$PROJECT_DIR$/koara-xml.gemspec">
|
|
51
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
52
|
+
<state relative-caret-position="150">
|
|
53
|
+
<caret line="10" column="0" selection-start-line="10" selection-start-column="0" selection-end-line="10" selection-end-column="0" />
|
|
54
|
+
<folding />
|
|
55
|
+
</state>
|
|
56
|
+
</provider>
|
|
57
|
+
</entry>
|
|
58
|
+
</file>
|
|
59
|
+
<file leaf-file-name="xmlrenderer_test.rb" pinned="false" current-in-tab="false">
|
|
60
|
+
<entry file="file://$PROJECT_DIR$/test/xmlrenderer_test.rb">
|
|
61
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
62
|
+
<state relative-caret-position="390">
|
|
63
|
+
<caret line="26" column="33" selection-start-line="26" selection-start-column="33" selection-end-line="26" selection-end-column="33" />
|
|
64
|
+
<folding />
|
|
65
|
+
</state>
|
|
66
|
+
</provider>
|
|
67
|
+
</entry>
|
|
68
|
+
</file>
|
|
69
|
+
<file leaf-file-name="README.md" pinned="false" current-in-tab="false">
|
|
70
|
+
<entry file="file://$PROJECT_DIR$/README.md">
|
|
71
|
+
<provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
|
|
72
|
+
<state split_layout="FIRST">
|
|
73
|
+
<first_editor relative-caret-position="30">
|
|
74
|
+
<caret line="2" column="0" selection-start-line="2" selection-start-column="0" selection-end-line="2" selection-end-column="0" />
|
|
75
|
+
<folding />
|
|
76
|
+
</first_editor>
|
|
77
|
+
<second_editor />
|
|
78
|
+
</state>
|
|
79
|
+
</provider>
|
|
80
|
+
</entry>
|
|
81
|
+
</file>
|
|
82
|
+
<file leaf-file-name="Gemfile" pinned="false" current-in-tab="true">
|
|
83
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
|
84
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
85
|
+
<state relative-caret-position="45">
|
|
86
|
+
<caret line="3" column="31" selection-start-line="3" selection-start-column="31" selection-end-line="3" selection-end-column="31" />
|
|
87
|
+
<folding />
|
|
88
|
+
</state>
|
|
89
|
+
</provider>
|
|
90
|
+
</entry>
|
|
91
|
+
</file>
|
|
92
|
+
</leaf>
|
|
93
|
+
</component>
|
|
94
|
+
<component name="Git.Settings">
|
|
95
|
+
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
|
96
|
+
</component>
|
|
97
|
+
<component name="GradleLocalSettings">
|
|
98
|
+
<option name="modificationStamps">
|
|
99
|
+
<map>
|
|
100
|
+
<entry key="$PROJECT_DIR$/../koara-java" value="1461734596000" />
|
|
101
|
+
</map>
|
|
102
|
+
</option>
|
|
103
|
+
<option name="externalProjectsViewState">
|
|
104
|
+
<projects_view />
|
|
105
|
+
</option>
|
|
106
|
+
</component>
|
|
107
|
+
<component name="IdeDocumentHistory">
|
|
108
|
+
<option name="CHANGED_PATHS">
|
|
109
|
+
<list>
|
|
110
|
+
<option value="$PROJECT_DIR$/test/end_to_end_test.rb" />
|
|
111
|
+
<option value="$PROJECT_DIR$/test/compliance_test.rb" />
|
|
112
|
+
<option value="$PROJECT_DIR$/test/xmlrenderer_test.rb" />
|
|
113
|
+
<option value="$PROJECT_DIR$/lib/koara/xml/xmlrenderer.rb" />
|
|
114
|
+
<option value="$PROJECT_DIR$/Rakefile" />
|
|
115
|
+
<option value="$PROJECT_DIR$/koara-xml.gemspec" />
|
|
116
|
+
<option value="$PROJECT_DIR$/Gemfile" />
|
|
117
|
+
</list>
|
|
118
|
+
</option>
|
|
119
|
+
</component>
|
|
120
|
+
<component name="JsBuildToolGruntFileManager" detection-done="true" sorting="DEFINITION_ORDER" />
|
|
121
|
+
<component name="JsBuildToolPackageJson" detection-done="true" sorting="DEFINITION_ORDER" />
|
|
122
|
+
<component name="JsGulpfileManager">
|
|
123
|
+
<detection-done>true</detection-done>
|
|
124
|
+
<sorting>DEFINITION_ORDER</sorting>
|
|
125
|
+
</component>
|
|
126
|
+
<component name="MavenImportPreferences">
|
|
127
|
+
<option name="generalSettings">
|
|
128
|
+
<MavenGeneralSettings>
|
|
129
|
+
<option name="mavenHome" value="Bundled (Maven 3)" />
|
|
130
|
+
</MavenGeneralSettings>
|
|
131
|
+
</option>
|
|
132
|
+
</component>
|
|
133
|
+
<component name="PhpWorkspaceProjectConfiguration" backward_compatibility_performed="true" />
|
|
134
|
+
<component name="ProjectFrameBounds">
|
|
135
|
+
<option name="x" value="5" />
|
|
136
|
+
<option name="y" value="23" />
|
|
137
|
+
<option name="width" value="1435" />
|
|
138
|
+
<option name="height" value="877" />
|
|
139
|
+
</component>
|
|
140
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="true">
|
|
141
|
+
<OptionsSetting value="true" id="Add" />
|
|
142
|
+
<OptionsSetting value="true" id="Remove" />
|
|
143
|
+
<OptionsSetting value="true" id="Checkout" />
|
|
144
|
+
<OptionsSetting value="true" id="Update" />
|
|
145
|
+
<OptionsSetting value="true" id="Status" />
|
|
146
|
+
<OptionsSetting value="true" id="Edit" />
|
|
147
|
+
<ConfirmationsSetting value="0" id="Add" />
|
|
148
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
|
149
|
+
</component>
|
|
150
|
+
<component name="ProjectView">
|
|
151
|
+
<navigator currentView="ProjectPane" proportions="" version="1">
|
|
152
|
+
<flattenPackages />
|
|
153
|
+
<showMembers />
|
|
154
|
+
<showModules />
|
|
155
|
+
<showLibraryContents />
|
|
156
|
+
<hideEmptyPackages />
|
|
157
|
+
<abbreviatePackageNames />
|
|
158
|
+
<autoscrollToSource />
|
|
159
|
+
<autoscrollFromSource />
|
|
160
|
+
<sortByType />
|
|
161
|
+
<manualOrder />
|
|
162
|
+
<foldersAlwaysOnTop value="true" />
|
|
163
|
+
</navigator>
|
|
164
|
+
<panes>
|
|
165
|
+
<pane id="ProjectPane">
|
|
166
|
+
<subPane>
|
|
167
|
+
<PATH>
|
|
168
|
+
<PATH_ELEMENT>
|
|
169
|
+
<option name="myItemId" value="koara-rb-xml" />
|
|
170
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
171
|
+
</PATH_ELEMENT>
|
|
172
|
+
</PATH>
|
|
173
|
+
<PATH>
|
|
174
|
+
<PATH_ELEMENT>
|
|
175
|
+
<option name="myItemId" value="koara-rb-xml" />
|
|
176
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
177
|
+
</PATH_ELEMENT>
|
|
178
|
+
<PATH_ELEMENT>
|
|
179
|
+
<option name="myItemId" value="koara-rb-xml" />
|
|
180
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
181
|
+
</PATH_ELEMENT>
|
|
182
|
+
</PATH>
|
|
183
|
+
<PATH>
|
|
184
|
+
<PATH_ELEMENT>
|
|
185
|
+
<option name="myItemId" value="koara-rb-xml" />
|
|
186
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
187
|
+
</PATH_ELEMENT>
|
|
188
|
+
<PATH_ELEMENT>
|
|
189
|
+
<option name="myItemId" value="koara-rb-xml" />
|
|
190
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
191
|
+
</PATH_ELEMENT>
|
|
192
|
+
<PATH_ELEMENT>
|
|
193
|
+
<option name="myItemId" value="testsuite" />
|
|
194
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
195
|
+
</PATH_ELEMENT>
|
|
196
|
+
</PATH>
|
|
197
|
+
<PATH>
|
|
198
|
+
<PATH_ELEMENT>
|
|
199
|
+
<option name="myItemId" value="koara-rb-xml" />
|
|
200
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
|
201
|
+
</PATH_ELEMENT>
|
|
202
|
+
<PATH_ELEMENT>
|
|
203
|
+
<option name="myItemId" value="koara-rb-xml" />
|
|
204
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
205
|
+
</PATH_ELEMENT>
|
|
206
|
+
<PATH_ELEMENT>
|
|
207
|
+
<option name="myItemId" value="test" />
|
|
208
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
|
209
|
+
</PATH_ELEMENT>
|
|
210
|
+
</PATH>
|
|
211
|
+
</subPane>
|
|
212
|
+
</pane>
|
|
213
|
+
<pane id="PackagesPane" />
|
|
214
|
+
<pane id="Scope" />
|
|
215
|
+
<pane id="Scratches" />
|
|
216
|
+
</panes>
|
|
217
|
+
</component>
|
|
218
|
+
<component name="PropertiesComponent">
|
|
219
|
+
<property name="settings.editor.selected.configurable" value="preferences.sourceCode.Ruby" />
|
|
220
|
+
<property name="settings.editor.splitter.proportion" value="0.2" />
|
|
221
|
+
<property name="aspect.path.notification.shown" value="true" />
|
|
222
|
+
<property name="last_opened_file_path" value="$PROJECT_DIR$" />
|
|
223
|
+
<property name="WebServerToolWindowFactoryState" value="false" />
|
|
224
|
+
<property name="HbShouldOpenHtmlAsHb" value="" />
|
|
225
|
+
<property name="js-jscs-nodeInterpreter" value="/usr/local/bin/node" />
|
|
226
|
+
</component>
|
|
227
|
+
<component name="RecentsManager">
|
|
228
|
+
<key name="CopyFile.RECENT_KEYS">
|
|
229
|
+
<recent name="$PROJECT_DIR$" />
|
|
230
|
+
</key>
|
|
231
|
+
</component>
|
|
232
|
+
<component name="RunManager">
|
|
233
|
+
<configuration default="true" type="#org.jetbrains.idea.devkit.run.PluginConfigurationType" factoryName="Plugin">
|
|
234
|
+
<module name="" />
|
|
235
|
+
<option name="VM_PARAMETERS" value="-Xmx512m -Xms256m -XX:MaxPermSize=250m -ea" />
|
|
236
|
+
<option name="PROGRAM_PARAMETERS" />
|
|
237
|
+
<method />
|
|
238
|
+
</configuration>
|
|
239
|
+
<configuration default="true" type="AndroidRunConfigurationType" factoryName="Android Application">
|
|
240
|
+
<module name="" />
|
|
241
|
+
<option name="DEPLOY" value="true" />
|
|
242
|
+
<option name="ARTIFACT_NAME" value="" />
|
|
243
|
+
<option name="PM_INSTALL_OPTIONS" value="" />
|
|
244
|
+
<option name="ACTIVITY_EXTRA_FLAGS" value="" />
|
|
245
|
+
<option name="MODE" value="default_activity" />
|
|
246
|
+
<option name="TARGET_SELECTION_MODE" value="SHOW_DIALOG" />
|
|
247
|
+
<option name="PREFERRED_AVD" value="" />
|
|
248
|
+
<option name="CLEAR_LOGCAT" value="false" />
|
|
249
|
+
<option name="SHOW_LOGCAT_AUTOMATICALLY" value="true" />
|
|
250
|
+
<option name="SKIP_NOOP_APK_INSTALLATIONS" value="true" />
|
|
251
|
+
<option name="FORCE_STOP_RUNNING_APP" value="true" />
|
|
252
|
+
<option name="USE_LAST_SELECTED_DEVICE" value="false" />
|
|
253
|
+
<option name="PREFERRED_AVD" value="" />
|
|
254
|
+
<option name="DEEP_LINK" value="" />
|
|
255
|
+
<option name="ACTIVITY_CLASS" value="" />
|
|
256
|
+
<method />
|
|
257
|
+
</configuration>
|
|
258
|
+
<configuration default="true" type="AndroidTestRunConfigurationType" factoryName="Android Tests">
|
|
259
|
+
<module name="" />
|
|
260
|
+
<option name="TESTING_TYPE" value="0" />
|
|
261
|
+
<option name="INSTRUMENTATION_RUNNER_CLASS" value="" />
|
|
262
|
+
<option name="METHOD_NAME" value="" />
|
|
263
|
+
<option name="CLASS_NAME" value="" />
|
|
264
|
+
<option name="PACKAGE_NAME" value="" />
|
|
265
|
+
<option name="EXTRA_OPTIONS" value="" />
|
|
266
|
+
<option name="TARGET_SELECTION_MODE" value="SHOW_DIALOG" />
|
|
267
|
+
<option name="PREFERRED_AVD" value="" />
|
|
268
|
+
<option name="CLEAR_LOGCAT" value="false" />
|
|
269
|
+
<option name="SHOW_LOGCAT_AUTOMATICALLY" value="true" />
|
|
270
|
+
<option name="SKIP_NOOP_APK_INSTALLATIONS" value="true" />
|
|
271
|
+
<option name="FORCE_STOP_RUNNING_APP" value="true" />
|
|
272
|
+
<option name="USE_LAST_SELECTED_DEVICE" value="false" />
|
|
273
|
+
<option name="PREFERRED_AVD" value="" />
|
|
274
|
+
<method />
|
|
275
|
+
</configuration>
|
|
276
|
+
<configuration default="true" type="Applet" factoryName="Applet">
|
|
277
|
+
<option name="HTML_USED" value="false" />
|
|
278
|
+
<option name="WIDTH" value="400" />
|
|
279
|
+
<option name="HEIGHT" value="300" />
|
|
280
|
+
<option name="POLICY_FILE" value="$APPLICATION_HOME_DIR$/bin/appletviewer.policy" />
|
|
281
|
+
<module />
|
|
282
|
+
<method />
|
|
283
|
+
</configuration>
|
|
284
|
+
<configuration default="true" type="Application" factoryName="Application">
|
|
285
|
+
<extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
|
|
286
|
+
<option name="MAIN_CLASS_NAME" />
|
|
287
|
+
<option name="VM_PARAMETERS" />
|
|
288
|
+
<option name="PROGRAM_PARAMETERS" />
|
|
289
|
+
<option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" />
|
|
290
|
+
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
|
|
291
|
+
<option name="ALTERNATIVE_JRE_PATH" />
|
|
292
|
+
<option name="ENABLE_SWING_INSPECTOR" value="false" />
|
|
293
|
+
<option name="ENV_VARIABLES" />
|
|
294
|
+
<option name="PASS_PARENT_ENVS" value="true" />
|
|
295
|
+
<module name="" />
|
|
296
|
+
<envs />
|
|
297
|
+
<method />
|
|
298
|
+
</configuration>
|
|
299
|
+
<configuration default="true" type="ArquillianJUnit" factoryName="">
|
|
300
|
+
<extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
|
|
301
|
+
<module name="" />
|
|
302
|
+
<option name="arquillianRunConfiguration">
|
|
303
|
+
<value>
|
|
304
|
+
<option name="containerStateName" value="" />
|
|
305
|
+
</value>
|
|
306
|
+
</option>
|
|
307
|
+
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
|
|
308
|
+
<option name="ALTERNATIVE_JRE_PATH" />
|
|
309
|
+
<option name="PACKAGE_NAME" />
|
|
310
|
+
<option name="MAIN_CLASS_NAME" />
|
|
311
|
+
<option name="METHOD_NAME" />
|
|
312
|
+
<option name="TEST_OBJECT" value="class" />
|
|
313
|
+
<option name="VM_PARAMETERS" />
|
|
314
|
+
<option name="PARAMETERS" />
|
|
315
|
+
<option name="WORKING_DIRECTORY" />
|
|
316
|
+
<option name="ENV_VARIABLES" />
|
|
317
|
+
<option name="PASS_PARENT_ENVS" value="true" />
|
|
318
|
+
<option name="TEST_SEARCH_SCOPE">
|
|
319
|
+
<value defaultName="singleModule" />
|
|
320
|
+
</option>
|
|
321
|
+
<envs />
|
|
322
|
+
<patterns />
|
|
323
|
+
<method />
|
|
324
|
+
</configuration>
|
|
325
|
+
<configuration default="true" type="ArquillianTestNG" factoryName="">
|
|
326
|
+
<extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
|
|
327
|
+
<module name="" />
|
|
328
|
+
<option name="arquillianRunConfiguration">
|
|
329
|
+
<value>
|
|
330
|
+
<option name="containerStateName" value="" />
|
|
331
|
+
</value>
|
|
332
|
+
</option>
|
|
333
|
+
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
|
|
334
|
+
<option name="ALTERNATIVE_JRE_PATH" />
|
|
335
|
+
<option name="SUITE_NAME" />
|
|
336
|
+
<option name="PACKAGE_NAME" />
|
|
337
|
+
<option name="MAIN_CLASS_NAME" />
|
|
338
|
+
<option name="METHOD_NAME" />
|
|
339
|
+
<option name="GROUP_NAME" />
|
|
340
|
+
<option name="TEST_OBJECT" value="CLASS" />
|
|
341
|
+
<option name="VM_PARAMETERS" />
|
|
342
|
+
<option name="PARAMETERS" />
|
|
343
|
+
<option name="WORKING_DIRECTORY" />
|
|
344
|
+
<option name="OUTPUT_DIRECTORY" />
|
|
345
|
+
<option name="ANNOTATION_TYPE" />
|
|
346
|
+
<option name="ENV_VARIABLES" />
|
|
347
|
+
<option name="PASS_PARENT_ENVS" value="true" />
|
|
348
|
+
<option name="TEST_SEARCH_SCOPE">
|
|
349
|
+
<value defaultName="singleModule" />
|
|
350
|
+
</option>
|
|
351
|
+
<option name="USE_DEFAULT_REPORTERS" value="false" />
|
|
352
|
+
<option name="PROPERTIES_FILE" />
|
|
353
|
+
<envs />
|
|
354
|
+
<properties />
|
|
355
|
+
<listeners />
|
|
356
|
+
<method />
|
|
357
|
+
</configuration>
|
|
358
|
+
<configuration default="true" type="CucumberJavaRunConfigurationType" factoryName="Cucumber java">
|
|
359
|
+
<extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
|
|
360
|
+
<option name="myFilePath" />
|
|
361
|
+
<option name="GLUE" />
|
|
362
|
+
<option name="myNameFilter" />
|
|
363
|
+
<option name="myGeneratedName" />
|
|
364
|
+
<option name="MAIN_CLASS_NAME" />
|
|
365
|
+
<option name="VM_PARAMETERS" />
|
|
366
|
+
<option name="PROGRAM_PARAMETERS" />
|
|
367
|
+
<option name="WORKING_DIRECTORY" />
|
|
368
|
+
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
|
|
369
|
+
<option name="ALTERNATIVE_JRE_PATH" />
|
|
370
|
+
<option name="ENABLE_SWING_INSPECTOR" value="false" />
|
|
371
|
+
<option name="ENV_VARIABLES" />
|
|
372
|
+
<option name="PASS_PARENT_ENVS" value="true" />
|
|
373
|
+
<module name="" />
|
|
374
|
+
<envs />
|
|
375
|
+
<method />
|
|
376
|
+
</configuration>
|
|
377
|
+
<configuration default="true" type="CucumberRunConfigurationType" factoryName="Cucumber">
|
|
378
|
+
<predefined_log_file id="RUBY_CUCUMBER" enabled="true" />
|
|
379
|
+
<module name="" />
|
|
380
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
|
381
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
|
382
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
|
383
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
|
384
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
|
385
|
+
<envs />
|
|
386
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
|
387
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
|
388
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
|
389
|
+
<COVERAGE_PATTERN ENABLED="true">
|
|
390
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
|
391
|
+
</COVERAGE_PATTERN>
|
|
392
|
+
</EXTENSION>
|
|
393
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*.feature" />
|
|
394
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
|
395
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
|
396
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
|
397
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TAGS_FILTER" VALUE="" />
|
|
398
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_NAME_FILTER" VALUE="" />
|
|
399
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_ARGS" VALUE="--color -r features" />
|
|
400
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
|
401
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
|
402
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="VERBOSE_OPTION" VALUE="false" />
|
|
403
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
|
404
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
|
405
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
|
406
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_RUNNER_PATH" VALUE="" />
|
|
407
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_RUNNER" VALUE="false" />
|
|
408
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SETTINGS_VERSION" VALUE="2" />
|
|
409
|
+
<method />
|
|
410
|
+
</configuration>
|
|
411
|
+
<configuration default="true" type="FlashRunConfigurationType" factoryName="Flash App">
|
|
412
|
+
<option name="BCName" value="" />
|
|
413
|
+
<option name="IOSSimulatorSdkPath" value="" />
|
|
414
|
+
<option name="adlOptions" value="" />
|
|
415
|
+
<option name="airProgramParameters" value="" />
|
|
416
|
+
<option name="appDescriptorForEmulator" value="Android" />
|
|
417
|
+
<option name="debugTransport" value="USB" />
|
|
418
|
+
<option name="debuggerSdkRaw" value="BC SDK" />
|
|
419
|
+
<option name="emulator" value="NexusOne" />
|
|
420
|
+
<option name="emulatorAdlOptions" value="" />
|
|
421
|
+
<option name="fastPackaging" value="true" />
|
|
422
|
+
<option name="fullScreenHeight" value="0" />
|
|
423
|
+
<option name="fullScreenWidth" value="0" />
|
|
424
|
+
<option name="launchUrl" value="false" />
|
|
425
|
+
<option name="launcherParameters">
|
|
426
|
+
<LauncherParameters>
|
|
427
|
+
<option name="browser" value="a7bb68e0-33c0-4d6f-a81a-aac1fdb870c8" />
|
|
428
|
+
<option name="launcherType" value="OSDefault" />
|
|
429
|
+
<option name="newPlayerInstance" value="false" />
|
|
430
|
+
<option name="playerPath" value="/Applications/Flash Player Debugger.app" />
|
|
431
|
+
</LauncherParameters>
|
|
432
|
+
</option>
|
|
433
|
+
<option name="mobileRunTarget" value="Emulator" />
|
|
434
|
+
<option name="moduleName" value="" />
|
|
435
|
+
<option name="overriddenMainClass" value="" />
|
|
436
|
+
<option name="overriddenOutputFileName" value="" />
|
|
437
|
+
<option name="overrideMainClass" value="false" />
|
|
438
|
+
<option name="runTrusted" value="true" />
|
|
439
|
+
<option name="screenDpi" value="0" />
|
|
440
|
+
<option name="screenHeight" value="0" />
|
|
441
|
+
<option name="screenWidth" value="0" />
|
|
442
|
+
<option name="url" value="http://" />
|
|
443
|
+
<option name="usbDebugPort" value="7936" />
|
|
444
|
+
<method />
|
|
445
|
+
</configuration>
|
|
446
|
+
<configuration default="true" type="FlexUnitRunConfigurationType" factoryName="FlexUnit" appDescriptorForEmulator="Android" class_name="" emulatorAdlOptions="" method_name="" package_name="" scope="Class">
|
|
447
|
+
<option name="BCName" value="" />
|
|
448
|
+
<option name="launcherParameters">
|
|
449
|
+
<LauncherParameters>
|
|
450
|
+
<option name="browser" value="a7bb68e0-33c0-4d6f-a81a-aac1fdb870c8" />
|
|
451
|
+
<option name="launcherType" value="OSDefault" />
|
|
452
|
+
<option name="newPlayerInstance" value="false" />
|
|
453
|
+
<option name="playerPath" value="/Applications/Flash Player Debugger.app" />
|
|
454
|
+
</LauncherParameters>
|
|
455
|
+
</option>
|
|
456
|
+
<option name="moduleName" value="" />
|
|
457
|
+
<option name="trusted" value="true" />
|
|
458
|
+
<method />
|
|
459
|
+
</configuration>
|
|
460
|
+
<configuration default="true" type="GradleRunConfiguration" factoryName="Gradle">
|
|
461
|
+
<ExternalSystemSettings>
|
|
462
|
+
<option name="executionName" />
|
|
463
|
+
<option name="externalProjectPath" />
|
|
464
|
+
<option name="externalSystemIdString" value="GRADLE" />
|
|
465
|
+
<option name="scriptParameters" />
|
|
466
|
+
<option name="taskDescriptions">
|
|
467
|
+
<list />
|
|
468
|
+
</option>
|
|
469
|
+
<option name="taskNames">
|
|
470
|
+
<list />
|
|
471
|
+
</option>
|
|
472
|
+
<option name="vmOptions" />
|
|
473
|
+
</ExternalSystemSettings>
|
|
474
|
+
<method />
|
|
475
|
+
</configuration>
|
|
476
|
+
<configuration default="true" type="JRubyCucumberRunConfigurationType" factoryName="JRuby Cucumber">
|
|
477
|
+
<extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
|
|
478
|
+
<option name="MAIN_CLASS_NAME" />
|
|
479
|
+
<option name="VM_PARAMETERS" value="-Dforce.jruby.jit=true -Djruby.debug.fullTrace=true" />
|
|
480
|
+
<option name="PROGRAM_PARAMETERS" />
|
|
481
|
+
<option name="WORKING_DIRECTORY" />
|
|
482
|
+
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
|
|
483
|
+
<option name="ALTERNATIVE_JRE_PATH" />
|
|
484
|
+
<option name="ENABLE_SWING_INSPECTOR" value="false" />
|
|
485
|
+
<option name="ENV_VARIABLES" />
|
|
486
|
+
<option name="PASS_PARENT_ENVS" value="true" />
|
|
487
|
+
<module name="" />
|
|
488
|
+
<envs />
|
|
489
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*.feature" />
|
|
490
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
|
491
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
|
492
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
|
493
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TAGS_FILTER" VALUE="" />
|
|
494
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_NAME_FILTER" VALUE="" />
|
|
495
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_ARGS" VALUE="--color -r features" />
|
|
496
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
|
497
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
|
498
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="VERBOSE_OPTION" VALUE="false" />
|
|
499
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
|
500
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
|
501
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
|
502
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_RUNNER_PATH" VALUE="" />
|
|
503
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_RUNNER" VALUE="false" />
|
|
504
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SETTINGS_VERSION" VALUE="2" />
|
|
505
|
+
<method />
|
|
506
|
+
</configuration>
|
|
507
|
+
<configuration default="true" type="JUnit" factoryName="JUnit">
|
|
508
|
+
<extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
|
|
509
|
+
<module name="" />
|
|
510
|
+
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
|
|
511
|
+
<option name="ALTERNATIVE_JRE_PATH" />
|
|
512
|
+
<option name="PACKAGE_NAME" />
|
|
513
|
+
<option name="MAIN_CLASS_NAME" />
|
|
514
|
+
<option name="METHOD_NAME" />
|
|
515
|
+
<option name="TEST_OBJECT" value="class" />
|
|
516
|
+
<option name="VM_PARAMETERS" value="-ea" />
|
|
517
|
+
<option name="PARAMETERS" />
|
|
518
|
+
<option name="WORKING_DIRECTORY" value="$MODULE_DIR$" />
|
|
519
|
+
<option name="ENV_VARIABLES" />
|
|
520
|
+
<option name="PASS_PARENT_ENVS" value="true" />
|
|
521
|
+
<option name="TEST_SEARCH_SCOPE">
|
|
522
|
+
<value defaultName="singleModule" />
|
|
523
|
+
</option>
|
|
524
|
+
<envs />
|
|
525
|
+
<patterns />
|
|
526
|
+
<method />
|
|
527
|
+
</configuration>
|
|
528
|
+
<configuration default="true" type="JUnitTestDiscovery" factoryName="JUnit Test Discovery" changeList="All">
|
|
529
|
+
<extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
|
|
530
|
+
<module name="" />
|
|
531
|
+
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
|
|
532
|
+
<option name="ALTERNATIVE_JRE_PATH" />
|
|
533
|
+
<option name="PACKAGE_NAME" />
|
|
534
|
+
<option name="MAIN_CLASS_NAME" />
|
|
535
|
+
<option name="METHOD_NAME" />
|
|
536
|
+
<option name="TEST_OBJECT" value="class" />
|
|
537
|
+
<option name="VM_PARAMETERS" />
|
|
538
|
+
<option name="PARAMETERS" />
|
|
539
|
+
<option name="WORKING_DIRECTORY" />
|
|
540
|
+
<option name="ENV_VARIABLES" />
|
|
541
|
+
<option name="PASS_PARENT_ENVS" value="true" />
|
|
542
|
+
<option name="TEST_SEARCH_SCOPE">
|
|
543
|
+
<value defaultName="singleModule" />
|
|
544
|
+
</option>
|
|
545
|
+
<envs />
|
|
546
|
+
<patterns />
|
|
547
|
+
<method />
|
|
548
|
+
</configuration>
|
|
549
|
+
<configuration default="true" type="JarApplication" factoryName="JAR Application">
|
|
550
|
+
<extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
|
|
551
|
+
<envs />
|
|
552
|
+
<method />
|
|
553
|
+
</configuration>
|
|
554
|
+
<configuration default="true" type="Java Scratch" factoryName="Java Scratch">
|
|
555
|
+
<extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
|
|
556
|
+
<option name="SCRATCH_FILE_ID" value="0" />
|
|
557
|
+
<option name="MAIN_CLASS_NAME" />
|
|
558
|
+
<option name="VM_PARAMETERS" />
|
|
559
|
+
<option name="PROGRAM_PARAMETERS" />
|
|
560
|
+
<option name="WORKING_DIRECTORY" />
|
|
561
|
+
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
|
|
562
|
+
<option name="ALTERNATIVE_JRE_PATH" />
|
|
563
|
+
<option name="ENABLE_SWING_INSPECTOR" value="false" />
|
|
564
|
+
<option name="ENV_VARIABLES" />
|
|
565
|
+
<option name="PASS_PARENT_ENVS" value="true" />
|
|
566
|
+
<module name="" />
|
|
567
|
+
<envs />
|
|
568
|
+
<method />
|
|
569
|
+
</configuration>
|
|
570
|
+
<configuration default="true" type="JavascriptDebugType" factoryName="JavaScript Debug">
|
|
571
|
+
<method />
|
|
572
|
+
</configuration>
|
|
573
|
+
<configuration default="true" type="JetRunConfigurationType" factoryName="Kotlin">
|
|
574
|
+
<extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
|
|
575
|
+
<option name="MAIN_CLASS_NAME" />
|
|
576
|
+
<option name="VM_PARAMETERS" />
|
|
577
|
+
<option name="PROGRAM_PARAMETERS" />
|
|
578
|
+
<option name="WORKING_DIRECTORY" />
|
|
579
|
+
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
|
|
580
|
+
<option name="ALTERNATIVE_JRE_PATH" />
|
|
581
|
+
<option name="PASS_PARENT_ENVS" value="true" />
|
|
582
|
+
<module name="koara-rb-xml" />
|
|
583
|
+
<envs />
|
|
584
|
+
<method />
|
|
585
|
+
</configuration>
|
|
586
|
+
<configuration default="true" type="KotlinStandaloneScriptRunConfigurationType" factoryName="Kotlin script">
|
|
587
|
+
<extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
|
|
588
|
+
<option name="filePath" />
|
|
589
|
+
<option name="vmParameters" />
|
|
590
|
+
<option name="alternativeJrePath" />
|
|
591
|
+
<option name="programParameters" />
|
|
592
|
+
<option name="passParentEnvs" value="true" />
|
|
593
|
+
<option name="workingDirectory" />
|
|
594
|
+
<option name="isAlternativeJrePathEnabled" value="false" />
|
|
595
|
+
<envs />
|
|
596
|
+
<method />
|
|
597
|
+
</configuration>
|
|
598
|
+
<configuration default="true" type="NodeJSConfigurationType" factoryName="Node.js" path-to-node="project" working-dir="">
|
|
599
|
+
<method />
|
|
600
|
+
</configuration>
|
|
601
|
+
<configuration default="true" type="PHPUnitRunConfigurationType" factoryName="PHPUnit">
|
|
602
|
+
<TestRunner />
|
|
603
|
+
<method />
|
|
604
|
+
</configuration>
|
|
605
|
+
<configuration default="true" type="PhpLocalRunConfigurationType" factoryName="PHP Console">
|
|
606
|
+
<method />
|
|
607
|
+
</configuration>
|
|
608
|
+
<configuration default="true" type="Remote" factoryName="Remote">
|
|
609
|
+
<option name="USE_SOCKET_TRANSPORT" value="true" />
|
|
610
|
+
<option name="SERVER_MODE" value="false" />
|
|
611
|
+
<option name="SHMEM_ADDRESS" value="javadebug" />
|
|
612
|
+
<option name="HOST" value="localhost" />
|
|
613
|
+
<option name="PORT" value="5005" />
|
|
614
|
+
<method />
|
|
615
|
+
</configuration>
|
|
616
|
+
<configuration default="true" type="RubyRunConfigurationType" factoryName="Ruby">
|
|
617
|
+
<module name="" />
|
|
618
|
+
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
|
619
|
+
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="" />
|
|
620
|
+
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
|
621
|
+
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
|
622
|
+
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
|
623
|
+
<envs />
|
|
624
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
|
625
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
|
626
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
|
627
|
+
<COVERAGE_PATTERN ENABLED="true">
|
|
628
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
|
629
|
+
</COVERAGE_PATTERN>
|
|
630
|
+
</EXTENSION>
|
|
631
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="" />
|
|
632
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
|
633
|
+
<method />
|
|
634
|
+
</configuration>
|
|
635
|
+
<configuration default="true" type="SpringBootApplicationConfigurationType" factoryName="Spring Boot">
|
|
636
|
+
<extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
|
|
637
|
+
<module name="" />
|
|
638
|
+
<envs />
|
|
639
|
+
<method />
|
|
640
|
+
</configuration>
|
|
641
|
+
<configuration default="true" type="TestNG" factoryName="TestNG">
|
|
642
|
+
<extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
|
|
643
|
+
<module name="" />
|
|
644
|
+
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
|
|
645
|
+
<option name="ALTERNATIVE_JRE_PATH" />
|
|
646
|
+
<option name="SUITE_NAME" />
|
|
647
|
+
<option name="PACKAGE_NAME" />
|
|
648
|
+
<option name="MAIN_CLASS_NAME" />
|
|
649
|
+
<option name="METHOD_NAME" />
|
|
650
|
+
<option name="GROUP_NAME" />
|
|
651
|
+
<option name="TEST_OBJECT" value="CLASS" />
|
|
652
|
+
<option name="VM_PARAMETERS" value="-ea" />
|
|
653
|
+
<option name="PARAMETERS" />
|
|
654
|
+
<option name="WORKING_DIRECTORY" value="$MODULE_DIR$" />
|
|
655
|
+
<option name="OUTPUT_DIRECTORY" />
|
|
656
|
+
<option name="ANNOTATION_TYPE" />
|
|
657
|
+
<option name="ENV_VARIABLES" />
|
|
658
|
+
<option name="PASS_PARENT_ENVS" value="true" />
|
|
659
|
+
<option name="TEST_SEARCH_SCOPE">
|
|
660
|
+
<value defaultName="singleModule" />
|
|
661
|
+
</option>
|
|
662
|
+
<option name="USE_DEFAULT_REPORTERS" value="false" />
|
|
663
|
+
<option name="PROPERTIES_FILE" />
|
|
664
|
+
<envs />
|
|
665
|
+
<properties />
|
|
666
|
+
<listeners />
|
|
667
|
+
<method />
|
|
668
|
+
</configuration>
|
|
669
|
+
<configuration default="true" type="TestNGTestDiscovery" factoryName="TestNG Test Discovery" changeList="All">
|
|
670
|
+
<extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
|
|
671
|
+
<module name="" />
|
|
672
|
+
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
|
|
673
|
+
<option name="ALTERNATIVE_JRE_PATH" />
|
|
674
|
+
<option name="SUITE_NAME" />
|
|
675
|
+
<option name="PACKAGE_NAME" />
|
|
676
|
+
<option name="MAIN_CLASS_NAME" />
|
|
677
|
+
<option name="METHOD_NAME" />
|
|
678
|
+
<option name="GROUP_NAME" />
|
|
679
|
+
<option name="TEST_OBJECT" value="CLASS" />
|
|
680
|
+
<option name="VM_PARAMETERS" />
|
|
681
|
+
<option name="PARAMETERS" />
|
|
682
|
+
<option name="WORKING_DIRECTORY" />
|
|
683
|
+
<option name="OUTPUT_DIRECTORY" />
|
|
684
|
+
<option name="ANNOTATION_TYPE" />
|
|
685
|
+
<option name="ENV_VARIABLES" />
|
|
686
|
+
<option name="PASS_PARENT_ENVS" value="true" />
|
|
687
|
+
<option name="TEST_SEARCH_SCOPE">
|
|
688
|
+
<value defaultName="singleModule" />
|
|
689
|
+
</option>
|
|
690
|
+
<option name="USE_DEFAULT_REPORTERS" value="false" />
|
|
691
|
+
<option name="PROPERTIES_FILE" />
|
|
692
|
+
<envs />
|
|
693
|
+
<properties />
|
|
694
|
+
<listeners />
|
|
695
|
+
<method />
|
|
696
|
+
</configuration>
|
|
697
|
+
<configuration default="true" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest">
|
|
698
|
+
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
|
699
|
+
<module name="" />
|
|
700
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
|
701
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
|
702
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
|
703
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
|
704
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
|
705
|
+
<envs />
|
|
706
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
|
707
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
|
708
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
|
709
|
+
<COVERAGE_PATTERN ENABLED="true">
|
|
710
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
|
711
|
+
</COVERAGE_PATTERN>
|
|
712
|
+
</EXTENSION>
|
|
713
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
|
714
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
|
715
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
|
716
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
|
|
717
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
|
718
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
|
719
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
|
720
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
|
721
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
|
722
|
+
<method />
|
|
723
|
+
</configuration>
|
|
724
|
+
<configuration default="true" type="js.build_tools.gulp" factoryName="Gulp.js">
|
|
725
|
+
<node-interpreter>project</node-interpreter>
|
|
726
|
+
<node-options />
|
|
727
|
+
<gulpfile />
|
|
728
|
+
<tasks />
|
|
729
|
+
<arguments />
|
|
730
|
+
<envs />
|
|
731
|
+
<method />
|
|
732
|
+
</configuration>
|
|
733
|
+
<configuration default="true" type="js.build_tools.npm" factoryName="npm">
|
|
734
|
+
<command value="run-script" />
|
|
735
|
+
<scripts />
|
|
736
|
+
<node-interpreter value="project" />
|
|
737
|
+
<envs />
|
|
738
|
+
<method />
|
|
739
|
+
</configuration>
|
|
740
|
+
<configuration default="true" type="mocha-javascript-test-runner" factoryName="Mocha">
|
|
741
|
+
<node-interpreter>project</node-interpreter>
|
|
742
|
+
<node-options />
|
|
743
|
+
<working-directory />
|
|
744
|
+
<pass-parent-env>true</pass-parent-env>
|
|
745
|
+
<envs />
|
|
746
|
+
<ui>bdd</ui>
|
|
747
|
+
<extra-mocha-options />
|
|
748
|
+
<test-kind>DIRECTORY</test-kind>
|
|
749
|
+
<test-directory />
|
|
750
|
+
<recursive>false</recursive>
|
|
751
|
+
<method />
|
|
752
|
+
</configuration>
|
|
753
|
+
</component>
|
|
754
|
+
<component name="ShelveChangesManager" show_recycled="false">
|
|
755
|
+
<option name="remove_strategy" value="false" />
|
|
756
|
+
</component>
|
|
757
|
+
<component name="TaskManager">
|
|
758
|
+
<task active="true" id="Default" summary="Default task">
|
|
759
|
+
<changelist id="430d7766-935a-48f1-9057-fc13e4281ea3" name="Default" comment="" />
|
|
760
|
+
<created>1467040234205</created>
|
|
761
|
+
<option name="number" value="Default" />
|
|
762
|
+
<option name="presentableId" value="Default" />
|
|
763
|
+
<updated>1467040234205</updated>
|
|
764
|
+
<workItem from="1467040235358" duration="439000" />
|
|
765
|
+
<workItem from="1467040691709" duration="1004000" />
|
|
766
|
+
<workItem from="1467133607047" duration="1951000" />
|
|
767
|
+
<workItem from="1467396418328" duration="219000" />
|
|
768
|
+
</task>
|
|
769
|
+
<task id="LOCAL-00001" summary="re-add submodules">
|
|
770
|
+
<created>1467396430661</created>
|
|
771
|
+
<option name="number" value="00001" />
|
|
772
|
+
<option name="presentableId" value="LOCAL-00001" />
|
|
773
|
+
<option name="project" value="LOCAL" />
|
|
774
|
+
<updated>1467396430661</updated>
|
|
775
|
+
</task>
|
|
776
|
+
<task id="LOCAL-00002" summary="add coveralls">
|
|
777
|
+
<created>1467396951555</created>
|
|
778
|
+
<option name="number" value="00002" />
|
|
779
|
+
<option name="presentableId" value="LOCAL-00002" />
|
|
780
|
+
<option name="project" value="LOCAL" />
|
|
781
|
+
<updated>1467396951555</updated>
|
|
782
|
+
</task>
|
|
783
|
+
<option name="localTasksCounter" value="3" />
|
|
784
|
+
<servers />
|
|
785
|
+
</component>
|
|
786
|
+
<component name="TimeTrackingManager">
|
|
787
|
+
<option name="totallyTimeSpent" value="3613000" />
|
|
788
|
+
</component>
|
|
789
|
+
<component name="ToolWindowManager">
|
|
790
|
+
<frame x="5" y="23" width="1435" height="877" extended-state="6" />
|
|
791
|
+
<editor active="true" />
|
|
792
|
+
<layout>
|
|
793
|
+
<window_info id="Palette" 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" />
|
|
794
|
+
<window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
|
|
795
|
+
<window_info id="Palette	" 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="false" content_ui="tabs" />
|
|
796
|
+
<window_info id="Capture Analysis" 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" />
|
|
797
|
+
<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" />
|
|
798
|
+
<window_info id="Maven Projects" 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" />
|
|
799
|
+
<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.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
|
800
|
+
<window_info id="Terminal" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.3299363" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
|
801
|
+
<window_info id="Capture Tool" 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="false" content_ui="tabs" />
|
|
802
|
+
<window_info id="Designer" 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" />
|
|
803
|
+
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.24982053" sideWeight="0.5" order="0" side_tool="false" content_ui="combo" />
|
|
804
|
+
<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" />
|
|
805
|
+
<window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
|
806
|
+
<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" />
|
|
807
|
+
<window_info id="UI Designer" 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="false" content_ui="tabs" />
|
|
808
|
+
<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" />
|
|
809
|
+
<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" />
|
|
810
|
+
<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" />
|
|
811
|
+
<window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
|
812
|
+
<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" />
|
|
813
|
+
<window_info id="Run" 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="2" side_tool="false" content_ui="tabs" />
|
|
814
|
+
<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" />
|
|
815
|
+
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.3299363" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
|
816
|
+
<window_info id="Debug" 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="3" side_tool="false" content_ui="tabs" />
|
|
817
|
+
</layout>
|
|
818
|
+
</component>
|
|
819
|
+
<component name="VcsContentAnnotationSettings">
|
|
820
|
+
<option name="myLimit" value="2678400000" />
|
|
821
|
+
</component>
|
|
822
|
+
<component name="VcsManagerConfiguration">
|
|
823
|
+
<MESSAGE value="re-add submodules" />
|
|
824
|
+
<MESSAGE value="add coveralls" />
|
|
825
|
+
<option name="LAST_COMMIT_MESSAGE" value="add coveralls" />
|
|
826
|
+
</component>
|
|
827
|
+
<component name="XDebuggerManager">
|
|
828
|
+
<breakpoint-manager />
|
|
829
|
+
<watches-manager />
|
|
830
|
+
</component>
|
|
831
|
+
<component name="editorHistoryManager">
|
|
832
|
+
<entry file="file://$PROJECT_DIR$/lib/koara/xml/xmlrenderer.rb">
|
|
833
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
834
|
+
<state relative-caret-position="0">
|
|
835
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
|
836
|
+
<folding />
|
|
837
|
+
</state>
|
|
838
|
+
</provider>
|
|
839
|
+
</entry>
|
|
840
|
+
<entry file="file://$PROJECT_DIR$/Rakefile">
|
|
841
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
842
|
+
<state relative-caret-position="105">
|
|
843
|
+
<caret line="7" column="20" selection-start-line="7" selection-start-column="20" selection-end-line="7" selection-end-column="20" />
|
|
844
|
+
<folding />
|
|
845
|
+
</state>
|
|
846
|
+
</provider>
|
|
847
|
+
</entry>
|
|
848
|
+
<entry file="file://$PROJECT_DIR$/test/xmlrenderer_test.rb">
|
|
849
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
850
|
+
<state relative-caret-position="390">
|
|
851
|
+
<caret line="26" column="33" selection-start-line="26" selection-start-column="33" selection-end-line="26" selection-end-column="33" />
|
|
852
|
+
<folding />
|
|
853
|
+
</state>
|
|
854
|
+
</provider>
|
|
855
|
+
</entry>
|
|
856
|
+
<entry file="file://$PROJECT_DIR$/README.md">
|
|
857
|
+
<provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
|
|
858
|
+
<state split_layout="FIRST">
|
|
859
|
+
<first_editor relative-caret-position="30">
|
|
860
|
+
<caret line="2" column="0" selection-start-line="2" selection-start-column="0" selection-end-line="2" selection-end-column="0" />
|
|
861
|
+
<folding />
|
|
862
|
+
</first_editor>
|
|
863
|
+
<second_editor />
|
|
864
|
+
</state>
|
|
865
|
+
</provider>
|
|
866
|
+
</entry>
|
|
867
|
+
<entry file="file://$PROJECT_DIR$/lib/koara/xml/xmlrenderer.rb">
|
|
868
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
869
|
+
<state relative-caret-position="0">
|
|
870
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
|
871
|
+
<folding />
|
|
872
|
+
</state>
|
|
873
|
+
</provider>
|
|
874
|
+
</entry>
|
|
875
|
+
<entry file="file://$PROJECT_DIR$/lib/koara/xml/xmlrenderer.rb">
|
|
876
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
877
|
+
<state relative-caret-position="0">
|
|
878
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
|
879
|
+
<folding />
|
|
880
|
+
</state>
|
|
881
|
+
</provider>
|
|
882
|
+
</entry>
|
|
883
|
+
<entry file="file://$PROJECT_DIR$/test/end_to_end_test.rb">
|
|
884
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
885
|
+
<state relative-caret-position="288">
|
|
886
|
+
<caret line="1042" column="25" selection-start-line="1042" selection-start-column="25" selection-end-line="1042" selection-end-column="25" />
|
|
887
|
+
</state>
|
|
888
|
+
</provider>
|
|
889
|
+
</entry>
|
|
890
|
+
<entry file="file://$PROJECT_DIR$/test/compliance_test.rb">
|
|
891
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
892
|
+
<state relative-caret-position="270">
|
|
893
|
+
<caret line="18" column="76" selection-start-line="18" selection-start-column="76" selection-end-line="18" selection-end-column="76" />
|
|
894
|
+
</state>
|
|
895
|
+
</provider>
|
|
896
|
+
</entry>
|
|
897
|
+
<entry file="file://$PROJECT_DIR$/README.md">
|
|
898
|
+
<provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
|
|
899
|
+
<state split_layout="FIRST">
|
|
900
|
+
<first_editor relative-caret-position="30">
|
|
901
|
+
<caret line="2" column="0" selection-start-line="2" selection-start-column="0" selection-end-line="2" selection-end-column="0" />
|
|
902
|
+
<folding />
|
|
903
|
+
</first_editor>
|
|
904
|
+
<second_editor />
|
|
905
|
+
</state>
|
|
906
|
+
</provider>
|
|
907
|
+
</entry>
|
|
908
|
+
<entry file="file://$PROJECT_DIR$/test/xmlrenderer_test.rb">
|
|
909
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
910
|
+
<state relative-caret-position="390">
|
|
911
|
+
<caret line="26" column="33" selection-start-line="26" selection-start-column="33" selection-end-line="26" selection-end-column="33" />
|
|
912
|
+
<folding />
|
|
913
|
+
</state>
|
|
914
|
+
</provider>
|
|
915
|
+
</entry>
|
|
916
|
+
<entry file="file://$PROJECT_DIR$/lib/koara/xml/xmlrenderer.rb">
|
|
917
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
918
|
+
<state relative-caret-position="336">
|
|
919
|
+
<caret line="131" column="0" selection-start-line="131" selection-start-column="0" selection-end-line="131" selection-end-column="0" />
|
|
920
|
+
<folding />
|
|
921
|
+
</state>
|
|
922
|
+
</provider>
|
|
923
|
+
</entry>
|
|
924
|
+
<entry file="file://$PROJECT_DIR$/Rakefile">
|
|
925
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
926
|
+
<state relative-caret-position="75">
|
|
927
|
+
<caret line="5" column="23" selection-start-line="5" selection-start-column="23" selection-end-line="5" selection-end-column="23" />
|
|
928
|
+
<folding />
|
|
929
|
+
</state>
|
|
930
|
+
</provider>
|
|
931
|
+
</entry>
|
|
932
|
+
<entry file="file://$PROJECT_DIR$/koara-xml.gemspec">
|
|
933
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
934
|
+
<state relative-caret-position="150">
|
|
935
|
+
<caret line="10" column="0" selection-start-line="10" selection-start-column="0" selection-end-line="10" selection-end-column="0" />
|
|
936
|
+
<folding />
|
|
937
|
+
</state>
|
|
938
|
+
</provider>
|
|
939
|
+
</entry>
|
|
940
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
|
941
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
942
|
+
<state relative-caret-position="45">
|
|
943
|
+
<caret line="3" column="31" selection-start-line="3" selection-start-column="31" selection-end-line="3" selection-end-column="31" />
|
|
944
|
+
<folding />
|
|
945
|
+
</state>
|
|
946
|
+
</provider>
|
|
947
|
+
</entry>
|
|
948
|
+
</component>
|
|
949
|
+
</project>
|