swift_generator 0.1.2
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 +10 -0
- data/.idea/.name +1 -0
- data/.idea/.rakeTasks +7 -0
- data/.idea/compiler.xml +22 -0
- data/.idea/copyright/profiles_settings.xml +3 -0
- data/.idea/dictionaries/ckornher.xml +7 -0
- data/.idea/encodings.xml +4 -0
- data/.idea/misc.xml +4 -0
- data/.idea/modules.xml +8 -0
- data/.idea/runConfigurations/Install_the_Gem.xml +26 -0
- data/.idea/runConfigurations/Ribosome.xml +26 -0
- data/.idea/runConfigurations/genswift_help.xml +26 -0
- data/.idea/runConfigurations/test1.xml +30 -0
- data/.idea/scopes/scope_settings.xml +5 -0
- data/.idea/swift_generator.iml +126 -0
- data/.idea/uiDesigner.xml +124 -0
- data/.idea/vcs.xml +6 -0
- data/.idea/workspace.xml +1356 -0
- data/.rspec +2 -0
- data/.travis.yml +3 -0
- data/CODE_OF_CONDUCT.md +13 -0
- data/Gemfile +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +39 -0
- data/Rakefile +1 -0
- data/Tools/compile_templates.bash +3 -0
- data/Tools/help.rna +340 -0
- data/Tools/ribosome.rb +589 -0
- data/bin/console +14 -0
- data/bin/genswift +34 -0
- data/bin/setup +7 -0
- data/lib/swift_generator.rb +23 -0
- data/lib/swift_generator/code_generation/POSOTest.rb +8 -0
- data/lib/swift_generator/code_generation/SwiftFileTemplate.dna +157 -0
- data/lib/swift_generator/code_generation/ToRemove/generate.bash +41 -0
- data/lib/swift_generator/code_generation/code_generation_common.rb +6 -0
- data/lib/swift_generator/code_generation/swift_class_generation.rb +1589 -0
- data/lib/swift_generator/code_generation/swift_file_template.rb +499 -0
- data/lib/swift_generator/code_generation/swift_types.rb +106 -0
- data/lib/swift_generator/code_generation/usi_metaclasses.rb +23 -0
- data/lib/swift_generator/specfile_parser.rb +116 -0
- data/lib/swift_generator/version.rb +3 -0
- data/swift_generator.gemspec +31 -0
- metadata +118 -0
data/.idea/vcs.xml
ADDED
data/.idea/workspace.xml
ADDED
@@ -0,0 +1,1356 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="ChangeListManager">
|
4
|
+
<list default="true" id="bd874cad-d549-4333-87ea-d25a437d9e3b" name="Default" comment="">
|
5
|
+
<change type="DELETED" beforePath="$PROJECT_DIR$/lib/swift_generator/code_generation/useful_swift_definitions.rb" afterPath="" />
|
6
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/test/TestSpecs/Test1.json" afterPath="$PROJECT_DIR$/test/TestSpecs/Test1.json" />
|
7
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/swift_generator/code_generation/swift_class_generation.rb" afterPath="$PROJECT_DIR$/lib/swift_generator/code_generation/swift_class_generation.rb" />
|
8
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/.idea/workspace.xml" afterPath="$PROJECT_DIR$/.idea/workspace.xml" />
|
9
|
+
</list>
|
10
|
+
<ignored path="swift_generator.iws" />
|
11
|
+
<ignored path=".idea/workspace.xml" />
|
12
|
+
<ignored path=".idea/dataSources.local.xml" />
|
13
|
+
<option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
|
14
|
+
<option name="TRACKING_ENABLED" value="true" />
|
15
|
+
<option name="SHOW_DIALOG" value="false" />
|
16
|
+
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
17
|
+
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
18
|
+
<option name="LAST_RESOLUTION" value="IGNORE" />
|
19
|
+
</component>
|
20
|
+
<component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
|
21
|
+
<component name="CoverageDataManager">
|
22
|
+
<SUITE FILE_PATH="coverage/swift_generator@Install_the_Gem.coverage" NAME="Install the Gem Coverage Results" MODIFIED="1431207867267" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="swift_generator" />
|
23
|
+
<SUITE FILE_PATH="coverage/swift_generator@Ribosome.coverage" NAME="Ribosome Coverage Results" MODIFIED="1430862650674" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$/lib/swift_generator/code_generation" MODULE_NAME="swift_generator" />
|
24
|
+
<SUITE FILE_PATH="coverage/swift_generator@test1.coverage" NAME="test1 Coverage Results" MODIFIED="1431208866868" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$USER_HOME$/tmp/ScratchRuns" MODULE_NAME="swift_generator" />
|
25
|
+
</component>
|
26
|
+
<component name="CreatePatchCommitExecutor">
|
27
|
+
<option name="PATCH_PATH" value="" />
|
28
|
+
</component>
|
29
|
+
<component name="ExecutionTargetManager" SELECTED_TARGET="default_target" />
|
30
|
+
<component name="FavoritesManager">
|
31
|
+
<favorites_list name="swift_generator" />
|
32
|
+
</component>
|
33
|
+
<component name="FileEditorManager">
|
34
|
+
<leaf>
|
35
|
+
<file leaf-file-name="swift_file_template.rb" pinned="false" current-in-tab="false">
|
36
|
+
<entry file="file://$PROJECT_DIR$/lib/swift_generator/code_generation/swift_file_template.rb">
|
37
|
+
<provider selected="true" editor-type-id="text-editor">
|
38
|
+
<state vertical-scroll-proportion="0.0">
|
39
|
+
<caret line="351" column="0" selection-start-line="351" selection-start-column="0" selection-end-line="351" selection-end-column="0" />
|
40
|
+
<folding />
|
41
|
+
</state>
|
42
|
+
</provider>
|
43
|
+
</entry>
|
44
|
+
</file>
|
45
|
+
<file leaf-file-name="Test1.json" pinned="false" current-in-tab="false">
|
46
|
+
<entry file="file://$PROJECT_DIR$/test/TestSpecs/Test1.json">
|
47
|
+
<provider selected="true" editor-type-id="text-editor">
|
48
|
+
<state vertical-scroll-proportion="4.125">
|
49
|
+
<caret line="6" column="27" selection-start-line="6" selection-start-column="0" selection-end-line="7" selection-end-column="0" />
|
50
|
+
<folding />
|
51
|
+
</state>
|
52
|
+
</provider>
|
53
|
+
</entry>
|
54
|
+
</file>
|
55
|
+
<file leaf-file-name="specfile_parser.rb" pinned="false" current-in-tab="false">
|
56
|
+
<entry file="file://$PROJECT_DIR$/lib/swift_generator/specfile_parser.rb">
|
57
|
+
<provider selected="true" editor-type-id="text-editor">
|
58
|
+
<state vertical-scroll-proportion="0.0">
|
59
|
+
<caret line="23" column="0" selection-start-line="23" selection-start-column="0" selection-end-line="23" selection-end-column="0" />
|
60
|
+
<folding />
|
61
|
+
</state>
|
62
|
+
</provider>
|
63
|
+
</entry>
|
64
|
+
</file>
|
65
|
+
<file leaf-file-name="SwiftFileTemplate.dna" pinned="false" current-in-tab="false">
|
66
|
+
<entry file="file://$PROJECT_DIR$/lib/swift_generator/code_generation/SwiftFileTemplate.dna">
|
67
|
+
<provider selected="true" editor-type-id="text-editor">
|
68
|
+
<state vertical-scroll-proportion="0.0">
|
69
|
+
<caret line="49" column="0" selection-start-line="49" selection-start-column="0" selection-end-line="49" selection-end-column="0" />
|
70
|
+
<folding />
|
71
|
+
</state>
|
72
|
+
</provider>
|
73
|
+
</entry>
|
74
|
+
</file>
|
75
|
+
<file leaf-file-name="swift_generator.rb" pinned="false" current-in-tab="false">
|
76
|
+
<entry file="file://$PROJECT_DIR$/lib/swift_generator.rb">
|
77
|
+
<provider selected="true" editor-type-id="text-editor">
|
78
|
+
<state vertical-scroll-proportion="0.0">
|
79
|
+
<caret line="18" column="0" selection-start-line="18" selection-start-column="0" selection-end-line="18" selection-end-column="0" />
|
80
|
+
<folding />
|
81
|
+
</state>
|
82
|
+
</provider>
|
83
|
+
</entry>
|
84
|
+
</file>
|
85
|
+
<file leaf-file-name="genswift" pinned="false" current-in-tab="false">
|
86
|
+
<entry file="file://$PROJECT_DIR$/bin/genswift">
|
87
|
+
<provider selected="true" editor-type-id="text-editor">
|
88
|
+
<state vertical-scroll-proportion="0.0">
|
89
|
+
<caret line="21" column="0" selection-start-line="21" selection-start-column="0" selection-end-line="21" selection-end-column="0" />
|
90
|
+
<folding />
|
91
|
+
</state>
|
92
|
+
</provider>
|
93
|
+
</entry>
|
94
|
+
</file>
|
95
|
+
<file leaf-file-name="swift_class_generation.rb" pinned="false" current-in-tab="true">
|
96
|
+
<entry file="file://$PROJECT_DIR$/lib/swift_generator/code_generation/swift_class_generation.rb">
|
97
|
+
<provider selected="true" editor-type-id="text-editor">
|
98
|
+
<state vertical-scroll-proportion="0.33222038">
|
99
|
+
<caret line="478" column="84" selection-start-line="478" selection-start-column="84" selection-end-line="478" selection-end-column="84" />
|
100
|
+
<folding />
|
101
|
+
</state>
|
102
|
+
</provider>
|
103
|
+
</entry>
|
104
|
+
</file>
|
105
|
+
</leaf>
|
106
|
+
</component>
|
107
|
+
<component name="Git.Settings">
|
108
|
+
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
109
|
+
</component>
|
110
|
+
<component name="GradleLocalSettings">
|
111
|
+
<option name="externalProjectsViewState">
|
112
|
+
<projects_view />
|
113
|
+
</option>
|
114
|
+
</component>
|
115
|
+
<component name="IdeDocumentHistory">
|
116
|
+
<option name="CHANGED_PATHS">
|
117
|
+
<list>
|
118
|
+
<option value="$PROJECT_DIR$/bin/objc2swift_assistant" />
|
119
|
+
<option value="$PROJECT_DIR$/lib/swift_generator/specfile_parser" />
|
120
|
+
<option value="$PROJECT_DIR$/Gemfile" />
|
121
|
+
<option value="$PROJECT_DIR$/bin/genswift" />
|
122
|
+
<option value="$PROJECT_DIR$/lib/swift_generator/code_generation/PlainOldSwiftObjects.dna" />
|
123
|
+
<option value="$PROJECT_DIR$/lib/swift_generator/code_generation/usi_metaclasses.rb" />
|
124
|
+
<option value="$PROJECT_DIR$/lib/swift_generator.rb" />
|
125
|
+
<option value="$PROJECT_DIR$/lib/swift_generator/code_generation/POSOMetaclasses.rb" />
|
126
|
+
<option value="$PROJECT_DIR$/lib/swift_generator/specfile_parser.rb" />
|
127
|
+
<option value="$PROJECT_DIR$/swift_generator.gemspec" />
|
128
|
+
<option value="$PROJECT_DIR$/lib/swift_generator/code_generation/useful_swift_definitions.rb" />
|
129
|
+
<option value="$PROJECT_DIR$/lib/swift_generator/version.rb" />
|
130
|
+
<option value="$PROJECT_DIR$/Tools/compile_templates.bash" />
|
131
|
+
<option value="$PROJECT_DIR$/lib/swift_generator/code_generation/SwiftFileTemplate.dna" />
|
132
|
+
<option value="$PROJECT_DIR$/lib/swift_generator/code_generation/swift_file_template.rb" />
|
133
|
+
<option value="$PROJECT_DIR$/test/TestSpecs/Test1.json" />
|
134
|
+
<option value="$PROJECT_DIR$/lib/swift_generator/code_generation/swift_class_generation.rb" />
|
135
|
+
</list>
|
136
|
+
</option>
|
137
|
+
</component>
|
138
|
+
<component name="JsBuildToolGruntFileManager" detection-done="true" />
|
139
|
+
<component name="JsGulpfileManager">
|
140
|
+
<detection-done>true</detection-done>
|
141
|
+
</component>
|
142
|
+
<component name="MavenImportPreferences">
|
143
|
+
<option name="generalSettings">
|
144
|
+
<MavenGeneralSettings>
|
145
|
+
<option name="mavenHome" value="Bundled (Maven 3)" />
|
146
|
+
</MavenGeneralSettings>
|
147
|
+
</option>
|
148
|
+
</component>
|
149
|
+
<component name="NamedScopeManager">
|
150
|
+
<order />
|
151
|
+
</component>
|
152
|
+
<component name="ProjectFrameBounds">
|
153
|
+
<option name="x" value="3" />
|
154
|
+
<option name="y" value="60" />
|
155
|
+
<option name="width" value="1920" />
|
156
|
+
<option name="height" value="1027" />
|
157
|
+
</component>
|
158
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="true">
|
159
|
+
<OptionsSetting value="true" id="Add" />
|
160
|
+
<OptionsSetting value="true" id="Remove" />
|
161
|
+
<OptionsSetting value="true" id="Checkout" />
|
162
|
+
<OptionsSetting value="true" id="Update" />
|
163
|
+
<OptionsSetting value="true" id="Status" />
|
164
|
+
<OptionsSetting value="true" id="Edit" />
|
165
|
+
<ConfirmationsSetting value="0" id="Add" />
|
166
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
167
|
+
</component>
|
168
|
+
<component name="ProjectView">
|
169
|
+
<navigator currentView="ProjectPane" proportions="" version="1">
|
170
|
+
<flattenPackages />
|
171
|
+
<showMembers />
|
172
|
+
<showModules />
|
173
|
+
<showLibraryContents />
|
174
|
+
<hideEmptyPackages />
|
175
|
+
<abbreviatePackageNames />
|
176
|
+
<autoscrollToSource />
|
177
|
+
<autoscrollFromSource />
|
178
|
+
<sortByType />
|
179
|
+
</navigator>
|
180
|
+
<panes>
|
181
|
+
<pane id="Scratches" />
|
182
|
+
<pane id="PackagesPane" />
|
183
|
+
<pane id="ProjectPane">
|
184
|
+
<subPane>
|
185
|
+
<PATH>
|
186
|
+
<PATH_ELEMENT>
|
187
|
+
<option name="myItemId" value="swift_generator" />
|
188
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
189
|
+
</PATH_ELEMENT>
|
190
|
+
</PATH>
|
191
|
+
<PATH>
|
192
|
+
<PATH_ELEMENT>
|
193
|
+
<option name="myItemId" value="swift_generator" />
|
194
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
195
|
+
</PATH_ELEMENT>
|
196
|
+
<PATH_ELEMENT>
|
197
|
+
<option name="myItemId" value="swift_generator" />
|
198
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
199
|
+
</PATH_ELEMENT>
|
200
|
+
</PATH>
|
201
|
+
<PATH>
|
202
|
+
<PATH_ELEMENT>
|
203
|
+
<option name="myItemId" value="swift_generator" />
|
204
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
205
|
+
</PATH_ELEMENT>
|
206
|
+
<PATH_ELEMENT>
|
207
|
+
<option name="myItemId" value="swift_generator" />
|
208
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
209
|
+
</PATH_ELEMENT>
|
210
|
+
<PATH_ELEMENT>
|
211
|
+
<option name="myItemId" value="Tools" />
|
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="swift_generator" />
|
218
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
219
|
+
</PATH_ELEMENT>
|
220
|
+
<PATH_ELEMENT>
|
221
|
+
<option name="myItemId" value="swift_generator" />
|
222
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
223
|
+
</PATH_ELEMENT>
|
224
|
+
<PATH_ELEMENT>
|
225
|
+
<option name="myItemId" value="test" />
|
226
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
227
|
+
</PATH_ELEMENT>
|
228
|
+
<PATH_ELEMENT>
|
229
|
+
<option name="myItemId" value="TestSpecs" />
|
230
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
231
|
+
</PATH_ELEMENT>
|
232
|
+
</PATH>
|
233
|
+
<PATH>
|
234
|
+
<PATH_ELEMENT>
|
235
|
+
<option name="myItemId" value="swift_generator" />
|
236
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
237
|
+
</PATH_ELEMENT>
|
238
|
+
<PATH_ELEMENT>
|
239
|
+
<option name="myItemId" value="swift_generator" />
|
240
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
241
|
+
</PATH_ELEMENT>
|
242
|
+
<PATH_ELEMENT>
|
243
|
+
<option name="myItemId" value="spec" />
|
244
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
245
|
+
</PATH_ELEMENT>
|
246
|
+
</PATH>
|
247
|
+
<PATH>
|
248
|
+
<PATH_ELEMENT>
|
249
|
+
<option name="myItemId" value="swift_generator" />
|
250
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
251
|
+
</PATH_ELEMENT>
|
252
|
+
<PATH_ELEMENT>
|
253
|
+
<option name="myItemId" value="swift_generator" />
|
254
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
255
|
+
</PATH_ELEMENT>
|
256
|
+
<PATH_ELEMENT>
|
257
|
+
<option name="myItemId" value="lib" />
|
258
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
259
|
+
</PATH_ELEMENT>
|
260
|
+
</PATH>
|
261
|
+
<PATH>
|
262
|
+
<PATH_ELEMENT>
|
263
|
+
<option name="myItemId" value="swift_generator" />
|
264
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
265
|
+
</PATH_ELEMENT>
|
266
|
+
<PATH_ELEMENT>
|
267
|
+
<option name="myItemId" value="swift_generator" />
|
268
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
269
|
+
</PATH_ELEMENT>
|
270
|
+
<PATH_ELEMENT>
|
271
|
+
<option name="myItemId" value="lib" />
|
272
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
273
|
+
</PATH_ELEMENT>
|
274
|
+
<PATH_ELEMENT>
|
275
|
+
<option name="myItemId" value="swift_generator" />
|
276
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
277
|
+
</PATH_ELEMENT>
|
278
|
+
</PATH>
|
279
|
+
<PATH>
|
280
|
+
<PATH_ELEMENT>
|
281
|
+
<option name="myItemId" value="swift_generator" />
|
282
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
283
|
+
</PATH_ELEMENT>
|
284
|
+
<PATH_ELEMENT>
|
285
|
+
<option name="myItemId" value="swift_generator" />
|
286
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
287
|
+
</PATH_ELEMENT>
|
288
|
+
<PATH_ELEMENT>
|
289
|
+
<option name="myItemId" value="lib" />
|
290
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
291
|
+
</PATH_ELEMENT>
|
292
|
+
<PATH_ELEMENT>
|
293
|
+
<option name="myItemId" value="swift_generator" />
|
294
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
295
|
+
</PATH_ELEMENT>
|
296
|
+
<PATH_ELEMENT>
|
297
|
+
<option name="myItemId" value="code_generation" />
|
298
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
299
|
+
</PATH_ELEMENT>
|
300
|
+
</PATH>
|
301
|
+
<PATH>
|
302
|
+
<PATH_ELEMENT>
|
303
|
+
<option name="myItemId" value="swift_generator" />
|
304
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
305
|
+
</PATH_ELEMENT>
|
306
|
+
<PATH_ELEMENT>
|
307
|
+
<option name="myItemId" value="swift_generator" />
|
308
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
309
|
+
</PATH_ELEMENT>
|
310
|
+
<PATH_ELEMENT>
|
311
|
+
<option name="myItemId" value="bin" />
|
312
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
313
|
+
</PATH_ELEMENT>
|
314
|
+
</PATH>
|
315
|
+
</subPane>
|
316
|
+
</pane>
|
317
|
+
<pane id="Scope" />
|
318
|
+
</panes>
|
319
|
+
</component>
|
320
|
+
<component name="PropertiesComponent">
|
321
|
+
<property name="WebServerToolWindowFactoryState" value="false" />
|
322
|
+
<property name="recentsLimit" value="5" />
|
323
|
+
<property name="last_opened_file_path" value="$PROJECT_DIR$/lib/swift_generator/code_generation" />
|
324
|
+
<property name="restartRequiresConfirmation" value="true" />
|
325
|
+
<property name="FullScreen" value="false" />
|
326
|
+
<property name="options.lastSelected" value="preferences.pluginManager" />
|
327
|
+
<property name="options.splitter.main.proportions" value="0.3" />
|
328
|
+
<property name="options.splitter.details.proportions" value="0.2" />
|
329
|
+
<property name="aspect.path.notification.shown" value="true" />
|
330
|
+
<property name="settings.editor.selected.configurable" value="preferences.pathVariables" />
|
331
|
+
<property name="settings.editor.splitter.proportion" value="0.2" />
|
332
|
+
<property name="project.structure.last.edited" value="Project" />
|
333
|
+
<property name="project.structure.proportion" value="0.15" />
|
334
|
+
<property name="project.structure.side.proportion" value="0.2" />
|
335
|
+
</component>
|
336
|
+
<component name="RunManager" selected="Gem Command.test1">
|
337
|
+
<configuration default="true" type="AndroidRunConfigurationType" factoryName="Android Application">
|
338
|
+
<module name="" />
|
339
|
+
<option name="ACTIVITY_CLASS" value="" />
|
340
|
+
<option name="MODE" value="default_activity" />
|
341
|
+
<option name="DEPLOY" value="true" />
|
342
|
+
<option name="ARTIFACT_NAME" value="" />
|
343
|
+
<option name="TARGET_SELECTION_MODE" value="EMULATOR" />
|
344
|
+
<option name="USE_LAST_SELECTED_DEVICE" value="false" />
|
345
|
+
<option name="PREFERRED_AVD" value="" />
|
346
|
+
<option name="USE_COMMAND_LINE" value="true" />
|
347
|
+
<option name="COMMAND_LINE" value="" />
|
348
|
+
<option name="WIPE_USER_DATA" value="false" />
|
349
|
+
<option name="DISABLE_BOOT_ANIMATION" value="false" />
|
350
|
+
<option name="NETWORK_SPEED" value="full" />
|
351
|
+
<option name="NETWORK_LATENCY" value="none" />
|
352
|
+
<option name="CLEAR_LOGCAT" value="false" />
|
353
|
+
<option name="SHOW_LOGCAT_AUTOMATICALLY" value="true" />
|
354
|
+
<option name="FILTER_LOGCAT_AUTOMATICALLY" value="true" />
|
355
|
+
<method />
|
356
|
+
</configuration>
|
357
|
+
<configuration default="true" type="AndroidTestRunConfigurationType" factoryName="Android Tests">
|
358
|
+
<module name="" />
|
359
|
+
<option name="TESTING_TYPE" value="0" />
|
360
|
+
<option name="INSTRUMENTATION_RUNNER_CLASS" value="" />
|
361
|
+
<option name="METHOD_NAME" value="" />
|
362
|
+
<option name="CLASS_NAME" value="" />
|
363
|
+
<option name="PACKAGE_NAME" value="" />
|
364
|
+
<option name="TARGET_SELECTION_MODE" value="EMULATOR" />
|
365
|
+
<option name="USE_LAST_SELECTED_DEVICE" value="false" />
|
366
|
+
<option name="PREFERRED_AVD" value="" />
|
367
|
+
<option name="USE_COMMAND_LINE" value="true" />
|
368
|
+
<option name="COMMAND_LINE" value="" />
|
369
|
+
<option name="WIPE_USER_DATA" value="false" />
|
370
|
+
<option name="DISABLE_BOOT_ANIMATION" value="false" />
|
371
|
+
<option name="NETWORK_SPEED" value="full" />
|
372
|
+
<option name="NETWORK_LATENCY" value="none" />
|
373
|
+
<option name="CLEAR_LOGCAT" value="false" />
|
374
|
+
<option name="SHOW_LOGCAT_AUTOMATICALLY" value="true" />
|
375
|
+
<option name="FILTER_LOGCAT_AUTOMATICALLY" value="true" />
|
376
|
+
<method />
|
377
|
+
</configuration>
|
378
|
+
<configuration default="true" type="Application" factoryName="Application">
|
379
|
+
<extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
|
380
|
+
<option name="MAIN_CLASS_NAME" />
|
381
|
+
<option name="VM_PARAMETERS" />
|
382
|
+
<option name="PROGRAM_PARAMETERS" />
|
383
|
+
<option name="WORKING_DIRECTORY" />
|
384
|
+
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
|
385
|
+
<option name="ALTERNATIVE_JRE_PATH" />
|
386
|
+
<option name="ENABLE_SWING_INSPECTOR" value="false" />
|
387
|
+
<option name="ENV_VARIABLES" />
|
388
|
+
<option name="PASS_PARENT_ENVS" value="true" />
|
389
|
+
<module name="" />
|
390
|
+
<envs />
|
391
|
+
<method />
|
392
|
+
</configuration>
|
393
|
+
<configuration default="true" type="BashConfigurationType" factoryName="Bash">
|
394
|
+
<option name="INTERPRETER_OPTIONS" value="" />
|
395
|
+
<option name="INTERPRETER_PATH" value="/bin/bash" />
|
396
|
+
<option name="WORKING_DIRECTORY" value="" />
|
397
|
+
<option name="PARENT_ENVS" value="true" />
|
398
|
+
<option name="SCRIPT_NAME" value="" />
|
399
|
+
<option name="PARAMETERS" value="" />
|
400
|
+
<module name="" />
|
401
|
+
<envs />
|
402
|
+
<method />
|
403
|
+
</configuration>
|
404
|
+
<configuration default="true" type="CommandRunConfigurationType" factoryName="Gem Command">
|
405
|
+
<module name="" />
|
406
|
+
<COMMAND_RUN_CONFIGURATION NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
407
|
+
<COMMAND_RUN_CONFIGURATION NAME="WORK DIR" VALUE="" />
|
408
|
+
<COMMAND_RUN_CONFIGURATION NAME="SHOULD_USE_SDK" VALUE="false" />
|
409
|
+
<COMMAND_RUN_CONFIGURATION NAME="ALTERN_SDK_NAME" VALUE="" />
|
410
|
+
<COMMAND_RUN_CONFIGURATION NAME="myPassParentEnvs" VALUE="true" />
|
411
|
+
<envs />
|
412
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
413
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
414
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
415
|
+
<COVERAGE_PATTERN ENABLED="true">
|
416
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
417
|
+
</COVERAGE_PATTERN>
|
418
|
+
</EXTENSION>
|
419
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
420
|
+
<COMMAND_CONFIG_SETTINGS_ID NAME="GEM_NAME" VALUE="" />
|
421
|
+
<COMMAND_CONFIG_SETTINGS_ID NAME="EXECUTABLE_NAME" VALUE="" />
|
422
|
+
<COMMAND_CONFIG_SETTINGS_ID NAME="EXECUTABLE_ARGS" VALUE="" />
|
423
|
+
<COMMAND_CONFIG_SETTINGS_ID NAME="WORKING_DIR" VALUE="" />
|
424
|
+
<method />
|
425
|
+
</configuration>
|
426
|
+
<configuration default="true" type="CucumberJavaRunConfigurationType" factoryName="Cucumber java">
|
427
|
+
<extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
|
428
|
+
<option name="myFilePath" />
|
429
|
+
<option name="GLUE" />
|
430
|
+
<option name="myNameFilter" />
|
431
|
+
<option name="myGeneratedName" />
|
432
|
+
<option name="MAIN_CLASS_NAME" />
|
433
|
+
<option name="VM_PARAMETERS" />
|
434
|
+
<option name="PROGRAM_PARAMETERS" />
|
435
|
+
<option name="WORKING_DIRECTORY" />
|
436
|
+
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
|
437
|
+
<option name="ALTERNATIVE_JRE_PATH" />
|
438
|
+
<option name="ENABLE_SWING_INSPECTOR" value="false" />
|
439
|
+
<option name="ENV_VARIABLES" />
|
440
|
+
<option name="PASS_PARENT_ENVS" value="true" />
|
441
|
+
<module name="" />
|
442
|
+
<envs />
|
443
|
+
<method />
|
444
|
+
</configuration>
|
445
|
+
<configuration default="true" type="FlashRunConfigurationType" factoryName="Flash App">
|
446
|
+
<option name="BCName" value="" />
|
447
|
+
<option name="IOSSimulatorSdkPath" value="" />
|
448
|
+
<option name="adlOptions" value="" />
|
449
|
+
<option name="airProgramParameters" value="" />
|
450
|
+
<option name="appDescriptorForEmulator" value="Android" />
|
451
|
+
<option name="debugTransport" value="USB" />
|
452
|
+
<option name="debuggerSdkRaw" value="BC SDK" />
|
453
|
+
<option name="emulator" value="NexusOne" />
|
454
|
+
<option name="emulatorAdlOptions" value="" />
|
455
|
+
<option name="fastPackaging" value="true" />
|
456
|
+
<option name="fullScreenHeight" value="0" />
|
457
|
+
<option name="fullScreenWidth" value="0" />
|
458
|
+
<option name="launchUrl" value="false" />
|
459
|
+
<option name="launcherParameters">
|
460
|
+
<LauncherParameters>
|
461
|
+
<option name="browser" value="a7bb68e0-33c0-4d6f-a81a-aac1fdb870c8" />
|
462
|
+
<option name="launcherType" value="OSDefault" />
|
463
|
+
<option name="newPlayerInstance" value="false" />
|
464
|
+
<option name="playerPath" value="/Applications/Flash Player Debugger.app" />
|
465
|
+
</LauncherParameters>
|
466
|
+
</option>
|
467
|
+
<option name="mobileRunTarget" value="Emulator" />
|
468
|
+
<option name="moduleName" value="" />
|
469
|
+
<option name="overriddenMainClass" value="" />
|
470
|
+
<option name="overriddenOutputFileName" value="" />
|
471
|
+
<option name="overrideMainClass" value="false" />
|
472
|
+
<option name="runTrusted" value="true" />
|
473
|
+
<option name="screenDpi" value="0" />
|
474
|
+
<option name="screenHeight" value="0" />
|
475
|
+
<option name="screenWidth" value="0" />
|
476
|
+
<option name="url" value="http://" />
|
477
|
+
<option name="usbDebugPort" value="7936" />
|
478
|
+
<method />
|
479
|
+
</configuration>
|
480
|
+
<configuration default="true" type="FlexUnitRunConfigurationType" factoryName="FlexUnit" appDescriptorForEmulator="Android" class_name="" emulatorAdlOptions="" method_name="" package_name="" scope="Class">
|
481
|
+
<option name="BCName" value="" />
|
482
|
+
<option name="launcherParameters">
|
483
|
+
<LauncherParameters>
|
484
|
+
<option name="browser" value="a7bb68e0-33c0-4d6f-a81a-aac1fdb870c8" />
|
485
|
+
<option name="launcherType" value="OSDefault" />
|
486
|
+
<option name="newPlayerInstance" value="false" />
|
487
|
+
<option name="playerPath" value="/Applications/Flash Player Debugger.app" />
|
488
|
+
</LauncherParameters>
|
489
|
+
</option>
|
490
|
+
<option name="moduleName" value="" />
|
491
|
+
<option name="trusted" value="true" />
|
492
|
+
<method />
|
493
|
+
</configuration>
|
494
|
+
<configuration default="true" type="GradleRunConfiguration" factoryName="Gradle">
|
495
|
+
<ExternalSystemSettings>
|
496
|
+
<option name="executionName" />
|
497
|
+
<option name="externalProjectPath" />
|
498
|
+
<option name="externalSystemIdString" value="GRADLE" />
|
499
|
+
<option name="scriptParameters" />
|
500
|
+
<option name="taskDescriptions">
|
501
|
+
<list />
|
502
|
+
</option>
|
503
|
+
<option name="taskNames">
|
504
|
+
<list />
|
505
|
+
</option>
|
506
|
+
<option name="vmOptions" />
|
507
|
+
</ExternalSystemSettings>
|
508
|
+
<method />
|
509
|
+
</configuration>
|
510
|
+
<configuration default="true" type="GrailsRunConfigurationType" factoryName="Grails">
|
511
|
+
<module name="" />
|
512
|
+
<setting name="vmparams" value="" />
|
513
|
+
<setting name="cmdLine" value="run-app" />
|
514
|
+
<setting name="depsClasspath" value="false" />
|
515
|
+
<setting name="passParentEnv" value="true" />
|
516
|
+
<extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
|
517
|
+
<setting name="launchBrowser" value="false" />
|
518
|
+
<method />
|
519
|
+
</configuration>
|
520
|
+
<configuration default="true" type="JUnit" factoryName="JUnit">
|
521
|
+
<extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
|
522
|
+
<module name="" />
|
523
|
+
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
|
524
|
+
<option name="ALTERNATIVE_JRE_PATH" />
|
525
|
+
<option name="PACKAGE_NAME" />
|
526
|
+
<option name="MAIN_CLASS_NAME" />
|
527
|
+
<option name="METHOD_NAME" />
|
528
|
+
<option name="TEST_OBJECT" value="class" />
|
529
|
+
<option name="VM_PARAMETERS" />
|
530
|
+
<option name="PARAMETERS" />
|
531
|
+
<option name="WORKING_DIRECTORY" />
|
532
|
+
<option name="ENV_VARIABLES" />
|
533
|
+
<option name="PASS_PARENT_ENVS" value="true" />
|
534
|
+
<option name="TEST_SEARCH_SCOPE">
|
535
|
+
<value defaultName="singleModule" />
|
536
|
+
</option>
|
537
|
+
<envs />
|
538
|
+
<patterns />
|
539
|
+
<method />
|
540
|
+
</configuration>
|
541
|
+
<configuration default="true" type="JarApplication" factoryName="JAR Application">
|
542
|
+
<extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
|
543
|
+
<envs />
|
544
|
+
<method />
|
545
|
+
</configuration>
|
546
|
+
<configuration default="true" type="JavascriptDebugType" factoryName="JavaScript Debug">
|
547
|
+
<method />
|
548
|
+
</configuration>
|
549
|
+
<configuration default="true" type="NodeJSConfigurationType" factoryName="Node.js" working-dir="">
|
550
|
+
<method />
|
551
|
+
</configuration>
|
552
|
+
<configuration default="true" type="RSpecRunConfigurationType" factoryName="RSpec">
|
553
|
+
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
554
|
+
<module name="" />
|
555
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
556
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
557
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
558
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
559
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
560
|
+
<envs />
|
561
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
562
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
563
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
564
|
+
<COVERAGE_PATTERN ENABLED="true">
|
565
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
566
|
+
</COVERAGE_PATTERN>
|
567
|
+
</EXTENSION>
|
568
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
569
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
570
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
571
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
572
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
573
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
|
574
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
575
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
576
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
577
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
578
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
579
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
580
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
581
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
582
|
+
<method />
|
583
|
+
</configuration>
|
584
|
+
<configuration default="true" type="RubyRemoteDebugConfigurationType" factoryName="Ruby remote debug">
|
585
|
+
<RUBY_REMOTE_DEBUG_CONFIG NAME="REMOTE_HOST" VALUE="localhost" />
|
586
|
+
<RUBY_REMOTE_DEBUG_CONFIG NAME="PORT" VALUE="1234" />
|
587
|
+
<RUBY_REMOTE_DEBUG_CONFIG NAME="DISPATCHER_PORT" VALUE="26162" />
|
588
|
+
<RUBY_REMOTE_DEBUG_CONFIG NAME="REMOTE_ROOT" VALUE="" />
|
589
|
+
<RUBY_REMOTE_DEBUG_CONFIG NAME="LOCAL_ROOT" VALUE="$PROJECT_DIR$/test" />
|
590
|
+
<method />
|
591
|
+
</configuration>
|
592
|
+
<configuration default="true" type="RubyRunConfigurationType" factoryName="Ruby">
|
593
|
+
<module name="" />
|
594
|
+
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
595
|
+
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="" />
|
596
|
+
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
597
|
+
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
598
|
+
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
599
|
+
<envs />
|
600
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
601
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
602
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
603
|
+
<COVERAGE_PATTERN ENABLED="true">
|
604
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
605
|
+
</COVERAGE_PATTERN>
|
606
|
+
</EXTENSION>
|
607
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
608
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="" />
|
609
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
610
|
+
<method />
|
611
|
+
</configuration>
|
612
|
+
<configuration default="true" type="ScalaTestRunConfiguration" factoryName="ScalaTest">
|
613
|
+
<extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
|
614
|
+
<extension name="scalaCoverage" />
|
615
|
+
<module name="" />
|
616
|
+
<setting name="path" value="" />
|
617
|
+
<setting name="package" value="" />
|
618
|
+
<setting name="vmparams" value="" />
|
619
|
+
<setting name="params" value="" />
|
620
|
+
<setting name="workingDirectory" value="$PROJECT_DIR$" />
|
621
|
+
<setting name="searchForTest" value="Across module dependencies" />
|
622
|
+
<setting name="testName" value="" />
|
623
|
+
<setting name="testKind" value="Class" />
|
624
|
+
<setting name="showProgressMessages" value="true" />
|
625
|
+
<envs />
|
626
|
+
<method />
|
627
|
+
</configuration>
|
628
|
+
<configuration default="true" type="Specs2RunConfiguration" factoryName="Specs2">
|
629
|
+
<extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
|
630
|
+
<extension name="scalaCoverage" />
|
631
|
+
<module name="" />
|
632
|
+
<setting name="path" value="" />
|
633
|
+
<setting name="package" value="" />
|
634
|
+
<setting name="vmparams" value="" />
|
635
|
+
<setting name="params" value="" />
|
636
|
+
<setting name="workingDirectory" value="$PROJECT_DIR$" />
|
637
|
+
<setting name="searchForTest" value="Across module dependencies" />
|
638
|
+
<setting name="testName" value="" />
|
639
|
+
<setting name="testKind" value="Class" />
|
640
|
+
<setting name="showProgressMessages" value="true" />
|
641
|
+
<envs />
|
642
|
+
<method />
|
643
|
+
</configuration>
|
644
|
+
<configuration default="true" type="SpringBootApplicationConfigurationType" factoryName="Spring Boot">
|
645
|
+
<extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
|
646
|
+
<module name="" />
|
647
|
+
<envs />
|
648
|
+
<method />
|
649
|
+
</configuration>
|
650
|
+
<configuration default="true" type="TestNG" factoryName="TestNG">
|
651
|
+
<extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
|
652
|
+
<module name="" />
|
653
|
+
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
|
654
|
+
<option name="ALTERNATIVE_JRE_PATH" />
|
655
|
+
<option name="SUITE_NAME" />
|
656
|
+
<option name="PACKAGE_NAME" />
|
657
|
+
<option name="MAIN_CLASS_NAME" />
|
658
|
+
<option name="METHOD_NAME" />
|
659
|
+
<option name="GROUP_NAME" />
|
660
|
+
<option name="TEST_OBJECT" value="CLASS" />
|
661
|
+
<option name="VM_PARAMETERS" />
|
662
|
+
<option name="PARAMETERS" />
|
663
|
+
<option name="WORKING_DIRECTORY" />
|
664
|
+
<option name="OUTPUT_DIRECTORY" />
|
665
|
+
<option name="ANNOTATION_TYPE" />
|
666
|
+
<option name="ENV_VARIABLES" />
|
667
|
+
<option name="PASS_PARENT_ENVS" value="true" />
|
668
|
+
<option name="TEST_SEARCH_SCOPE">
|
669
|
+
<value defaultName="singleModule" />
|
670
|
+
</option>
|
671
|
+
<option name="USE_DEFAULT_REPORTERS" value="false" />
|
672
|
+
<option name="PROPERTIES_FILE" />
|
673
|
+
<envs />
|
674
|
+
<properties />
|
675
|
+
<listeners />
|
676
|
+
<method />
|
677
|
+
</configuration>
|
678
|
+
<configuration default="true" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest">
|
679
|
+
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
680
|
+
<module name="" />
|
681
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
682
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
683
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
684
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
685
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
686
|
+
<envs />
|
687
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
688
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
689
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
690
|
+
<COVERAGE_PATTERN ENABLED="true">
|
691
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
692
|
+
</COVERAGE_PATTERN>
|
693
|
+
</EXTENSION>
|
694
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
695
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
696
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
697
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
698
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
|
699
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
700
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
701
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
702
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
703
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
704
|
+
<method />
|
705
|
+
</configuration>
|
706
|
+
<configuration default="true" type="js.build_tools.gulp" factoryName="Gulp.js">
|
707
|
+
<node-options />
|
708
|
+
<gulpfile />
|
709
|
+
<tasks />
|
710
|
+
<arguments />
|
711
|
+
<pass-parent-envs>true</pass-parent-envs>
|
712
|
+
<envs />
|
713
|
+
<method />
|
714
|
+
</configuration>
|
715
|
+
<configuration default="true" type="osgi.bnd.run" factoryName="Run Launcher">
|
716
|
+
<method />
|
717
|
+
</configuration>
|
718
|
+
<configuration default="true" type="osgi.bnd.run" factoryName="Test Launcher (JUnit)">
|
719
|
+
<method />
|
720
|
+
</configuration>
|
721
|
+
<configuration default="true" type="uTestRunConfiguration" factoryName="utest">
|
722
|
+
<extension name="coverage" enabled="false" merge="false" sample_coverage="true" runner="idea" />
|
723
|
+
<extension name="scalaCoverage" />
|
724
|
+
<module name="" />
|
725
|
+
<setting name="path" value="" />
|
726
|
+
<setting name="package" value="" />
|
727
|
+
<setting name="vmparams" value="" />
|
728
|
+
<setting name="params" value="" />
|
729
|
+
<setting name="workingDirectory" value="$PROJECT_DIR$" />
|
730
|
+
<setting name="searchForTest" value="Across module dependencies" />
|
731
|
+
<setting name="testName" value="" />
|
732
|
+
<setting name="testKind" value="Class" />
|
733
|
+
<setting name="showProgressMessages" value="true" />
|
734
|
+
<envs />
|
735
|
+
<method />
|
736
|
+
</configuration>
|
737
|
+
<configuration default="false" name="compile templates" type="BashConfigurationType" factoryName="Bash">
|
738
|
+
<option name="INTERPRETER_OPTIONS" value="" />
|
739
|
+
<option name="INTERPRETER_PATH" value="/bin/bash" />
|
740
|
+
<option name="WORKING_DIRECTORY" value="$PROJECT_DIR$/Tools" />
|
741
|
+
<option name="PARENT_ENVS" value="true" />
|
742
|
+
<option name="SCRIPT_NAME" value="$PROJECT_DIR$/Tools/compile_templates.bash" />
|
743
|
+
<option name="PARAMETERS" value="" />
|
744
|
+
<module name="" />
|
745
|
+
<envs />
|
746
|
+
<method>
|
747
|
+
<option name="Make" enabled="false" />
|
748
|
+
</method>
|
749
|
+
</configuration>
|
750
|
+
<list size="5">
|
751
|
+
<item index="0" class="java.lang.String" itemvalue="Bash.compile templates" />
|
752
|
+
<item index="1" class="java.lang.String" itemvalue="Gem Command.Install the Gem" />
|
753
|
+
<item index="2" class="java.lang.String" itemvalue="Gem Command.genswift help" />
|
754
|
+
<item index="3" class="java.lang.String" itemvalue="Gem Command.test1" />
|
755
|
+
<item index="4" class="java.lang.String" itemvalue="Ruby.Ribosome" />
|
756
|
+
</list>
|
757
|
+
</component>
|
758
|
+
<component name="SbtLocalSettings">
|
759
|
+
<option name="externalProjectsViewState">
|
760
|
+
<projects_view />
|
761
|
+
</option>
|
762
|
+
</component>
|
763
|
+
<component name="ShelveChangesManager" show_recycled="false" />
|
764
|
+
<component name="StructureViewFactory">
|
765
|
+
<option name="ACTIVE_ACTIONS" value=",SHOW_INHERITED" />
|
766
|
+
</component>
|
767
|
+
<component name="SvnConfiguration">
|
768
|
+
<configuration />
|
769
|
+
</component>
|
770
|
+
<component name="TaskManager">
|
771
|
+
<task active="true" id="Default" summary="Default task">
|
772
|
+
<changelist id="bd874cad-d549-4333-87ea-d25a437d9e3b" name="Default" comment="" />
|
773
|
+
<created>1428339197285</created>
|
774
|
+
<option name="number" value="Default" />
|
775
|
+
<updated>1428339197285</updated>
|
776
|
+
<workItem from="1430352506088" duration="633000" />
|
777
|
+
<workItem from="1430353566959" duration="63000" />
|
778
|
+
<workItem from="1430353648069" duration="30000" />
|
779
|
+
<workItem from="1430417319492" duration="1141000" />
|
780
|
+
<workItem from="1430453326921" duration="1480000" />
|
781
|
+
<workItem from="1430597170118" duration="3672000" />
|
782
|
+
<workItem from="1430679300643" duration="45000" />
|
783
|
+
<workItem from="1430679366469" duration="11027000" />
|
784
|
+
<workItem from="1430862482705" duration="3140000" />
|
785
|
+
<workItem from="1430952298505" duration="1909000" />
|
786
|
+
<workItem from="1431141177138" duration="171000" />
|
787
|
+
<workItem from="1431142063445" duration="10000" />
|
788
|
+
<workItem from="1431142090981" duration="1533000" />
|
789
|
+
<workItem from="1431205434475" duration="1381000" />
|
790
|
+
<workItem from="1431207684432" duration="934000" />
|
791
|
+
</task>
|
792
|
+
<servers />
|
793
|
+
</component>
|
794
|
+
<component name="TimeTrackingManager">
|
795
|
+
<option name="totallyTimeSpent" value="27169000" />
|
796
|
+
</component>
|
797
|
+
<component name="TodoView" selected-index="0">
|
798
|
+
<todo-panel id="selected-file">
|
799
|
+
<are-packages-shown value="false" />
|
800
|
+
<are-modules-shown value="false" />
|
801
|
+
<flatten-packages value="false" />
|
802
|
+
<is-autoscroll-to-source value="false" />
|
803
|
+
</todo-panel>
|
804
|
+
<todo-panel id="all">
|
805
|
+
<are-packages-shown value="false" />
|
806
|
+
<are-modules-shown value="false" />
|
807
|
+
<flatten-packages value="false" />
|
808
|
+
<is-autoscroll-to-source value="false" />
|
809
|
+
</todo-panel>
|
810
|
+
<todo-panel id="default-changelist">
|
811
|
+
<are-packages-shown value="false" />
|
812
|
+
<are-modules-shown value="false" />
|
813
|
+
<flatten-packages value="false" />
|
814
|
+
<is-autoscroll-to-source value="false" />
|
815
|
+
</todo-panel>
|
816
|
+
</component>
|
817
|
+
<component name="ToolWindowManager">
|
818
|
+
<frame x="3" y="60" width="1920" height="1027" extended-state="0" />
|
819
|
+
<editor active="false" />
|
820
|
+
<layout>
|
821
|
+
<window_info id="Palette	" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
822
|
+
<window_info id="UI Designer" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
823
|
+
<window_info id="Designer" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
824
|
+
<window_info id="Palette" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
825
|
+
<window_info id="Terminal" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32834226" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
826
|
+
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.36096537" sideWeight="0.45101172" order="1" side_tool="false" content_ui="tabs" />
|
827
|
+
<window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
828
|
+
<window_info id="Database" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
829
|
+
<window_info id="Debug" active="true" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.34207764" sideWeight="0.67039406" order="3" side_tool="false" content_ui="tabs" />
|
830
|
+
<window_info id="Event Log" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.34207764" sideWeight="0.32960597" order="7" side_tool="true" content_ui="tabs" />
|
831
|
+
<window_info id="Favorites" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="2" side_tool="true" content_ui="tabs" />
|
832
|
+
<window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
833
|
+
<window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32932693" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
|
834
|
+
<window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.24973376" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
835
|
+
<window_info id="Maven Projects" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
836
|
+
<window_info id="Application Servers" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
837
|
+
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.18157615" sideWeight="0.5" order="0" side_tool="false" content_ui="combo" />
|
838
|
+
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3578174" sideWeight="0.8189563" order="2" side_tool="false" content_ui="tabs" />
|
839
|
+
<window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" />
|
840
|
+
<window_info id="Changes" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
841
|
+
<window_info id="Message" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
842
|
+
<window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="SLIDING" type="SLIDING" visible="false" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
843
|
+
<window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="2" side_tool="false" content_ui="combo" />
|
844
|
+
<window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="5" side_tool="false" content_ui="tabs" />
|
845
|
+
</layout>
|
846
|
+
<layout-to-restore>
|
847
|
+
<window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" />
|
848
|
+
<window_info id="Changes" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
849
|
+
<window_info id="Message" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
850
|
+
<window_info id="Terminal" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32932693" sideWeight="0.5" order="8" side_tool="false" content_ui="tabs" />
|
851
|
+
<window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
852
|
+
<window_info id="Database" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
853
|
+
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32932693" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
854
|
+
<window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.3565705" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
855
|
+
<window_info id="Event Log" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3565705" sideWeight="0.5" order="9" side_tool="true" content_ui="tabs" />
|
856
|
+
<window_info id="Favorites" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="2" side_tool="true" content_ui="tabs" />
|
857
|
+
<window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="10" side_tool="false" content_ui="tabs" />
|
858
|
+
<window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32932693" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
|
859
|
+
<window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.24986681" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
860
|
+
<window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="SLIDING" type="SLIDING" visible="false" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
861
|
+
<window_info id="Application Servers" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="11" side_tool="false" content_ui="tabs" />
|
862
|
+
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.21834497" sideWeight="0.5" order="0" side_tool="false" content_ui="combo" />
|
863
|
+
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32932693" sideWeight="0.7362911" order="2" side_tool="false" content_ui="tabs" />
|
864
|
+
<window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="2" side_tool="false" content_ui="combo" />
|
865
|
+
<window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="5" side_tool="false" content_ui="tabs" />
|
866
|
+
</layout-to-restore>
|
867
|
+
</component>
|
868
|
+
<component name="Vcs.Log.UiProperties">
|
869
|
+
<option name="RECENTLY_FILTERED_USER_GROUPS">
|
870
|
+
<collection />
|
871
|
+
</option>
|
872
|
+
<option name="RECENTLY_FILTERED_BRANCH_GROUPS">
|
873
|
+
<collection />
|
874
|
+
</option>
|
875
|
+
</component>
|
876
|
+
<component name="VcsContentAnnotationSettings">
|
877
|
+
<option name="myLimit" value="2678400000" />
|
878
|
+
</component>
|
879
|
+
<component name="XDebuggerManager">
|
880
|
+
<breakpoint-manager>
|
881
|
+
<breakpoints>
|
882
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
883
|
+
<url>file://$PROJECT_DIR$/lib/swift_generator/code_generation/swift_class_generation.rb</url>
|
884
|
+
<line>500</line>
|
885
|
+
<option name="timeStamp" value="47" />
|
886
|
+
</line-breakpoint>
|
887
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
888
|
+
<url>file://$PROJECT_DIR$/lib/swift_generator/code_generation/swift_class_generation.rb</url>
|
889
|
+
<line>644</line>
|
890
|
+
<option name="timeStamp" value="48" />
|
891
|
+
</line-breakpoint>
|
892
|
+
</breakpoints>
|
893
|
+
<option name="time" value="49" />
|
894
|
+
</breakpoint-manager>
|
895
|
+
<watches-manager />
|
896
|
+
</component>
|
897
|
+
<component name="antWorkspaceConfiguration">
|
898
|
+
<option name="IS_AUTOSCROLL_TO_SOURCE" value="false" />
|
899
|
+
<option name="FILTER_TARGETS" value="false" />
|
900
|
+
</component>
|
901
|
+
<component name="editorHistoryManager">
|
902
|
+
<entry file="file://$PROJECT_DIR$/bin/genswift">
|
903
|
+
<provider selected="true" editor-type-id="text-editor">
|
904
|
+
<state vertical-scroll-proportion="0.0">
|
905
|
+
<caret line="21" column="0" selection-start-line="21" selection-start-column="0" selection-end-line="21" selection-end-column="0" />
|
906
|
+
<folding />
|
907
|
+
</state>
|
908
|
+
</provider>
|
909
|
+
</entry>
|
910
|
+
<entry file="file://$PROJECT_DIR$/lib/swift_generator/code_generation/swift_class_generation.rb">
|
911
|
+
<provider selected="true" editor-type-id="text-editor">
|
912
|
+
<state vertical-scroll-proportion="0.0">
|
913
|
+
<caret line="22" column="0" selection-start-line="22" selection-start-column="0" selection-end-line="22" selection-end-column="0" />
|
914
|
+
<folding />
|
915
|
+
</state>
|
916
|
+
</provider>
|
917
|
+
</entry>
|
918
|
+
<entry file="file://$PROJECT_DIR$/lib/swift_generator/code_generation/SwiftFileTemplate.dna">
|
919
|
+
<provider selected="true" editor-type-id="text-editor">
|
920
|
+
<state vertical-scroll-proportion="0.0">
|
921
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
922
|
+
<folding />
|
923
|
+
</state>
|
924
|
+
</provider>
|
925
|
+
</entry>
|
926
|
+
<entry file="file://$PROJECT_DIR$/Tools/ribosome.rb">
|
927
|
+
<provider selected="true" editor-type-id="text-editor">
|
928
|
+
<state vertical-scroll-proportion="0.0">
|
929
|
+
<caret line="446" column="12" selection-start-line="446" selection-start-column="0" selection-end-line="447" selection-end-column="0" />
|
930
|
+
</state>
|
931
|
+
</provider>
|
932
|
+
</entry>
|
933
|
+
<entry file="file://$PROJECT_DIR$/lib/swift_generator/code_generation/SwiftFileTemplate.dna">
|
934
|
+
<provider selected="true" editor-type-id="text-editor">
|
935
|
+
<state vertical-scroll-proportion="0.0">
|
936
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
937
|
+
</state>
|
938
|
+
</provider>
|
939
|
+
</entry>
|
940
|
+
<entry file="file://$PROJECT_DIR$/lib/swift_generator/code_generation/usi_metaclasses.rb">
|
941
|
+
<provider selected="true" editor-type-id="text-editor">
|
942
|
+
<state vertical-scroll-proportion="0.0">
|
943
|
+
<caret line="9" column="0" selection-start-line="9" selection-start-column="0" selection-end-line="9" selection-end-column="0" />
|
944
|
+
</state>
|
945
|
+
</provider>
|
946
|
+
</entry>
|
947
|
+
<entry file="file://$PROJECT_DIR$/lib/swift_generator/specfile_parser.rb">
|
948
|
+
<provider selected="true" editor-type-id="text-editor">
|
949
|
+
<state vertical-scroll-proportion="0.0">
|
950
|
+
<caret line="23" column="36" selection-start-line="23" selection-start-column="6" selection-end-line="23" selection-end-column="36" />
|
951
|
+
</state>
|
952
|
+
</provider>
|
953
|
+
</entry>
|
954
|
+
<entry file="file://$PROJECT_DIR$/bin/genswift">
|
955
|
+
<provider selected="true" editor-type-id="text-editor">
|
956
|
+
<state vertical-scroll-proportion="0.0">
|
957
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
958
|
+
</state>
|
959
|
+
</provider>
|
960
|
+
</entry>
|
961
|
+
<entry file="file://$PROJECT_DIR$/lib/swift_generator.rb">
|
962
|
+
<provider selected="true" editor-type-id="text-editor">
|
963
|
+
<state vertical-scroll-proportion="0.0">
|
964
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
965
|
+
</state>
|
966
|
+
</provider>
|
967
|
+
</entry>
|
968
|
+
<entry file="file://$PROJECT_DIR$/lib/swift_generator/version.rb">
|
969
|
+
<provider selected="true" editor-type-id="text-editor">
|
970
|
+
<state vertical-scroll-proportion="0.0">
|
971
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
972
|
+
</state>
|
973
|
+
</provider>
|
974
|
+
</entry>
|
975
|
+
<entry file="file://$USER_HOME$/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/commander-4.3.2/lib/commander/runner.rb">
|
976
|
+
<provider selected="true" editor-type-id="text-editor">
|
977
|
+
<state vertical-scroll-proportion="0.0">
|
978
|
+
<caret line="71" column="0" selection-start-line="71" selection-start-column="0" selection-end-line="71" selection-end-column="0" />
|
979
|
+
</state>
|
980
|
+
</provider>
|
981
|
+
</entry>
|
982
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
983
|
+
<provider selected="true" editor-type-id="text-editor">
|
984
|
+
<state vertical-scroll-proportion="0.0">
|
985
|
+
<caret line="6" column="15" selection-start-line="6" selection-start-column="15" selection-end-line="6" selection-end-column="15" />
|
986
|
+
</state>
|
987
|
+
</provider>
|
988
|
+
</entry>
|
989
|
+
<entry file="file://$PROJECT_DIR$/bin/genswift">
|
990
|
+
<provider selected="true" editor-type-id="text-editor">
|
991
|
+
<state vertical-scroll-proportion="0.0">
|
992
|
+
<caret line="21" column="0" selection-start-line="21" selection-start-column="0" selection-end-line="21" selection-end-column="0" />
|
993
|
+
</state>
|
994
|
+
</provider>
|
995
|
+
</entry>
|
996
|
+
<entry file="file://$PROJECT_DIR$/swift_generator.gemspec">
|
997
|
+
<provider selected="true" editor-type-id="text-editor">
|
998
|
+
<state vertical-scroll-proportion="0.0">
|
999
|
+
<caret line="11" column="25" selection-start-line="11" selection-start-column="25" selection-end-line="11" selection-end-column="25" />
|
1000
|
+
</state>
|
1001
|
+
</provider>
|
1002
|
+
</entry>
|
1003
|
+
<entry file="file://$PROJECT_DIR$/lib/swift_generator/specfile_parser.rb">
|
1004
|
+
<provider selected="true" editor-type-id="text-editor">
|
1005
|
+
<state vertical-scroll-proportion="0.0">
|
1006
|
+
<caret line="17" column="0" selection-start-line="17" selection-start-column="0" selection-end-line="17" selection-end-column="0" />
|
1007
|
+
</state>
|
1008
|
+
</provider>
|
1009
|
+
</entry>
|
1010
|
+
<entry file="file://$PROJECT_DIR$/lib/swift_generator.rb">
|
1011
|
+
<provider selected="true" editor-type-id="text-editor">
|
1012
|
+
<state vertical-scroll-proportion="0.0">
|
1013
|
+
<caret line="18" column="29" selection-start-line="18" selection-start-column="29" selection-end-line="18" selection-end-column="29" />
|
1014
|
+
</state>
|
1015
|
+
</provider>
|
1016
|
+
</entry>
|
1017
|
+
<entry file="file://$USER_HOME$/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/commander-4.3.2/lib/commander/runner.rb">
|
1018
|
+
<provider selected="true" editor-type-id="text-editor">
|
1019
|
+
<state vertical-scroll-proportion="0.0">
|
1020
|
+
<caret line="390" column="0" selection-start-line="390" selection-start-column="0" selection-end-line="390" selection-end-column="0" />
|
1021
|
+
</state>
|
1022
|
+
</provider>
|
1023
|
+
</entry>
|
1024
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
1025
|
+
<provider selected="true" editor-type-id="text-editor">
|
1026
|
+
<state vertical-scroll-proportion="0.0">
|
1027
|
+
<caret line="6" column="15" selection-start-line="6" selection-start-column="15" selection-end-line="6" selection-end-column="15" />
|
1028
|
+
</state>
|
1029
|
+
</provider>
|
1030
|
+
</entry>
|
1031
|
+
<entry file="file://$PROJECT_DIR$/bin/genswift">
|
1032
|
+
<provider selected="true" editor-type-id="text-editor">
|
1033
|
+
<state vertical-scroll-proportion="0.0">
|
1034
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
1035
|
+
</state>
|
1036
|
+
</provider>
|
1037
|
+
</entry>
|
1038
|
+
<entry file="file://$PROJECT_DIR$/lib/swift_generator/specfile_parser.rb">
|
1039
|
+
<provider selected="true" editor-type-id="text-editor">
|
1040
|
+
<state vertical-scroll-proportion="0.0">
|
1041
|
+
<caret line="12" column="24" selection-start-line="12" selection-start-column="8" selection-end-line="12" selection-end-column="24" />
|
1042
|
+
</state>
|
1043
|
+
</provider>
|
1044
|
+
</entry>
|
1045
|
+
<entry file="file://$PROJECT_DIR$/lib/swift_generator.rb">
|
1046
|
+
<provider selected="true" editor-type-id="text-editor">
|
1047
|
+
<state vertical-scroll-proportion="0.0">
|
1048
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
1049
|
+
</state>
|
1050
|
+
</provider>
|
1051
|
+
</entry>
|
1052
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
1053
|
+
<provider selected="true" editor-type-id="text-editor">
|
1054
|
+
<state vertical-scroll-proportion="0.0">
|
1055
|
+
<caret line="7" column="14" selection-start-line="7" selection-start-column="14" selection-end-line="7" selection-end-column="14" />
|
1056
|
+
</state>
|
1057
|
+
</provider>
|
1058
|
+
</entry>
|
1059
|
+
<entry file="file://$PROJECT_DIR$/lib/swift_generator.rb">
|
1060
|
+
<provider selected="true" editor-type-id="text-editor">
|
1061
|
+
<state vertical-scroll-proportion="0.0">
|
1062
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
1063
|
+
</state>
|
1064
|
+
</provider>
|
1065
|
+
</entry>
|
1066
|
+
<entry file="file://$PROJECT_DIR$/Tools/ribosome.rb">
|
1067
|
+
<provider selected="true" editor-type-id="text-editor">
|
1068
|
+
<state vertical-scroll-proportion="0.0">
|
1069
|
+
<caret line="446" column="12" selection-start-line="446" selection-start-column="0" selection-end-line="447" selection-end-column="0" />
|
1070
|
+
</state>
|
1071
|
+
</provider>
|
1072
|
+
</entry>
|
1073
|
+
<entry file="file://$PROJECT_DIR$/lib/swift_generator/code_generation/usi_metaclasses.rb">
|
1074
|
+
<provider selected="true" editor-type-id="text-editor">
|
1075
|
+
<state vertical-scroll-proportion="0.0">
|
1076
|
+
<caret line="9" column="0" selection-start-line="9" selection-start-column="0" selection-end-line="9" selection-end-column="0" />
|
1077
|
+
</state>
|
1078
|
+
</provider>
|
1079
|
+
</entry>
|
1080
|
+
<entry file="file://$PROJECT_DIR$/LICENSE.txt">
|
1081
|
+
<provider selected="true" editor-type-id="text-editor">
|
1082
|
+
<state vertical-scroll-proportion="0.0">
|
1083
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
1084
|
+
</state>
|
1085
|
+
</provider>
|
1086
|
+
<provider editor-type-id="com.intellij.database.editor.CsvTableFileEditorProvider">
|
1087
|
+
<state />
|
1088
|
+
</provider>
|
1089
|
+
</entry>
|
1090
|
+
<entry file="file://$PROJECT_DIR$/README.md">
|
1091
|
+
<provider editor-type-id="MarkdownPreviewEditor">
|
1092
|
+
<state />
|
1093
|
+
</provider>
|
1094
|
+
<provider selected="true" editor-type-id="text-editor">
|
1095
|
+
<state vertical-scroll-proportion="0.0">
|
1096
|
+
<caret line="5" column="0" selection-start-line="5" selection-start-column="0" selection-end-line="5" selection-end-column="0" />
|
1097
|
+
</state>
|
1098
|
+
</provider>
|
1099
|
+
</entry>
|
1100
|
+
<entry file="file://$USER_HOME$/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/commander-4.3.2/lib/commander/runner.rb">
|
1101
|
+
<provider selected="true" editor-type-id="text-editor">
|
1102
|
+
<state vertical-scroll-proportion="0.0">
|
1103
|
+
<caret line="67" column="0" selection-start-line="67" selection-start-column="0" selection-end-line="67" selection-end-column="0" />
|
1104
|
+
</state>
|
1105
|
+
</provider>
|
1106
|
+
</entry>
|
1107
|
+
<entry file="file://$PROJECT_DIR$/lib/swift_generator/code_generation/ToRemove/generate.bash">
|
1108
|
+
<provider selected="true" editor-type-id="text-editor">
|
1109
|
+
<state vertical-scroll-proportion="-0.0">
|
1110
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
1111
|
+
</state>
|
1112
|
+
</provider>
|
1113
|
+
</entry>
|
1114
|
+
<entry file="file://$PROJECT_DIR$/spec/swift_generator_spec.rb">
|
1115
|
+
<provider selected="true" editor-type-id="text-editor">
|
1116
|
+
<state vertical-scroll-proportion="0.0">
|
1117
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
1118
|
+
</state>
|
1119
|
+
</provider>
|
1120
|
+
</entry>
|
1121
|
+
<entry file="file://$PROJECT_DIR$/spec/spec_helper.rb">
|
1122
|
+
<provider selected="true" editor-type-id="text-editor">
|
1123
|
+
<state vertical-scroll-proportion="0.0">
|
1124
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
1125
|
+
</state>
|
1126
|
+
</provider>
|
1127
|
+
</entry>
|
1128
|
+
<entry file="file://$PROJECT_DIR$/lib/swift_generator/version.rb">
|
1129
|
+
<provider selected="true" editor-type-id="text-editor">
|
1130
|
+
<state vertical-scroll-proportion="0.0">
|
1131
|
+
<caret line="1" column="18" selection-start-line="1" selection-start-column="18" selection-end-line="1" selection-end-column="18" />
|
1132
|
+
</state>
|
1133
|
+
</provider>
|
1134
|
+
</entry>
|
1135
|
+
<entry file="file://$PROJECT_DIR$/swift_generator.gemspec">
|
1136
|
+
<provider selected="true" editor-type-id="text-editor">
|
1137
|
+
<state vertical-scroll-proportion="0.0">
|
1138
|
+
<caret line="25" column="110" selection-start-line="25" selection-start-column="42" selection-end-line="25" selection-end-column="110" />
|
1139
|
+
</state>
|
1140
|
+
</provider>
|
1141
|
+
</entry>
|
1142
|
+
<entry file="file://$PROJECT_DIR$/Rakefile">
|
1143
|
+
<provider selected="true" editor-type-id="text-editor">
|
1144
|
+
<state vertical-scroll-proportion="0.0">
|
1145
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
1146
|
+
</state>
|
1147
|
+
</provider>
|
1148
|
+
</entry>
|
1149
|
+
<entry file="file://$PROJECT_DIR$/Gemfile.lock">
|
1150
|
+
<provider selected="true" editor-type-id="text-editor">
|
1151
|
+
<state vertical-scroll-proportion="0.0">
|
1152
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
1153
|
+
</state>
|
1154
|
+
</provider>
|
1155
|
+
</entry>
|
1156
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
1157
|
+
<provider selected="true" editor-type-id="text-editor">
|
1158
|
+
<state vertical-scroll-proportion="0.0">
|
1159
|
+
<caret line="6" column="15" selection-start-line="6" selection-start-column="15" selection-end-line="6" selection-end-column="15" />
|
1160
|
+
<folding />
|
1161
|
+
</state>
|
1162
|
+
</provider>
|
1163
|
+
</entry>
|
1164
|
+
<entry file="file://$PROJECT_DIR$/.travis.yml">
|
1165
|
+
<provider selected="true" editor-type-id="text-editor">
|
1166
|
+
<state vertical-scroll-proportion="0.0">
|
1167
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
1168
|
+
</state>
|
1169
|
+
</provider>
|
1170
|
+
</entry>
|
1171
|
+
<entry file="file://$PROJECT_DIR$/.rspec">
|
1172
|
+
<provider selected="true" editor-type-id="text-editor">
|
1173
|
+
<state vertical-scroll-proportion="0.0">
|
1174
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
1175
|
+
</state>
|
1176
|
+
</provider>
|
1177
|
+
</entry>
|
1178
|
+
<entry file="file://$PROJECT_DIR$/.gitignore">
|
1179
|
+
<provider selected="true" editor-type-id="text-editor">
|
1180
|
+
<state vertical-scroll-proportion="0.0">
|
1181
|
+
<caret line="10" column="0" selection-start-line="10" selection-start-column="0" selection-end-line="10" selection-end-column="0" />
|
1182
|
+
</state>
|
1183
|
+
</provider>
|
1184
|
+
</entry>
|
1185
|
+
<entry file="file://$PROJECT_DIR$/lib/swift_generator/code_generation/swift_types.rb">
|
1186
|
+
<provider selected="true" editor-type-id="text-editor">
|
1187
|
+
<state vertical-scroll-proportion="0.0">
|
1188
|
+
<caret line="7" column="6" selection-start-line="7" selection-start-column="6" selection-end-line="7" selection-end-column="6" />
|
1189
|
+
</state>
|
1190
|
+
</provider>
|
1191
|
+
</entry>
|
1192
|
+
<entry file="file://$APPLICATION_PLUGINS_DIR$/ruby/rubystubs/rubystubs22/object.rb">
|
1193
|
+
<provider selected="true" editor-type-id="text-editor">
|
1194
|
+
<state vertical-scroll-proportion="24.483051">
|
1195
|
+
<caret line="963" column="8" selection-start-line="963" selection-start-column="8" selection-end-line="963" selection-end-column="8" />
|
1196
|
+
</state>
|
1197
|
+
</provider>
|
1198
|
+
</entry>
|
1199
|
+
<entry file="file://$PROJECT_DIR$/Tools/compile_templates.bash">
|
1200
|
+
<provider selected="true" editor-type-id="text-editor">
|
1201
|
+
<state vertical-scroll-proportion="0.0">
|
1202
|
+
<caret line="3" column="0" selection-start-line="3" selection-start-column="0" selection-end-line="3" selection-end-column="0" />
|
1203
|
+
</state>
|
1204
|
+
</provider>
|
1205
|
+
</entry>
|
1206
|
+
<entry file="file://$PROJECT_DIR$/lib/swift_generator/code_generation/code_generation_common.rb">
|
1207
|
+
<provider selected="true" editor-type-id="text-editor">
|
1208
|
+
<state vertical-scroll-proportion="0.0">
|
1209
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
1210
|
+
</state>
|
1211
|
+
</provider>
|
1212
|
+
</entry>
|
1213
|
+
<entry file="file://$PROJECT_DIR$/lib/swift_generator/code_generation/SwiftFileTemplate.dna">
|
1214
|
+
<provider selected="true" editor-type-id="text-editor">
|
1215
|
+
<state vertical-scroll-proportion="0.0">
|
1216
|
+
<caret line="49" column="0" selection-start-line="49" selection-start-column="0" selection-end-line="49" selection-end-column="0" />
|
1217
|
+
<folding />
|
1218
|
+
</state>
|
1219
|
+
</provider>
|
1220
|
+
</entry>
|
1221
|
+
<entry file="file://$APPLICATION_PLUGINS_DIR$/ruby/rubystubs/rubystubs22/nil_class.rb">
|
1222
|
+
<provider selected="true" editor-type-id="text-editor">
|
1223
|
+
<state vertical-scroll-proportion="0.24507658">
|
1224
|
+
<caret line="87" column="8" selection-start-line="87" selection-start-column="8" selection-end-line="87" selection-end-column="8" />
|
1225
|
+
</state>
|
1226
|
+
</provider>
|
1227
|
+
</entry>
|
1228
|
+
<entry file="file://$PROJECT_DIR$/bin/genswift">
|
1229
|
+
<provider selected="true" editor-type-id="text-editor">
|
1230
|
+
<state vertical-scroll-proportion="0.0">
|
1231
|
+
<caret line="21" column="0" selection-start-line="21" selection-start-column="0" selection-end-line="21" selection-end-column="0" />
|
1232
|
+
<folding />
|
1233
|
+
</state>
|
1234
|
+
</provider>
|
1235
|
+
<provider editor-type-id="com.intellij.database.editor.CsvTableFileEditorProvider">
|
1236
|
+
<state />
|
1237
|
+
</provider>
|
1238
|
+
</entry>
|
1239
|
+
<entry file="file://$PROJECT_DIR$/lib/swift_generator.rb">
|
1240
|
+
<provider selected="true" editor-type-id="text-editor">
|
1241
|
+
<state vertical-scroll-proportion="0.0">
|
1242
|
+
<caret line="18" column="0" selection-start-line="18" selection-start-column="0" selection-end-line="18" selection-end-column="0" />
|
1243
|
+
<folding />
|
1244
|
+
</state>
|
1245
|
+
</provider>
|
1246
|
+
</entry>
|
1247
|
+
<entry file="file://$PROJECT_DIR$/lib/swift_generator/specfile_parser.rb">
|
1248
|
+
<provider selected="true" editor-type-id="text-editor">
|
1249
|
+
<state vertical-scroll-proportion="0.0">
|
1250
|
+
<caret line="23" column="0" selection-start-line="23" selection-start-column="0" selection-end-line="23" selection-end-column="0" />
|
1251
|
+
<folding />
|
1252
|
+
</state>
|
1253
|
+
</provider>
|
1254
|
+
</entry>
|
1255
|
+
<entry file="file://$PROJECT_DIR$/lib/swift_generator/code_generation/swift_file_template.rb">
|
1256
|
+
<provider selected="true" editor-type-id="text-editor">
|
1257
|
+
<state vertical-scroll-proportion="0.0">
|
1258
|
+
<caret line="351" column="0" selection-start-line="351" selection-start-column="0" selection-end-line="351" selection-end-column="0" />
|
1259
|
+
<folding />
|
1260
|
+
</state>
|
1261
|
+
</provider>
|
1262
|
+
</entry>
|
1263
|
+
<entry file="file://$PROJECT_DIR$/test/TestSpecs/Test1.json">
|
1264
|
+
<provider selected="true" editor-type-id="text-editor">
|
1265
|
+
<state vertical-scroll-proportion="4.125">
|
1266
|
+
<caret line="6" column="27" selection-start-line="6" selection-start-column="0" selection-end-line="7" selection-end-column="0" />
|
1267
|
+
<folding />
|
1268
|
+
</state>
|
1269
|
+
</provider>
|
1270
|
+
</entry>
|
1271
|
+
<entry file="file://$PROJECT_DIR$/lib/swift_generator/code_generation/swift_class_generation.rb">
|
1272
|
+
<provider selected="true" editor-type-id="text-editor">
|
1273
|
+
<state vertical-scroll-proportion="0.33222038">
|
1274
|
+
<caret line="478" column="84" selection-start-line="478" selection-start-column="84" selection-end-line="478" selection-end-column="84" />
|
1275
|
+
<folding />
|
1276
|
+
</state>
|
1277
|
+
</provider>
|
1278
|
+
</entry>
|
1279
|
+
</component>
|
1280
|
+
<component name="masterDetails">
|
1281
|
+
<states>
|
1282
|
+
<state key="ArtifactsStructureConfigurable.UI">
|
1283
|
+
<settings>
|
1284
|
+
<artifact-editor />
|
1285
|
+
<splitter-proportions>
|
1286
|
+
<option name="proportions">
|
1287
|
+
<list>
|
1288
|
+
<option value="0.2" />
|
1289
|
+
</list>
|
1290
|
+
</option>
|
1291
|
+
</splitter-proportions>
|
1292
|
+
</settings>
|
1293
|
+
</state>
|
1294
|
+
<state key="FacetStructureConfigurable.UI">
|
1295
|
+
<settings>
|
1296
|
+
<last-edited>Ruby Gem</last-edited>
|
1297
|
+
<splitter-proportions>
|
1298
|
+
<option name="proportions">
|
1299
|
+
<list>
|
1300
|
+
<option value="0.2" />
|
1301
|
+
</list>
|
1302
|
+
</option>
|
1303
|
+
</splitter-proportions>
|
1304
|
+
</settings>
|
1305
|
+
</state>
|
1306
|
+
<state key="GlobalLibrariesConfigurable.UI">
|
1307
|
+
<settings>
|
1308
|
+
<last-edited>archive-tar-minitar (v0.5.2, rbenv: 2.2.0) [gem]</last-edited>
|
1309
|
+
<splitter-proportions>
|
1310
|
+
<option name="proportions">
|
1311
|
+
<list>
|
1312
|
+
<option value="0.2" />
|
1313
|
+
</list>
|
1314
|
+
</option>
|
1315
|
+
</splitter-proportions>
|
1316
|
+
</settings>
|
1317
|
+
</state>
|
1318
|
+
<state key="JdkListConfigurable.UI">
|
1319
|
+
<settings>
|
1320
|
+
<last-edited>rbenv: 2.2.0</last-edited>
|
1321
|
+
<splitter-proportions>
|
1322
|
+
<option name="proportions">
|
1323
|
+
<list>
|
1324
|
+
<option value="0.2" />
|
1325
|
+
</list>
|
1326
|
+
</option>
|
1327
|
+
</splitter-proportions>
|
1328
|
+
</settings>
|
1329
|
+
</state>
|
1330
|
+
<state key="ModuleStructureConfigurable.UI">
|
1331
|
+
<settings>
|
1332
|
+
<last-edited>swift_generator</last-edited>
|
1333
|
+
<splitter-proportions>
|
1334
|
+
<option name="proportions">
|
1335
|
+
<list>
|
1336
|
+
<option value="0.2" />
|
1337
|
+
<option value="0.5" />
|
1338
|
+
</list>
|
1339
|
+
</option>
|
1340
|
+
</splitter-proportions>
|
1341
|
+
</settings>
|
1342
|
+
</state>
|
1343
|
+
<state key="ProjectLibrariesConfigurable.UI">
|
1344
|
+
<settings>
|
1345
|
+
<splitter-proportions>
|
1346
|
+
<option name="proportions">
|
1347
|
+
<list>
|
1348
|
+
<option value="0.2" />
|
1349
|
+
</list>
|
1350
|
+
</option>
|
1351
|
+
</splitter-proportions>
|
1352
|
+
</settings>
|
1353
|
+
</state>
|
1354
|
+
</states>
|
1355
|
+
</component>
|
1356
|
+
</project>
|