galaxy 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +5 -0
- data/.gitignore +21 -0
- data/.idea/.rakeTasks +7 -0
- data/.idea/encodings.xml +5 -0
- data/.idea/galaxy.iml +10 -0
- data/.idea/misc.xml +14 -0
- data/.idea/modules.xml +9 -0
- data/.idea/vcs.xml +8 -0
- data/.idea/workspace.xml +486 -0
- data/LICENSE +20 -0
- data/README.rdoc +36 -0
- data/Rakefile +62 -0
- data/VERSION +1 -0
- data/doc/plan.txt +5 -0
- data/doc/pseudo.txt +43 -0
- data/features/galaxy.feature +9 -0
- data/features/step_definitions/galaxy_steps.rb +0 -0
- data/features/support/env.rb +4 -0
- data/galaxy.gemspec +95 -0
- data/galaxy/.loadpath +5 -0
- data/galaxy/.project +17 -0
- data/galaxy/.settings/org.eclipse.mylyn.tasks.ui.prefs +4 -0
- data/galaxy/.settings/org.eclipse.wst.sse.core.prefs +5 -0
- data/galaxy/experiments.rb +26 -0
- data/lib/galaxy.rb +8 -0
- data/lib/galaxy/models/bombing.rb +64 -0
- data/lib/galaxy/models/fleet.rb +62 -0
- data/lib/galaxy/models/group.rb +178 -0
- data/lib/galaxy/models/models.rb +16 -0
- data/lib/galaxy/models/planet.rb +181 -0
- data/lib/galaxy/models/product.rb +84 -0
- data/lib/galaxy/models/race.rb +112 -0
- data/lib/galaxy/models/route.rb +60 -0
- data/lib/galaxy/order.rb +24 -0
- data/lib/galaxy/report.rb +176 -0
- data/lib/galaxy/section.rb +226 -0
- data/lib/galaxy/utils.rb +109 -0
- data/lib/galaxy/virtual_base.rb +165 -0
- data/spec/spec_helper.rb +9 -0
- data/test/test_helper.rb +4 -0
- data/test/unit/models_test.rb +1469 -0
- data/test/unit/report_test.rb +187 -0
- data/test/unit/utils_test.rb +421 -0
- data/test/unit/virtual_base_test.rb +224 -0
- metadata +123 -0
data/.document
ADDED
data/.gitignore
ADDED
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" fullCmd="build" taksId="build" /><RakeTask description="Check that runtime and development dependencies are installed" fullCmd="check_dependencies" taksId="check_dependencies" /><RakeGroup description="" fullCmd="" taksId="check_dependencies"><RakeTask description="Check that development dependencies are installed" fullCmd="check_dependencies:development" taksId="development" /><RakeTask description="Check that runtime dependencies are installed" fullCmd="check_dependencies:runtime" taksId="runtime" /></RakeGroup><RakeTask description="Remove rcov products for rcov" fullCmd="clobber_rcov" taksId="clobber_rcov" /><RakeTask description="Remove rdoc products" fullCmd="clobber_rdoc" taksId="clobber_rdoc" /><RakeTask description="Run Cucumber features" fullCmd="features" taksId="features" /><RakeGroup description="" fullCmd="" taksId="gemcutter"><RakeTask description="Release gem to Gemcutter" fullCmd="gemcutter:release" taksId="release" /></RakeGroup><RakeTask description="Generate and validates gemspec" fullCmd="gemspec" taksId="gemspec" /><RakeGroup description="" fullCmd="" taksId="gemspec"><RakeTask description="Display the gemspec for debugging purposes" fullCmd="gemspec:debug" taksId="debug" /><RakeTask description="Generates the gemspec, using version from VERSION" fullCmd="gemspec:generate" taksId="generate" /><RakeTask description="Validates the gemspec" fullCmd="gemspec:validate" taksId="validate" /></RakeGroup><RakeGroup description="" fullCmd="" taksId="git"><RakeTask description="Tag a release in Git" fullCmd="git:release" taksId="release" /></RakeGroup><RakeGroup description="" fullCmd="" taksId="github"><RakeTask description="Release Gem to GitHub" fullCmd="github:release" taksId="release" /></RakeGroup><RakeTask description="Install gem using sudo" fullCmd="install" taksId="install" /><RakeTask description="Run specs using RCov" fullCmd="rcov" taksId="rcov" /><RakeTask description="Build the rdoc HTML Files" fullCmd="rdoc" taksId="rdoc" /><RakeTask description="Release gem" fullCmd="release" taksId="release" /><RakeTask description="Force a rebuild of the RDOC files" fullCmd="rerdoc" taksId="rerdoc" /><RakeTask description="Run specs" fullCmd="spec" taksId="spec" /><RakeTask description="Displays the current version" fullCmd="version" taksId="version" /><RakeGroup description="" fullCmd="" taksId="version"><RakeGroup description="" fullCmd="" taksId="bump"><RakeTask description="Bump the gemspec by a major version" fullCmd="version:bump:major" taksId="major" /><RakeTask description="Bump the gemspec by a minor version" fullCmd="version:bump:minor" taksId="minor" /><RakeTask description="Bump the gemspec by a patch version" fullCmd="version:bump:patch" taksId="patch" /></RakeGroup><RakeTask description="Writes out an explicit version" fullCmd="version:write" taksId="write" /></RakeGroup><RakeTask description="" fullCmd="clobber" taksId="clobber" /><RakeTask description="" fullCmd="default" taksId="default" /><RakeTask description="" fullCmd="rdoc/index.html" taksId="rdoc/index.html" /><RakeTask description="" fullCmd="file" taksId="file" /><RakeTask description="" fullCmd="version_required" taksId="version_required" /></RakeGroup></Settings>
|
data/.idea/encodings.xml
ADDED
data/.idea/galaxy.iml
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<module type="RUBY_MODULE" version="4">
|
3
|
+
<component name="NewModuleRootManager">
|
4
|
+
<content url="file://$MODULE_DIR$" />
|
5
|
+
<orderEntry type="inheritedJdk" />
|
6
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
7
|
+
<orderEntry type="library" scope="PROVIDED" name="[gem] cucumber (v0.6.1, C:/Dev/ruby/lib/ruby/gems/1.9.1/gems/cucumber-0.6.1)" level="application" />
|
8
|
+
</component>
|
9
|
+
</module>
|
10
|
+
|
data/.idea/misc.xml
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="DependencyValidationManager">
|
4
|
+
<option name="SKIP_IMPORT_STATEMENTS" value="false" />
|
5
|
+
</component>
|
6
|
+
<component name="ProjectDetails">
|
7
|
+
<option name="projectName" value="galaxy" />
|
8
|
+
</component>
|
9
|
+
<component name="ProjectRootManager" version="2" project-jdk-name="Ruby SDK (C:\Dev\ruby\bin\ruby.exe)" project-jdk-type="RUBY_SDK" />
|
10
|
+
<component name="SvnBranchConfigurationManager">
|
11
|
+
<option name="mySupportsUserInfoFilter" value="true" />
|
12
|
+
</component>
|
13
|
+
</project>
|
14
|
+
|
data/.idea/modules.xml
ADDED
data/.idea/vcs.xml
ADDED
data/.idea/workspace.xml
ADDED
@@ -0,0 +1,486 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="ChangeListManager" verified="true">
|
4
|
+
<list default="true" readonly="true" id="07f02dab-5e53-4a1b-90d8-f691a557de23" name="Default" comment="" />
|
5
|
+
<ignored path=".idea/workspace.xml" />
|
6
|
+
<ignored path="galaxy.iws" />
|
7
|
+
<option name="TRACKING_ENABLED" value="true" />
|
8
|
+
<option name="SHOW_DIALOG" value="false" />
|
9
|
+
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
10
|
+
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
11
|
+
<option name="LAST_RESOLUTION" value="IGNORE" />
|
12
|
+
</component>
|
13
|
+
<component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
|
14
|
+
<component name="CreatePatchCommitExecutor">
|
15
|
+
<option name="PATCH_PATH" value="" />
|
16
|
+
<option name="REVERSE_PATCH" value="false" />
|
17
|
+
</component>
|
18
|
+
<component name="DaemonCodeAnalyzer">
|
19
|
+
<disable_hints />
|
20
|
+
</component>
|
21
|
+
<component name="FavoritesManager">
|
22
|
+
<favorites_list name="galaxy" />
|
23
|
+
</component>
|
24
|
+
<component name="FileColors" enabled="true" enabledForTabs="true" />
|
25
|
+
<component name="FileEditorManager">
|
26
|
+
<leaf>
|
27
|
+
<file leaf-file-name="models_test.rb" pinned="false" current="false" current-in-tab="false">
|
28
|
+
<entry file="file://$PROJECT_DIR$/test/unit/models_test.rb">
|
29
|
+
<provider selected="true" editor-type-id="text-editor">
|
30
|
+
<state line="12" column="21" selection-start="346" selection-end="346" vertical-scroll-proportion="0.0">
|
31
|
+
<folding />
|
32
|
+
</state>
|
33
|
+
</provider>
|
34
|
+
</entry>
|
35
|
+
</file>
|
36
|
+
<file leaf-file-name="report.rb" pinned="false" current="false" current-in-tab="false">
|
37
|
+
<entry file="file://$PROJECT_DIR$/lib/galaxy/report.rb">
|
38
|
+
<provider selected="true" editor-type-id="text-editor">
|
39
|
+
<state line="7" column="18" selection-start="267" selection-end="267" vertical-scroll-proportion="0.0">
|
40
|
+
<folding />
|
41
|
+
</state>
|
42
|
+
</provider>
|
43
|
+
</entry>
|
44
|
+
</file>
|
45
|
+
<file leaf-file-name="utils_test.rb" pinned="false" current="false" current-in-tab="false">
|
46
|
+
<entry file="file://$PROJECT_DIR$/test/unit/utils_test.rb">
|
47
|
+
<provider selected="true" editor-type-id="text-editor">
|
48
|
+
<state line="1" column="1" selection-start="70" selection-end="70" vertical-scroll-proportion="0.0">
|
49
|
+
<folding />
|
50
|
+
</state>
|
51
|
+
</provider>
|
52
|
+
</entry>
|
53
|
+
</file>
|
54
|
+
<file leaf-file-name="virtual_base_test.rb" pinned="false" current="false" current-in-tab="false">
|
55
|
+
<entry file="file://$PROJECT_DIR$/test/unit/virtual_base_test.rb">
|
56
|
+
<provider selected="true" editor-type-id="text-editor">
|
57
|
+
<state line="2" column="1" selection-start="95" selection-end="95" vertical-scroll-proportion="0.0">
|
58
|
+
<folding />
|
59
|
+
</state>
|
60
|
+
</provider>
|
61
|
+
</entry>
|
62
|
+
</file>
|
63
|
+
<file leaf-file-name="Rakefile" pinned="false" current="false" current-in-tab="false">
|
64
|
+
<entry file="file://$PROJECT_DIR$/Rakefile">
|
65
|
+
<provider selected="true" editor-type-id="text-editor">
|
66
|
+
<state line="23" column="21" selection-start="805" selection-end="805" vertical-scroll-proportion="0.0">
|
67
|
+
<folding />
|
68
|
+
</state>
|
69
|
+
</provider>
|
70
|
+
</entry>
|
71
|
+
</file>
|
72
|
+
<file leaf-file-name="spec_helper.rb" pinned="false" current="false" current-in-tab="false">
|
73
|
+
<entry file="file://$PROJECT_DIR$/spec/spec_helper.rb">
|
74
|
+
<provider selected="true" editor-type-id="text-editor">
|
75
|
+
<state line="1" column="0" selection-start="43" selection-end="43" vertical-scroll-proportion="0.0">
|
76
|
+
<folding />
|
77
|
+
</state>
|
78
|
+
</provider>
|
79
|
+
</entry>
|
80
|
+
</file>
|
81
|
+
<file leaf-file-name="spec_helper.rb" pinned="false" current="false" current-in-tab="false">
|
82
|
+
<entry file="file://$PROJECT_DIR$/test/spec_helper.rb">
|
83
|
+
<provider selected="true" editor-type-id="text-editor">
|
84
|
+
<state line="9" column="0" selection-start="213" selection-end="213" vertical-scroll-proportion="0.0">
|
85
|
+
<folding />
|
86
|
+
</state>
|
87
|
+
</provider>
|
88
|
+
</entry>
|
89
|
+
</file>
|
90
|
+
<file leaf-file-name="test_helper.rb" pinned="false" current="false" current-in-tab="false">
|
91
|
+
<entry file="file://$PROJECT_DIR$/test/test_helper.rb">
|
92
|
+
<provider selected="true" editor-type-id="text-editor">
|
93
|
+
<state line="4" column="0" selection-start="152" selection-end="152" vertical-scroll-proportion="0.0">
|
94
|
+
<folding />
|
95
|
+
</state>
|
96
|
+
</provider>
|
97
|
+
</entry>
|
98
|
+
</file>
|
99
|
+
<file leaf-file-name="README.rdoc" pinned="false" current="true" current-in-tab="true">
|
100
|
+
<entry file="file://$PROJECT_DIR$/README.rdoc">
|
101
|
+
<provider selected="true" editor-type-id="text-editor">
|
102
|
+
<state line="23" column="86" selection-start="1002" selection-end="1002" vertical-scroll-proportion="0.30997303">
|
103
|
+
<folding />
|
104
|
+
</state>
|
105
|
+
</provider>
|
106
|
+
</entry>
|
107
|
+
</file>
|
108
|
+
</leaf>
|
109
|
+
</component>
|
110
|
+
<component name="FindManager">
|
111
|
+
<FindUsagesManager>
|
112
|
+
<setting name="OPEN_NEW_TAB" value="false" />
|
113
|
+
</FindUsagesManager>
|
114
|
+
</component>
|
115
|
+
<component name="IdeDocumentHistory">
|
116
|
+
<option name="changedFiles">
|
117
|
+
<list>
|
118
|
+
<option value="$PROJECT_DIR$/lib/galaxy/models/group.rb" />
|
119
|
+
<option value="$PROJECT_DIR$/lib/galaxy/models/planet.rb" />
|
120
|
+
<option value="$PROJECT_DIR$/lib/galaxy/models/product.rb" />
|
121
|
+
<option value="$PROJECT_DIR$/lib/galaxy/models/race.rb" />
|
122
|
+
<option value="$PROJECT_DIR$/lib/galaxy/models/route.rb" />
|
123
|
+
<option value="$PROJECT_DIR$/lib/galaxy/report.rb" />
|
124
|
+
<option value="$PROJECT_DIR$/lib/galaxy/section.rb" />
|
125
|
+
<option value="$PROJECT_DIR$/test/unit/report_test.rb" />
|
126
|
+
<option value="$PROJECT_DIR$/test/unit/utils_test.rb" />
|
127
|
+
<option value="$PROJECT_DIR$/test/unit/virtual_base_test.rb" />
|
128
|
+
<option value="$PROJECT_DIR$/test/unit/models_test.rb" />
|
129
|
+
<option value="$PROJECT_DIR$/Rakefile" />
|
130
|
+
<option value="$PROJECT_DIR$/test/spec_helper.rb" />
|
131
|
+
<option value="$PROJECT_DIR$/spec/galaxy/report_spec.rb" />
|
132
|
+
<option value="$PROJECT_DIR$/test/test_helper.rb" />
|
133
|
+
<option value="$PROJECT_DIR$/README.rdoc" />
|
134
|
+
</list>
|
135
|
+
</option>
|
136
|
+
</component>
|
137
|
+
<component name="ProjectLevelVcsManager">
|
138
|
+
<OptionsSetting value="true" id="Add" />
|
139
|
+
<OptionsSetting value="true" id="Remove" />
|
140
|
+
<OptionsSetting value="true" id="Checkout" />
|
141
|
+
<OptionsSetting value="true" id="Update" />
|
142
|
+
<OptionsSetting value="true" id="Status" />
|
143
|
+
<OptionsSetting value="true" id="Edit" />
|
144
|
+
<ConfirmationsSetting value="0" id="Add" />
|
145
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
146
|
+
</component>
|
147
|
+
<component name="ProjectReloadState">
|
148
|
+
<option name="STATE" value="0" />
|
149
|
+
</component>
|
150
|
+
<component name="ProjectView">
|
151
|
+
<navigator currentView="ProjectPane" proportions="" version="1" splitterProportion="0.5">
|
152
|
+
<flattenPackages />
|
153
|
+
<showMembers />
|
154
|
+
<showModules />
|
155
|
+
<showLibraryContents />
|
156
|
+
<hideEmptyPackages />
|
157
|
+
<abbreviatePackageNames />
|
158
|
+
<autoscrollToSource />
|
159
|
+
<autoscrollFromSource />
|
160
|
+
<sortByType />
|
161
|
+
</navigator>
|
162
|
+
<panes>
|
163
|
+
<pane id="Scope" />
|
164
|
+
<pane id="Favorites" />
|
165
|
+
<pane id="ProjectPane">
|
166
|
+
<subPane>
|
167
|
+
<PATH>
|
168
|
+
<PATH_ELEMENT>
|
169
|
+
<option name="myItemId" value="galaxy" />
|
170
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
171
|
+
</PATH_ELEMENT>
|
172
|
+
</PATH>
|
173
|
+
<PATH>
|
174
|
+
<PATH_ELEMENT>
|
175
|
+
<option name="myItemId" value="galaxy" />
|
176
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
177
|
+
</PATH_ELEMENT>
|
178
|
+
<PATH_ELEMENT>
|
179
|
+
<option name="myItemId" value="galaxy" />
|
180
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
181
|
+
</PATH_ELEMENT>
|
182
|
+
</PATH>
|
183
|
+
<PATH>
|
184
|
+
<PATH_ELEMENT>
|
185
|
+
<option name="myItemId" value="galaxy" />
|
186
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
187
|
+
</PATH_ELEMENT>
|
188
|
+
<PATH_ELEMENT>
|
189
|
+
<option name="myItemId" value="galaxy" />
|
190
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
191
|
+
</PATH_ELEMENT>
|
192
|
+
<PATH_ELEMENT>
|
193
|
+
<option name="myItemId" value="spec" />
|
194
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
195
|
+
</PATH_ELEMENT>
|
196
|
+
</PATH>
|
197
|
+
<PATH>
|
198
|
+
<PATH_ELEMENT>
|
199
|
+
<option name="myItemId" value="galaxy" />
|
200
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
201
|
+
</PATH_ELEMENT>
|
202
|
+
<PATH_ELEMENT>
|
203
|
+
<option name="myItemId" value="galaxy" />
|
204
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
205
|
+
</PATH_ELEMENT>
|
206
|
+
<PATH_ELEMENT>
|
207
|
+
<option name="myItemId" value="lib" />
|
208
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
209
|
+
</PATH_ELEMENT>
|
210
|
+
</PATH>
|
211
|
+
<PATH>
|
212
|
+
<PATH_ELEMENT>
|
213
|
+
<option name="myItemId" value="galaxy" />
|
214
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
215
|
+
</PATH_ELEMENT>
|
216
|
+
<PATH_ELEMENT>
|
217
|
+
<option name="myItemId" value="galaxy" />
|
218
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
219
|
+
</PATH_ELEMENT>
|
220
|
+
<PATH_ELEMENT>
|
221
|
+
<option name="myItemId" value="lib" />
|
222
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
223
|
+
</PATH_ELEMENT>
|
224
|
+
<PATH_ELEMENT>
|
225
|
+
<option name="myItemId" value="galaxy" />
|
226
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
227
|
+
</PATH_ELEMENT>
|
228
|
+
</PATH>
|
229
|
+
<PATH>
|
230
|
+
<PATH_ELEMENT>
|
231
|
+
<option name="myItemId" value="galaxy" />
|
232
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
233
|
+
</PATH_ELEMENT>
|
234
|
+
<PATH_ELEMENT>
|
235
|
+
<option name="myItemId" value="galaxy" />
|
236
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
237
|
+
</PATH_ELEMENT>
|
238
|
+
<PATH_ELEMENT>
|
239
|
+
<option name="myItemId" value="doc" />
|
240
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
241
|
+
</PATH_ELEMENT>
|
242
|
+
</PATH>
|
243
|
+
</subPane>
|
244
|
+
</pane>
|
245
|
+
</panes>
|
246
|
+
</component>
|
247
|
+
<component name="PropertiesComponent">
|
248
|
+
<property name="recentsLimit" value="5" />
|
249
|
+
</component>
|
250
|
+
<component name="RunManager" selected="Test::Unit/Shoulda.models_test">
|
251
|
+
<configuration default="false" name="models_test" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda" temporary="true">
|
252
|
+
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
253
|
+
<module name="galaxy" />
|
254
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e STDOUT.sync=true;STDERR.sync=true;load($0=ARGV.shift)" />
|
255
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$PROJECT_DIR$/test/unit" />
|
256
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
257
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
258
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
259
|
+
<envs />
|
260
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
261
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="$PROJECT_DIR$/test/unit/models_test.rb" />
|
262
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_CLASS_NAME" VALUE="" />
|
263
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
264
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
|
265
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
266
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="INHERITANCE_CHECK_DISABLED" VALUE="false" />
|
267
|
+
<RunnerSettings RunnerId="RubyRunner" />
|
268
|
+
<ConfigurationWrapper RunnerId="RubyRunner" />
|
269
|
+
<method />
|
270
|
+
</configuration>
|
271
|
+
<configuration default="true" type="RubyRunConfigurationType" factoryName="Ruby">
|
272
|
+
<module name="" />
|
273
|
+
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e STDOUT.sync=true;STDERR.sync=true;load($0=ARGV.shift)" />
|
274
|
+
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="" />
|
275
|
+
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
276
|
+
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
277
|
+
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
278
|
+
<envs />
|
279
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="" />
|
280
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
281
|
+
<method />
|
282
|
+
</configuration>
|
283
|
+
<configuration default="true" type="CucumberRunConfigurationType" factoryName="Cucumber">
|
284
|
+
<predefined_log_file id="RUBY_CUCUMBER" enabled="true" />
|
285
|
+
<module name="" />
|
286
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e STDOUT.sync=true;STDERR.sync=true;load($0=ARGV.shift)" />
|
287
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
288
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
289
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
290
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
291
|
+
<envs />
|
292
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*.feature" />
|
293
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
294
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
295
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
296
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TAGS_FILTER" VALUE="" />
|
297
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_NAME_FILTER" VALUE="" />
|
298
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_ARGS" VALUE="--color" />
|
299
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
300
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="VERBOSE_OPTION" VALUE="false" />
|
301
|
+
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
302
|
+
<method />
|
303
|
+
</configuration>
|
304
|
+
<configuration default="true" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda">
|
305
|
+
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
306
|
+
<module name="" />
|
307
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e STDOUT.sync=true;STDERR.sync=true;load($0=ARGV.shift)" />
|
308
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
309
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
310
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
311
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
312
|
+
<envs />
|
313
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
314
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
315
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_CLASS_NAME" VALUE="" />
|
316
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
317
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
|
318
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
319
|
+
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="INHERITANCE_CHECK_DISABLED" VALUE="false" />
|
320
|
+
<method />
|
321
|
+
</configuration>
|
322
|
+
<list size="1">
|
323
|
+
<item index="0" class="java.lang.String" itemvalue="Test::Unit/Shoulda.models_test" />
|
324
|
+
</list>
|
325
|
+
</component>
|
326
|
+
<component name="ShelveChangesManager" show_recycled="false" />
|
327
|
+
<component name="SvnConfiguration">
|
328
|
+
<option name="USER" value="" />
|
329
|
+
<option name="PASSWORD" value="" />
|
330
|
+
<option name="LAST_MERGED_REVISION" />
|
331
|
+
<option name="UPDATE_RUN_STATUS" value="false" />
|
332
|
+
<option name="MERGE_DRY_RUN" value="false" />
|
333
|
+
<option name="MERGE_DIFF_USE_ANCESTRY" value="true" />
|
334
|
+
<option name="UPDATE_LOCK_ON_DEMAND" value="false" />
|
335
|
+
<option name="IGNORE_SPACES_IN_MERGE" value="false" />
|
336
|
+
<option name="DETECT_NESTED_COPIES" value="false" />
|
337
|
+
<option name="IGNORE_SPACES_IN_ANNOTATE" value="true" />
|
338
|
+
<option name="SHOW_MERGE_SOURCES_IN_ANNOTATE" value="true" />
|
339
|
+
<configuration useDefault="true">C:\Documents and Settings\bezrodnykh\Application Data\Subversion</configuration>
|
340
|
+
<myIsUseDefaultProxy>false</myIsUseDefaultProxy>
|
341
|
+
<supportedVersion>125</supportedVersion>
|
342
|
+
</component>
|
343
|
+
<component name="ToolWindowManager">
|
344
|
+
<frame x="574" y="-17" width="1354" height="1212" extended-state="0" />
|
345
|
+
<editor active="true" />
|
346
|
+
<layout>
|
347
|
+
<window_info id="Changes" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
348
|
+
<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" />
|
349
|
+
<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" />
|
350
|
+
<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="-1" side_tool="false" content_ui="tabs" />
|
351
|
+
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.24962853" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
352
|
+
<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" />
|
353
|
+
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
354
|
+
<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="-1" side_tool="false" content_ui="tabs" />
|
355
|
+
<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" />
|
356
|
+
<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" />
|
357
|
+
<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" />
|
358
|
+
<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" />
|
359
|
+
<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" />
|
360
|
+
<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" />
|
361
|
+
<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" />
|
362
|
+
</layout>
|
363
|
+
</component>
|
364
|
+
<component name="VcsManagerConfiguration">
|
365
|
+
<option name="OFFER_MOVE_TO_ANOTHER_CHANGELIST_ON_PARTIAL_COMMIT" value="true" />
|
366
|
+
<option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="true" />
|
367
|
+
<option name="PERFORM_UPDATE_IN_BACKGROUND" value="true" />
|
368
|
+
<option name="PERFORM_COMMIT_IN_BACKGROUND" value="true" />
|
369
|
+
<option name="PERFORM_EDIT_IN_BACKGROUND" value="true" />
|
370
|
+
<option name="PERFORM_CHECKOUT_IN_BACKGROUND" value="true" />
|
371
|
+
<option name="PERFORM_ADD_REMOVE_IN_BACKGROUND" value="true" />
|
372
|
+
<option name="PERFORM_ROLLBACK_IN_BACKGROUND" value="false" />
|
373
|
+
<option name="CHECK_LOCALLY_CHANGED_CONFLICTS_IN_BACKGROUND" value="true" />
|
374
|
+
<option name="FORCE_NON_EMPTY_COMMENT" value="false" />
|
375
|
+
<option name="LAST_COMMIT_MESSAGE" />
|
376
|
+
<option name="MAKE_NEW_CHANGELIST_ACTIVE" value="true" />
|
377
|
+
<option name="OPTIMIZE_IMPORTS_BEFORE_PROJECT_COMMIT" value="false" />
|
378
|
+
<option name="CHECK_FILES_UP_TO_DATE_BEFORE_COMMIT" value="false" />
|
379
|
+
<option name="REFORMAT_BEFORE_PROJECT_COMMIT" value="false" />
|
380
|
+
<option name="REFORMAT_BEFORE_FILE_COMMIT" value="false" />
|
381
|
+
<option name="FILE_HISTORY_DIALOG_COMMENTS_SPLITTER_PROPORTION" value="0.8" />
|
382
|
+
<option name="FILE_HISTORY_DIALOG_SPLITTER_PROPORTION" value="0.5" />
|
383
|
+
<option name="ACTIVE_VCS_NAME" />
|
384
|
+
<option name="UPDATE_GROUP_BY_PACKAGES" value="false" />
|
385
|
+
<option name="UPDATE_GROUP_BY_CHANGELIST" value="false" />
|
386
|
+
<option name="SHOW_FILE_HISTORY_AS_TREE" value="false" />
|
387
|
+
<option name="FILE_HISTORY_SPLITTER_PROPORTION" value="0.6" />
|
388
|
+
</component>
|
389
|
+
<component name="XDebuggerManager">
|
390
|
+
<breakpoint-manager />
|
391
|
+
</component>
|
392
|
+
<component name="editorHistoryManager">
|
393
|
+
<entry file="file://$PROJECT_DIR$/lib/galaxy/utils.rb">
|
394
|
+
<provider selected="true" editor-type-id="text-editor">
|
395
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
396
|
+
<folding />
|
397
|
+
</state>
|
398
|
+
</provider>
|
399
|
+
</entry>
|
400
|
+
<entry file="file://$PROJECT_DIR$/lib/galaxy/virtual_base.rb">
|
401
|
+
<provider selected="true" editor-type-id="text-editor">
|
402
|
+
<state line="0" column="61" selection-start="19" selection-end="19" vertical-scroll-proportion="0.0">
|
403
|
+
<folding />
|
404
|
+
</state>
|
405
|
+
</provider>
|
406
|
+
</entry>
|
407
|
+
<entry file="file://$PROJECT_DIR$/lib/galaxy/section.rb">
|
408
|
+
<provider selected="true" editor-type-id="text-editor">
|
409
|
+
<state line="1" column="1" selection-start="31" selection-end="31" vertical-scroll-proportion="95.08">
|
410
|
+
<folding />
|
411
|
+
</state>
|
412
|
+
</provider>
|
413
|
+
</entry>
|
414
|
+
<entry file="file://$PROJECT_DIR$/test/unit/report_test.rb">
|
415
|
+
<provider selected="true" editor-type-id="text-editor">
|
416
|
+
<state line="1" column="1" selection-start="70" selection-end="70" vertical-scroll-proportion="0.0">
|
417
|
+
<folding />
|
418
|
+
</state>
|
419
|
+
</provider>
|
420
|
+
</entry>
|
421
|
+
<entry file="file://$PROJECT_DIR$/test/unit/utils_test.rb">
|
422
|
+
<provider selected="true" editor-type-id="text-editor">
|
423
|
+
<state line="1" column="1" selection-start="70" selection-end="70" vertical-scroll-proportion="0.0">
|
424
|
+
<folding />
|
425
|
+
</state>
|
426
|
+
</provider>
|
427
|
+
</entry>
|
428
|
+
<entry file="file://$PROJECT_DIR$/test/unit/virtual_base_test.rb">
|
429
|
+
<provider selected="true" editor-type-id="text-editor">
|
430
|
+
<state line="2" column="1" selection-start="95" selection-end="95" vertical-scroll-proportion="0.0">
|
431
|
+
<folding />
|
432
|
+
</state>
|
433
|
+
</provider>
|
434
|
+
</entry>
|
435
|
+
<entry file="file://$PROJECT_DIR$/Rakefile">
|
436
|
+
<provider selected="true" editor-type-id="text-editor">
|
437
|
+
<state line="23" column="21" selection-start="805" selection-end="805" vertical-scroll-proportion="0.0">
|
438
|
+
<folding />
|
439
|
+
</state>
|
440
|
+
</provider>
|
441
|
+
</entry>
|
442
|
+
<entry file="file://$PROJECT_DIR$/test/unit/models_test.rb">
|
443
|
+
<provider selected="true" editor-type-id="text-editor">
|
444
|
+
<state line="12" column="21" selection-start="346" selection-end="346" vertical-scroll-proportion="0.0">
|
445
|
+
<folding />
|
446
|
+
</state>
|
447
|
+
</provider>
|
448
|
+
</entry>
|
449
|
+
<entry file="file://$PROJECT_DIR$/spec/spec_helper.rb">
|
450
|
+
<provider selected="true" editor-type-id="text-editor">
|
451
|
+
<state line="1" column="0" selection-start="43" selection-end="43" vertical-scroll-proportion="0.0">
|
452
|
+
<folding />
|
453
|
+
</state>
|
454
|
+
</provider>
|
455
|
+
</entry>
|
456
|
+
<entry file="file://$PROJECT_DIR$/lib/galaxy/report.rb">
|
457
|
+
<provider selected="true" editor-type-id="text-editor">
|
458
|
+
<state line="7" column="18" selection-start="267" selection-end="267" vertical-scroll-proportion="0.0">
|
459
|
+
<folding />
|
460
|
+
</state>
|
461
|
+
</provider>
|
462
|
+
</entry>
|
463
|
+
<entry file="file://$PROJECT_DIR$/test/spec_helper.rb">
|
464
|
+
<provider selected="true" editor-type-id="text-editor">
|
465
|
+
<state line="9" column="0" selection-start="213" selection-end="213" vertical-scroll-proportion="0.0">
|
466
|
+
<folding />
|
467
|
+
</state>
|
468
|
+
</provider>
|
469
|
+
</entry>
|
470
|
+
<entry file="file://$PROJECT_DIR$/test/test_helper.rb">
|
471
|
+
<provider selected="true" editor-type-id="text-editor">
|
472
|
+
<state line="4" column="0" selection-start="152" selection-end="152" vertical-scroll-proportion="0.0">
|
473
|
+
<folding />
|
474
|
+
</state>
|
475
|
+
</provider>
|
476
|
+
</entry>
|
477
|
+
<entry file="file://$PROJECT_DIR$/README.rdoc">
|
478
|
+
<provider selected="true" editor-type-id="text-editor">
|
479
|
+
<state line="23" column="86" selection-start="1002" selection-end="1002" vertical-scroll-proportion="0.30997303">
|
480
|
+
<folding />
|
481
|
+
</state>
|
482
|
+
</provider>
|
483
|
+
</entry>
|
484
|
+
</component>
|
485
|
+
</project>
|
486
|
+
|