fig_magic 0.1
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/.DS_Store +0 -0
- data/.gitignore +17 -0
- data/.idea/.name +1 -0
- data/.idea/.rakeTasks +7 -0
- data/.idea/FigMagic.iml +33 -0
- data/.idea/atlassian-ide-plugin.xml +5 -0
- data/.idea/encodings.xml +6 -0
- data/.idea/misc.xml +14 -0
- data/.idea/modules.xml +8 -0
- data/.idea/workspace.xml +776 -0
- data/.rspec +2 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/ChangeLog +2 -0
- data/Gemfile +12 -0
- data/Guardfile +16 -0
- data/LICENSE +22 -0
- data/README.md +145 -0
- data/Rakefile +25 -0
- data/config/data/default.yml +3 -0
- data/config/data/user.yml +3 -0
- data/config/environments/default.yml +1 -0
- data/config/yaml/sample.yml +1 -0
- data/config/yaml/test_config.yml +14 -0
- data/cucumber.yml +2 -0
- data/features/data_magic.feature +124 -0
- data/features/defaults.feature +8 -0
- data/features/fig_newton.feature +85 -0
- data/features/step_definitions/data_magic_steps.rb +164 -0
- data/features/step_definitions/fig_newton_steps.rb +95 -0
- data/features/support/env.rb +9 -0
- data/features/yaml/another.yml +9 -0
- data/features/yaml/example.yml +56 -0
- data/fig_magic.gemspec +25 -0
- data/lib/fig_magic/core_ext/fixnum.rb +11 -0
- data/lib/fig_magic/core_ext/string.rb +5 -0
- data/lib/fig_magic/date_translation.rb +73 -0
- data/lib/fig_magic/missing.rb +35 -0
- data/lib/fig_magic/node.rb +15 -0
- data/lib/fig_magic/standard_translation.rb +316 -0
- data/lib/fig_magic/translation.rb +14 -0
- data/lib/fig_magic/version.rb +3 -0
- data/lib/fig_magic.rb +93 -0
- data/spec/lib/data_magic_spec.rb +60 -0
- data/spec/lib/translation_spec.rb +312 -0
- data/spec/spec_helper.rb +30 -0
- metadata +158 -0
data/.idea/workspace.xml
ADDED
@@ -0,0 +1,776 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="ChangeListManager">
|
4
|
+
<list default="true" id="077dcec9-b1fb-423d-b919-a9d4692110ae" name="Default" comment="" />
|
5
|
+
<ignored path="FigMagic.iws" />
|
6
|
+
<ignored path=".idea/workspace.xml" />
|
7
|
+
<ignored path=".idea/dataSources.local.xml" />
|
8
|
+
<option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
|
9
|
+
<option name="TRACKING_ENABLED" value="true" />
|
10
|
+
<option name="SHOW_DIALOG" value="false" />
|
11
|
+
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
12
|
+
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
13
|
+
<option name="LAST_RESOLUTION" value="IGNORE" />
|
14
|
+
</component>
|
15
|
+
<component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
|
16
|
+
<component name="CreatePatchCommitExecutor">
|
17
|
+
<option name="PATCH_PATH" value="" />
|
18
|
+
</component>
|
19
|
+
<component name="FavoritesManager">
|
20
|
+
<favorites_list name="FigMagic" />
|
21
|
+
</component>
|
22
|
+
<component name="FileEditorManager">
|
23
|
+
<leaf SIDE_TABS_SIZE_LIMIT_KEY="300">
|
24
|
+
<file leaf-file-name="default.yml" pinned="false" current-in-tab="false">
|
25
|
+
<entry file="file://$PROJECT_DIR$/config/data/default.yml">
|
26
|
+
<provider selected="true" editor-type-id="text-editor">
|
27
|
+
<state vertical-scroll-proportion="0.0">
|
28
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
29
|
+
<folding />
|
30
|
+
</state>
|
31
|
+
</provider>
|
32
|
+
</entry>
|
33
|
+
</file>
|
34
|
+
<file leaf-file-name=".gitignore" pinned="false" current-in-tab="false">
|
35
|
+
<entry file="file://$PROJECT_DIR$/.gitignore">
|
36
|
+
<provider selected="true" editor-type-id="text-editor">
|
37
|
+
<state vertical-scroll-proportion="0.0">
|
38
|
+
<caret line="16" column="3" selection-start-line="16" selection-start-column="3" selection-end-line="16" selection-end-column="3" />
|
39
|
+
<folding />
|
40
|
+
</state>
|
41
|
+
</provider>
|
42
|
+
</entry>
|
43
|
+
</file>
|
44
|
+
<file leaf-file-name="user.yml" pinned="false" current-in-tab="false">
|
45
|
+
<entry file="file://$PROJECT_DIR$/config/data/user.yml">
|
46
|
+
<provider selected="true" editor-type-id="text-editor">
|
47
|
+
<state vertical-scroll-proportion="0.0">
|
48
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
49
|
+
<folding />
|
50
|
+
</state>
|
51
|
+
</provider>
|
52
|
+
</entry>
|
53
|
+
</file>
|
54
|
+
<file leaf-file-name="data_magic_steps.rb" pinned="false" current-in-tab="false">
|
55
|
+
<entry file="file://$PROJECT_DIR$/features/step_definitions/data_magic_steps.rb">
|
56
|
+
<provider selected="true" editor-type-id="text-editor">
|
57
|
+
<state vertical-scroll-proportion="-11.703704">
|
58
|
+
<caret line="47" column="15" selection-start-line="47" selection-start-column="10" selection-end-line="47" selection-end-column="15" />
|
59
|
+
<folding />
|
60
|
+
</state>
|
61
|
+
</provider>
|
62
|
+
</entry>
|
63
|
+
</file>
|
64
|
+
<file leaf-file-name="fig_newton_steps.rb" pinned="false" current-in-tab="false">
|
65
|
+
<entry file="file://$PROJECT_DIR$/features/step_definitions/fig_newton_steps.rb">
|
66
|
+
<provider selected="true" editor-type-id="text-editor">
|
67
|
+
<state vertical-scroll-proportion="0.0">
|
68
|
+
<caret line="52" column="40" selection-start-line="52" selection-start-column="40" selection-end-line="52" selection-end-column="40" />
|
69
|
+
<folding />
|
70
|
+
</state>
|
71
|
+
</provider>
|
72
|
+
</entry>
|
73
|
+
</file>
|
74
|
+
<file leaf-file-name="fig_magic.rb" pinned="false" current-in-tab="false">
|
75
|
+
<entry file="file://$PROJECT_DIR$/lib/fig_magic.rb">
|
76
|
+
<provider selected="true" editor-type-id="text-editor">
|
77
|
+
<state vertical-scroll-proportion="0.0">
|
78
|
+
<caret line="80" column="14" selection-start-line="80" selection-start-column="14" selection-end-line="80" selection-end-column="14" />
|
79
|
+
<folding />
|
80
|
+
</state>
|
81
|
+
</provider>
|
82
|
+
</entry>
|
83
|
+
</file>
|
84
|
+
<file leaf-file-name="Gemfile" pinned="false" current-in-tab="false">
|
85
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
86
|
+
<provider selected="true" editor-type-id="text-editor">
|
87
|
+
<state vertical-scroll-proportion="0.0">
|
88
|
+
<caret line="12" column="0" selection-start-line="12" selection-start-column="0" selection-end-line="12" selection-end-column="0" />
|
89
|
+
<folding />
|
90
|
+
</state>
|
91
|
+
</provider>
|
92
|
+
</entry>
|
93
|
+
</file>
|
94
|
+
<file leaf-file-name="fig_magic.gemspec" pinned="false" current-in-tab="true">
|
95
|
+
<entry file="file://$PROJECT_DIR$/fig_magic.gemspec">
|
96
|
+
<provider selected="true" editor-type-id="text-editor">
|
97
|
+
<state vertical-scroll-proportion="0.38422132">
|
98
|
+
<caret line="25" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="25" selection-end-column="0" />
|
99
|
+
<folding />
|
100
|
+
</state>
|
101
|
+
</provider>
|
102
|
+
</entry>
|
103
|
+
</file>
|
104
|
+
<file leaf-file-name=".ruby-gemset" pinned="false" current-in-tab="false">
|
105
|
+
<entry file="file://$PROJECT_DIR$/.ruby-gemset">
|
106
|
+
<provider selected="true" editor-type-id="text-editor">
|
107
|
+
<state vertical-scroll-proportion="0.0">
|
108
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
109
|
+
<folding />
|
110
|
+
</state>
|
111
|
+
</provider>
|
112
|
+
</entry>
|
113
|
+
</file>
|
114
|
+
<file leaf-file-name=".ruby-version" pinned="false" current-in-tab="false">
|
115
|
+
<entry file="file://$PROJECT_DIR$/.ruby-version">
|
116
|
+
<provider selected="true" editor-type-id="text-editor">
|
117
|
+
<state vertical-scroll-proportion="0.0">
|
118
|
+
<caret line="0" column="10" selection-start-line="0" selection-start-column="10" selection-end-line="0" selection-end-column="10" />
|
119
|
+
<folding />
|
120
|
+
</state>
|
121
|
+
</provider>
|
122
|
+
</entry>
|
123
|
+
</file>
|
124
|
+
</leaf>
|
125
|
+
</component>
|
126
|
+
<component name="IdeDocumentHistory">
|
127
|
+
<option name="CHANGED_PATHS">
|
128
|
+
<list>
|
129
|
+
<option value="$PROJECT_DIR$/data_magic.gemspec" />
|
130
|
+
<option value="$PROJECT_DIR$/.ruby-gemset" />
|
131
|
+
<option value="$PROJECT_DIR$/features/fig_newton.feature" />
|
132
|
+
<option value="$PROJECT_DIR$/features/step_definitions/fig_newton_steps.rb" />
|
133
|
+
<option value="$PROJECT_DIR$/lib/fig_magic/version.rb" />
|
134
|
+
<option value="$PROJECT_DIR$/lib/fig_magic/missing.rb" />
|
135
|
+
<option value="$PROJECT_DIR$/lib/fig_magic/node.rb" />
|
136
|
+
<option value="$PROJECT_DIR$/ChangeLog" />
|
137
|
+
<option value="$PROJECT_DIR$/Gemfile" />
|
138
|
+
<option value="$PROJECT_DIR$/Rakefile" />
|
139
|
+
<option value="$PROJECT_DIR$/lib/fig_magic.rb" />
|
140
|
+
<option value="$PROJECT_DIR$/config/sample.yml" />
|
141
|
+
<option value="$PROJECT_DIR$/config/test_config.yml" />
|
142
|
+
<option value="$PROJECT_DIR$/config/environments/default.yml" />
|
143
|
+
<option value="$PROJECT_DIR$/features/step_definitions/data_magic_steps.rb" />
|
144
|
+
<option value="$PROJECT_DIR$/fig_magic.gemspec" />
|
145
|
+
<option value="$PROJECT_DIR$/.gitignore" />
|
146
|
+
<option value="$PROJECT_DIR$/.ruby-version" />
|
147
|
+
</list>
|
148
|
+
</option>
|
149
|
+
</component>
|
150
|
+
<component name="JsBuildToolGruntFileManager" detection-done="true" />
|
151
|
+
<component name="JsBuildToolPackageJson" detection-done="true" />
|
152
|
+
<component name="JsGulpfileManager">
|
153
|
+
<detection-done>true</detection-done>
|
154
|
+
</component>
|
155
|
+
<component name="ProjectFrameBounds">
|
156
|
+
<option name="x" value="545" />
|
157
|
+
<option name="y" value="129" />
|
158
|
+
<option name="width" value="1694" />
|
159
|
+
<option name="height" value="1047" />
|
160
|
+
</component>
|
161
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
162
|
+
<OptionsSetting value="true" id="Add" />
|
163
|
+
<OptionsSetting value="true" id="Remove" />
|
164
|
+
<OptionsSetting value="true" id="Checkout" />
|
165
|
+
<OptionsSetting value="true" id="Update" />
|
166
|
+
<OptionsSetting value="true" id="Status" />
|
167
|
+
<OptionsSetting value="true" id="Edit" />
|
168
|
+
<ConfirmationsSetting value="0" id="Add" />
|
169
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
170
|
+
</component>
|
171
|
+
<component name="ProjectView">
|
172
|
+
<navigator currentView="ProjectPane" proportions="" version="1">
|
173
|
+
<flattenPackages />
|
174
|
+
<showMembers />
|
175
|
+
<showModules />
|
176
|
+
<showLibraryContents />
|
177
|
+
<hideEmptyPackages />
|
178
|
+
<abbreviatePackageNames />
|
179
|
+
<autoscrollToSource />
|
180
|
+
<autoscrollFromSource />
|
181
|
+
<sortByType />
|
182
|
+
<manualOrder />
|
183
|
+
<foldersAlwaysOnTop value="true" />
|
184
|
+
</navigator>
|
185
|
+
<panes>
|
186
|
+
<pane id="ProjectPane">
|
187
|
+
<subPane>
|
188
|
+
<PATH>
|
189
|
+
<PATH_ELEMENT>
|
190
|
+
<option name="myItemId" value="FigMagic" />
|
191
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
192
|
+
</PATH_ELEMENT>
|
193
|
+
</PATH>
|
194
|
+
<PATH>
|
195
|
+
<PATH_ELEMENT>
|
196
|
+
<option name="myItemId" value="FigMagic" />
|
197
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
198
|
+
</PATH_ELEMENT>
|
199
|
+
<PATH_ELEMENT>
|
200
|
+
<option name="myItemId" value="FigMagic" />
|
201
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
202
|
+
</PATH_ELEMENT>
|
203
|
+
</PATH>
|
204
|
+
<PATH>
|
205
|
+
<PATH_ELEMENT>
|
206
|
+
<option name="myItemId" value="FigMagic" />
|
207
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
208
|
+
</PATH_ELEMENT>
|
209
|
+
<PATH_ELEMENT>
|
210
|
+
<option name="myItemId" value="FigMagic" />
|
211
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
212
|
+
</PATH_ELEMENT>
|
213
|
+
<PATH_ELEMENT>
|
214
|
+
<option name="myItemId" value="lib" />
|
215
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
216
|
+
</PATH_ELEMENT>
|
217
|
+
</PATH>
|
218
|
+
<PATH>
|
219
|
+
<PATH_ELEMENT>
|
220
|
+
<option name="myItemId" value="FigMagic" />
|
221
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
222
|
+
</PATH_ELEMENT>
|
223
|
+
<PATH_ELEMENT>
|
224
|
+
<option name="myItemId" value="FigMagic" />
|
225
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
226
|
+
</PATH_ELEMENT>
|
227
|
+
<PATH_ELEMENT>
|
228
|
+
<option name="myItemId" value="lib" />
|
229
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
230
|
+
</PATH_ELEMENT>
|
231
|
+
<PATH_ELEMENT>
|
232
|
+
<option name="myItemId" value="fig_magic" />
|
233
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
234
|
+
</PATH_ELEMENT>
|
235
|
+
</PATH>
|
236
|
+
<PATH>
|
237
|
+
<PATH_ELEMENT>
|
238
|
+
<option name="myItemId" value="FigMagic" />
|
239
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
240
|
+
</PATH_ELEMENT>
|
241
|
+
<PATH_ELEMENT>
|
242
|
+
<option name="myItemId" value="FigMagic" />
|
243
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
244
|
+
</PATH_ELEMENT>
|
245
|
+
<PATH_ELEMENT>
|
246
|
+
<option name="myItemId" value="features" />
|
247
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
248
|
+
</PATH_ELEMENT>
|
249
|
+
</PATH>
|
250
|
+
<PATH>
|
251
|
+
<PATH_ELEMENT>
|
252
|
+
<option name="myItemId" value="FigMagic" />
|
253
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
254
|
+
</PATH_ELEMENT>
|
255
|
+
<PATH_ELEMENT>
|
256
|
+
<option name="myItemId" value="FigMagic" />
|
257
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
258
|
+
</PATH_ELEMENT>
|
259
|
+
<PATH_ELEMENT>
|
260
|
+
<option name="myItemId" value="features" />
|
261
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
262
|
+
</PATH_ELEMENT>
|
263
|
+
<PATH_ELEMENT>
|
264
|
+
<option name="myItemId" value="yaml" />
|
265
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
266
|
+
</PATH_ELEMENT>
|
267
|
+
</PATH>
|
268
|
+
<PATH>
|
269
|
+
<PATH_ELEMENT>
|
270
|
+
<option name="myItemId" value="FigMagic" />
|
271
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
272
|
+
</PATH_ELEMENT>
|
273
|
+
<PATH_ELEMENT>
|
274
|
+
<option name="myItemId" value="FigMagic" />
|
275
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
276
|
+
</PATH_ELEMENT>
|
277
|
+
<PATH_ELEMENT>
|
278
|
+
<option name="myItemId" value="features" />
|
279
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
280
|
+
</PATH_ELEMENT>
|
281
|
+
<PATH_ELEMENT>
|
282
|
+
<option name="myItemId" value="support" />
|
283
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
284
|
+
</PATH_ELEMENT>
|
285
|
+
</PATH>
|
286
|
+
<PATH>
|
287
|
+
<PATH_ELEMENT>
|
288
|
+
<option name="myItemId" value="FigMagic" />
|
289
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
290
|
+
</PATH_ELEMENT>
|
291
|
+
<PATH_ELEMENT>
|
292
|
+
<option name="myItemId" value="FigMagic" />
|
293
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
294
|
+
</PATH_ELEMENT>
|
295
|
+
<PATH_ELEMENT>
|
296
|
+
<option name="myItemId" value="features" />
|
297
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
298
|
+
</PATH_ELEMENT>
|
299
|
+
<PATH_ELEMENT>
|
300
|
+
<option name="myItemId" value="step_definitions" />
|
301
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
302
|
+
</PATH_ELEMENT>
|
303
|
+
</PATH>
|
304
|
+
<PATH>
|
305
|
+
<PATH_ELEMENT>
|
306
|
+
<option name="myItemId" value="FigMagic" />
|
307
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
308
|
+
</PATH_ELEMENT>
|
309
|
+
<PATH_ELEMENT>
|
310
|
+
<option name="myItemId" value="FigMagic" />
|
311
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
312
|
+
</PATH_ELEMENT>
|
313
|
+
<PATH_ELEMENT>
|
314
|
+
<option name="myItemId" value="config" />
|
315
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
316
|
+
</PATH_ELEMENT>
|
317
|
+
<PATH_ELEMENT>
|
318
|
+
<option name="myItemId" value="yaml" />
|
319
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
320
|
+
</PATH_ELEMENT>
|
321
|
+
</PATH>
|
322
|
+
<PATH>
|
323
|
+
<PATH_ELEMENT>
|
324
|
+
<option name="myItemId" value="FigMagic" />
|
325
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
326
|
+
</PATH_ELEMENT>
|
327
|
+
<PATH_ELEMENT>
|
328
|
+
<option name="myItemId" value="FigMagic" />
|
329
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
330
|
+
</PATH_ELEMENT>
|
331
|
+
<PATH_ELEMENT>
|
332
|
+
<option name="myItemId" value="config" />
|
333
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
334
|
+
</PATH_ELEMENT>
|
335
|
+
<PATH_ELEMENT>
|
336
|
+
<option name="myItemId" value="environments" />
|
337
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
338
|
+
</PATH_ELEMENT>
|
339
|
+
</PATH>
|
340
|
+
<PATH>
|
341
|
+
<PATH_ELEMENT>
|
342
|
+
<option name="myItemId" value="FigMagic" />
|
343
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
344
|
+
</PATH_ELEMENT>
|
345
|
+
<PATH_ELEMENT>
|
346
|
+
<option name="myItemId" value="FigMagic" />
|
347
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
348
|
+
</PATH_ELEMENT>
|
349
|
+
<PATH_ELEMENT>
|
350
|
+
<option name="myItemId" value="config" />
|
351
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
352
|
+
</PATH_ELEMENT>
|
353
|
+
<PATH_ELEMENT>
|
354
|
+
<option name="myItemId" value="data" />
|
355
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
356
|
+
</PATH_ELEMENT>
|
357
|
+
</PATH>
|
358
|
+
</subPane>
|
359
|
+
</pane>
|
360
|
+
<pane id="Scratches" />
|
361
|
+
<pane id="Scope" />
|
362
|
+
</panes>
|
363
|
+
</component>
|
364
|
+
<component name="PropertiesComponent">
|
365
|
+
<property name="WebServerToolWindowFactoryState" value="false" />
|
366
|
+
<property name="last_opened_file_path" value="$PROJECT_DIR$" />
|
367
|
+
<property name="js-jscs-nodeInterpreter" value="/usr/local/bin/node" />
|
368
|
+
<property name="settings.editor.selected.configurable" value="org.jetbrains.plugins.ruby.settings.RubyActiveModuleSdkConfigurable" />
|
369
|
+
<property name="settings.editor.splitter.proportion" value="0.2" />
|
370
|
+
</component>
|
371
|
+
<component name="RecentsManager">
|
372
|
+
<key name="MoveFile.RECENT_KEYS">
|
373
|
+
<recent name="$PROJECT_DIR$/config/data" />
|
374
|
+
<recent name="$PROJECT_DIR$/config/yaml" />
|
375
|
+
<recent name="$PROJECT_DIR$/config" />
|
376
|
+
</key>
|
377
|
+
</component>
|
378
|
+
<component name="RunManager">
|
379
|
+
<configuration default="true" type="BashConfigurationType" factoryName="Bash">
|
380
|
+
<option name="INTERPRETER_OPTIONS" value="" />
|
381
|
+
<option name="INTERPRETER_PATH" value="/bin/bash" />
|
382
|
+
<option name="WORKING_DIRECTORY" value="" />
|
383
|
+
<option name="PARENT_ENVS" value="true" />
|
384
|
+
<option name="SCRIPT_NAME" value="" />
|
385
|
+
<option name="PARAMETERS" value="" />
|
386
|
+
<module name="" />
|
387
|
+
<envs />
|
388
|
+
<method />
|
389
|
+
</configuration>
|
390
|
+
<configuration default="true" type="CucumberRunConfigurationType" factoryName="Cucumber">
|
391
|
+
<predefined_log_file id="RUBY_CUCUMBER" enabled="true" />
|
392
|
+
<module name="" />
|
393
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
394
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
395
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
396
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
397
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
398
|
+
<envs />
|
399
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
400
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
401
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
402
|
+
<COVERAGE_PATTERN ENABLED="true">
|
403
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
404
|
+
</COVERAGE_PATTERN>
|
405
|
+
</EXTENSION>
|
406
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*.feature" />
|
407
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
408
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
409
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
410
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TAGS_FILTER" VALUE="" />
|
411
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_NAME_FILTER" VALUE="" />
|
412
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_ARGS" VALUE="--color -r features" />
|
413
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
414
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
415
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="VERBOSE_OPTION" VALUE="false" />
|
416
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
417
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
418
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
419
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_RUNNER_PATH" VALUE="" />
|
420
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_RUNNER" VALUE="false" />
|
421
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SETTINGS_VERSION" VALUE="2" />
|
422
|
+
<method />
|
423
|
+
</configuration>
|
424
|
+
<configuration default="true" type="JavascriptDebugType" factoryName="JavaScript Debug">
|
425
|
+
<method />
|
426
|
+
</configuration>
|
427
|
+
<configuration default="true" type="RSpecRunConfigurationType" factoryName="RSpec">
|
428
|
+
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
429
|
+
<module name="" />
|
430
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
431
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
432
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
433
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
434
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
435
|
+
<envs />
|
436
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
437
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
438
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
439
|
+
<COVERAGE_PATTERN ENABLED="true">
|
440
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
441
|
+
</COVERAGE_PATTERN>
|
442
|
+
</EXTENSION>
|
443
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
444
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
445
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
446
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
447
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
|
448
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
449
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
450
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
451
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
452
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
453
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
454
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
455
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
456
|
+
<method />
|
457
|
+
</configuration>
|
458
|
+
<configuration default="true" type="RubyRunConfigurationType" factoryName="Ruby">
|
459
|
+
<module name="" />
|
460
|
+
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
461
|
+
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="" />
|
462
|
+
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
463
|
+
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
464
|
+
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
465
|
+
<envs />
|
466
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
467
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
468
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
469
|
+
<COVERAGE_PATTERN ENABLED="true">
|
470
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
471
|
+
</COVERAGE_PATTERN>
|
472
|
+
</EXTENSION>
|
473
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="" />
|
474
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
475
|
+
<method />
|
476
|
+
</configuration>
|
477
|
+
<configuration default="true" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest">
|
478
|
+
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
479
|
+
<module name="" />
|
480
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
481
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
482
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
483
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
484
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
485
|
+
<envs />
|
486
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
487
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
488
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
489
|
+
<COVERAGE_PATTERN ENABLED="true">
|
490
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
491
|
+
</COVERAGE_PATTERN>
|
492
|
+
</EXTENSION>
|
493
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
494
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
495
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
496
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
|
497
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
498
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
499
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
500
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
501
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
502
|
+
<method />
|
503
|
+
</configuration>
|
504
|
+
<configuration default="true" type="js.build_tools.gulp" factoryName="Gulp.js">
|
505
|
+
<method />
|
506
|
+
</configuration>
|
507
|
+
<configuration default="true" type="js.build_tools.npm" factoryName="npm">
|
508
|
+
<command value="run-script" />
|
509
|
+
<scripts />
|
510
|
+
<envs />
|
511
|
+
<method />
|
512
|
+
</configuration>
|
513
|
+
</component>
|
514
|
+
<component name="ShelveChangesManager" show_recycled="false" />
|
515
|
+
<component name="SvnConfiguration">
|
516
|
+
<configuration />
|
517
|
+
</component>
|
518
|
+
<component name="TaskManager">
|
519
|
+
<task active="true" id="Default" summary="Default task">
|
520
|
+
<changelist id="077dcec9-b1fb-423d-b919-a9d4692110ae" name="Default" comment="" />
|
521
|
+
<created>1448050207975</created>
|
522
|
+
<option name="number" value="Default" />
|
523
|
+
<updated>1448050207975</updated>
|
524
|
+
</task>
|
525
|
+
<servers />
|
526
|
+
</component>
|
527
|
+
<component name="ToolWindowManager">
|
528
|
+
<frame x="545" y="129" width="1694" height="1047" extended-state="0" />
|
529
|
+
<editor active="true" />
|
530
|
+
<layout>
|
531
|
+
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.24970484" sideWeight="0.5" order="0" side_tool="false" content_ui="combo" />
|
532
|
+
<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" />
|
533
|
+
<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" />
|
534
|
+
<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" />
|
535
|
+
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.32968128" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
536
|
+
<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" />
|
537
|
+
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.3293578" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
538
|
+
<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" />
|
539
|
+
<window_info id="Terminal" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
540
|
+
<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" />
|
541
|
+
<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" />
|
542
|
+
<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" />
|
543
|
+
<window_info id="Messages" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.32968128" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
544
|
+
<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" />
|
545
|
+
<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" />
|
546
|
+
<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" />
|
547
|
+
<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" />
|
548
|
+
<window_info id="Atlassian " active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
549
|
+
<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" />
|
550
|
+
</layout>
|
551
|
+
</component>
|
552
|
+
<component name="Vcs.Log.UiProperties">
|
553
|
+
<option name="RECENTLY_FILTERED_USER_GROUPS">
|
554
|
+
<collection />
|
555
|
+
</option>
|
556
|
+
<option name="RECENTLY_FILTERED_BRANCH_GROUPS">
|
557
|
+
<collection />
|
558
|
+
</option>
|
559
|
+
</component>
|
560
|
+
<component name="VcsContentAnnotationSettings">
|
561
|
+
<option name="myLimit" value="2678400000" />
|
562
|
+
</component>
|
563
|
+
<component name="XDebuggerManager">
|
564
|
+
<breakpoint-manager />
|
565
|
+
<watches-manager />
|
566
|
+
</component>
|
567
|
+
<component name="atlassian-ide-plugin-workspace-issues">
|
568
|
+
<option name="view">
|
569
|
+
<JiraViewConfigurationBean>
|
570
|
+
<option name="viewFilterId" value="" />
|
571
|
+
</JiraViewConfigurationBean>
|
572
|
+
</option>
|
573
|
+
</component>
|
574
|
+
<component name="editorHistoryManager">
|
575
|
+
<entry file="file://$PROJECT_DIR$/features/support/env.rb">
|
576
|
+
<provider selected="true" editor-type-id="text-editor">
|
577
|
+
<state vertical-scroll-proportion="0.0">
|
578
|
+
<caret line="9" column="0" selection-start-line="9" selection-start-column="0" selection-end-line="9" selection-end-column="0" />
|
579
|
+
<folding />
|
580
|
+
</state>
|
581
|
+
</provider>
|
582
|
+
</entry>
|
583
|
+
<entry file="file://$PROJECT_DIR$/features/data_magic.feature">
|
584
|
+
<provider selected="true" editor-type-id="text-editor">
|
585
|
+
<state vertical-scroll-proportion="0.0">
|
586
|
+
<caret line="61" column="38" selection-start-line="61" selection-start-column="38" selection-end-line="61" selection-end-column="38" />
|
587
|
+
<folding />
|
588
|
+
</state>
|
589
|
+
</provider>
|
590
|
+
</entry>
|
591
|
+
<entry file="file://$PROJECT_DIR$/features/fig_newton.feature">
|
592
|
+
<provider selected="true" editor-type-id="text-editor">
|
593
|
+
<state vertical-scroll-proportion="0.0">
|
594
|
+
<caret line="25" column="43" selection-start-line="25" selection-start-column="43" selection-end-line="25" selection-end-column="43" />
|
595
|
+
<folding />
|
596
|
+
</state>
|
597
|
+
</provider>
|
598
|
+
</entry>
|
599
|
+
<entry file="file://$PROJECT_DIR$/features/defaults.feature">
|
600
|
+
<provider selected="true" editor-type-id="text-editor">
|
601
|
+
<state vertical-scroll-proportion="0.0">
|
602
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
603
|
+
<folding />
|
604
|
+
</state>
|
605
|
+
</provider>
|
606
|
+
</entry>
|
607
|
+
<entry file="file://$PROJECT_DIR$/lib/fig_magic/version.rb">
|
608
|
+
<provider selected="true" editor-type-id="text-editor">
|
609
|
+
<state vertical-scroll-proportion="0.0">
|
610
|
+
<caret line="1" column="15" selection-start-line="1" selection-start-column="15" selection-end-line="1" selection-end-column="15" />
|
611
|
+
<folding />
|
612
|
+
</state>
|
613
|
+
</provider>
|
614
|
+
</entry>
|
615
|
+
<entry file="file://$PROJECT_DIR$/lib/fig_magic/translation.rb">
|
616
|
+
<provider selected="true" editor-type-id="text-editor">
|
617
|
+
<state vertical-scroll-proportion="0.0">
|
618
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
619
|
+
<folding />
|
620
|
+
</state>
|
621
|
+
</provider>
|
622
|
+
</entry>
|
623
|
+
<entry file="file://$PROJECT_DIR$/lib/fig_magic/missing.rb">
|
624
|
+
<provider selected="true" editor-type-id="text-editor">
|
625
|
+
<state vertical-scroll-proportion="0.0">
|
626
|
+
<caret line="35" column="0" selection-start-line="35" selection-start-column="0" selection-end-line="35" selection-end-column="0" />
|
627
|
+
<folding />
|
628
|
+
</state>
|
629
|
+
</provider>
|
630
|
+
</entry>
|
631
|
+
<entry file="file://$PROJECT_DIR$/lib/fig_magic/node.rb">
|
632
|
+
<provider selected="true" editor-type-id="text-editor">
|
633
|
+
<state vertical-scroll-proportion="0.0">
|
634
|
+
<caret line="15" column="0" selection-start-line="15" selection-start-column="0" selection-end-line="15" selection-end-column="0" />
|
635
|
+
<folding />
|
636
|
+
</state>
|
637
|
+
</provider>
|
638
|
+
</entry>
|
639
|
+
<entry file="file://$PROJECT_DIR$/ChangeLog">
|
640
|
+
<provider selected="true" editor-type-id="text-editor">
|
641
|
+
<state vertical-scroll-proportion="0.0">
|
642
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
643
|
+
<folding />
|
644
|
+
</state>
|
645
|
+
</provider>
|
646
|
+
</entry>
|
647
|
+
<entry file="file://$PROJECT_DIR$/cucumber.yml">
|
648
|
+
<provider selected="true" editor-type-id="text-editor">
|
649
|
+
<state vertical-scroll-proportion="0.0">
|
650
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
651
|
+
<folding />
|
652
|
+
</state>
|
653
|
+
</provider>
|
654
|
+
</entry>
|
655
|
+
<entry file="file://$PROJECT_DIR$/Rakefile">
|
656
|
+
<provider selected="true" editor-type-id="text-editor">
|
657
|
+
<state vertical-scroll-proportion="0.0">
|
658
|
+
<caret line="2" column="0" selection-start-line="2" selection-start-column="0" selection-end-line="2" selection-end-column="0" />
|
659
|
+
<folding />
|
660
|
+
</state>
|
661
|
+
</provider>
|
662
|
+
</entry>
|
663
|
+
<entry file="file://$PROJECT_DIR$/.rspec">
|
664
|
+
<provider selected="true" editor-type-id="text-editor">
|
665
|
+
<state vertical-scroll-proportion="0.0">
|
666
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
667
|
+
<folding />
|
668
|
+
</state>
|
669
|
+
</provider>
|
670
|
+
</entry>
|
671
|
+
<entry file="file://$PROJECT_DIR$/config/environments/default.yml">
|
672
|
+
<provider selected="true" editor-type-id="text-editor">
|
673
|
+
<state vertical-scroll-proportion="0.0">
|
674
|
+
<caret line="0" column="34" selection-start-line="0" selection-start-column="34" selection-end-line="0" selection-end-column="34" />
|
675
|
+
<folding />
|
676
|
+
</state>
|
677
|
+
</provider>
|
678
|
+
</entry>
|
679
|
+
<entry file="file://$PROJECT_DIR$/config/yaml/sample.yml">
|
680
|
+
<provider selected="true" editor-type-id="text-editor">
|
681
|
+
<state vertical-scroll-proportion="0.0">
|
682
|
+
<caret line="0" column="41" selection-start-line="0" selection-start-column="41" selection-end-line="0" selection-end-column="41" />
|
683
|
+
<folding />
|
684
|
+
</state>
|
685
|
+
</provider>
|
686
|
+
</entry>
|
687
|
+
<entry file="file://$PROJECT_DIR$/config/yaml/test_config.yml">
|
688
|
+
<provider selected="true" editor-type-id="text-editor">
|
689
|
+
<state vertical-scroll-proportion="0.0">
|
690
|
+
<caret line="14" column="0" selection-start-line="14" selection-start-column="0" selection-end-line="14" selection-end-column="0" />
|
691
|
+
<folding />
|
692
|
+
</state>
|
693
|
+
</provider>
|
694
|
+
</entry>
|
695
|
+
<entry file="file://$PROJECT_DIR$/config/data/user.yml">
|
696
|
+
<provider selected="true" editor-type-id="text-editor">
|
697
|
+
<state vertical-scroll-proportion="0.0">
|
698
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
699
|
+
<folding />
|
700
|
+
</state>
|
701
|
+
</provider>
|
702
|
+
</entry>
|
703
|
+
<entry file="file://$PROJECT_DIR$/features/step_definitions/data_magic_steps.rb">
|
704
|
+
<provider selected="true" editor-type-id="text-editor">
|
705
|
+
<state vertical-scroll-proportion="-11.703704">
|
706
|
+
<caret line="47" column="15" selection-start-line="47" selection-start-column="10" selection-end-line="47" selection-end-column="15" />
|
707
|
+
<folding />
|
708
|
+
</state>
|
709
|
+
</provider>
|
710
|
+
</entry>
|
711
|
+
<entry file="file://$PROJECT_DIR$/features/step_definitions/fig_newton_steps.rb">
|
712
|
+
<provider selected="true" editor-type-id="text-editor">
|
713
|
+
<state vertical-scroll-proportion="0.0">
|
714
|
+
<caret line="52" column="40" selection-start-line="52" selection-start-column="40" selection-end-line="52" selection-end-column="40" />
|
715
|
+
<folding />
|
716
|
+
</state>
|
717
|
+
</provider>
|
718
|
+
</entry>
|
719
|
+
<entry file="file://$PROJECT_DIR$/lib/fig_magic.rb">
|
720
|
+
<provider selected="true" editor-type-id="text-editor">
|
721
|
+
<state vertical-scroll-proportion="0.0">
|
722
|
+
<caret line="80" column="14" selection-start-line="80" selection-start-column="14" selection-end-line="80" selection-end-column="14" />
|
723
|
+
<folding />
|
724
|
+
</state>
|
725
|
+
</provider>
|
726
|
+
</entry>
|
727
|
+
<entry file="file://$PROJECT_DIR$/config/data/default.yml">
|
728
|
+
<provider selected="true" editor-type-id="text-editor">
|
729
|
+
<state vertical-scroll-proportion="0.0">
|
730
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
731
|
+
<folding />
|
732
|
+
</state>
|
733
|
+
</provider>
|
734
|
+
</entry>
|
735
|
+
<entry file="file://$PROJECT_DIR$/.gitignore">
|
736
|
+
<provider selected="true" editor-type-id="text-editor">
|
737
|
+
<state vertical-scroll-proportion="0.0">
|
738
|
+
<caret line="16" column="3" selection-start-line="16" selection-start-column="3" selection-end-line="16" selection-end-column="3" />
|
739
|
+
<folding />
|
740
|
+
</state>
|
741
|
+
</provider>
|
742
|
+
</entry>
|
743
|
+
<entry file="file://$PROJECT_DIR$/.ruby-version">
|
744
|
+
<provider selected="true" editor-type-id="text-editor">
|
745
|
+
<state vertical-scroll-proportion="0.0">
|
746
|
+
<caret line="0" column="10" selection-start-line="0" selection-start-column="10" selection-end-line="0" selection-end-column="10" />
|
747
|
+
<folding />
|
748
|
+
</state>
|
749
|
+
</provider>
|
750
|
+
</entry>
|
751
|
+
<entry file="file://$PROJECT_DIR$/.ruby-gemset">
|
752
|
+
<provider selected="true" editor-type-id="text-editor">
|
753
|
+
<state vertical-scroll-proportion="0.0">
|
754
|
+
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
755
|
+
<folding />
|
756
|
+
</state>
|
757
|
+
</provider>
|
758
|
+
</entry>
|
759
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
760
|
+
<provider selected="true" editor-type-id="text-editor">
|
761
|
+
<state vertical-scroll-proportion="0.0">
|
762
|
+
<caret line="12" column="0" selection-start-line="12" selection-start-column="0" selection-end-line="12" selection-end-column="0" />
|
763
|
+
<folding />
|
764
|
+
</state>
|
765
|
+
</provider>
|
766
|
+
</entry>
|
767
|
+
<entry file="file://$PROJECT_DIR$/fig_magic.gemspec">
|
768
|
+
<provider selected="true" editor-type-id="text-editor">
|
769
|
+
<state vertical-scroll-proportion="0.38422132">
|
770
|
+
<caret line="25" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="25" selection-end-column="0" />
|
771
|
+
<folding />
|
772
|
+
</state>
|
773
|
+
</provider>
|
774
|
+
</entry>
|
775
|
+
</component>
|
776
|
+
</project>
|