inifile_alt 2.0.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.
- data/.idea/.name +1 -0
- data/.idea/.rakeTasks +7 -0
- data/.idea/compiler.xml +25 -0
- data/.idea/encodings.xml +5 -0
- data/.idea/misc.xml +23 -0
- data/.idea/modules.xml +9 -0
- data/.idea/scopes/scope_settings.xml +5 -0
- data/.idea/uiDesigner.xml +125 -0
- data/.idea/vcs.xml +7 -0
- data/.idea/workspace.xml +757 -0
- data/.travis.yml +12 -0
- data/History.txt +59 -0
- data/README.md +193 -0
- data/Rakefile +26 -0
- data/inifile.iml +16 -0
- data/lib/inifile.rb +570 -0
- data/test/data/bad_1.ini +6 -0
- data/test/data/browscap.ini +5 -0
- data/test/data/comment.ini +10 -0
- data/test/data/escape.ini +13 -0
- data/test/data/global.ini +3 -0
- data/test/data/good.ini +19 -0
- data/test/data/merge.ini +5 -0
- data/test/data/mixed_comment.ini +7 -0
- data/test/data/multiline.ini +24 -0
- data/test/data/no_escaping.ini +4 -0
- data/test/data/param.ini +5 -0
- data/test/test_inifile.rb +505 -0
- metadata +163 -0
data/.idea/.name
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
inifile
|
data/.idea/.rakeTasks
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<Settings><!--This file was automatically generated by Ruby plugin.
|
3
|
+
You are allowed to:
|
4
|
+
1. Remove rake task
|
5
|
+
2. Add existing rake tasks
|
6
|
+
To add existing rake tasks automatically delete this file and reload the project.
|
7
|
+
--><RakeGroup description="" fullCmd="" taksId="rake"><RakeTask description="Alias to ann:announcement" fullCmd="ann" taksId="ann" /><RakeGroup description="" fullCmd="" taksId="ann"><RakeTask description="Create an announcement file" fullCmd="ann:announcement" taksId="announcement" /><RakeTask description="Send an email announcement" fullCmd="ann:email" taksId="email" /><RakeTask description="" fullCmd="ann:prereqs" taksId="prereqs" /></RakeGroup><RakeGroup description="" fullCmd="" taksId="bones"><RakeTask description="Show the current Mr Bones configuration" fullCmd="bones:debug" taksId="debug" /><RakeTask description="Show descriptions for the various Mr Bones configuration options" fullCmd="bones:help" taksId="help" /><RakeTask description="Show the available Mr Bones configuration options" fullCmd="bones:options" taksId="options" /></RakeGroup><RakeTask description="Remove any temporary products" fullCmd="clean" taksId="clean" /><RakeTask description="Remove any generated file" fullCmd="clobber" taksId="clobber" /><RakeTask description="Alias to gem:package" fullCmd="gem" taksId="gem" /><RakeGroup description="" fullCmd="" taksId="gem"><RakeTask description="Cleanup the gem" fullCmd="gem:cleanup" taksId="cleanup" /><RakeTask description="Show information about the gem" fullCmd="gem:debug" taksId="debug" /><RakeTask description="Install the gem" fullCmd="gem:install" taksId="install" /><RakeTask description="Install gem dependencies" fullCmd="gem:install_dependencies" taksId="install_dependencies" /><RakeTask description="Build all the packages" fullCmd="gem:package" taksId="package" /><RakeTask description="Write the gemspec in Rails YAML format" fullCmd="gem:rails_spec" taksId="rails_spec" /><RakeTask description="Reinstall the gem" fullCmd="gem:reinstall" taksId="reinstall" /><RakeTask description="Package and upload to rubygems.org" fullCmd="gem:release" taksId="release" /><RakeTask description="Force a rebuild of the package files" fullCmd="gem:repackage" taksId="repackage" /><RakeTask description="Write the gemspec" fullCmd="gem:spec" taksId="spec" /><RakeTask description="Uninstall the gem" fullCmd="gem:uninstall" taksId="uninstall" /><RakeTask description="" fullCmd="gem:clobber" taksId="clobber" /><RakeTask description="" fullCmd="gem:clobber_package" taksId="clobber_package" /><RakeTask description="" fullCmd="gem:prereqs" taksId="prereqs" /></RakeGroup><RakeTask description="Enumerate all annotations" fullCmd="notes" taksId="notes" /><RakeGroup description="" fullCmd="" taksId="notes"><RakeTask description="Enumerate all FIXME annotations" fullCmd="notes:fixme" taksId="fixme" /><RakeTask description="Enumerate all OPTIMIZE annotations" fullCmd="notes:optimize" taksId="optimize" /><RakeTask description="Enumerate all TODO annotations" fullCmd="notes:todo" taksId="todo" /></RakeGroup><RakeTask description="Alias to test:run" fullCmd="test" taksId="test" /><RakeGroup description="" fullCmd="" taksId="test"><RakeTask description="Run tests for run" fullCmd="test:run" taksId="run" /></RakeGroup><RakeTask description="" fullCmd="announcement.txt" taksId="announcement.txt" /><RakeTask description="" fullCmd="default" taksId="default" /><RakeTask description="" fullCmd="pkg" taksId="pkg" /><RakeTask description="" fullCmd="pkg/inifile-2.0.2" taksId="pkg/inifile-2.0.2" /><RakeTask description="" fullCmd="pkg/inifile-2.0.2.tgz" taksId="pkg/inifile-2.0.2.tgz" /><RakeTask description="" fullCmd="pkg/inifile-2.0.2/inifile-2.0.2.gem" taksId="pkg/inifile-2.0.2/inifile-2.0.2.gem" /></RakeGroup></Settings>
|
data/.idea/compiler.xml
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="CompilerConfiguration">
|
4
|
+
<option name="DEFAULT_COMPILER" value="Javac" />
|
5
|
+
<resourceExtensions />
|
6
|
+
<wildcardResourcePatterns>
|
7
|
+
<entry name="?*.properties" />
|
8
|
+
<entry name="?*.xml" />
|
9
|
+
<entry name="?*.gif" />
|
10
|
+
<entry name="?*.png" />
|
11
|
+
<entry name="?*.jpeg" />
|
12
|
+
<entry name="?*.jpg" />
|
13
|
+
<entry name="?*.html" />
|
14
|
+
<entry name="?*.dtd" />
|
15
|
+
<entry name="?*.tld" />
|
16
|
+
<entry name="?*.ftl" />
|
17
|
+
</wildcardResourcePatterns>
|
18
|
+
<annotationProcessing>
|
19
|
+
<profile default="true" name="Default" enabled="false">
|
20
|
+
<processorPath useClasspath="true" />
|
21
|
+
</profile>
|
22
|
+
</annotationProcessing>
|
23
|
+
</component>
|
24
|
+
</project>
|
25
|
+
|
data/.idea/encodings.xml
ADDED
data/.idea/misc.xml
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_6" assert-keyword="true" jdk-15="true">
|
4
|
+
<output url="file://$PROJECT_DIR$/out" />
|
5
|
+
</component>
|
6
|
+
<component name="masterDetails">
|
7
|
+
<states>
|
8
|
+
<state key="ProjectJDKs.UI">
|
9
|
+
<settings>
|
10
|
+
<last-edited>1.6</last-edited>
|
11
|
+
<splitter-proportions>
|
12
|
+
<option name="proportions">
|
13
|
+
<list>
|
14
|
+
<option value="0.2" />
|
15
|
+
</list>
|
16
|
+
</option>
|
17
|
+
</splitter-proportions>
|
18
|
+
</settings>
|
19
|
+
</state>
|
20
|
+
</states>
|
21
|
+
</component>
|
22
|
+
</project>
|
23
|
+
|
data/.idea/modules.xml
ADDED
@@ -0,0 +1,125 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="Palette2">
|
4
|
+
<group name="Swing">
|
5
|
+
<item class="com.intellij.uiDesigner.HSpacer" tooltip-text="Horizontal Spacer" icon="/com/intellij/uiDesigner/icons/hspacer.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
6
|
+
<default-constraints vsize-policy="1" hsize-policy="6" anchor="0" fill="1" />
|
7
|
+
</item>
|
8
|
+
<item class="com.intellij.uiDesigner.VSpacer" tooltip-text="Vertical Spacer" icon="/com/intellij/uiDesigner/icons/vspacer.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
9
|
+
<default-constraints vsize-policy="6" hsize-policy="1" anchor="0" fill="2" />
|
10
|
+
</item>
|
11
|
+
<item class="javax.swing.JPanel" icon="/com/intellij/uiDesigner/icons/panel.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
12
|
+
<default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3" />
|
13
|
+
</item>
|
14
|
+
<item class="javax.swing.JScrollPane" icon="/com/intellij/uiDesigner/icons/scrollPane.png" removable="false" auto-create-binding="false" can-attach-label="true">
|
15
|
+
<default-constraints vsize-policy="7" hsize-policy="7" anchor="0" fill="3" />
|
16
|
+
</item>
|
17
|
+
<item class="javax.swing.JButton" icon="/com/intellij/uiDesigner/icons/button.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
18
|
+
<default-constraints vsize-policy="0" hsize-policy="3" anchor="0" fill="1" />
|
19
|
+
<initial-values>
|
20
|
+
<property name="text" value="Button" />
|
21
|
+
</initial-values>
|
22
|
+
</item>
|
23
|
+
<item class="javax.swing.JRadioButton" icon="/com/intellij/uiDesigner/icons/radioButton.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
24
|
+
<default-constraints vsize-policy="0" hsize-policy="3" anchor="8" fill="0" />
|
25
|
+
<initial-values>
|
26
|
+
<property name="text" value="RadioButton" />
|
27
|
+
</initial-values>
|
28
|
+
</item>
|
29
|
+
<item class="javax.swing.JCheckBox" icon="/com/intellij/uiDesigner/icons/checkBox.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
30
|
+
<default-constraints vsize-policy="0" hsize-policy="3" anchor="8" fill="0" />
|
31
|
+
<initial-values>
|
32
|
+
<property name="text" value="CheckBox" />
|
33
|
+
</initial-values>
|
34
|
+
</item>
|
35
|
+
<item class="javax.swing.JLabel" icon="/com/intellij/uiDesigner/icons/label.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
36
|
+
<default-constraints vsize-policy="0" hsize-policy="0" anchor="8" fill="0" />
|
37
|
+
<initial-values>
|
38
|
+
<property name="text" value="Label" />
|
39
|
+
</initial-values>
|
40
|
+
</item>
|
41
|
+
<item class="javax.swing.JTextField" icon="/com/intellij/uiDesigner/icons/textField.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
42
|
+
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
|
43
|
+
<preferred-size width="150" height="-1" />
|
44
|
+
</default-constraints>
|
45
|
+
</item>
|
46
|
+
<item class="javax.swing.JPasswordField" icon="/com/intellij/uiDesigner/icons/passwordField.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
47
|
+
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
|
48
|
+
<preferred-size width="150" height="-1" />
|
49
|
+
</default-constraints>
|
50
|
+
</item>
|
51
|
+
<item class="javax.swing.JFormattedTextField" icon="/com/intellij/uiDesigner/icons/formattedTextField.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
52
|
+
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
|
53
|
+
<preferred-size width="150" height="-1" />
|
54
|
+
</default-constraints>
|
55
|
+
</item>
|
56
|
+
<item class="javax.swing.JTextArea" icon="/com/intellij/uiDesigner/icons/textArea.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
57
|
+
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
58
|
+
<preferred-size width="150" height="50" />
|
59
|
+
</default-constraints>
|
60
|
+
</item>
|
61
|
+
<item class="javax.swing.JTextPane" icon="/com/intellij/uiDesigner/icons/textPane.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
62
|
+
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
63
|
+
<preferred-size width="150" height="50" />
|
64
|
+
</default-constraints>
|
65
|
+
</item>
|
66
|
+
<item class="javax.swing.JEditorPane" icon="/com/intellij/uiDesigner/icons/editorPane.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
67
|
+
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
68
|
+
<preferred-size width="150" height="50" />
|
69
|
+
</default-constraints>
|
70
|
+
</item>
|
71
|
+
<item class="javax.swing.JComboBox" icon="/com/intellij/uiDesigner/icons/comboBox.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
72
|
+
<default-constraints vsize-policy="0" hsize-policy="2" anchor="8" fill="1" />
|
73
|
+
</item>
|
74
|
+
<item class="javax.swing.JTable" icon="/com/intellij/uiDesigner/icons/table.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
75
|
+
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
76
|
+
<preferred-size width="150" height="50" />
|
77
|
+
</default-constraints>
|
78
|
+
</item>
|
79
|
+
<item class="javax.swing.JList" icon="/com/intellij/uiDesigner/icons/list.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
80
|
+
<default-constraints vsize-policy="6" hsize-policy="2" anchor="0" fill="3">
|
81
|
+
<preferred-size width="150" height="50" />
|
82
|
+
</default-constraints>
|
83
|
+
</item>
|
84
|
+
<item class="javax.swing.JTree" icon="/com/intellij/uiDesigner/icons/tree.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
85
|
+
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
86
|
+
<preferred-size width="150" height="50" />
|
87
|
+
</default-constraints>
|
88
|
+
</item>
|
89
|
+
<item class="javax.swing.JTabbedPane" icon="/com/intellij/uiDesigner/icons/tabbedPane.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
90
|
+
<default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3">
|
91
|
+
<preferred-size width="200" height="200" />
|
92
|
+
</default-constraints>
|
93
|
+
</item>
|
94
|
+
<item class="javax.swing.JSplitPane" icon="/com/intellij/uiDesigner/icons/splitPane.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
95
|
+
<default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3">
|
96
|
+
<preferred-size width="200" height="200" />
|
97
|
+
</default-constraints>
|
98
|
+
</item>
|
99
|
+
<item class="javax.swing.JSpinner" icon="/com/intellij/uiDesigner/icons/spinner.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
100
|
+
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1" />
|
101
|
+
</item>
|
102
|
+
<item class="javax.swing.JSlider" icon="/com/intellij/uiDesigner/icons/slider.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
103
|
+
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1" />
|
104
|
+
</item>
|
105
|
+
<item class="javax.swing.JSeparator" icon="/com/intellij/uiDesigner/icons/separator.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
106
|
+
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3" />
|
107
|
+
</item>
|
108
|
+
<item class="javax.swing.JProgressBar" icon="/com/intellij/uiDesigner/icons/progressbar.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
109
|
+
<default-constraints vsize-policy="0" hsize-policy="6" anchor="0" fill="1" />
|
110
|
+
</item>
|
111
|
+
<item class="javax.swing.JToolBar" icon="/com/intellij/uiDesigner/icons/toolbar.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
112
|
+
<default-constraints vsize-policy="0" hsize-policy="6" anchor="0" fill="1">
|
113
|
+
<preferred-size width="-1" height="20" />
|
114
|
+
</default-constraints>
|
115
|
+
</item>
|
116
|
+
<item class="javax.swing.JToolBar$Separator" icon="/com/intellij/uiDesigner/icons/toolbarSeparator.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
117
|
+
<default-constraints vsize-policy="0" hsize-policy="0" anchor="0" fill="1" />
|
118
|
+
</item>
|
119
|
+
<item class="javax.swing.JScrollBar" icon="/com/intellij/uiDesigner/icons/scrollbar.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
120
|
+
<default-constraints vsize-policy="6" hsize-policy="0" anchor="0" fill="2" />
|
121
|
+
</item>
|
122
|
+
</group>
|
123
|
+
</component>
|
124
|
+
</project>
|
125
|
+
|
data/.idea/vcs.xml
ADDED
data/.idea/workspace.xml
ADDED
@@ -0,0 +1,757 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="ChangeListManager">
|
4
|
+
<list default="true" id="fd9bbccc-1560-4f0a-8462-f53377c61619" name="Default" comment="">
|
5
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/Rakefile" afterPath="$PROJECT_DIR$/Rakefile" />
|
6
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/inifile.rb" afterPath="$PROJECT_DIR$/lib/inifile.rb" />
|
7
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/test/data/no_escaping.ini" afterPath="$PROJECT_DIR$/test/data/no_escaping.ini" />
|
8
|
+
</list>
|
9
|
+
<list id="f07b063c-a81c-40a5-a0d6-128efb58b6dc" name="require_gems" comment="" />
|
10
|
+
<ignored path="inifile.iws" />
|
11
|
+
<ignored path=".idea/workspace.xml" />
|
12
|
+
<file path="/Dummy.txt" changelist="fd9bbccc-1560-4f0a-8462-f53377c61619" time="1362740311416" ignored="false" />
|
13
|
+
<file path="/test_inifile.rb" changelist="fd9bbccc-1560-4f0a-8462-f53377c61619" time="1361595859109" ignored="false" />
|
14
|
+
<file path="/sloppy.ini" changelist="fd9bbccc-1560-4f0a-8462-f53377c61619" time="1361571878414" ignored="false" />
|
15
|
+
<file path="/inifile.rb" changelist="fd9bbccc-1560-4f0a-8462-f53377c61619" time="1361611591651" ignored="false" />
|
16
|
+
<file path="/fragment.rb" changelist="fd9bbccc-1560-4f0a-8462-f53377c61619" time="1361608081214" ignored="false" />
|
17
|
+
<file path="/no_escaping.ini" changelist="fd9bbccc-1560-4f0a-8462-f53377c61619" time="1361595655162" ignored="false" />
|
18
|
+
<file path="$PROJECT_DIR$/../flickrup/lib/flickrup/filetype/inifile.rb" changelist="fd9bbccc-1560-4f0a-8462-f53377c61619" time="1361612303366" ignored="false" />
|
19
|
+
<file path="$PROJECT_DIR$/../flickrup/lib/flickrup/filetype/picasa_ini.rb" changelist="fd9bbccc-1560-4f0a-8462-f53377c61619" time="1361614088775" ignored="false" />
|
20
|
+
<file path="/picasa_ini.rb" changelist="fd9bbccc-1560-4f0a-8462-f53377c61619" time="1361613928497" ignored="false" />
|
21
|
+
<file path="$PROJECT_DIR$/../flickrup/lib/flickrup/filetype/tagged_video.rb" changelist="fd9bbccc-1560-4f0a-8462-f53377c61619" time="1361614832641" ignored="false" />
|
22
|
+
<file path="/tagged_video.rb" changelist="fd9bbccc-1560-4f0a-8462-f53377c61619" time="1361614832641" ignored="false" />
|
23
|
+
<file path="/processing_context.rb" changelist="fd9bbccc-1560-4f0a-8462-f53377c61619" time="1361615074218" ignored="false" />
|
24
|
+
<file path="$PROJECT_DIR$/../flickrup/lib/flickrup/processing_context.rb" changelist="fd9bbccc-1560-4f0a-8462-f53377c61619" time="1362647135504" ignored="false" />
|
25
|
+
<file path="$PROJECT_DIR$/../flickrup/lib/flickrup/uploader.rb" changelist="fd9bbccc-1560-4f0a-8462-f53377c61619" time="1362647135504" ignored="false" />
|
26
|
+
<file path="$PROJECT_DIR$/../flickrup/lib/flickrup/ext/machine_tags.rb" changelist="fd9bbccc-1560-4f0a-8462-f53377c61619" time="1362647135504" ignored="false" />
|
27
|
+
<file path="/machine_tags.rb" changelist="fd9bbccc-1560-4f0a-8462-f53377c61619" time="1361615311324" ignored="false" />
|
28
|
+
<file path="/replacement_tags.rb" changelist="fd9bbccc-1560-4f0a-8462-f53377c61619" time="1361615335018" ignored="false" />
|
29
|
+
<file path="$PROJECT_DIR$/../flickrup/lib/flickrup/ext/replacement_tags.rb" changelist="fd9bbccc-1560-4f0a-8462-f53377c61619" time="1362647135504" ignored="false" />
|
30
|
+
<file path="/tag_sets.rb" changelist="fd9bbccc-1560-4f0a-8462-f53377c61619" time="1361615353628" ignored="false" />
|
31
|
+
<file path="$PROJECT_DIR$/../flickrup/lib/flickrup/ext/tag_sets.rb" changelist="fd9bbccc-1560-4f0a-8462-f53377c61619" time="1362647135504" ignored="false" />
|
32
|
+
<file path="$PROJECT_DIR$/../flickrup/lib/flickrup/ext/prefixed_extension.rb" changelist="fd9bbccc-1560-4f0a-8462-f53377c61619" time="1362647135504" ignored="false" />
|
33
|
+
<file path="/prefixed_extension.rb" changelist="fd9bbccc-1560-4f0a-8462-f53377c61619" time="1361615359995" ignored="false" />
|
34
|
+
<file path="$PROJECT_DIR$/../flickrup/lib/flickrup/ext/visibility.rb" changelist="fd9bbccc-1560-4f0a-8462-f53377c61619" time="1362647135504" ignored="false" />
|
35
|
+
<file path="/visibility.rb" changelist="fd9bbccc-1560-4f0a-8462-f53377c61619" time="1361615371349" ignored="false" />
|
36
|
+
<file path="/a.dummy" changelist="fd9bbccc-1560-4f0a-8462-f53377c61619" time="1362739001717" ignored="false" />
|
37
|
+
<file path="/uploader.rb" changelist="fd9bbccc-1560-4f0a-8462-f53377c61619" time="1361615753358" ignored="false" />
|
38
|
+
<file path="$PROJECT_DIR$/../flickrup/lib/flickrup/flickr_client.rb" changelist="fd9bbccc-1560-4f0a-8462-f53377c61619" time="1362740281804" ignored="false" />
|
39
|
+
<file path="/flickr_client.rb" changelist="fd9bbccc-1560-4f0a-8462-f53377c61619" time="1362646980589" ignored="false" />
|
40
|
+
<file path="$PROJECT_DIR$/../flickrup/lib/flickrup/processor.rb" changelist="fd9bbccc-1560-4f0a-8462-f53377c61619" time="1362738923824" ignored="false" />
|
41
|
+
<file path="$PROJECT_DIR$/../flickrup/lib/flickrup.rb" changelist="fd9bbccc-1560-4f0a-8462-f53377c61619" time="1362740256490" ignored="false" />
|
42
|
+
<file path="$PROJECT_DIR$/../flickrup/lib/flickrup/slow_listener.rb" changelist="fd9bbccc-1560-4f0a-8462-f53377c61619" time="1362739472267" ignored="false" />
|
43
|
+
<file path="$PROJECT_DIR$/../flickrup/flickrup.gemspec" changelist="fd9bbccc-1560-4f0a-8462-f53377c61619" time="1362740293735" ignored="false" />
|
44
|
+
<file path="/processor.rb" changelist="fd9bbccc-1560-4f0a-8462-f53377c61619" time="1362738884712" ignored="false" />
|
45
|
+
<file path="/slow_listener.rb" changelist="fd9bbccc-1560-4f0a-8462-f53377c61619" time="1362739082346" ignored="false" />
|
46
|
+
<file path="/flickrup.rb" changelist="fd9bbccc-1560-4f0a-8462-f53377c61619" time="1362740256490" ignored="false" />
|
47
|
+
<file path="/Rakefile" changelist="fd9bbccc-1560-4f0a-8462-f53377c61619" time="1363256559199" ignored="false" />
|
48
|
+
<option name="TRACKING_ENABLED" value="true" />
|
49
|
+
<option name="SHOW_DIALOG" value="false" />
|
50
|
+
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
51
|
+
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
52
|
+
<option name="LAST_RESOLUTION" value="IGNORE" />
|
53
|
+
</component>
|
54
|
+
<component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
|
55
|
+
<component name="CreatePatchCommitExecutor">
|
56
|
+
<option name="PATCH_PATH" value="" />
|
57
|
+
</component>
|
58
|
+
<component name="DaemonCodeAnalyzer">
|
59
|
+
<disable_hints />
|
60
|
+
</component>
|
61
|
+
<component name="DebuggerManager">
|
62
|
+
<breakpoint_rules default_suspend_policy="SuspendAll" default_condition_enabled="true" />
|
63
|
+
<breakpoint_any default_suspend_policy="SuspendAll" default_condition_enabled="true">
|
64
|
+
<breakpoint>
|
65
|
+
<option name="NOTIFY_CAUGHT" value="true" />
|
66
|
+
<option name="NOTIFY_UNCAUGHT" value="true" />
|
67
|
+
<option name="ENABLED" value="false" />
|
68
|
+
<option name="LOG_ENABLED" value="false" />
|
69
|
+
<option name="LOG_EXPRESSION_ENABLED" value="false" />
|
70
|
+
<option name="SUSPEND_POLICY" value="SuspendAll" />
|
71
|
+
<option name="SUSPEND" value="true" />
|
72
|
+
<option name="COUNT_FILTER_ENABLED" value="false" />
|
73
|
+
<option name="COUNT_FILTER" value="0" />
|
74
|
+
<option name="CONDITION_ENABLED" value="true" />
|
75
|
+
<option name="CLASS_FILTERS_ENABLED" value="false" />
|
76
|
+
<option name="INSTANCE_FILTERS_ENABLED" value="false" />
|
77
|
+
<option name="CONDITION" value="" />
|
78
|
+
<option name="LOG_MESSAGE" value="" />
|
79
|
+
</breakpoint>
|
80
|
+
<breakpoint>
|
81
|
+
<option name="NOTIFY_CAUGHT" value="true" />
|
82
|
+
<option name="NOTIFY_UNCAUGHT" value="true" />
|
83
|
+
<option name="ENABLED" value="false" />
|
84
|
+
<option name="LOG_ENABLED" value="false" />
|
85
|
+
<option name="LOG_EXPRESSION_ENABLED" value="false" />
|
86
|
+
<option name="SUSPEND_POLICY" value="SuspendAll" />
|
87
|
+
<option name="SUSPEND" value="true" />
|
88
|
+
<option name="COUNT_FILTER_ENABLED" value="false" />
|
89
|
+
<option name="COUNT_FILTER" value="0" />
|
90
|
+
<option name="CONDITION_ENABLED" value="true" />
|
91
|
+
<option name="CLASS_FILTERS_ENABLED" value="false" />
|
92
|
+
<option name="INSTANCE_FILTERS_ENABLED" value="false" />
|
93
|
+
<option name="CONDITION" value="" />
|
94
|
+
<option name="LOG_MESSAGE" value="" />
|
95
|
+
</breakpoint>
|
96
|
+
</breakpoint_any>
|
97
|
+
<ui_properties default_suspend_policy="SuspendAll" default_condition_enabled="true" />
|
98
|
+
<breakpoint_rules />
|
99
|
+
<ui_properties />
|
100
|
+
</component>
|
101
|
+
<component name="ExecutionTargetManager" SELECTED_TARGET="default_target" />
|
102
|
+
<component name="FavoritesManager">
|
103
|
+
<favorites_list name="inifile" />
|
104
|
+
</component>
|
105
|
+
<component name="FileEditorManager">
|
106
|
+
<leaf>
|
107
|
+
<file leaf-file-name="test_inifile.rb" pinned="false" current="false" current-in-tab="false">
|
108
|
+
<entry file="file://$PROJECT_DIR$/test/test_inifile.rb">
|
109
|
+
<provider selected="true" editor-type-id="text-editor">
|
110
|
+
<state line="66" column="33" selection-start="2107" selection-end="2107" vertical-scroll-proportion="0.0">
|
111
|
+
<folding />
|
112
|
+
</state>
|
113
|
+
</provider>
|
114
|
+
</entry>
|
115
|
+
</file>
|
116
|
+
<file leaf-file-name="no_escaping.ini" pinned="false" current="false" current-in-tab="false">
|
117
|
+
<entry file="file://$PROJECT_DIR$/test/data/no_escaping.ini">
|
118
|
+
<provider selected="true" editor-type-id="text-editor">
|
119
|
+
<state line="3" column="22" selection-start="69" selection-end="69" vertical-scroll-proportion="0.0">
|
120
|
+
<folding />
|
121
|
+
</state>
|
122
|
+
</provider>
|
123
|
+
</entry>
|
124
|
+
</file>
|
125
|
+
<file leaf-file-name="Rakefile" pinned="false" current="false" current-in-tab="false">
|
126
|
+
<entry file="file://$PROJECT_DIR$/Rakefile">
|
127
|
+
<provider selected="true" editor-type-id="text-editor">
|
128
|
+
<state line="16" column="28" selection-start="283" selection-end="283" vertical-scroll-proportion="0.0">
|
129
|
+
<folding />
|
130
|
+
</state>
|
131
|
+
</provider>
|
132
|
+
</entry>
|
133
|
+
</file>
|
134
|
+
<file leaf-file-name=".travis.yml" pinned="false" current="false" current-in-tab="false">
|
135
|
+
<entry file="file://$PROJECT_DIR$/.travis.yml">
|
136
|
+
<provider selected="true" editor-type-id="text-editor">
|
137
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
138
|
+
<folding />
|
139
|
+
</state>
|
140
|
+
</provider>
|
141
|
+
</entry>
|
142
|
+
</file>
|
143
|
+
<file leaf-file-name="History.txt" pinned="false" current="false" current-in-tab="false">
|
144
|
+
<entry file="file://$PROJECT_DIR$/History.txt">
|
145
|
+
<provider selected="true" editor-type-id="text-editor">
|
146
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
147
|
+
<folding />
|
148
|
+
</state>
|
149
|
+
</provider>
|
150
|
+
</entry>
|
151
|
+
</file>
|
152
|
+
<file leaf-file-name="inifile.rb" pinned="false" current="true" current-in-tab="true">
|
153
|
+
<entry file="file://$PROJECT_DIR$/lib/inifile.rb">
|
154
|
+
<provider selected="true" editor-type-id="text-editor">
|
155
|
+
<state line="481" column="5" selection-start="13025" selection-end="13025" vertical-scroll-proportion="0.92997813">
|
156
|
+
<folding />
|
157
|
+
</state>
|
158
|
+
</provider>
|
159
|
+
</entry>
|
160
|
+
</file>
|
161
|
+
<file leaf-file-name="comment.ini" pinned="false" current="false" current-in-tab="false">
|
162
|
+
<entry file="file://$PROJECT_DIR$/test/data/comment.ini">
|
163
|
+
<provider selected="true" editor-type-id="text-editor">
|
164
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
165
|
+
<folding />
|
166
|
+
</state>
|
167
|
+
</provider>
|
168
|
+
</entry>
|
169
|
+
</file>
|
170
|
+
<file leaf-file-name="global.ini" pinned="false" current="false" current-in-tab="false">
|
171
|
+
<entry file="file://$PROJECT_DIR$/test/data/global.ini">
|
172
|
+
<provider selected="true" editor-type-id="text-editor">
|
173
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
174
|
+
<folding />
|
175
|
+
</state>
|
176
|
+
</provider>
|
177
|
+
</entry>
|
178
|
+
</file>
|
179
|
+
<file leaf-file-name="good.ini" pinned="false" current="false" current-in-tab="false">
|
180
|
+
<entry file="file://$PROJECT_DIR$/test/data/good.ini">
|
181
|
+
<provider selected="true" editor-type-id="text-editor">
|
182
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
183
|
+
<folding />
|
184
|
+
</state>
|
185
|
+
</provider>
|
186
|
+
</entry>
|
187
|
+
</file>
|
188
|
+
<file leaf-file-name="testcase.rb" pinned="false" current="false" current-in-tab="false">
|
189
|
+
<entry file="file:///System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testcase.rb">
|
190
|
+
<provider selected="true" editor-type-id="text-editor">
|
191
|
+
<state line="79" column="0" selection-start="2450" selection-end="2450" vertical-scroll-proportion="0.0">
|
192
|
+
<folding />
|
193
|
+
</state>
|
194
|
+
</provider>
|
195
|
+
</entry>
|
196
|
+
</file>
|
197
|
+
</leaf>
|
198
|
+
</component>
|
199
|
+
<component name="FindManager">
|
200
|
+
<FindUsagesManager>
|
201
|
+
<setting name="OPEN_NEW_TAB" value="false" />
|
202
|
+
</FindUsagesManager>
|
203
|
+
</component>
|
204
|
+
<component name="Git.Settings">
|
205
|
+
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
206
|
+
<option name="RECENT_BRANCH_BY_REPOSITORY">
|
207
|
+
<map>
|
208
|
+
<entry key="$PROJECT_DIR$" value="master" />
|
209
|
+
</map>
|
210
|
+
</option>
|
211
|
+
</component>
|
212
|
+
<component name="GitLogSettings">
|
213
|
+
<option name="myDateState">
|
214
|
+
<MyDateState />
|
215
|
+
</option>
|
216
|
+
</component>
|
217
|
+
<component name="IdeDocumentHistory">
|
218
|
+
<option name="changedFiles">
|
219
|
+
<list>
|
220
|
+
<option value="$PROJECT_DIR$/test/data/sloppy.ini" />
|
221
|
+
<option value="/Library/Ruby/Gems/1.8/gems/inifile-2.0.2/lib/inifile.rb" />
|
222
|
+
<option value="$PROJECT_DIR$/test/data/sloppy_escaping.ini" />
|
223
|
+
<option value="$PROJECT_DIR$/test/data/no_escaping.ini" />
|
224
|
+
<option value="$PROJECT_DIR$/test/test_inifile.rb" />
|
225
|
+
<option value="$PROJECT_DIR$/Rakefile" />
|
226
|
+
<option value="$PROJECT_DIR$/lib/inifile.rb" />
|
227
|
+
</list>
|
228
|
+
</option>
|
229
|
+
</component>
|
230
|
+
<component name="ProjectFrameBounds">
|
231
|
+
<option name="x" value="4" />
|
232
|
+
<option name="y" value="22" />
|
233
|
+
<option name="width" value="1436" />
|
234
|
+
<option name="height" value="878" />
|
235
|
+
</component>
|
236
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
237
|
+
<OptionsSetting value="true" id="Add" />
|
238
|
+
<OptionsSetting value="true" id="Remove" />
|
239
|
+
<OptionsSetting value="true" id="Checkout" />
|
240
|
+
<OptionsSetting value="true" id="Update" />
|
241
|
+
<OptionsSetting value="true" id="Status" />
|
242
|
+
<OptionsSetting value="true" id="Edit" />
|
243
|
+
<ConfirmationsSetting value="0" id="Add" />
|
244
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
245
|
+
</component>
|
246
|
+
<component name="ProjectReloadState">
|
247
|
+
<option name="STATE" value="0" />
|
248
|
+
</component>
|
249
|
+
<component name="ProjectView">
|
250
|
+
<navigator currentView="ProjectPane" proportions="" version="1" splitterProportion="0.5">
|
251
|
+
<flattenPackages />
|
252
|
+
<showMembers />
|
253
|
+
<showModules />
|
254
|
+
<showLibraryContents />
|
255
|
+
<hideEmptyPackages />
|
256
|
+
<abbreviatePackageNames />
|
257
|
+
<autoscrollToSource />
|
258
|
+
<autoscrollFromSource />
|
259
|
+
<sortByType />
|
260
|
+
</navigator>
|
261
|
+
<panes>
|
262
|
+
<pane id="Scope" />
|
263
|
+
<pane id="PackagesPane" />
|
264
|
+
<pane id="ProjectPane">
|
265
|
+
<subPane>
|
266
|
+
<PATH>
|
267
|
+
<PATH_ELEMENT>
|
268
|
+
<option name="myItemId" value="inifile" />
|
269
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
270
|
+
</PATH_ELEMENT>
|
271
|
+
</PATH>
|
272
|
+
<PATH>
|
273
|
+
<PATH_ELEMENT>
|
274
|
+
<option name="myItemId" value="inifile" />
|
275
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
276
|
+
</PATH_ELEMENT>
|
277
|
+
<PATH_ELEMENT>
|
278
|
+
<option name="myItemId" value="inifile" />
|
279
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
280
|
+
</PATH_ELEMENT>
|
281
|
+
</PATH>
|
282
|
+
<PATH>
|
283
|
+
<PATH_ELEMENT>
|
284
|
+
<option name="myItemId" value="inifile" />
|
285
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
286
|
+
</PATH_ELEMENT>
|
287
|
+
<PATH_ELEMENT>
|
288
|
+
<option name="myItemId" value="inifile" />
|
289
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
290
|
+
</PATH_ELEMENT>
|
291
|
+
<PATH_ELEMENT>
|
292
|
+
<option name="myItemId" value="lib" />
|
293
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
294
|
+
</PATH_ELEMENT>
|
295
|
+
</PATH>
|
296
|
+
</subPane>
|
297
|
+
</pane>
|
298
|
+
</panes>
|
299
|
+
</component>
|
300
|
+
<component name="PropertiesComponent">
|
301
|
+
<property name="GoToFile.includeJavaFiles" value="false" />
|
302
|
+
<property name="options.splitter.main.proportions" value="0.3" />
|
303
|
+
<property name="MemberChooser.sorted" value="false" />
|
304
|
+
<property name="options.lastSelected" value="preferences.sourceCode" />
|
305
|
+
<property name="recentsLimit" value="5" />
|
306
|
+
<property name="MemberChooser.copyJavadoc" value="false" />
|
307
|
+
<property name="GoToClass.toSaveIncludeLibraries" value="false" />
|
308
|
+
<property name="WebServerToolWindowFactoryState" value="false" />
|
309
|
+
<property name="restartRequiresConfirmation" value="true" />
|
310
|
+
<property name="FullScreen" value="false" />
|
311
|
+
<property name="MemberChooser.showClasses" value="true" />
|
312
|
+
<property name="GoToClass.includeLibraries" value="false" />
|
313
|
+
<property name="options.splitter.details.proportions" value="0.2" />
|
314
|
+
<property name="options.searchVisible" value="true" />
|
315
|
+
</component>
|
316
|
+
<component name="RunManager" selected="Test::Unit/Shoulda/Minitest.TestIniFile">
|
317
|
+
<configuration default="false" name="TestIniFile" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest" temporary="true">
|
318
|
+
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
319
|
+
<module name="inifile" />
|
320
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
321
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$PROJECT_DIR$" />
|
322
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
323
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
324
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
325
|
+
<envs>
|
326
|
+
<env name="JRUBY_OPTS" value="-X+O" />
|
327
|
+
<env name="RUBYLIB" value="$USER_HOME$/.gem/ruby/1.8/gems/linecache-0.46/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-base-0.10.5.rc1/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-ide-0.4.17.beta14/lib:$USER_HOME$/.gem/ruby/1.8/gems/linecache-0.46/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-base-0.10.5.rc1/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-ide-0.4.17.beta14/lib:$USER_HOME$/.gem/ruby/1.8/gems/linecache-0.46/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-base-0.10.5.rc1/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-ide-0.4.17.beta14/lib:$USER_HOME$/.gem/ruby/1.8/gems/linecache-0.46/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-base-0.10.5.rc1/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-ide-0.4.17.beta14/lib:$USER_HOME$/.gem/ruby/1.8/gems/linecache-0.46/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-base-0.10.5.rc1/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-ide-0.4.17.beta14/lib:$USER_HOME$/.gem/ruby/1.8/gems/linecache-0.46/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-base-0.10.5.rc1/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-ide-0.4.17.beta14/lib:$USER_HOME$/.gem/ruby/1.8/gems/linecache-0.46/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-base-0.10.5.rc1/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-ide-0.4.17.beta14/lib:$USER_HOME$/.gem/ruby/1.8/gems/linecache-0.46/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-base-0.10.5.rc1/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-ide-0.4.17.beta14/lib:$USER_HOME$/.gem/ruby/1.8/gems/linecache-0.46/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-base-0.10.5.rc1/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-ide-0.4.17.beta14/lib:$USER_HOME$/.gem/ruby/1.8/gems/linecache-0.46/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-base-0.10.5.rc1/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-ide-0.4.17.beta14/lib:$USER_HOME$/.gem/ruby/1.8/gems/linecache-0.46/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-base-0.10.5.rc1/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-ide-0.4.17.beta14/lib:$USER_HOME$/.gem/ruby/1.8/gems/linecache-0.46/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-base-0.10.5.rc1/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-ide-0.4.17.beta14/lib:$USER_HOME$/.gem/ruby/1.8/gems/linecache-0.46/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-base-0.10.5.rc1/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-ide-0.4.17.beta14/lib:$USER_HOME$/.gem/ruby/1.8/gems/linecache-0.46/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-base-0.10.5.rc1/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-ide-0.4.17.beta14/lib:$USER_HOME$/.gem/ruby/1.8/gems/linecache-0.46/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-base-0.10.5.rc1/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-ide-0.4.17.beta14/lib:$USER_HOME$/.gem/ruby/1.8/gems/linecache-0.46/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-base-0.10.5.rc1/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-ide-0.4.17.beta14/lib" />
|
328
|
+
</envs>
|
329
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
330
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
331
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
332
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="$PROJECT_DIR$/test/test_inifile.rb" />
|
333
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
334
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
|
335
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
336
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
337
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
338
|
+
<RunnerSettings RunnerId="RubyDebugRunner" />
|
339
|
+
<RunnerSettings RunnerId="Run" />
|
340
|
+
<ConfigurationWrapper RunnerId="RubyDebugRunner" />
|
341
|
+
<ConfigurationWrapper RunnerId="Run" />
|
342
|
+
<method />
|
343
|
+
</configuration>
|
344
|
+
<configuration default="false" name="test_unescaped_items" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest" temporary="true">
|
345
|
+
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
346
|
+
<module name="inifile" />
|
347
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
348
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$PROJECT_DIR$" />
|
349
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
350
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
351
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
352
|
+
<envs>
|
353
|
+
<env name="JRUBY_OPTS" value="-X+O" />
|
354
|
+
<env name="RUBYLIB" value="$USER_HOME$/.gem/ruby/1.8/gems/linecache-0.46/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-base-0.10.5.rc1/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-ide-0.4.17.beta14/lib:$USER_HOME$/.gem/ruby/1.8/gems/linecache-0.46/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-base-0.10.5.rc1/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-ide-0.4.17.beta14/lib:$USER_HOME$/.gem/ruby/1.8/gems/linecache-0.46/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-base-0.10.5.rc1/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-ide-0.4.17.beta14/lib:$USER_HOME$/.gem/ruby/1.8/gems/linecache-0.46/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-base-0.10.5.rc1/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-ide-0.4.17.beta14/lib:$USER_HOME$/.gem/ruby/1.8/gems/linecache-0.46/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-base-0.10.5.rc1/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-ide-0.4.17.beta14/lib:$USER_HOME$/.gem/ruby/1.8/gems/linecache-0.46/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-base-0.10.5.rc1/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-ide-0.4.17.beta14/lib:$USER_HOME$/.gem/ruby/1.8/gems/linecache-0.46/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-base-0.10.5.rc1/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-ide-0.4.17.beta14/lib:$USER_HOME$/.gem/ruby/1.8/gems/linecache-0.46/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-base-0.10.5.rc1/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-ide-0.4.17.beta14/lib:$USER_HOME$/.gem/ruby/1.8/gems/linecache-0.46/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-base-0.10.5.rc1/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-ide-0.4.17.beta14/lib:$USER_HOME$/.gem/ruby/1.8/gems/linecache-0.46/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-base-0.10.5.rc1/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-ide-0.4.17.beta14/lib:$USER_HOME$/.gem/ruby/1.8/gems/linecache-0.46/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-base-0.10.5.rc1/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-ide-0.4.17.beta14/lib:$USER_HOME$/.gem/ruby/1.8/gems/linecache-0.46/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-base-0.10.5.rc1/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-ide-0.4.17.beta14/lib:$USER_HOME$/.gem/ruby/1.8/gems/linecache-0.46/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-base-0.10.5.rc1/lib:$USER_HOME$/.gem/ruby/1.8/gems/ruby-debug-ide-0.4.17.beta14/lib" />
|
355
|
+
</envs>
|
356
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
357
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
358
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
359
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="$PROJECT_DIR$/test/test_inifile.rb" />
|
360
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
361
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="test_unescaped_items" />
|
362
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_METHOD" />
|
363
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
364
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
365
|
+
<RunnerSettings RunnerId="RubyDebugRunner" />
|
366
|
+
<RunnerSettings RunnerId="Run" />
|
367
|
+
<ConfigurationWrapper RunnerId="RubyDebugRunner" />
|
368
|
+
<ConfigurationWrapper RunnerId="Run" />
|
369
|
+
<method />
|
370
|
+
</configuration>
|
371
|
+
<configuration default="true" type="#org.jetbrains.idea.devkit.run.PluginConfigurationType" factoryName="Plugin">
|
372
|
+
<module name="" />
|
373
|
+
<option name="VM_PARAMETERS" value="-Xmx512m -Xms256m -XX:MaxPermSize=250m" />
|
374
|
+
<option name="PROGRAM_PARAMETERS" />
|
375
|
+
<method />
|
376
|
+
</configuration>
|
377
|
+
<configuration default="true" type="RSpecRunConfigurationType" factoryName="RSpec">
|
378
|
+
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
379
|
+
<module name="" />
|
380
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
381
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
382
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
383
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
384
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
385
|
+
<envs />
|
386
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
387
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
388
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
389
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
390
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
391
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
392
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
|
393
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
394
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
395
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
396
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
397
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
398
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
399
|
+
<method />
|
400
|
+
</configuration>
|
401
|
+
<configuration default="true" type="Remote" factoryName="Remote">
|
402
|
+
<option name="USE_SOCKET_TRANSPORT" value="true" />
|
403
|
+
<option name="SERVER_MODE" value="false" />
|
404
|
+
<option name="SHMEM_ADDRESS" value="javadebug" />
|
405
|
+
<option name="HOST" value="localhost" />
|
406
|
+
<option name="PORT" value="5005" />
|
407
|
+
<method />
|
408
|
+
</configuration>
|
409
|
+
<configuration default="true" type="RubyRunConfigurationType" factoryName="Ruby">
|
410
|
+
<module name="" />
|
411
|
+
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
412
|
+
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="" />
|
413
|
+
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
414
|
+
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
415
|
+
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
416
|
+
<envs />
|
417
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
418
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
419
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="" />
|
420
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
421
|
+
<method />
|
422
|
+
</configuration>
|
423
|
+
<configuration default="true" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest">
|
424
|
+
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
425
|
+
<module name="" />
|
426
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
427
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
428
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
429
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
430
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
431
|
+
<envs />
|
432
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
433
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
434
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
435
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
436
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
437
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
|
438
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
439
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
440
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
441
|
+
<method />
|
442
|
+
</configuration>
|
443
|
+
<configuration default="true" type="TestNG" factoryName="TestNG">
|
444
|
+
<module name="" />
|
445
|
+
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
|
446
|
+
<option name="ALTERNATIVE_JRE_PATH" />
|
447
|
+
<option name="SUITE_NAME" />
|
448
|
+
<option name="PACKAGE_NAME" />
|
449
|
+
<option name="MAIN_CLASS_NAME" />
|
450
|
+
<option name="METHOD_NAME" />
|
451
|
+
<option name="GROUP_NAME" />
|
452
|
+
<option name="TEST_OBJECT" value="CLASS" />
|
453
|
+
<option name="VM_PARAMETERS" value="-ea" />
|
454
|
+
<option name="PARAMETERS" />
|
455
|
+
<option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" />
|
456
|
+
<option name="OUTPUT_DIRECTORY" />
|
457
|
+
<option name="ANNOTATION_TYPE" />
|
458
|
+
<option name="ENV_VARIABLES" />
|
459
|
+
<option name="PASS_PARENT_ENVS" value="true" />
|
460
|
+
<option name="TEST_SEARCH_SCOPE">
|
461
|
+
<value defaultName="moduleWithDependencies" />
|
462
|
+
</option>
|
463
|
+
<option name="USE_DEFAULT_REPORTERS" value="false" />
|
464
|
+
<option name="PROPERTIES_FILE" />
|
465
|
+
<envs />
|
466
|
+
<properties />
|
467
|
+
<listeners />
|
468
|
+
<method />
|
469
|
+
</configuration>
|
470
|
+
<configuration default="true" type="Applet" factoryName="Applet">
|
471
|
+
<module name="" />
|
472
|
+
<option name="MAIN_CLASS_NAME" />
|
473
|
+
<option name="HTML_FILE_NAME" />
|
474
|
+
<option name="HTML_USED" value="false" />
|
475
|
+
<option name="WIDTH" value="400" />
|
476
|
+
<option name="HEIGHT" value="300" />
|
477
|
+
<option name="POLICY_FILE" value="$APPLICATION_HOME_DIR$/bin/appletviewer.policy" />
|
478
|
+
<option name="VM_PARAMETERS" />
|
479
|
+
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
|
480
|
+
<option name="ALTERNATIVE_JRE_PATH" />
|
481
|
+
<method />
|
482
|
+
</configuration>
|
483
|
+
<configuration default="true" type="Application" factoryName="Application">
|
484
|
+
<option name="MAIN_CLASS_NAME" />
|
485
|
+
<option name="VM_PARAMETERS" />
|
486
|
+
<option name="PROGRAM_PARAMETERS" />
|
487
|
+
<option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" />
|
488
|
+
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
|
489
|
+
<option name="ALTERNATIVE_JRE_PATH" />
|
490
|
+
<option name="ENABLE_SWING_INSPECTOR" value="false" />
|
491
|
+
<option name="ENV_VARIABLES" />
|
492
|
+
<option name="PASS_PARENT_ENVS" value="true" />
|
493
|
+
<module name="" />
|
494
|
+
<envs />
|
495
|
+
<method />
|
496
|
+
</configuration>
|
497
|
+
<configuration default="true" type="JUnit" factoryName="JUnit">
|
498
|
+
<module name="" />
|
499
|
+
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
|
500
|
+
<option name="ALTERNATIVE_JRE_PATH" />
|
501
|
+
<option name="PACKAGE_NAME" />
|
502
|
+
<option name="MAIN_CLASS_NAME" />
|
503
|
+
<option name="METHOD_NAME" />
|
504
|
+
<option name="TEST_OBJECT" value="class" />
|
505
|
+
<option name="VM_PARAMETERS" value="-ea" />
|
506
|
+
<option name="PARAMETERS" />
|
507
|
+
<option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" />
|
508
|
+
<option name="ENV_VARIABLES" />
|
509
|
+
<option name="PASS_PARENT_ENVS" value="true" />
|
510
|
+
<option name="TEST_SEARCH_SCOPE">
|
511
|
+
<value defaultName="moduleWithDependencies" />
|
512
|
+
</option>
|
513
|
+
<envs />
|
514
|
+
<patterns />
|
515
|
+
<method />
|
516
|
+
</configuration>
|
517
|
+
<list size="2">
|
518
|
+
<item index="0" class="java.lang.String" itemvalue="Test::Unit/Shoulda/Minitest.TestIniFile" />
|
519
|
+
<item index="1" class="java.lang.String" itemvalue="Test::Unit/Shoulda/Minitest.test_unescaped_items" />
|
520
|
+
</list>
|
521
|
+
<recent_temporary>
|
522
|
+
<list size="2">
|
523
|
+
<item index="0" class="java.lang.String" itemvalue="Test::Unit/Shoulda/Minitest.TestIniFile" />
|
524
|
+
<item index="1" class="java.lang.String" itemvalue="Test::Unit/Shoulda/Minitest.test_unescaped_items" />
|
525
|
+
</list>
|
526
|
+
</recent_temporary>
|
527
|
+
<configuration name="<template>" type="WebApp" default="true" selected="false">
|
528
|
+
<Host>localhost</Host>
|
529
|
+
<Port>5050</Port>
|
530
|
+
</configuration>
|
531
|
+
</component>
|
532
|
+
<component name="ShelveChangesManager" show_recycled="false" />
|
533
|
+
<component name="SvnConfiguration" maxAnnotateRevisions="500" myUseAcceleration="nothing" myAutoUpdateAfterCommit="false" cleanupOnStartRun="false">
|
534
|
+
<option name="USER" value="" />
|
535
|
+
<option name="PASSWORD" value="" />
|
536
|
+
<option name="mySSHConnectionTimeout" value="30000" />
|
537
|
+
<option name="mySSHReadTimeout" value="30000" />
|
538
|
+
<option name="LAST_MERGED_REVISION" />
|
539
|
+
<option name="MERGE_DRY_RUN" value="false" />
|
540
|
+
<option name="MERGE_DIFF_USE_ANCESTRY" value="true" />
|
541
|
+
<option name="UPDATE_LOCK_ON_DEMAND" value="false" />
|
542
|
+
<option name="IGNORE_SPACES_IN_MERGE" value="false" />
|
543
|
+
<option name="DETECT_NESTED_COPIES" value="true" />
|
544
|
+
<option name="CHECK_NESTED_FOR_QUICK_MERGE" value="false" />
|
545
|
+
<option name="IGNORE_SPACES_IN_ANNOTATE" value="true" />
|
546
|
+
<option name="SHOW_MERGE_SOURCES_IN_ANNOTATE" value="true" />
|
547
|
+
<option name="FORCE_UPDATE" value="false" />
|
548
|
+
<option name="IGNORE_EXTERNALS" value="false" />
|
549
|
+
<myIsUseDefaultProxy>false</myIsUseDefaultProxy>
|
550
|
+
</component>
|
551
|
+
<component name="ToolWindowManager">
|
552
|
+
<frame x="4" y="22" width="1436" height="878" extended-state="6" />
|
553
|
+
<editor active="true" />
|
554
|
+
<layout>
|
555
|
+
<window_info id="Changes" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.3298153" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
556
|
+
<window_info id="JetGradle" 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" />
|
557
|
+
<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" />
|
558
|
+
<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" />
|
559
|
+
<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" />
|
560
|
+
<window_info id="SBT Console" 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" />
|
561
|
+
<window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.5197889" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
562
|
+
<window_info id="Event Log" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="true" content_ui="tabs" />
|
563
|
+
<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" />
|
564
|
+
<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" />
|
565
|
+
<window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
|
566
|
+
<window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="1" side_tool="true" content_ui="tabs" />
|
567
|
+
<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" />
|
568
|
+
<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" />
|
569
|
+
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.24964029" sideWeight="0.6701847" order="0" side_tool="false" content_ui="combo" />
|
570
|
+
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3298153" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
571
|
+
<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" />
|
572
|
+
<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" />
|
573
|
+
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
574
|
+
<window_info id="Messages" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32894737" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
575
|
+
<window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
576
|
+
<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" />
|
577
|
+
<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" />
|
578
|
+
</layout>
|
579
|
+
</component>
|
580
|
+
<component name="VcsContentAnnotationSettings">
|
581
|
+
<option name="myLimit" value="2678400000" />
|
582
|
+
</component>
|
583
|
+
<component name="VcsManagerConfiguration">
|
584
|
+
<option name="OFFER_MOVE_TO_ANOTHER_CHANGELIST_ON_PARTIAL_COMMIT" value="true" />
|
585
|
+
<option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="true" />
|
586
|
+
<option name="CHECK_NEW_TODO" value="true" />
|
587
|
+
<option name="myTodoPanelSettings">
|
588
|
+
<value>
|
589
|
+
<are-packages-shown value="false" />
|
590
|
+
<are-modules-shown value="false" />
|
591
|
+
<flatten-packages value="false" />
|
592
|
+
<is-autoscroll-to-source value="false" />
|
593
|
+
</value>
|
594
|
+
</option>
|
595
|
+
<option name="PERFORM_UPDATE_IN_BACKGROUND" value="true" />
|
596
|
+
<option name="PERFORM_COMMIT_IN_BACKGROUND" value="true" />
|
597
|
+
<option name="PERFORM_EDIT_IN_BACKGROUND" value="true" />
|
598
|
+
<option name="PERFORM_CHECKOUT_IN_BACKGROUND" value="true" />
|
599
|
+
<option name="PERFORM_ADD_REMOVE_IN_BACKGROUND" value="true" />
|
600
|
+
<option name="PERFORM_ROLLBACK_IN_BACKGROUND" value="false" />
|
601
|
+
<option name="CHECK_LOCALLY_CHANGED_CONFLICTS_IN_BACKGROUND" value="false" />
|
602
|
+
<option name="CHANGED_ON_SERVER_INTERVAL" value="60" />
|
603
|
+
<option name="SHOW_ONLY_CHANGED_IN_SELECTION_DIFF" value="true" />
|
604
|
+
<option name="CHECK_COMMIT_MESSAGE_SPELLING" value="true" />
|
605
|
+
<option name="DEFAULT_PATCH_EXTENSION" value="patch" />
|
606
|
+
<option name="SHORT_DIFF_HORISONTALLY" value="true" />
|
607
|
+
<option name="SHORT_DIFF_EXTRA_LINES" value="2" />
|
608
|
+
<option name="SOFT_WRAPS_IN_SHORT_DIFF" value="true" />
|
609
|
+
<option name="INCLUDE_TEXT_INTO_PATCH" value="false" />
|
610
|
+
<option name="INCLUDE_TEXT_INTO_SHELF" value="false" />
|
611
|
+
<option name="SHOW_FILE_HISTORY_DETAILS" value="true" />
|
612
|
+
<option name="SHOW_VCS_ERROR_NOTIFICATIONS" value="true" />
|
613
|
+
<option name="SHOW_DIRTY_RECURSIVELY" value="false" />
|
614
|
+
<option name="LIMIT_HISTORY" value="true" />
|
615
|
+
<option name="MAXIMUM_HISTORY_ROWS" value="1000" />
|
616
|
+
<option name="FORCE_NON_EMPTY_COMMENT" value="false" />
|
617
|
+
<option name="CLEAR_INITIAL_COMMIT_MESSAGE" value="false" />
|
618
|
+
<option name="LAST_COMMIT_MESSAGE" value="commented inifile load back in" />
|
619
|
+
<option name="MAKE_NEW_CHANGELIST_ACTIVE" value="false" />
|
620
|
+
<option name="OPTIMIZE_IMPORTS_BEFORE_PROJECT_COMMIT" value="false" />
|
621
|
+
<option name="CHECK_FILES_UP_TO_DATE_BEFORE_COMMIT" value="false" />
|
622
|
+
<option name="REFORMAT_BEFORE_PROJECT_COMMIT" value="false" />
|
623
|
+
<option name="REFORMAT_BEFORE_FILE_COMMIT" value="false" />
|
624
|
+
<option name="FILE_HISTORY_DIALOG_COMMENTS_SPLITTER_PROPORTION" value="0.8" />
|
625
|
+
<option name="FILE_HISTORY_DIALOG_SPLITTER_PROPORTION" value="0.5" />
|
626
|
+
<option name="ACTIVE_VCS_NAME" />
|
627
|
+
<option name="UPDATE_GROUP_BY_PACKAGES" value="false" />
|
628
|
+
<option name="UPDATE_GROUP_BY_CHANGELIST" value="false" />
|
629
|
+
<option name="SHOW_FILE_HISTORY_AS_TREE" value="false" />
|
630
|
+
<option name="FILE_HISTORY_SPLITTER_PROPORTION" value="0.6" />
|
631
|
+
<MESSAGE value="now respects escape parameter when parsing" />
|
632
|
+
<MESSAGE value="commented inifile load back in" />
|
633
|
+
</component>
|
634
|
+
<component name="XDebuggerManager">
|
635
|
+
<breakpoint-manager>
|
636
|
+
<breakpoints>
|
637
|
+
<line-breakpoint enabled="true" type="ruby-line">
|
638
|
+
<url>file:///Library/Ruby/Gems/1.8/gems/inifile-2.0.2/lib/inifile.rb</url>
|
639
|
+
<line>440</line>
|
640
|
+
<option name="timeStamp" value="1" />
|
641
|
+
</line-breakpoint>
|
642
|
+
</breakpoints>
|
643
|
+
<option name="time" value="19" />
|
644
|
+
</breakpoint-manager>
|
645
|
+
</component>
|
646
|
+
<component name="editorHistoryManager">
|
647
|
+
<entry file="file://$PROJECT_DIR$/test/data/bad_1.ini">
|
648
|
+
<provider selected="true" editor-type-id="text-editor">
|
649
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0" />
|
650
|
+
</provider>
|
651
|
+
</entry>
|
652
|
+
<entry file="file://$USER_HOME$/Library/Application Support/IntelliJIdea12/ruby/rubystubs/rubystubs18/class.rb">
|
653
|
+
<provider selected="true" editor-type-id="text-editor">
|
654
|
+
<state line="117" column="13" selection-start="3844" selection-end="3844" vertical-scroll-proportion="0.0">
|
655
|
+
<folding />
|
656
|
+
</state>
|
657
|
+
</provider>
|
658
|
+
</entry>
|
659
|
+
<entry file="file:///Library/Ruby/Gems/1.8/gems/inifile-2.0.2/lib/inifile.rb">
|
660
|
+
<provider selected="true" editor-type-id="text-editor">
|
661
|
+
<state line="440" column="12" selection-start="11891" selection-end="11891" vertical-scroll-proportion="0.8532338">
|
662
|
+
<folding />
|
663
|
+
</state>
|
664
|
+
</provider>
|
665
|
+
</entry>
|
666
|
+
<entry file="file:///System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/assertions.rb">
|
667
|
+
<provider selected="true" editor-type-id="text-editor">
|
668
|
+
<state line="490" column="0" selection-start="14965" selection-end="14965" vertical-scroll-proportion="0.0" />
|
669
|
+
</provider>
|
670
|
+
</entry>
|
671
|
+
<entry file="file://$USER_HOME$/Library/Application Support/IntelliJIdea12/ruby/rubystubs/rubystubs18/strscan.rb">
|
672
|
+
<provider selected="true" editor-type-id="text-editor">
|
673
|
+
<state line="507" column="8" selection-start="16607" selection-end="16609" vertical-scroll-proportion="0.0">
|
674
|
+
<folding />
|
675
|
+
</state>
|
676
|
+
</provider>
|
677
|
+
</entry>
|
678
|
+
<entry file="file://$PROJECT_DIR$/test/data/browscap.ini">
|
679
|
+
<provider selected="true" editor-type-id="text-editor">
|
680
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
681
|
+
<folding />
|
682
|
+
</state>
|
683
|
+
</provider>
|
684
|
+
</entry>
|
685
|
+
<entry file="file://$PROJECT_DIR$/test/data/comment.ini">
|
686
|
+
<provider selected="true" editor-type-id="text-editor">
|
687
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
688
|
+
<folding />
|
689
|
+
</state>
|
690
|
+
</provider>
|
691
|
+
</entry>
|
692
|
+
<entry file="file://$PROJECT_DIR$/test/data/global.ini">
|
693
|
+
<provider selected="true" editor-type-id="text-editor">
|
694
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
695
|
+
<folding />
|
696
|
+
</state>
|
697
|
+
</provider>
|
698
|
+
</entry>
|
699
|
+
<entry file="file:///System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/test/unit/testcase.rb">
|
700
|
+
<provider selected="true" editor-type-id="text-editor">
|
701
|
+
<state line="79" column="0" selection-start="2450" selection-end="2450" vertical-scroll-proportion="0.0">
|
702
|
+
<folding />
|
703
|
+
</state>
|
704
|
+
</provider>
|
705
|
+
</entry>
|
706
|
+
<entry file="file://$PROJECT_DIR$/test/data/good.ini">
|
707
|
+
<provider selected="true" editor-type-id="text-editor">
|
708
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
709
|
+
<folding />
|
710
|
+
</state>
|
711
|
+
</provider>
|
712
|
+
</entry>
|
713
|
+
<entry file="file://$PROJECT_DIR$/test/test_inifile.rb">
|
714
|
+
<provider selected="true" editor-type-id="text-editor">
|
715
|
+
<state line="66" column="33" selection-start="2107" selection-end="2107" vertical-scroll-proportion="0.0">
|
716
|
+
<folding />
|
717
|
+
</state>
|
718
|
+
</provider>
|
719
|
+
</entry>
|
720
|
+
<entry file="file://$PROJECT_DIR$/test/data/no_escaping.ini">
|
721
|
+
<provider selected="true" editor-type-id="text-editor">
|
722
|
+
<state line="3" column="22" selection-start="69" selection-end="69" vertical-scroll-proportion="0.0">
|
723
|
+
<folding />
|
724
|
+
</state>
|
725
|
+
</provider>
|
726
|
+
</entry>
|
727
|
+
<entry file="file://$PROJECT_DIR$/.travis.yml">
|
728
|
+
<provider selected="true" editor-type-id="text-editor">
|
729
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
730
|
+
<folding />
|
731
|
+
</state>
|
732
|
+
</provider>
|
733
|
+
</entry>
|
734
|
+
<entry file="file://$PROJECT_DIR$/History.txt">
|
735
|
+
<provider selected="true" editor-type-id="text-editor">
|
736
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
737
|
+
<folding />
|
738
|
+
</state>
|
739
|
+
</provider>
|
740
|
+
</entry>
|
741
|
+
<entry file="file://$PROJECT_DIR$/Rakefile">
|
742
|
+
<provider selected="true" editor-type-id="text-editor">
|
743
|
+
<state line="16" column="28" selection-start="283" selection-end="283" vertical-scroll-proportion="0.0">
|
744
|
+
<folding />
|
745
|
+
</state>
|
746
|
+
</provider>
|
747
|
+
</entry>
|
748
|
+
<entry file="file://$PROJECT_DIR$/lib/inifile.rb">
|
749
|
+
<provider selected="true" editor-type-id="text-editor">
|
750
|
+
<state line="481" column="5" selection-start="13025" selection-end="13025" vertical-scroll-proportion="0.92997813">
|
751
|
+
<folding />
|
752
|
+
</state>
|
753
|
+
</provider>
|
754
|
+
</entry>
|
755
|
+
</component>
|
756
|
+
</project>
|
757
|
+
|