cirrocumulus 0.5.2 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.idea/.name +1 -0
- data/.idea/.rakeTasks +7 -0
- data/.idea/cirrocumulus.iml +87 -0
- data/.idea/encodings.xml +5 -0
- data/.idea/misc.xml +5 -0
- data/.idea/modules.xml +9 -0
- data/.idea/scopes/scope_settings.xml +5 -0
- data/.idea/vcs.xml +7 -0
- data/.idea/workspace.xml +624 -0
- data/Gemfile +5 -2
- data/Gemfile.lock +43 -0
- data/Rakefile +2 -18
- data/VERSION +1 -1
- data/cirrocumulus.gemspec +27 -10
- data/lib/.gitignore +5 -0
- data/lib/cirrocumulus.rb +1 -3
- data/lib/cirrocumulus/agent.rb +79 -29
- data/lib/cirrocumulus/agent_wrapper.rb +5 -6
- data/lib/cirrocumulus/jabber_bus.rb +140 -0
- data/lib/cirrocumulus/message.rb +67 -0
- data/lib/cirrocumulus/ontology.rb +5 -3
- data/lib/cirrocumulus/rules/engine.rb +31 -5
- data/lib/cirrocumulus/saga.rb +7 -4
- data/lib/test.rb +68 -0
- data/lib/test2.rb +30 -0
- metadata +56 -35
- data/lib/cirrocumulus/engine.rb +0 -271
- data/lib/cirrocumulus/kb.rb +0 -44
data/.idea/.name
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
cirrocumulus
|
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="Build gem into pkg/" fullCmd="build" taksId="build" /><RakeTask description="Remove any temporary products" fullCmd="clean" taksId="clean" /><RakeTask description="Remove any generated file" fullCmd="clobber" taksId="clobber" /><RakeTask description="Remove RDoc HTML files" fullCmd="clobber_rdoc" taksId="clobber_rdoc" /><RakeTask description="Start IRB with all runtime dependencies loaded" fullCmd="console[script]" taksId="console[script]" /><RakeGroup description="" fullCmd="" taksId="gemcutter"><RakeTask description="Release gem to Gemcutter" fullCmd="gemcutter:release" taksId="release" /></RakeGroup><RakeTask description="Generate and validate gemspec" fullCmd="gemspec" taksId="gemspec" /><RakeGroup description="" fullCmd="" taksId="gemspec"><RakeTask description="Display the gemspec for debugging purposes, as jeweler knows it (not from the filesystem)" fullCmd="gemspec:debug" taksId="debug" /><RakeTask description="Regenerate the gemspec on the filesystem" fullCmd="gemspec:generate" taksId="generate" /><RakeTask description="Regenerate and validate gemspec, and then commits and pushes to git" fullCmd="gemspec:release" taksId="release" /><RakeTask description="Validates the gemspec on the filesystem" fullCmd="gemspec:validate" taksId="validate" /></RakeGroup><RakeGroup description="" fullCmd="" taksId="git"><RakeTask description="Tag and push release to git" fullCmd="git:release" taksId="release" /></RakeGroup><RakeTask description="Build and install gem using `gem install`" fullCmd="install" taksId="install" /><RakeTask description="Build RDoc HTML files" fullCmd="rdoc" taksId="rdoc" /><RakeTask description="Release gem" fullCmd="release" taksId="release" /><RakeTask description="Rebuild RDoc HTML files" fullCmd="rerdoc" taksId="rerdoc" /><RakeTask description="Displays the current version" fullCmd="version" taksId="version" /><RakeGroup description="" fullCmd="" taksId="version"><RakeGroup description="" fullCmd="" taksId="bump"><RakeTask description="Bump the major version by 1" fullCmd="version:bump:major" taksId="major" /><RakeTask description="Bump the a minor version by 1" fullCmd="version:bump:minor" taksId="minor" /><RakeTask description="Bump the patch version by 1" fullCmd="version:bump:patch" taksId="patch" /></RakeGroup><RakeTask description="Writes out an explicit version" fullCmd="version:write" taksId="write" /></RakeGroup><RakeTask description="" fullCmd="console" taksId="console" /><RakeTask description="" fullCmd="gemspec_required" taksId="gemspec_required" /><RakeTask description="" fullCmd="rdoc/index.html" taksId="rdoc/index.html" /><RakeTask description="" fullCmd="version_required" taksId="version_required" /></RakeGroup></Settings>
|
@@ -0,0 +1,87 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<module type="RUBY_MODULE" version="4">
|
3
|
+
<component name="GemRequirementsHolder" version="3">
|
4
|
+
<requirement>
|
5
|
+
<requirement>
|
6
|
+
<dependency name="activesupport" version="2.3.11" bound="LATEST_IN_BRANCH" git="false" path="false" doRequire="true" />
|
7
|
+
</requirement>
|
8
|
+
<source from="Gemfile" />
|
9
|
+
</requirement>
|
10
|
+
<requirement>
|
11
|
+
<requirement>
|
12
|
+
<dependency name="bundler" version="1.0.0" bound="LATEST_IN_BRANCH" git="false" path="false" doRequire="true" />
|
13
|
+
</requirement>
|
14
|
+
<source from="Gemfile" />
|
15
|
+
</requirement>
|
16
|
+
<requirement>
|
17
|
+
<requirement>
|
18
|
+
<dependency name="deil_sexpistol" version="0" bound="GREATER_OR_EQUAL" lib="sexpistol" git="false" path="false" doRequire="true" />
|
19
|
+
</requirement>
|
20
|
+
<source from="Gemfile" />
|
21
|
+
</requirement>
|
22
|
+
<requirement>
|
23
|
+
<requirement>
|
24
|
+
<dependency name="eventmachine" version="0" bound="GREATER_OR_EQUAL" git="false" path="false" doRequire="true" />
|
25
|
+
</requirement>
|
26
|
+
<source from="Gemfile" />
|
27
|
+
</requirement>
|
28
|
+
<requirement>
|
29
|
+
<requirement>
|
30
|
+
<dependency name="jeweler" version="1.6.4" bound="LATEST_IN_BRANCH" git="false" path="false" doRequire="true" />
|
31
|
+
</requirement>
|
32
|
+
<source from="Gemfile" />
|
33
|
+
</requirement>
|
34
|
+
<requirement>
|
35
|
+
<requirement>
|
36
|
+
<dependency name="log4r" version="1.1.9" bound="LATEST_IN_BRANCH" git="false" path="false" doRequire="true" />
|
37
|
+
</requirement>
|
38
|
+
<source from="Gemfile" />
|
39
|
+
</requirement>
|
40
|
+
<requirement>
|
41
|
+
<requirement>
|
42
|
+
<dependency name="rcov" version="0" bound="GREATER_OR_EQUAL" git="false" path="false" doRequire="true" />
|
43
|
+
</requirement>
|
44
|
+
<source from="Gemfile" />
|
45
|
+
</requirement>
|
46
|
+
<requirement>
|
47
|
+
<requirement>
|
48
|
+
<dependency name="systemu" version="0" bound="GREATER_OR_EQUAL" git="false" path="false" doRequire="true" />
|
49
|
+
</requirement>
|
50
|
+
<source from="Gemfile" />
|
51
|
+
</requirement>
|
52
|
+
<requirement>
|
53
|
+
<requirement>
|
54
|
+
<dependency name="xmpp4r" version="0.5" bound="LATEST_IN_BRANCH" git="false" path="false" doRequire="true" />
|
55
|
+
</requirement>
|
56
|
+
<source from="Gemfile" />
|
57
|
+
</requirement>
|
58
|
+
<requirement>
|
59
|
+
<requirement>
|
60
|
+
<dependency name="xmpp4r-simple" version="0.8.8" bound="LATEST_IN_BRANCH" git="false" path="false" doRequire="true" />
|
61
|
+
</requirement>
|
62
|
+
<source from="Gemfile" />
|
63
|
+
</requirement>
|
64
|
+
</component>
|
65
|
+
<component name="NewModuleRootManager">
|
66
|
+
<content url="file://$MODULE_DIR$">
|
67
|
+
<sourceFolder url="file://$MODULE_DIR$/lib" isTestSource="false" />
|
68
|
+
</content>
|
69
|
+
<orderEntry type="inheritedJdk" />
|
70
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
71
|
+
<orderEntry type="library" scope="PROVIDED" name="activesupport (v2.3.14, RVM: ruby-1.9.3-p0) [gem]" level="application" />
|
72
|
+
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.0.21, RVM: ruby-1.9.3-p0) [gem]" level="application" />
|
73
|
+
<orderEntry type="library" scope="PROVIDED" name="deil_sexpistol (v0.0.8, RVM: ruby-1.9.3-p0) [gem]" level="application" />
|
74
|
+
<orderEntry type="library" scope="PROVIDED" name="eventmachine (v0.12.10, RVM: ruby-1.9.3-p0) [gem]" level="application" />
|
75
|
+
<orderEntry type="library" scope="PROVIDED" name="git (v1.2.5, RVM: ruby-1.9.3-p0) [gem]" level="application" />
|
76
|
+
<orderEntry type="library" scope="PROVIDED" name="guid (v0.1.1, RVM: ruby-1.9.3-p0) [gem]" level="application" />
|
77
|
+
<orderEntry type="library" scope="PROVIDED" name="jeweler (v1.8.3, RVM: ruby-1.9.3-p0) [gem]" level="application" />
|
78
|
+
<orderEntry type="library" scope="PROVIDED" name="json (v1.6.5, RVM: ruby-1.9.3-p0) [gem]" level="application" />
|
79
|
+
<orderEntry type="library" scope="PROVIDED" name="log4r (v1.1.10, RVM: ruby-1.9.3-p0) [gem]" level="application" />
|
80
|
+
<orderEntry type="library" scope="PROVIDED" name="rake (v0.9.2.2, RVM: ruby-1.9.3-p0) [gem]" level="application" />
|
81
|
+
<orderEntry type="library" scope="PROVIDED" name="rdoc (v3.12, RVM: ruby-1.9.3-p0) [gem]" level="application" />
|
82
|
+
<orderEntry type="library" scope="PROVIDED" name="systemu (v2.4.2, RVM: ruby-1.9.3-p0) [gem]" level="application" />
|
83
|
+
<orderEntry type="library" scope="PROVIDED" name="xmpp4r (v0.5, RVM: ruby-1.9.3-p0) [gem]" level="application" />
|
84
|
+
<orderEntry type="library" scope="PROVIDED" name="xmpp4r-simple (v0.8.8, RVM: ruby-1.9.3-p0) [gem]" level="application" />
|
85
|
+
</component>
|
86
|
+
</module>
|
87
|
+
|
data/.idea/encodings.xml
ADDED
data/.idea/misc.xml
ADDED
data/.idea/modules.xml
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="ProjectModuleManager">
|
4
|
+
<modules>
|
5
|
+
<module fileurl="file://$PROJECT_DIR$/.idea/cirrocumulus.iml" filepath="$PROJECT_DIR$/.idea/cirrocumulus.iml" />
|
6
|
+
</modules>
|
7
|
+
</component>
|
8
|
+
</project>
|
9
|
+
|
data/.idea/vcs.xml
ADDED
data/.idea/workspace.xml
ADDED
@@ -0,0 +1,624 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="ChangeListManager">
|
4
|
+
<list default="true" id="e3b220a8-b188-4d05-b90e-58a7fdef7470" name="Default" comment="">
|
5
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/.idea/workspace.xml" afterPath="$PROJECT_DIR$/.idea/workspace.xml" />
|
6
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/cirrocumulus/agent.rb" afterPath="$PROJECT_DIR$/lib/cirrocumulus/agent.rb" />
|
7
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/cirrocumulus/ontology.rb" afterPath="$PROJECT_DIR$/lib/cirrocumulus/ontology.rb" />
|
8
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/cirrocumulus/saga.rb" afterPath="$PROJECT_DIR$/lib/cirrocumulus/saga.rb" />
|
9
|
+
</list>
|
10
|
+
<ignored path="cirrocumulus.iws" />
|
11
|
+
<ignored path=".idea/workspace.xml" />
|
12
|
+
<option name="TRACKING_ENABLED" value="true" />
|
13
|
+
<option name="SHOW_DIALOG" value="false" />
|
14
|
+
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
15
|
+
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
16
|
+
<option name="LAST_RESOLUTION" value="IGNORE" />
|
17
|
+
</component>
|
18
|
+
<component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
|
19
|
+
<component name="CreatePatchCommitExecutor">
|
20
|
+
<option name="PATCH_PATH" value="" />
|
21
|
+
</component>
|
22
|
+
<component name="DaemonCodeAnalyzer">
|
23
|
+
<disable_hints />
|
24
|
+
</component>
|
25
|
+
<component name="FavoritesManager">
|
26
|
+
<favorites_list name="cirrocumulus" />
|
27
|
+
</component>
|
28
|
+
<component name="FileEditorManager">
|
29
|
+
<leaf>
|
30
|
+
<file leaf-file-name="saga.rb" pinned="false" current="true" current-in-tab="true">
|
31
|
+
<entry file="file://$PROJECT_DIR$/lib/cirrocumulus/saga.rb">
|
32
|
+
<provider selected="true" editor-type-id="text-editor">
|
33
|
+
<state line="37" column="0" selection-start="677" selection-end="677" vertical-scroll-proportion="0.48613375">
|
34
|
+
<folding />
|
35
|
+
</state>
|
36
|
+
</provider>
|
37
|
+
</entry>
|
38
|
+
</file>
|
39
|
+
<file leaf-file-name="ontology.rb" pinned="false" current="false" current-in-tab="false">
|
40
|
+
<entry file="file://$PROJECT_DIR$/lib/cirrocumulus/ontology.rb">
|
41
|
+
<provider selected="true" editor-type-id="text-editor">
|
42
|
+
<state line="25" column="50" selection-start="536" selection-end="536" vertical-scroll-proportion="0.0">
|
43
|
+
<folding>
|
44
|
+
<element signature="e#102#215#0" expanded="false" />
|
45
|
+
<element signature="e#279#364#0" expanded="false" />
|
46
|
+
<element signature="e#734#1086#0" expanded="false" />
|
47
|
+
<element signature="e#1107#1132#0" expanded="false" />
|
48
|
+
<element signature="e#1138#1236#0" expanded="false" />
|
49
|
+
<element signature="e#1242#1404#0" expanded="false" />
|
50
|
+
<element signature="e#1410#1457#0" expanded="false" />
|
51
|
+
</folding>
|
52
|
+
</state>
|
53
|
+
</provider>
|
54
|
+
</entry>
|
55
|
+
</file>
|
56
|
+
</leaf>
|
57
|
+
</component>
|
58
|
+
<component name="FindManager">
|
59
|
+
<FindUsagesManager>
|
60
|
+
<setting name="OPEN_NEW_TAB" value="false" />
|
61
|
+
</FindUsagesManager>
|
62
|
+
</component>
|
63
|
+
<component name="Git.Settings">
|
64
|
+
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
65
|
+
</component>
|
66
|
+
<component name="IdeDocumentHistory">
|
67
|
+
<option name="changedFiles">
|
68
|
+
<list>
|
69
|
+
<option value="$PROJECT_DIR$/lib/cirrocumulus/master_agent.rb" />
|
70
|
+
<option value="$PROJECT_DIR$/lib/cirrocumulus/rule_engine.rb" />
|
71
|
+
<option value="$PROJECT_DIR$/lib/test.rb" />
|
72
|
+
<option value="$PROJECT_DIR$/lib/cirrocumulus/rules/run_queue.rb" />
|
73
|
+
<option value="$PROJECT_DIR$/lib/cirrocumulus/engine.rb" />
|
74
|
+
<option value="$PROJECT_DIR$/lib/cirrocumulus/agent_wrapper.rb" />
|
75
|
+
<option value="$PROJECT_DIR$/lib/cirrocumulus/message.rb" />
|
76
|
+
<option value="$PROJECT_DIR$/lib/cirrocumulus.rb" />
|
77
|
+
<option value="$PROJECT_DIR$/cirrocumulus.gemspec" />
|
78
|
+
<option value="$PROJECT_DIR$/Rakefile" />
|
79
|
+
<option value="$PROJECT_DIR$/Gemfile" />
|
80
|
+
<option value="$PROJECT_DIR$/lib/cirrocumulus/jabber_bus.rb" />
|
81
|
+
<option value="$PROJECT_DIR$/lib/cirrocumulus/rules/engine.rb" />
|
82
|
+
<option value="$PROJECT_DIR$/lib/cirrocumulus/agent.rb" />
|
83
|
+
<option value="$PROJECT_DIR$/lib/cirrocumulus/ontology.rb" />
|
84
|
+
<option value="$PROJECT_DIR$/lib/cirrocumulus/saga.rb" />
|
85
|
+
</list>
|
86
|
+
</option>
|
87
|
+
</component>
|
88
|
+
<component name="ProjectFrameBounds">
|
89
|
+
<option name="width" value="1280" />
|
90
|
+
<option name="height" value="762" />
|
91
|
+
</component>
|
92
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
93
|
+
<OptionsSetting value="true" id="Add" />
|
94
|
+
<OptionsSetting value="true" id="Remove" />
|
95
|
+
<OptionsSetting value="true" id="Checkout" />
|
96
|
+
<OptionsSetting value="true" id="Update" />
|
97
|
+
<OptionsSetting value="true" id="Status" />
|
98
|
+
<OptionsSetting value="true" id="Edit" />
|
99
|
+
<ConfirmationsSetting value="0" id="Add" />
|
100
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
101
|
+
</component>
|
102
|
+
<component name="ProjectReloadState">
|
103
|
+
<option name="STATE" value="0" />
|
104
|
+
</component>
|
105
|
+
<component name="ProjectView">
|
106
|
+
<navigator currentView="ProjectPane" proportions="" version="1" splitterProportion="0.5">
|
107
|
+
<flattenPackages />
|
108
|
+
<showMembers />
|
109
|
+
<showModules />
|
110
|
+
<showLibraryContents />
|
111
|
+
<hideEmptyPackages />
|
112
|
+
<abbreviatePackageNames />
|
113
|
+
<autoscrollToSource />
|
114
|
+
<autoscrollFromSource />
|
115
|
+
<sortByType />
|
116
|
+
</navigator>
|
117
|
+
<panes>
|
118
|
+
<pane id="Scope">
|
119
|
+
<subPane subId="Project Files">
|
120
|
+
<PATH>
|
121
|
+
<PATH_ELEMENT USER_OBJECT="Root">
|
122
|
+
<option name="myItemId" value="" />
|
123
|
+
<option name="myItemType" value="" />
|
124
|
+
</PATH_ELEMENT>
|
125
|
+
</PATH>
|
126
|
+
</subPane>
|
127
|
+
</pane>
|
128
|
+
<pane id="ProjectPane">
|
129
|
+
<subPane>
|
130
|
+
<PATH>
|
131
|
+
<PATH_ELEMENT>
|
132
|
+
<option name="myItemId" value="cirrocumulus" />
|
133
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
134
|
+
</PATH_ELEMENT>
|
135
|
+
</PATH>
|
136
|
+
<PATH>
|
137
|
+
<PATH_ELEMENT>
|
138
|
+
<option name="myItemId" value="cirrocumulus" />
|
139
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
140
|
+
</PATH_ELEMENT>
|
141
|
+
<PATH_ELEMENT>
|
142
|
+
<option name="myItemId" value="cirrocumulus" />
|
143
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
144
|
+
</PATH_ELEMENT>
|
145
|
+
</PATH>
|
146
|
+
<PATH>
|
147
|
+
<PATH_ELEMENT>
|
148
|
+
<option name="myItemId" value="cirrocumulus" />
|
149
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
150
|
+
</PATH_ELEMENT>
|
151
|
+
<PATH_ELEMENT>
|
152
|
+
<option name="myItemId" value="cirrocumulus" />
|
153
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
154
|
+
</PATH_ELEMENT>
|
155
|
+
<PATH_ELEMENT>
|
156
|
+
<option name="myItemId" value="lib" />
|
157
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
158
|
+
</PATH_ELEMENT>
|
159
|
+
</PATH>
|
160
|
+
<PATH>
|
161
|
+
<PATH_ELEMENT>
|
162
|
+
<option name="myItemId" value="cirrocumulus" />
|
163
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
164
|
+
</PATH_ELEMENT>
|
165
|
+
<PATH_ELEMENT>
|
166
|
+
<option name="myItemId" value="cirrocumulus" />
|
167
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
168
|
+
</PATH_ELEMENT>
|
169
|
+
<PATH_ELEMENT>
|
170
|
+
<option name="myItemId" value="lib" />
|
171
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
172
|
+
</PATH_ELEMENT>
|
173
|
+
<PATH_ELEMENT>
|
174
|
+
<option name="myItemId" value="cirrocumulus" />
|
175
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
176
|
+
</PATH_ELEMENT>
|
177
|
+
</PATH>
|
178
|
+
<PATH>
|
179
|
+
<PATH_ELEMENT>
|
180
|
+
<option name="myItemId" value="cirrocumulus" />
|
181
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
182
|
+
</PATH_ELEMENT>
|
183
|
+
<PATH_ELEMENT>
|
184
|
+
<option name="myItemId" value="cirrocumulus" />
|
185
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
186
|
+
</PATH_ELEMENT>
|
187
|
+
<PATH_ELEMENT>
|
188
|
+
<option name="myItemId" value="lib" />
|
189
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
190
|
+
</PATH_ELEMENT>
|
191
|
+
<PATH_ELEMENT>
|
192
|
+
<option name="myItemId" value="cirrocumulus" />
|
193
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
194
|
+
</PATH_ELEMENT>
|
195
|
+
<PATH_ELEMENT>
|
196
|
+
<option name="myItemId" value="rules" />
|
197
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
198
|
+
</PATH_ELEMENT>
|
199
|
+
</PATH>
|
200
|
+
</subPane>
|
201
|
+
</pane>
|
202
|
+
<pane id="Favorites" />
|
203
|
+
</panes>
|
204
|
+
</component>
|
205
|
+
<component name="PropertiesComponent">
|
206
|
+
<property name="options.splitter.main.proportions" value="0.3" />
|
207
|
+
<property name="WebServerToolWindowFactoryState" value="false" />
|
208
|
+
<property name="recentsLimit" value="5" />
|
209
|
+
<property name="options.lastSelected" value="org.jetbrains.plugins.ruby.settings.RubyIdeSdkConfigurable" />
|
210
|
+
<property name="RakeTaksPopup.undocumentedIncluded" value="false" />
|
211
|
+
<property name="options.splitter.details.proportions" value="0.2" />
|
212
|
+
<property name="options.searchVisible" value="true" />
|
213
|
+
</component>
|
214
|
+
<component name="RunManager" selected="Rake.build">
|
215
|
+
<configuration default="false" name="build" type="RakeRunConfigurationType" factoryName="Rake" temporary="true">
|
216
|
+
<module name="cirrocumulus" />
|
217
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
218
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$PROJECT_DIR$" />
|
219
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="true" />
|
220
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="RVM: ruby-1.9.3-p0" />
|
221
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
222
|
+
<envs />
|
223
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
|
224
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" track_test_folders="true" runner="rcov">
|
225
|
+
<COVERAGE_PATTERN ENABLED="true">
|
226
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
227
|
+
</COVERAGE_PATTERN>
|
228
|
+
</EXTENSION>
|
229
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_NAME" VALUE="build" />
|
230
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_ARGS" VALUE="" />
|
231
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_ATTACHED_TEST_FRAMEWORKS" VALUE="" />
|
232
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_TRACE" VALUE="false" />
|
233
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_DRYRUN" VALUE="false" />
|
234
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_PREREQS" VALUE="false" />
|
235
|
+
<RunnerSettings RunnerId="RubyRunner" />
|
236
|
+
<ConfigurationWrapper RunnerId="RubyRunner" />
|
237
|
+
<method />
|
238
|
+
</configuration>
|
239
|
+
<configuration default="true" type="RakeRunConfigurationType" factoryName="Rake">
|
240
|
+
<module name="" />
|
241
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
242
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
243
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
244
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
245
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
246
|
+
<envs />
|
247
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
248
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" track_test_folders="true" runner="rcov">
|
249
|
+
<COVERAGE_PATTERN ENABLED="true">
|
250
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
251
|
+
</COVERAGE_PATTERN>
|
252
|
+
</EXTENSION>
|
253
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_NAME" VALUE="" />
|
254
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_ARGS" VALUE="" />
|
255
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_ATTACHED_TEST_FRAMEWORKS" VALUE="" />
|
256
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_TRACE" VALUE="false" />
|
257
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_DRYRUN" VALUE="false" />
|
258
|
+
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_PREREQS" VALUE="false" />
|
259
|
+
<method>
|
260
|
+
<option name="RakeTask" enabled="false" />
|
261
|
+
</method>
|
262
|
+
</configuration>
|
263
|
+
<configuration default="true" type="RSpecRunConfigurationType" factoryName="RSpec">
|
264
|
+
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
265
|
+
<module name="" />
|
266
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
267
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
268
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
269
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
270
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
271
|
+
<envs />
|
272
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
273
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" track_test_folders="true" runner="rcov">
|
274
|
+
<COVERAGE_PATTERN ENABLED="true">
|
275
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
276
|
+
</COVERAGE_PATTERN>
|
277
|
+
</EXTENSION>
|
278
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
279
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
280
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
281
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
282
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
|
283
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
284
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
285
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
286
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
287
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
288
|
+
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
289
|
+
<method>
|
290
|
+
<option name="RakeTask" enabled="false" />
|
291
|
+
</method>
|
292
|
+
</configuration>
|
293
|
+
<configuration default="true" type="RubyRunConfigurationType" factoryName="Ruby">
|
294
|
+
<module name="" />
|
295
|
+
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
296
|
+
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="" />
|
297
|
+
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
298
|
+
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
299
|
+
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
300
|
+
<envs />
|
301
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
302
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" track_test_folders="true" runner="rcov">
|
303
|
+
<COVERAGE_PATTERN ENABLED="true">
|
304
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
305
|
+
</COVERAGE_PATTERN>
|
306
|
+
</EXTENSION>
|
307
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="" />
|
308
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
309
|
+
<method>
|
310
|
+
<option name="RakeTask" enabled="false" />
|
311
|
+
</method>
|
312
|
+
</configuration>
|
313
|
+
<configuration default="true" type="CucumberRunConfigurationType" factoryName="Cucumber">
|
314
|
+
<predefined_log_file id="RUBY_CUCUMBER" enabled="true" />
|
315
|
+
<module name="" />
|
316
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
317
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
318
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
319
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
320
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
321
|
+
<envs>
|
322
|
+
<env name="ANSICON" value="" />
|
323
|
+
</envs>
|
324
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
325
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" track_test_folders="true" runner="rcov">
|
326
|
+
<COVERAGE_PATTERN ENABLED="true">
|
327
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
328
|
+
</COVERAGE_PATTERN>
|
329
|
+
</EXTENSION>
|
330
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*.feature" />
|
331
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
332
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
333
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
334
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TAGS_FILTER" VALUE="" />
|
335
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_NAME_FILTER" VALUE="" />
|
336
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_ARGS" VALUE="--color -r features" />
|
337
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
338
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
339
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="VERBOSE_OPTION" VALUE="false" />
|
340
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
341
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_RUNNER_PATH" VALUE="" />
|
342
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_RUNNER" VALUE="false" />
|
343
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SETTINGS_VERSION" VALUE="2" />
|
344
|
+
<method>
|
345
|
+
<option name="RakeTask" enabled="false" />
|
346
|
+
</method>
|
347
|
+
</configuration>
|
348
|
+
<list size="1">
|
349
|
+
<item index="0" class="java.lang.String" itemvalue="Rake.build" />
|
350
|
+
</list>
|
351
|
+
<configuration default="true" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda">
|
352
|
+
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
353
|
+
<module name="" />
|
354
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
355
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
356
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
357
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
358
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
359
|
+
<envs />
|
360
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
361
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" track_test_folders="true" runner="rcov">
|
362
|
+
<COVERAGE_PATTERN ENABLED="true">
|
363
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
364
|
+
</COVERAGE_PATTERN>
|
365
|
+
</EXTENSION>
|
366
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
367
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
368
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_CLASS_NAME" VALUE="" />
|
369
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
370
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
|
371
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
372
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="INHERITANCE_CHECK_DISABLED" VALUE="false" />
|
373
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
374
|
+
<method />
|
375
|
+
</configuration>
|
376
|
+
</component>
|
377
|
+
<component name="ShelveChangesManager" show_recycled="false" />
|
378
|
+
<component name="SvnConfiguration" maxAnnotateRevisions="500">
|
379
|
+
<option name="USER" value="" />
|
380
|
+
<option name="PASSWORD" value="" />
|
381
|
+
<option name="mySSHConnectionTimeout" value="30000" />
|
382
|
+
<option name="mySSHReadTimeout" value="30000" />
|
383
|
+
<option name="LAST_MERGED_REVISION" />
|
384
|
+
<option name="MERGE_DRY_RUN" value="false" />
|
385
|
+
<option name="MERGE_DIFF_USE_ANCESTRY" value="true" />
|
386
|
+
<option name="UPDATE_LOCK_ON_DEMAND" value="false" />
|
387
|
+
<option name="IGNORE_SPACES_IN_MERGE" value="false" />
|
388
|
+
<option name="DETECT_NESTED_COPIES" value="true" />
|
389
|
+
<option name="CHECK_NESTED_FOR_QUICK_MERGE" value="false" />
|
390
|
+
<option name="IGNORE_SPACES_IN_ANNOTATE" value="true" />
|
391
|
+
<option name="SHOW_MERGE_SOURCES_IN_ANNOTATE" value="true" />
|
392
|
+
<option name="FORCE_UPDATE" value="false" />
|
393
|
+
<configuration useDefault="true">$USER_HOME$/.subversion_IDEA</configuration>
|
394
|
+
<myIsUseDefaultProxy>false</myIsUseDefaultProxy>
|
395
|
+
</component>
|
396
|
+
<component name="TaskManager">
|
397
|
+
<task active="true" id="Default" summary="Default task">
|
398
|
+
<changelist id="e3b220a8-b188-4d05-b90e-58a7fdef7470" name="Default" comment="" />
|
399
|
+
<created>1316200327630</created>
|
400
|
+
<updated>1316200327630</updated>
|
401
|
+
</task>
|
402
|
+
<servers />
|
403
|
+
</component>
|
404
|
+
<component name="ToolWindowManager">
|
405
|
+
<frame x="0" y="0" width="1280" height="762" extended-state="4" />
|
406
|
+
<editor active="true" />
|
407
|
+
<layout>
|
408
|
+
<window_info id="Data Sources" 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" />
|
409
|
+
<window_info id="Changes" active="false" anchor="bottom" auto_hide="true" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3287879" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
410
|
+
<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" />
|
411
|
+
<window_info id="Structure" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.67121214" order="4" side_tool="false" content_ui="tabs" />
|
412
|
+
<window_info id="Project" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.28664497" sideWeight="0.67121214" order="3" side_tool="false" content_ui="combo" />
|
413
|
+
<window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
414
|
+
<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" />
|
415
|
+
<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" />
|
416
|
+
<window_info id="Run" active="false" anchor="bottom" auto_hide="true" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3287879" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
417
|
+
<window_info id="Version Control" active="false" anchor="bottom" auto_hide="true" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3287879" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
418
|
+
<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" />
|
419
|
+
<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" />
|
420
|
+
<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" />
|
421
|
+
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3287879" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
422
|
+
<window_info id="Messages" active="false" anchor="bottom" auto_hide="true" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3287879" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
423
|
+
<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" />
|
424
|
+
<window_info id="Dependency Viewer" 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" />
|
425
|
+
<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" />
|
426
|
+
<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" />
|
427
|
+
</layout>
|
428
|
+
</component>
|
429
|
+
<component name="VcsContentAnnotationSettings">
|
430
|
+
<option name="myLimit" value="2678400000" />
|
431
|
+
</component>
|
432
|
+
<component name="VcsManagerConfiguration">
|
433
|
+
<option name="OFFER_MOVE_TO_ANOTHER_CHANGELIST_ON_PARTIAL_COMMIT" value="true" />
|
434
|
+
<option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="true" />
|
435
|
+
<option name="CHECK_NEW_TODO" value="true" />
|
436
|
+
<option name="myTodoPanelSettings">
|
437
|
+
<value>
|
438
|
+
<are-packages-shown value="false" />
|
439
|
+
<are-modules-shown value="false" />
|
440
|
+
<flatten-packages value="false" />
|
441
|
+
<is-autoscroll-to-source value="false" />
|
442
|
+
</value>
|
443
|
+
</option>
|
444
|
+
<option name="PERFORM_UPDATE_IN_BACKGROUND" value="true" />
|
445
|
+
<option name="PERFORM_COMMIT_IN_BACKGROUND" value="true" />
|
446
|
+
<option name="PERFORM_EDIT_IN_BACKGROUND" value="true" />
|
447
|
+
<option name="PERFORM_CHECKOUT_IN_BACKGROUND" value="true" />
|
448
|
+
<option name="PERFORM_ADD_REMOVE_IN_BACKGROUND" value="true" />
|
449
|
+
<option name="PERFORM_ROLLBACK_IN_BACKGROUND" value="false" />
|
450
|
+
<option name="CHECK_LOCALLY_CHANGED_CONFLICTS_IN_BACKGROUND" value="false" />
|
451
|
+
<option name="ENABLE_BACKGROUND_PROCESSES" value="false" />
|
452
|
+
<option name="CHANGED_ON_SERVER_INTERVAL" value="60" />
|
453
|
+
<option name="SHOW_ONLY_CHANGED_IN_SELECTION_DIFF" value="true" />
|
454
|
+
<option name="CHECK_COMMIT_MESSAGE_SPELLING" value="true" />
|
455
|
+
<option name="DEFAULT_PATCH_EXTENSION" value="patch" />
|
456
|
+
<option name="SHORT_DIFF_HORISONTALLY" value="true" />
|
457
|
+
<option name="SHORT_DIFF_EXTRA_LINES" value="2" />
|
458
|
+
<option name="SOFT_WRAPS_IN_SHORT_DIFF" value="true" />
|
459
|
+
<option name="INCLUDE_TEXT_INTO_PATCH" value="false" />
|
460
|
+
<option name="INCLUDE_TEXT_INTO_SHELF" value="false" />
|
461
|
+
<option name="CREATE_PATCH_EXPAND_DETAILS_DEFAULT" value="true" />
|
462
|
+
<option name="SHOW_FILE_HISTORY_DETAILS" value="true" />
|
463
|
+
<option name="FORCE_NON_EMPTY_COMMENT" value="false" />
|
464
|
+
<option name="LAST_COMMIT_MESSAGE" />
|
465
|
+
<option name="MAKE_NEW_CHANGELIST_ACTIVE" value="true" />
|
466
|
+
<option name="OPTIMIZE_IMPORTS_BEFORE_PROJECT_COMMIT" value="false" />
|
467
|
+
<option name="CHECK_FILES_UP_TO_DATE_BEFORE_COMMIT" value="false" />
|
468
|
+
<option name="REFORMAT_BEFORE_PROJECT_COMMIT" value="false" />
|
469
|
+
<option name="REFORMAT_BEFORE_FILE_COMMIT" value="false" />
|
470
|
+
<option name="FILE_HISTORY_DIALOG_COMMENTS_SPLITTER_PROPORTION" value="0.8" />
|
471
|
+
<option name="FILE_HISTORY_DIALOG_SPLITTER_PROPORTION" value="0.5" />
|
472
|
+
<option name="ACTIVE_VCS_NAME" />
|
473
|
+
<option name="UPDATE_GROUP_BY_PACKAGES" value="false" />
|
474
|
+
<option name="UPDATE_GROUP_BY_CHANGELIST" value="false" />
|
475
|
+
<option name="SHOW_FILE_HISTORY_AS_TREE" value="false" />
|
476
|
+
<option name="FILE_HISTORY_SPLITTER_PROPORTION" value="0.6" />
|
477
|
+
</component>
|
478
|
+
<component name="XDebuggerManager">
|
479
|
+
<breakpoint-manager />
|
480
|
+
</component>
|
481
|
+
<component name="editorHistoryManager">
|
482
|
+
<entry file="file://$PROJECT_DIR$/lib/cirrocumulus/rules/run_queue.rb">
|
483
|
+
<provider selected="true" editor-type-id="text-editor">
|
484
|
+
<state line="85" column="0" selection-start="2221" selection-end="2221" vertical-scroll-proportion="0.29725364" />
|
485
|
+
</provider>
|
486
|
+
</entry>
|
487
|
+
<entry file="file://$APPLICATION_HOME_DIR$/rubystubs18/kernel.rb">
|
488
|
+
<provider selected="true" editor-type-id="text-editor">
|
489
|
+
<state line="1771" column="6" selection-start="56935" selection-end="56935" vertical-scroll-proportion="0.76265824" />
|
490
|
+
</provider>
|
491
|
+
</entry>
|
492
|
+
<entry file="file://$PROJECT_DIR$/lib/cirrocumulus/logger.rb">
|
493
|
+
<provider selected="true" editor-type-id="text-editor">
|
494
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0" />
|
495
|
+
</provider>
|
496
|
+
</entry>
|
497
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
498
|
+
<provider selected="true" editor-type-id="text-editor">
|
499
|
+
<state line="6" column="0" selection-start="124" selection-end="197" vertical-scroll-proportion="0.14754099" />
|
500
|
+
</provider>
|
501
|
+
</entry>
|
502
|
+
<entry file="file://$PROJECT_DIR$/cirrocumulus.gemspec">
|
503
|
+
<provider selected="true" editor-type-id="text-editor">
|
504
|
+
<state line="21" column="15" selection-start="724" selection-end="724" vertical-scroll-proportion="0.024271844" />
|
505
|
+
</provider>
|
506
|
+
</entry>
|
507
|
+
<entry file="file://$PROJECT_DIR$/Rakefile">
|
508
|
+
<provider selected="true" editor-type-id="text-editor">
|
509
|
+
<state line="28" column="0" selection-start="936" selection-end="936" vertical-scroll-proportion="0.6359223" />
|
510
|
+
</provider>
|
511
|
+
</entry>
|
512
|
+
<entry file="file://$PROJECT_DIR$/lib/cirrocumulus/agent_wrapper.rb">
|
513
|
+
<provider selected="true" editor-type-id="text-editor">
|
514
|
+
<state line="13" column="0" selection-start="302" selection-end="302" vertical-scroll-proportion="0.02377179" />
|
515
|
+
</provider>
|
516
|
+
</entry>
|
517
|
+
<entry file="file://$PROJECT_DIR$/lib/cirrocumulus.rb">
|
518
|
+
<provider selected="true" editor-type-id="text-editor">
|
519
|
+
<state line="2" column="0" selection-start="55" selection-end="55" vertical-scroll-proportion="0.04754358" />
|
520
|
+
</provider>
|
521
|
+
</entry>
|
522
|
+
<entry file="file://$PROJECT_DIR$/lib/cirrocumulus/rule_engine.rb">
|
523
|
+
<provider selected="true" editor-type-id="text-editor">
|
524
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0" />
|
525
|
+
</provider>
|
526
|
+
</entry>
|
527
|
+
<entry file="file://$PROJECT_DIR$/lib/cirrocumulus/message.rb">
|
528
|
+
<provider selected="true" editor-type-id="text-editor">
|
529
|
+
<state line="4" column="4" selection-start="125" selection-end="125" vertical-scroll-proportion="0.0">
|
530
|
+
<folding />
|
531
|
+
</state>
|
532
|
+
</provider>
|
533
|
+
</entry>
|
534
|
+
<entry file="file:///usr/local/rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/thread.rb">
|
535
|
+
<provider selected="true" editor-type-id="text-editor">
|
536
|
+
<state line="182" column="6" selection-start="3565" selection-end="3565" vertical-scroll-proportion="0.33278957">
|
537
|
+
<folding />
|
538
|
+
</state>
|
539
|
+
</provider>
|
540
|
+
</entry>
|
541
|
+
<entry file="file://$PROJECT_DIR$/lib/cirrocumulus/rules/engine.rb">
|
542
|
+
<provider selected="true" editor-type-id="text-editor">
|
543
|
+
<state line="57" column="0" selection-start="1475" selection-end="1475" vertical-scroll-proportion="0.0">
|
544
|
+
<folding>
|
545
|
+
<element signature="e#259#408#0" expanded="false" />
|
546
|
+
<element signature="e#742#864#0" expanded="false" />
|
547
|
+
<element signature="e#870#1093#0" expanded="false" />
|
548
|
+
<element signature="e#1099#1339#0" expanded="false" />
|
549
|
+
<element signature="e#2795#2885#0" expanded="false" />
|
550
|
+
<element signature="e#2891#3047#0" expanded="false" />
|
551
|
+
<element signature="e#3093#3249#0" expanded="false" />
|
552
|
+
<element signature="e#3362#3399#0" expanded="false" />
|
553
|
+
<element signature="e#3531#3766#0" expanded="false" />
|
554
|
+
<element signature="e#3772#4023#0" expanded="false" />
|
555
|
+
<element signature="e#4029#4462#0" expanded="false" />
|
556
|
+
<element signature="e#4468#5068#0" expanded="false" />
|
557
|
+
<element signature="e#5074#5480#0" expanded="false" />
|
558
|
+
<element signature="e#5486#6058#0" expanded="false" />
|
559
|
+
<element signature="e#6064#6389#0" expanded="false" />
|
560
|
+
<element signature="e#6395#6707#0" expanded="false" />
|
561
|
+
<element signature="e#6713#7055#0" expanded="false" />
|
562
|
+
<element signature="e#7061#7917#0" expanded="false" />
|
563
|
+
<element signature="e#7923#7996#0" expanded="false" />
|
564
|
+
<element signature="e#8002#8220#0" expanded="false" />
|
565
|
+
<element signature="e#8226#8322#0" expanded="false" />
|
566
|
+
<element signature="e#8328#8428#0" expanded="false" />
|
567
|
+
<element signature="e#8434#8553#0" expanded="false" />
|
568
|
+
</folding>
|
569
|
+
</state>
|
570
|
+
</provider>
|
571
|
+
</entry>
|
572
|
+
<entry file="file://$PROJECT_DIR$/lib/cirrocumulus/agent.rb">
|
573
|
+
<provider selected="true" editor-type-id="text-editor">
|
574
|
+
<state line="266" column="21" selection-start="8047" selection-end="8047" vertical-scroll-proportion="0.0">
|
575
|
+
<folding>
|
576
|
+
<element signature="e#4587#4898#0" expanded="false" />
|
577
|
+
<element signature="e#4954#5129#0" expanded="false" />
|
578
|
+
<element signature="e#5169#5401#0" expanded="false" />
|
579
|
+
<element signature="e#5570#5685#0" expanded="false" />
|
580
|
+
<element signature="e#5744#6329#0" expanded="false" />
|
581
|
+
<element signature="e#6374#6440#0" expanded="false" />
|
582
|
+
<element signature="e#6583#6795#0" expanded="false" />
|
583
|
+
<element signature="e#6824#7162#0" expanded="false" />
|
584
|
+
<element signature="e#7168#7246#0" expanded="false" />
|
585
|
+
</folding>
|
586
|
+
</state>
|
587
|
+
</provider>
|
588
|
+
</entry>
|
589
|
+
<entry file="file://$PROJECT_DIR$/lib/cirrocumulus/jabber_bus.rb">
|
590
|
+
<provider selected="true" editor-type-id="text-editor">
|
591
|
+
<state line="115" column="34" selection-start="3354" selection-end="3354" vertical-scroll-proportion="1.375">
|
592
|
+
<folding>
|
593
|
+
<element signature="e#2941#2999#0" expanded="false" />
|
594
|
+
<element signature="e#3014#3318#0" expanded="false" />
|
595
|
+
<element signature="e#3322#4341#0" expanded="false" />
|
596
|
+
</folding>
|
597
|
+
</state>
|
598
|
+
</provider>
|
599
|
+
</entry>
|
600
|
+
<entry file="file://$PROJECT_DIR$/lib/cirrocumulus/ontology.rb">
|
601
|
+
<provider selected="true" editor-type-id="text-editor">
|
602
|
+
<state line="25" column="50" selection-start="536" selection-end="536" vertical-scroll-proportion="0.0">
|
603
|
+
<folding>
|
604
|
+
<element signature="e#102#215#0" expanded="false" />
|
605
|
+
<element signature="e#279#364#0" expanded="false" />
|
606
|
+
<element signature="e#734#1086#0" expanded="false" />
|
607
|
+
<element signature="e#1107#1132#0" expanded="false" />
|
608
|
+
<element signature="e#1138#1236#0" expanded="false" />
|
609
|
+
<element signature="e#1242#1404#0" expanded="false" />
|
610
|
+
<element signature="e#1410#1457#0" expanded="false" />
|
611
|
+
</folding>
|
612
|
+
</state>
|
613
|
+
</provider>
|
614
|
+
</entry>
|
615
|
+
<entry file="file://$PROJECT_DIR$/lib/cirrocumulus/saga.rb">
|
616
|
+
<provider selected="true" editor-type-id="text-editor">
|
617
|
+
<state line="37" column="0" selection-start="677" selection-end="677" vertical-scroll-proportion="0.48613375">
|
618
|
+
<folding />
|
619
|
+
</state>
|
620
|
+
</provider>
|
621
|
+
</entry>
|
622
|
+
</component>
|
623
|
+
</project>
|
624
|
+
|