aquarium 0.4.3 → 0.4.4
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +322 -247
- data/README +11 -9
- data/Rakefile +22 -12
- data/UPGRADE +49 -43
- data/examples/aspect_design_example.rb +17 -14
- data/examples/design_by_contract_example.rb +14 -10
- data/examples/exception_wrapping_example.rb +5 -3
- data/examples/introductions_example.rb +2 -1
- data/examples/method_missing_example.rb +14 -13
- data/examples/method_tracing_example.rb +20 -16
- data/examples/reusable_aspect_hack_example.rb +8 -5
- data/lib/aquarium/aspects/exclusion_handler.rb +3 -3
- data/lib/aquarium/version.rb +1 -1
- data/rake_tasks/verify_rcov.rake +1 -1
- data/spec/aquarium/aspects/concurrent_aspects_spec.rb +41 -41
- data/spec/aquarium/aspects/join_point_spec.rb +5 -5
- data/spec/aquarium/aspects/pointcut_spec.rb +4 -1
- data/spec/aquarium/finders/type_finder_with_descendents_and_ancestors_spec.rb +4 -1
- metadata +3 -9
- data/Aquarium-IDEA.ipr +0 -252
- data/Aquarium-IDEA.iws +0 -493
- data/Aquarium.ipr +0 -253
- data/Aquarium.iws +0 -624
- data/ParseTreePlay.rb +0 -25
- data/TODO.rb +0 -186
data/Aquarium.ipr
DELETED
@@ -1,253 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<project relativePaths="false" version="4">
|
3
|
-
<component name="AntConfiguration">
|
4
|
-
<defaultAnt bundledAnt="true" />
|
5
|
-
</component>
|
6
|
-
<component name="BuildJarProjectSettings">
|
7
|
-
<option name="BUILD_JARS_ON_MAKE" value="false" />
|
8
|
-
</component>
|
9
|
-
<component name="CodeStyleProjectProfileManger">
|
10
|
-
<option name="PROJECT_PROFILE" />
|
11
|
-
<option name="USE_PROJECT_LEVEL_SETTINGS" value="false" />
|
12
|
-
</component>
|
13
|
-
<component name="CodeStyleSettingsManager">
|
14
|
-
<option name="PER_PROJECT_SETTINGS" />
|
15
|
-
<option name="USE_PER_PROJECT_SETTINGS" value="false" />
|
16
|
-
</component>
|
17
|
-
<component name="CompilerConfiguration">
|
18
|
-
<option name="DEFAULT_COMPILER" value="Javac" />
|
19
|
-
<option name="DEPLOY_AFTER_MAKE" value="0" />
|
20
|
-
<resourceExtensions>
|
21
|
-
<entry name=".+\.(properties|xml|html|dtd|tld)" />
|
22
|
-
<entry name=".+\.(gif|png|jpeg|jpg)" />
|
23
|
-
</resourceExtensions>
|
24
|
-
<wildcardResourcePatterns>
|
25
|
-
<entry name="?*.properties" />
|
26
|
-
<entry name="?*.xml" />
|
27
|
-
<entry name="?*.gif" />
|
28
|
-
<entry name="?*.png" />
|
29
|
-
<entry name="?*.jpeg" />
|
30
|
-
<entry name="?*.jpg" />
|
31
|
-
<entry name="?*.html" />
|
32
|
-
<entry name="?*.dtd" />
|
33
|
-
<entry name="?*.tld" />
|
34
|
-
</wildcardResourcePatterns>
|
35
|
-
</component>
|
36
|
-
<component name="DependenciesAnalyzeManager">
|
37
|
-
<option name="myForwardDirection" value="false" />
|
38
|
-
</component>
|
39
|
-
<component name="DependencyValidationManager">
|
40
|
-
<option name="SKIP_IMPORT_STATEMENTS" value="false" />
|
41
|
-
</component>
|
42
|
-
<component name="EclipseCompilerSettings">
|
43
|
-
<option name="DEBUGGING_INFO" value="true" />
|
44
|
-
<option name="GENERATE_NO_WARNINGS" value="true" />
|
45
|
-
<option name="DEPRECATION" value="false" />
|
46
|
-
<option name="ADDITIONAL_OPTIONS_STRING" value="" />
|
47
|
-
<option name="MAXIMUM_HEAP_SIZE" value="128" />
|
48
|
-
</component>
|
49
|
-
<component name="EclipseEmbeddedCompilerSettings">
|
50
|
-
<option name="DEBUGGING_INFO" value="true" />
|
51
|
-
<option name="GENERATE_NO_WARNINGS" value="true" />
|
52
|
-
<option name="DEPRECATION" value="false" />
|
53
|
-
<option name="ADDITIONAL_OPTIONS_STRING" value="" />
|
54
|
-
<option name="MAXIMUM_HEAP_SIZE" value="128" />
|
55
|
-
</component>
|
56
|
-
<component name="EntryPointsManager">
|
57
|
-
<entry_points version="2.0" />
|
58
|
-
</component>
|
59
|
-
<component name="IdProvider" IDEtalkID="53EEFD48C8B1B7B0962C7EE8DFDEF59E" />
|
60
|
-
<component name="InspectionProjectProfileManager">
|
61
|
-
<option name="PROJECT_PROFILE" value="Project Default" />
|
62
|
-
<option name="USE_PROJECT_LEVEL_SETTINGS" value="false" />
|
63
|
-
<scopes />
|
64
|
-
<profiles>
|
65
|
-
<profile version="1.0" is_locked="false">
|
66
|
-
<option name="myName" value="Project Default" />
|
67
|
-
<option name="myLocal" value="false" />
|
68
|
-
</profile>
|
69
|
-
</profiles>
|
70
|
-
<list size="0" />
|
71
|
-
</component>
|
72
|
-
<component name="JavacSettings">
|
73
|
-
<option name="DEBUGGING_INFO" value="true" />
|
74
|
-
<option name="GENERATE_NO_WARNINGS" value="false" />
|
75
|
-
<option name="DEPRECATION" value="true" />
|
76
|
-
<option name="ADDITIONAL_OPTIONS_STRING" value="" />
|
77
|
-
<option name="MAXIMUM_HEAP_SIZE" value="128" />
|
78
|
-
</component>
|
79
|
-
<component name="JavadocGenerationManager">
|
80
|
-
<option name="OUTPUT_DIRECTORY" />
|
81
|
-
<option name="OPTION_SCOPE" value="protected" />
|
82
|
-
<option name="OPTION_HIERARCHY" value="true" />
|
83
|
-
<option name="OPTION_NAVIGATOR" value="true" />
|
84
|
-
<option name="OPTION_INDEX" value="true" />
|
85
|
-
<option name="OPTION_SEPARATE_INDEX" value="true" />
|
86
|
-
<option name="OPTION_DOCUMENT_TAG_USE" value="false" />
|
87
|
-
<option name="OPTION_DOCUMENT_TAG_AUTHOR" value="false" />
|
88
|
-
<option name="OPTION_DOCUMENT_TAG_VERSION" value="false" />
|
89
|
-
<option name="OPTION_DOCUMENT_TAG_DEPRECATED" value="true" />
|
90
|
-
<option name="OPTION_DEPRECATED_LIST" value="true" />
|
91
|
-
<option name="OTHER_OPTIONS" value="" />
|
92
|
-
<option name="HEAP_SIZE" />
|
93
|
-
<option name="LOCALE" />
|
94
|
-
<option name="OPEN_IN_BROWSER" value="true" />
|
95
|
-
</component>
|
96
|
-
<component name="JikesSettings">
|
97
|
-
<option name="JIKES_PATH" value="" />
|
98
|
-
<option name="DEBUGGING_INFO" value="true" />
|
99
|
-
<option name="DEPRECATION" value="true" />
|
100
|
-
<option name="GENERATE_NO_WARNINGS" value="false" />
|
101
|
-
<option name="IS_EMACS_ERRORS_MODE" value="true" />
|
102
|
-
<option name="ADDITIONAL_OPTIONS_STRING" value="" />
|
103
|
-
</component>
|
104
|
-
<component name="Palette2">
|
105
|
-
<group name="Swing">
|
106
|
-
<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">
|
107
|
-
<default-constraints vsize-policy="1" hsize-policy="6" anchor="0" fill="1" />
|
108
|
-
</item>
|
109
|
-
<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">
|
110
|
-
<default-constraints vsize-policy="6" hsize-policy="1" anchor="0" fill="2" />
|
111
|
-
</item>
|
112
|
-
<item class="javax.swing.JPanel" icon="/com/intellij/uiDesigner/icons/panel.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
113
|
-
<default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3" />
|
114
|
-
</item>
|
115
|
-
<item class="javax.swing.JScrollPane" icon="/com/intellij/uiDesigner/icons/scrollPane.png" removable="false" auto-create-binding="false" can-attach-label="true">
|
116
|
-
<default-constraints vsize-policy="7" hsize-policy="7" anchor="0" fill="3" />
|
117
|
-
</item>
|
118
|
-
<item class="javax.swing.JButton" icon="/com/intellij/uiDesigner/icons/button.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
119
|
-
<default-constraints vsize-policy="0" hsize-policy="3" anchor="0" fill="1" />
|
120
|
-
<initial-values>
|
121
|
-
<property name="text" value="Button" />
|
122
|
-
</initial-values>
|
123
|
-
</item>
|
124
|
-
<item class="javax.swing.JRadioButton" icon="/com/intellij/uiDesigner/icons/radioButton.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
125
|
-
<default-constraints vsize-policy="0" hsize-policy="3" anchor="8" fill="0" />
|
126
|
-
<initial-values>
|
127
|
-
<property name="text" value="RadioButton" />
|
128
|
-
</initial-values>
|
129
|
-
</item>
|
130
|
-
<item class="javax.swing.JCheckBox" icon="/com/intellij/uiDesigner/icons/checkBox.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
131
|
-
<default-constraints vsize-policy="0" hsize-policy="3" anchor="8" fill="0" />
|
132
|
-
<initial-values>
|
133
|
-
<property name="text" value="CheckBox" />
|
134
|
-
</initial-values>
|
135
|
-
</item>
|
136
|
-
<item class="javax.swing.JLabel" icon="/com/intellij/uiDesigner/icons/label.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
137
|
-
<default-constraints vsize-policy="0" hsize-policy="0" anchor="8" fill="0" />
|
138
|
-
<initial-values>
|
139
|
-
<property name="text" value="Label" />
|
140
|
-
</initial-values>
|
141
|
-
</item>
|
142
|
-
<item class="javax.swing.JTextField" icon="/com/intellij/uiDesigner/icons/textField.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
143
|
-
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
|
144
|
-
<preferred-size width="150" height="-1" />
|
145
|
-
</default-constraints>
|
146
|
-
</item>
|
147
|
-
<item class="javax.swing.JPasswordField" icon="/com/intellij/uiDesigner/icons/passwordField.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
148
|
-
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
|
149
|
-
<preferred-size width="150" height="-1" />
|
150
|
-
</default-constraints>
|
151
|
-
</item>
|
152
|
-
<item class="javax.swing.JFormattedTextField" icon="/com/intellij/uiDesigner/icons/formattedTextField.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
153
|
-
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
|
154
|
-
<preferred-size width="150" height="-1" />
|
155
|
-
</default-constraints>
|
156
|
-
</item>
|
157
|
-
<item class="javax.swing.JTextArea" icon="/com/intellij/uiDesigner/icons/textArea.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
158
|
-
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
159
|
-
<preferred-size width="150" height="50" />
|
160
|
-
</default-constraints>
|
161
|
-
</item>
|
162
|
-
<item class="javax.swing.JTextPane" icon="/com/intellij/uiDesigner/icons/textPane.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
163
|
-
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
164
|
-
<preferred-size width="150" height="50" />
|
165
|
-
</default-constraints>
|
166
|
-
</item>
|
167
|
-
<item class="javax.swing.JEditorPane" icon="/com/intellij/uiDesigner/icons/editorPane.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
168
|
-
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
169
|
-
<preferred-size width="150" height="50" />
|
170
|
-
</default-constraints>
|
171
|
-
</item>
|
172
|
-
<item class="javax.swing.JComboBox" icon="/com/intellij/uiDesigner/icons/comboBox.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
173
|
-
<default-constraints vsize-policy="0" hsize-policy="2" anchor="8" fill="1" />
|
174
|
-
</item>
|
175
|
-
<item class="javax.swing.JTable" icon="/com/intellij/uiDesigner/icons/table.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
176
|
-
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
177
|
-
<preferred-size width="150" height="50" />
|
178
|
-
</default-constraints>
|
179
|
-
</item>
|
180
|
-
<item class="javax.swing.JList" icon="/com/intellij/uiDesigner/icons/list.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
181
|
-
<default-constraints vsize-policy="6" hsize-policy="2" anchor="0" fill="3">
|
182
|
-
<preferred-size width="150" height="50" />
|
183
|
-
</default-constraints>
|
184
|
-
</item>
|
185
|
-
<item class="javax.swing.JTree" icon="/com/intellij/uiDesigner/icons/tree.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
186
|
-
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
187
|
-
<preferred-size width="150" height="50" />
|
188
|
-
</default-constraints>
|
189
|
-
</item>
|
190
|
-
<item class="javax.swing.JTabbedPane" icon="/com/intellij/uiDesigner/icons/tabbedPane.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
191
|
-
<default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3">
|
192
|
-
<preferred-size width="200" height="200" />
|
193
|
-
</default-constraints>
|
194
|
-
</item>
|
195
|
-
<item class="javax.swing.JSplitPane" icon="/com/intellij/uiDesigner/icons/splitPane.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
196
|
-
<default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3">
|
197
|
-
<preferred-size width="200" height="200" />
|
198
|
-
</default-constraints>
|
199
|
-
</item>
|
200
|
-
<item class="javax.swing.JSpinner" icon="/com/intellij/uiDesigner/icons/spinner.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
201
|
-
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1" />
|
202
|
-
</item>
|
203
|
-
<item class="javax.swing.JSlider" icon="/com/intellij/uiDesigner/icons/slider.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
204
|
-
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1" />
|
205
|
-
</item>
|
206
|
-
<item class="javax.swing.JSeparator" icon="/com/intellij/uiDesigner/icons/separator.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
207
|
-
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3" />
|
208
|
-
</item>
|
209
|
-
<item class="javax.swing.JProgressBar" icon="/com/intellij/uiDesigner/icons/progressbar.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
210
|
-
<default-constraints vsize-policy="0" hsize-policy="6" anchor="0" fill="1" />
|
211
|
-
</item>
|
212
|
-
<item class="javax.swing.JToolBar" icon="/com/intellij/uiDesigner/icons/toolbar.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
213
|
-
<default-constraints vsize-policy="0" hsize-policy="6" anchor="0" fill="1">
|
214
|
-
<preferred-size width="-1" height="20" />
|
215
|
-
</default-constraints>
|
216
|
-
</item>
|
217
|
-
<item class="javax.swing.JToolBar$Separator" icon="/com/intellij/uiDesigner/icons/toolbarSeparator.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
218
|
-
<default-constraints vsize-policy="0" hsize-policy="0" anchor="0" fill="1" />
|
219
|
-
</item>
|
220
|
-
<item class="javax.swing.JScrollBar" icon="/com/intellij/uiDesigner/icons/scrollbar.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
221
|
-
<default-constraints vsize-policy="6" hsize-policy="0" anchor="0" fill="2" />
|
222
|
-
</item>
|
223
|
-
</group>
|
224
|
-
</component>
|
225
|
-
<component name="ProjectFileVersion" converted="true" />
|
226
|
-
<component name="ProjectModuleManager">
|
227
|
-
<modules>
|
228
|
-
<module fileurl="file://$PROJECT_DIR$/aquarium.iml" filepath="$PROJECT_DIR$/aquarium.iml" />
|
229
|
-
</modules>
|
230
|
-
</component>
|
231
|
-
<component name="ProjectRootManager" version="2" assert-keyword="true" jdk-15="true" project-jdk-name="JRuby SDK 1.8.6 (1)" project-jdk-type="JRUBY_SDK">
|
232
|
-
<output url="file://$PROJECT_DIR$/out" />
|
233
|
-
</component>
|
234
|
-
<component name="ResourceManagerContainer">
|
235
|
-
<option name="myResourceBundles">
|
236
|
-
<value>
|
237
|
-
<list size="0" />
|
238
|
-
</value>
|
239
|
-
</option>
|
240
|
-
</component>
|
241
|
-
<component name="RmicSettings">
|
242
|
-
<option name="IS_EANABLED" value="false" />
|
243
|
-
<option name="DEBUGGING_INFO" value="true" />
|
244
|
-
<option name="GENERATE_NO_WARNINGS" value="false" />
|
245
|
-
<option name="GENERATE_IIOP_STUBS" value="false" />
|
246
|
-
<option name="ADDITIONAL_OPTIONS_STRING" value="" />
|
247
|
-
</component>
|
248
|
-
<component name="VcsDirectoryMappings">
|
249
|
-
<mapping directory="" vcs="svn" />
|
250
|
-
</component>
|
251
|
-
<component name="WebServicesPlugin" addRequiredLibraries="true" />
|
252
|
-
</project>
|
253
|
-
|
data/Aquarium.iws
DELETED
@@ -1,624 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<project relativePaths="false" version="4">
|
3
|
-
<component name="AnalysisUIOptions">
|
4
|
-
<option name="ANALYZE_TEST_SOURCES" value="false" />
|
5
|
-
<option name="SCOPE_TYPE" value="4" />
|
6
|
-
<option name="CUSTOM_SCOPE_NAME" value="Project Files" />
|
7
|
-
</component>
|
8
|
-
<component name="CCaseConfig">
|
9
|
-
<option name="checkoutReserved" value="false" />
|
10
|
-
<option name="markExternalChangeAsUpToDate" value="true" />
|
11
|
-
<option name="checkInUseHijack" value="true" />
|
12
|
-
<option name="useUcmModel" value="true" />
|
13
|
-
<option name="isOffline" value="false" />
|
14
|
-
<option name="synchOutside" value="false" />
|
15
|
-
<option name="isHistoryResticted" value="true" />
|
16
|
-
<option name="useIdenticalSwitch" value="true" />
|
17
|
-
<option name="synchActivitiesOnRefresh" value="true" />
|
18
|
-
<option name="lastScr" value="" />
|
19
|
-
<option name="scrTextFileName" value="" />
|
20
|
-
<option name="historyRevisionsNumber" value="4" />
|
21
|
-
</component>
|
22
|
-
<component name="ChangeListManager">
|
23
|
-
<list default="true" name="Default" comment="" />
|
24
|
-
<ignored path="Aquarium.iws" />
|
25
|
-
<ignored path=".idea/workspace.xml" />
|
26
|
-
</component>
|
27
|
-
<component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
|
28
|
-
<component name="Commander">
|
29
|
-
<leftPanel />
|
30
|
-
<rightPanel />
|
31
|
-
<splitter proportion="0.5" />
|
32
|
-
</component>
|
33
|
-
<component name="CreatePatchCommitExecutor">
|
34
|
-
<option name="PATCH_PATH" value="" />
|
35
|
-
<option name="REVERSE_PATCH" value="false" />
|
36
|
-
</component>
|
37
|
-
<component name="DaemonCodeAnalyzer">
|
38
|
-
<disable_hints />
|
39
|
-
</component>
|
40
|
-
<component name="DebuggerManager">
|
41
|
-
<breakpoint_any>
|
42
|
-
<breakpoint>
|
43
|
-
<option name="NOTIFY_CAUGHT" value="true" />
|
44
|
-
<option name="NOTIFY_UNCAUGHT" value="true" />
|
45
|
-
<option name="ENABLED" value="false" />
|
46
|
-
<option name="LOG_ENABLED" value="false" />
|
47
|
-
<option name="LOG_EXPRESSION_ENABLED" value="false" />
|
48
|
-
<option name="SUSPEND_POLICY" value="SuspendAll" />
|
49
|
-
<option name="COUNT_FILTER_ENABLED" value="false" />
|
50
|
-
<option name="COUNT_FILTER" value="0" />
|
51
|
-
<option name="CONDITION_ENABLED" value="false" />
|
52
|
-
<option name="CLASS_FILTERS_ENABLED" value="false" />
|
53
|
-
<option name="INSTANCE_FILTERS_ENABLED" value="false" />
|
54
|
-
<option name="CONDITION" value="" />
|
55
|
-
<option name="LOG_MESSAGE" value="" />
|
56
|
-
</breakpoint>
|
57
|
-
<breakpoint>
|
58
|
-
<option name="NOTIFY_CAUGHT" value="true" />
|
59
|
-
<option name="NOTIFY_UNCAUGHT" value="true" />
|
60
|
-
<option name="ENABLED" value="false" />
|
61
|
-
<option name="LOG_ENABLED" value="false" />
|
62
|
-
<option name="LOG_EXPRESSION_ENABLED" value="false" />
|
63
|
-
<option name="SUSPEND_POLICY" value="SuspendAll" />
|
64
|
-
<option name="COUNT_FILTER_ENABLED" value="false" />
|
65
|
-
<option name="COUNT_FILTER" value="0" />
|
66
|
-
<option name="CONDITION_ENABLED" value="false" />
|
67
|
-
<option name="CLASS_FILTERS_ENABLED" value="false" />
|
68
|
-
<option name="INSTANCE_FILTERS_ENABLED" value="false" />
|
69
|
-
<option name="CONDITION" value="" />
|
70
|
-
<option name="LOG_MESSAGE" value="" />
|
71
|
-
</breakpoint>
|
72
|
-
</breakpoint_any>
|
73
|
-
<breakpoint_rules />
|
74
|
-
<ui_properties />
|
75
|
-
</component>
|
76
|
-
<component name="DynamicManagerImpl">
|
77
|
-
<option name="containingClasses">
|
78
|
-
<map />
|
79
|
-
</option>
|
80
|
-
</component>
|
81
|
-
<component name="ErrorTreeViewConfiguration">
|
82
|
-
<option name="IS_AUTOSCROLL_TO_SOURCE" value="false" />
|
83
|
-
<option name="HIDE_WARNINGS" value="false" />
|
84
|
-
</component>
|
85
|
-
<component name="FavoritesManager">
|
86
|
-
<favorites_list name="Aquarium" />
|
87
|
-
</component>
|
88
|
-
<component name="FileEditorManager">
|
89
|
-
<leaf>
|
90
|
-
<file leaf-file-name="advice.rb" pinned="false" current="true" current-in-tab="true">
|
91
|
-
<entry file="file://$PROJECT_DIR$/lib/aquarium/aspects/advice.rb">
|
92
|
-
<provider selected="true" editor-type-id="text-editor">
|
93
|
-
<state line="2" column="34" selection-start="108" selection-end="108" vertical-scroll-proportion="0.03907204">
|
94
|
-
<folding />
|
95
|
-
</state>
|
96
|
-
</provider>
|
97
|
-
</entry>
|
98
|
-
</file>
|
99
|
-
</leaf>
|
100
|
-
</component>
|
101
|
-
<component name="FindManager">
|
102
|
-
<FindUsagesManager>
|
103
|
-
<setting name="OPEN_NEW_TAB" value="false" />
|
104
|
-
</FindUsagesManager>
|
105
|
-
</component>
|
106
|
-
<component name="HierarchyBrowserManager">
|
107
|
-
<option name="IS_AUTOSCROLL_TO_SOURCE" value="false" />
|
108
|
-
<option name="SORT_ALPHABETICALLY" value="false" />
|
109
|
-
<option name="HIDE_CLASSES_WHERE_METHOD_NOT_IMPLEMENTED" value="false" />
|
110
|
-
</component>
|
111
|
-
<component name="ModuleEditorState">
|
112
|
-
<option name="LAST_EDITED_MODULE_NAME" />
|
113
|
-
<option name="LAST_EDITED_TAB_NAME" />
|
114
|
-
</component>
|
115
|
-
<component name="ProjectLevelVcsManager">
|
116
|
-
<OptionsSetting value="true" id="Add" />
|
117
|
-
<OptionsSetting value="true" id="Remove" />
|
118
|
-
<OptionsSetting value="true" id="Checkout" />
|
119
|
-
<OptionsSetting value="true" id="Update" />
|
120
|
-
<OptionsSetting value="true" id="Status" />
|
121
|
-
<OptionsSetting value="true" id="Edit" />
|
122
|
-
<OptionsSetting value="true" id="Undo Check Out" />
|
123
|
-
<OptionsSetting value="true" id="Get Latest Version" />
|
124
|
-
<ConfirmationsSetting value="0" id="Add" />
|
125
|
-
<ConfirmationsSetting value="0" id="Remove" />
|
126
|
-
</component>
|
127
|
-
<component name="ProjectPane">
|
128
|
-
<subPane>
|
129
|
-
<PATH>
|
130
|
-
<PATH_ELEMENT>
|
131
|
-
<option name="myItemId" value="Aquarium" />
|
132
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
133
|
-
</PATH_ELEMENT>
|
134
|
-
<PATH_ELEMENT>
|
135
|
-
<option name="myItemId" value="aquarium" />
|
136
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewModuleNode" />
|
137
|
-
</PATH_ELEMENT>
|
138
|
-
<PATH_ELEMENT>
|
139
|
-
<option name="myItemId" value="Libraries" />
|
140
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.LibraryGroupNode" />
|
141
|
-
</PATH_ELEMENT>
|
142
|
-
<PATH_ELEMENT>
|
143
|
-
<option name="myItemId" value="< Ruby SDK 1.8.6 >" />
|
144
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.NamedLibraryElementNode" />
|
145
|
-
</PATH_ELEMENT>
|
146
|
-
</PATH>
|
147
|
-
<PATH>
|
148
|
-
<PATH_ELEMENT>
|
149
|
-
<option name="myItemId" value="Aquarium" />
|
150
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
151
|
-
</PATH_ELEMENT>
|
152
|
-
<PATH_ELEMENT>
|
153
|
-
<option name="myItemId" value="aquarium" />
|
154
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewModuleNode" />
|
155
|
-
</PATH_ELEMENT>
|
156
|
-
<PATH_ELEMENT>
|
157
|
-
<option name="myItemId" value="PsiDirectory:/Users/deanwampler/projects/ruby/aquarium/aquarium-svn/trunk/aquarium" />
|
158
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
159
|
-
</PATH_ELEMENT>
|
160
|
-
</PATH>
|
161
|
-
<PATH>
|
162
|
-
<PATH_ELEMENT>
|
163
|
-
<option name="myItemId" value="Aquarium" />
|
164
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
165
|
-
</PATH_ELEMENT>
|
166
|
-
<PATH_ELEMENT>
|
167
|
-
<option name="myItemId" value="aquarium" />
|
168
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewModuleNode" />
|
169
|
-
</PATH_ELEMENT>
|
170
|
-
<PATH_ELEMENT>
|
171
|
-
<option name="myItemId" value="PsiDirectory:/Users/deanwampler/projects/ruby/aquarium/aquarium-svn/trunk/aquarium" />
|
172
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
173
|
-
</PATH_ELEMENT>
|
174
|
-
<PATH_ELEMENT>
|
175
|
-
<option name="myItemId" value="PsiDirectory:/Users/deanwampler/projects/ruby/aquarium/aquarium-svn/trunk/aquarium/spec" />
|
176
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
177
|
-
</PATH_ELEMENT>
|
178
|
-
<PATH_ELEMENT>
|
179
|
-
<option name="myItemId" value="PsiDirectory:/Users/deanwampler/projects/ruby/aquarium/aquarium-svn/trunk/aquarium/spec/aquarium" />
|
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="Aquarium" />
|
186
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
187
|
-
</PATH_ELEMENT>
|
188
|
-
<PATH_ELEMENT>
|
189
|
-
<option name="myItemId" value="aquarium" />
|
190
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewModuleNode" />
|
191
|
-
</PATH_ELEMENT>
|
192
|
-
<PATH_ELEMENT>
|
193
|
-
<option name="myItemId" value="PsiDirectory:/Users/deanwampler/projects/ruby/aquarium/aquarium-svn/trunk/aquarium" />
|
194
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
195
|
-
</PATH_ELEMENT>
|
196
|
-
<PATH_ELEMENT>
|
197
|
-
<option name="myItemId" value="PsiDirectory:/Users/deanwampler/projects/ruby/aquarium/aquarium-svn/trunk/aquarium/spec" />
|
198
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
199
|
-
</PATH_ELEMENT>
|
200
|
-
<PATH_ELEMENT>
|
201
|
-
<option name="myItemId" value="PsiDirectory:/Users/deanwampler/projects/ruby/aquarium/aquarium-svn/trunk/aquarium/spec/aquarium" />
|
202
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
203
|
-
</PATH_ELEMENT>
|
204
|
-
<PATH_ELEMENT>
|
205
|
-
<option name="myItemId" value="PsiDirectory:/Users/deanwampler/projects/ruby/aquarium/aquarium-svn/trunk/aquarium/spec/aquarium/aspects" />
|
206
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
207
|
-
</PATH_ELEMENT>
|
208
|
-
</PATH>
|
209
|
-
<PATH>
|
210
|
-
<PATH_ELEMENT>
|
211
|
-
<option name="myItemId" value="Aquarium" />
|
212
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
213
|
-
</PATH_ELEMENT>
|
214
|
-
<PATH_ELEMENT>
|
215
|
-
<option name="myItemId" value="aquarium" />
|
216
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewModuleNode" />
|
217
|
-
</PATH_ELEMENT>
|
218
|
-
<PATH_ELEMENT>
|
219
|
-
<option name="myItemId" value="PsiDirectory:/Users/deanwampler/projects/ruby/aquarium/aquarium-svn/trunk/aquarium" />
|
220
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
221
|
-
</PATH_ELEMENT>
|
222
|
-
<PATH_ELEMENT>
|
223
|
-
<option name="myItemId" value="PsiDirectory:/Users/deanwampler/projects/ruby/aquarium/aquarium-svn/trunk/aquarium/lib" />
|
224
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
225
|
-
</PATH_ELEMENT>
|
226
|
-
</PATH>
|
227
|
-
<PATH>
|
228
|
-
<PATH_ELEMENT>
|
229
|
-
<option name="myItemId" value="Aquarium" />
|
230
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
231
|
-
</PATH_ELEMENT>
|
232
|
-
<PATH_ELEMENT>
|
233
|
-
<option name="myItemId" value="aquarium" />
|
234
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewModuleNode" />
|
235
|
-
</PATH_ELEMENT>
|
236
|
-
<PATH_ELEMENT>
|
237
|
-
<option name="myItemId" value="PsiDirectory:/Users/deanwampler/projects/ruby/aquarium/aquarium-svn/trunk/aquarium" />
|
238
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
239
|
-
</PATH_ELEMENT>
|
240
|
-
<PATH_ELEMENT>
|
241
|
-
<option name="myItemId" value="PsiDirectory:/Users/deanwampler/projects/ruby/aquarium/aquarium-svn/trunk/aquarium/lib" />
|
242
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
243
|
-
</PATH_ELEMENT>
|
244
|
-
<PATH_ELEMENT>
|
245
|
-
<option name="myItemId" value="PsiDirectory:/Users/deanwampler/projects/ruby/aquarium/aquarium-svn/trunk/aquarium/lib/aquarium" />
|
246
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
247
|
-
</PATH_ELEMENT>
|
248
|
-
</PATH>
|
249
|
-
<PATH>
|
250
|
-
<PATH_ELEMENT>
|
251
|
-
<option name="myItemId" value="Aquarium" />
|
252
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
253
|
-
</PATH_ELEMENT>
|
254
|
-
<PATH_ELEMENT>
|
255
|
-
<option name="myItemId" value="aquarium" />
|
256
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewModuleNode" />
|
257
|
-
</PATH_ELEMENT>
|
258
|
-
<PATH_ELEMENT>
|
259
|
-
<option name="myItemId" value="PsiDirectory:/Users/deanwampler/projects/ruby/aquarium/aquarium-svn/trunk/aquarium" />
|
260
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
261
|
-
</PATH_ELEMENT>
|
262
|
-
<PATH_ELEMENT>
|
263
|
-
<option name="myItemId" value="PsiDirectory:/Users/deanwampler/projects/ruby/aquarium/aquarium-svn/trunk/aquarium/lib" />
|
264
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
265
|
-
</PATH_ELEMENT>
|
266
|
-
<PATH_ELEMENT>
|
267
|
-
<option name="myItemId" value="PsiDirectory:/Users/deanwampler/projects/ruby/aquarium/aquarium-svn/trunk/aquarium/lib/aquarium" />
|
268
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
269
|
-
</PATH_ELEMENT>
|
270
|
-
<PATH_ELEMENT>
|
271
|
-
<option name="myItemId" value="PsiDirectory:/Users/deanwampler/projects/ruby/aquarium/aquarium-svn/trunk/aquarium/lib/aquarium/aspects" />
|
272
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
273
|
-
</PATH_ELEMENT>
|
274
|
-
</PATH>
|
275
|
-
</subPane>
|
276
|
-
</component>
|
277
|
-
<component name="ProjectReloadState">
|
278
|
-
<option name="STATE" value="0" />
|
279
|
-
</component>
|
280
|
-
<component name="ProjectView">
|
281
|
-
<navigator currentView="ProjectPane" proportions="0.11111111" version="1" splitterProportion="0.5">
|
282
|
-
<flattenPackages />
|
283
|
-
<showMembers />
|
284
|
-
<showModules />
|
285
|
-
<showLibraryContents />
|
286
|
-
<hideEmptyPackages />
|
287
|
-
<abbreviatePackageNames />
|
288
|
-
<showStructure ProjectPane="false" />
|
289
|
-
<autoscrollToSource />
|
290
|
-
<autoscrollFromSource />
|
291
|
-
<sortByType />
|
292
|
-
</navigator>
|
293
|
-
</component>
|
294
|
-
<component name="PropertiesComponent">
|
295
|
-
<property name="MemberChooser.copyJavadoc" value="false" />
|
296
|
-
<property name="GoToClass.includeLibraries" value="false" />
|
297
|
-
<property name="MemberChooser.showClasses" value="true" />
|
298
|
-
<property name="MemberChooser.sorted" value="false" />
|
299
|
-
<property name="GoToFile.includeJavaFiles" value="false" />
|
300
|
-
<property name="GoToClass.toSaveIncludeLibraries" value="false" />
|
301
|
-
</component>
|
302
|
-
<component name="RubyDocSettings">
|
303
|
-
<RUBY_DOC NAME="DEFAULTS" VALUE="true" />
|
304
|
-
<RUBY_DOC NAME="NUMBER" VALUE="0" />
|
305
|
-
</component>
|
306
|
-
<component name="RunManager" selected="RubyOnRails.profile">
|
307
|
-
<tempConfiguration default="false" name="profile" type="RubyRunConfigurationType" factoryName="Ruby script">
|
308
|
-
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="$PROJECT_DIR$/profile.rb" />
|
309
|
-
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
310
|
-
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e STDOUT.sync=true;STDERR.sync=true;load($0=ARGV.shift)" />
|
311
|
-
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="$PROJECT_DIR$" />
|
312
|
-
<RUBY_RUN_CONFIG NAME="MODULE_NAME" VALUE="aquarium" />
|
313
|
-
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
314
|
-
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
315
|
-
<RunnerSettings RunnerId="Run" />
|
316
|
-
<ConfigurationWrapper RunnerId="Run" />
|
317
|
-
<method>
|
318
|
-
<option name="Make" value="true" />
|
319
|
-
</method>
|
320
|
-
</tempConfiguration>
|
321
|
-
<configuration default="true" type="RubyRunConfigurationType" factoryName="Ruby script">
|
322
|
-
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="" />
|
323
|
-
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
324
|
-
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e STDOUT.sync=true;STDERR.sync=true;load($0=ARGV.shift)" />
|
325
|
-
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="" />
|
326
|
-
<RUBY_RUN_CONFIG NAME="MODULE_NAME" VALUE="" />
|
327
|
-
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
328
|
-
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
329
|
-
</configuration>
|
330
|
-
<configuration default="true" type="Applet" factoryName="Applet">
|
331
|
-
<module name="" />
|
332
|
-
<option name="MAIN_CLASS_NAME" />
|
333
|
-
<option name="HTML_FILE_NAME" />
|
334
|
-
<option name="HTML_USED" value="false" />
|
335
|
-
<option name="WIDTH" value="400" />
|
336
|
-
<option name="HEIGHT" value="300" />
|
337
|
-
<option name="POLICY_FILE" value="$APPLICATION_HOME_DIR$/bin/appletviewer.policy" />
|
338
|
-
<option name="VM_PARAMETERS" />
|
339
|
-
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
|
340
|
-
<option name="ALTERNATIVE_JRE_PATH" />
|
341
|
-
</configuration>
|
342
|
-
<configuration default="true" type="RubyRunConfigurationType" factoryName="RSpec">
|
343
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
344
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
345
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="[none]" />
|
346
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
347
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
348
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="-fs" />
|
349
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e STDOUT.sync=true;STDERR.sync=true;load($0=ARGV.shift)" />
|
350
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
351
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="MODULE_NAME" VALUE="" />
|
352
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
353
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
354
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUN_SPECS_SEPARATELY" VALUE="false" />
|
355
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_COLOURED_OUTPUT_ENABLED" VALUE="true" />
|
356
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
357
|
-
</configuration>
|
358
|
-
<configuration default="true" type="Remote" factoryName="Remote">
|
359
|
-
<option name="USE_SOCKET_TRANSPORT" value="true" />
|
360
|
-
<option name="SERVER_MODE" value="false" />
|
361
|
-
<option name="SHMEM_ADDRESS" value="javadebug" />
|
362
|
-
<option name="HOST" value="localhost" />
|
363
|
-
<option name="PORT" value="5005" />
|
364
|
-
</configuration>
|
365
|
-
<configuration default="true" type="JUnit" factoryName="JUnit" enabled="false" merge="false">
|
366
|
-
<module name="" />
|
367
|
-
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
|
368
|
-
<option name="ALTERNATIVE_JRE_PATH" />
|
369
|
-
<option name="PACKAGE_NAME" />
|
370
|
-
<option name="MAIN_CLASS_NAME" />
|
371
|
-
<option name="METHOD_NAME" />
|
372
|
-
<option name="TEST_OBJECT" value="class" />
|
373
|
-
<option name="VM_PARAMETERS" />
|
374
|
-
<option name="PARAMETERS" />
|
375
|
-
<option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" />
|
376
|
-
<option name="ENV_VARIABLES" />
|
377
|
-
<option name="PASS_PARENT_ENVS" value="true" />
|
378
|
-
<option name="ADDITIONAL_CLASS_PATH" />
|
379
|
-
<option name="TEST_SEARCH_SCOPE">
|
380
|
-
<value defaultName="wholeProject" />
|
381
|
-
</option>
|
382
|
-
<envs />
|
383
|
-
</configuration>
|
384
|
-
<configuration default="true" type="Application" factoryName="Application" enabled="false" merge="false">
|
385
|
-
<option name="MAIN_CLASS_NAME" />
|
386
|
-
<option name="VM_PARAMETERS" />
|
387
|
-
<option name="PROGRAM_PARAMETERS" />
|
388
|
-
<option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" />
|
389
|
-
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
|
390
|
-
<option name="ALTERNATIVE_JRE_PATH" />
|
391
|
-
<option name="ENABLE_SWING_INSPECTOR" value="false" />
|
392
|
-
<option name="ENV_VARIABLES" />
|
393
|
-
<option name="PASS_PARENT_ENVS" value="true" />
|
394
|
-
<module name="" />
|
395
|
-
<envs />
|
396
|
-
</configuration>
|
397
|
-
<list size="1">
|
398
|
-
<item index="0" class="java.lang.String" itemvalue="RubyOnRails.profile" />
|
399
|
-
</list>
|
400
|
-
<configuration name="<template>" type="WebApp" default="true" selected="false">
|
401
|
-
<Host>localhost</Host>
|
402
|
-
<Port>5050</Port>
|
403
|
-
</configuration>
|
404
|
-
</component>
|
405
|
-
<component name="StarteamConfiguration">
|
406
|
-
<option name="SERVER" value="" />
|
407
|
-
<option name="PORT" value="49201" />
|
408
|
-
<option name="USER" value="" />
|
409
|
-
<option name="PASSWORD" value="" />
|
410
|
-
<option name="PROJECT" value="" />
|
411
|
-
<option name="VIEW" value="" />
|
412
|
-
<option name="ALTERNATIVE_WORKING_PATH" value="" />
|
413
|
-
<option name="LOCK_ON_CHECKOUT" value="false" />
|
414
|
-
<option name="UNLOCK_ON_CHECKIN" value="false" />
|
415
|
-
</component>
|
416
|
-
<component name="StructureViewFactory">
|
417
|
-
<option name="AUTOSCROLL_MODE" value="true" />
|
418
|
-
<option name="AUTOSCROLL_FROM_SOURCE" value="false" />
|
419
|
-
<option name="ACTIVE_ACTIONS" value="" />
|
420
|
-
</component>
|
421
|
-
<component name="SvnConfiguration">
|
422
|
-
<option name="USER" value="" />
|
423
|
-
<option name="PASSWORD" value="" />
|
424
|
-
<option name="LAST_MERGED_REVISION" />
|
425
|
-
<option name="UPDATE_RUN_STATUS" value="false" />
|
426
|
-
<option name="UPDATE_RECURSIVELY" value="true" />
|
427
|
-
<option name="MERGE_DRY_RUN" value="false" />
|
428
|
-
<configuration useDefault="true">/Users/deanwampler/.subversion</configuration>
|
429
|
-
</component>
|
430
|
-
<component name="TodoView" selected-index="0">
|
431
|
-
<todo-panel id="selected-file">
|
432
|
-
<are-packages-shown value="false" />
|
433
|
-
<are-modules-shown value="false" />
|
434
|
-
<flatten-packages value="false" />
|
435
|
-
<is-autoscroll-to-source value="true" />
|
436
|
-
</todo-panel>
|
437
|
-
<todo-panel id="all">
|
438
|
-
<are-packages-shown value="true" />
|
439
|
-
<are-modules-shown value="false" />
|
440
|
-
<flatten-packages value="false" />
|
441
|
-
<is-autoscroll-to-source value="true" />
|
442
|
-
</todo-panel>
|
443
|
-
<todo-panel id="default-changelist">
|
444
|
-
<are-packages-shown value="false" />
|
445
|
-
<are-modules-shown value="false" />
|
446
|
-
<flatten-packages value="false" />
|
447
|
-
<is-autoscroll-to-source value="false" />
|
448
|
-
</todo-panel>
|
449
|
-
</component>
|
450
|
-
<component name="ToolWindowManager">
|
451
|
-
<frame x="10" y="22" width="1660" height="1010" extended-state="0" />
|
452
|
-
<editor active="true" />
|
453
|
-
<layout>
|
454
|
-
<window_info id="UI Designer" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" order="3" />
|
455
|
-
<window_info id="IDEtalk" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" order="3" />
|
456
|
-
<window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32881355" order="7" />
|
457
|
-
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.24953446" order="0" />
|
458
|
-
<window_info id="RDoc" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" order="8" />
|
459
|
-
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32919955" order="1" />
|
460
|
-
<window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.24953446" order="1" />
|
461
|
-
<window_info id="Messages" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" order="9" />
|
462
|
-
<window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" order="5" />
|
463
|
-
<window_info id="Module Dependencies" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" order="3" />
|
464
|
-
<window_info id="Dependency Viewer" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32919955" order="10" />
|
465
|
-
<window_info id="Palette" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" order="3" />
|
466
|
-
<window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" order="1" />
|
467
|
-
<window_info id="Maven projects" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" order="3" />
|
468
|
-
<window_info id="Changes" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32919955" order="11" />
|
469
|
-
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32881355" order="2" />
|
470
|
-
<window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" order="2" />
|
471
|
-
<window_info id="Dilbert" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32881355" order="12" />
|
472
|
-
<window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3997517" order="0" />
|
473
|
-
<window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" order="3" />
|
474
|
-
<window_info id="IDEtalk Messages" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" order="13" />
|
475
|
-
<window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" order="14" />
|
476
|
-
<window_info id="Duplicates" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" order="15" />
|
477
|
-
<window_info id="Message" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" order="0" />
|
478
|
-
<window_info id="Web" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" order="2" />
|
479
|
-
<window_info id="EJB" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" order="4" />
|
480
|
-
<window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" order="6" />
|
481
|
-
</layout>
|
482
|
-
</component>
|
483
|
-
<component name="VcsManagerConfiguration">
|
484
|
-
<option name="OFFER_MOVE_TO_ANOTHER_CHANGELIST_ON_PARTIAL_COMMIT" value="true" />
|
485
|
-
<option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="true" />
|
486
|
-
<option name="PERFORM_UPDATE_IN_BACKGROUND" value="false" />
|
487
|
-
<option name="PERFORM_COMMIT_IN_BACKGROUND" value="false" />
|
488
|
-
<option name="PERFORM_EDIT_IN_BACKGROUND" value="true" />
|
489
|
-
<option name="PERFORM_ADD_REMOVE_IN_BACKGROUND" value="true" />
|
490
|
-
<option name="FORCE_NON_EMPTY_COMMENT" value="false" />
|
491
|
-
<option name="LAST_COMMIT_MESSAGE" />
|
492
|
-
<option name="OPTIMIZE_IMPORTS_BEFORE_PROJECT_COMMIT" value="false" />
|
493
|
-
<option name="REFORMAT_BEFORE_PROJECT_COMMIT" value="false" />
|
494
|
-
<option name="REFORMAT_BEFORE_FILE_COMMIT" value="false" />
|
495
|
-
<option name="FILE_HISTORY_DIALOG_COMMENTS_SPLITTER_PROPORTION" value="0.8" />
|
496
|
-
<option name="FILE_HISTORY_DIALOG_SPLITTER_PROPORTION" value="0.5" />
|
497
|
-
<option name="ACTIVE_VCS_NAME" />
|
498
|
-
<option name="UPDATE_GROUP_BY_PACKAGES" value="false" />
|
499
|
-
<option name="UPDATE_GROUP_BY_CHANGELIST" value="false" />
|
500
|
-
<option name="SHOW_FILE_HISTORY_AS_TREE" value="false" />
|
501
|
-
<option name="FILE_HISTORY_SPLITTER_PROPORTION" value="0.6" />
|
502
|
-
</component>
|
503
|
-
<component name="VssConfiguration">
|
504
|
-
<option name="CLIENT_PATH" value="" />
|
505
|
-
<option name="SRCSAFEINI_PATH" value="" />
|
506
|
-
<option name="USER_NAME" value="" />
|
507
|
-
<option name="PWD" value="" />
|
508
|
-
<CheckoutOptions>
|
509
|
-
<option name="COMMENT" value="" />
|
510
|
-
<option name="DO_NOT_GET_LATEST_VERSION" value="false" />
|
511
|
-
<option name="REPLACE_WRITABLE" value="false" />
|
512
|
-
<option name="RECURSIVE" value="false" />
|
513
|
-
</CheckoutOptions>
|
514
|
-
<CheckinOptions>
|
515
|
-
<option name="COMMENT" value="" />
|
516
|
-
<option name="KEEP_CHECKED_OUT" value="false" />
|
517
|
-
<option name="RECURSIVE" value="false" />
|
518
|
-
</CheckinOptions>
|
519
|
-
<AddOptions>
|
520
|
-
<option name="STORE_ONLY_LATEST_VERSION" value="false" />
|
521
|
-
<option name="CHECK_OUT_IMMEDIATELY" value="false" />
|
522
|
-
</AddOptions>
|
523
|
-
<UndocheckoutOptions>
|
524
|
-
<option name="MAKE_WRITABLE" value="false" />
|
525
|
-
<option name="REPLACE_LOCAL_COPY" value="0" />
|
526
|
-
<option name="RECURSIVE" value="false" />
|
527
|
-
</UndocheckoutOptions>
|
528
|
-
<GetOptions>
|
529
|
-
<option name="REPLACE_WRITABLE" value="0" />
|
530
|
-
<option name="MAKE_WRITABLE" value="false" />
|
531
|
-
<option name="ANSWER_NEGATIVELY" value="false" />
|
532
|
-
<option name="ANSWER_POSITIVELY" value="false" />
|
533
|
-
<option name="RECURSIVE" value="false" />
|
534
|
-
<option name="VERSION" />
|
535
|
-
</GetOptions>
|
536
|
-
</component>
|
537
|
-
<component name="antWorkspaceConfiguration">
|
538
|
-
<option name="IS_AUTOSCROLL_TO_SOURCE" value="false" />
|
539
|
-
<option name="FILTER_TARGETS" value="false" />
|
540
|
-
</component>
|
541
|
-
<component name="editorHistoryManager">
|
542
|
-
<entry file="file://$PROJECT_DIR$/lib/aquarium/utils/type_utils.rb">
|
543
|
-
<provider selected="true" editor-type-id="text-editor">
|
544
|
-
<state line="27" column="0" selection-start="905" selection-end="905" vertical-scroll-proportion="0.7912088">
|
545
|
-
<folding />
|
546
|
-
</state>
|
547
|
-
</provider>
|
548
|
-
</entry>
|
549
|
-
<entry file="file://$PROJECT_DIR$/lib/aquarium/extras/design_by_contract.rb">
|
550
|
-
<provider selected="true" editor-type-id="text-editor">
|
551
|
-
<state line="5" column="0" selection-start="412" selection-end="412" vertical-scroll-proportion="0.14652015">
|
552
|
-
<folding />
|
553
|
-
</state>
|
554
|
-
</provider>
|
555
|
-
</entry>
|
556
|
-
<entry file="file://$PROJECT_DIR$/spec/aquarium/aspects/aspect_invocation_spec.rb">
|
557
|
-
<provider selected="true" editor-type-id="text-editor">
|
558
|
-
<state line="11" column="0" selection-start="297" selection-end="297" vertical-scroll-proportion="-1.0244821">
|
559
|
-
<folding />
|
560
|
-
</state>
|
561
|
-
</provider>
|
562
|
-
</entry>
|
563
|
-
<entry file="file://$PROJECT_DIR$/spec/aquarium/aspects/aspect_spec.rb">
|
564
|
-
<provider selected="true" editor-type-id="text-editor">
|
565
|
-
<state line="22" column="20" selection-start="825" selection-end="825" vertical-scroll-proportion="0.38019803">
|
566
|
-
<folding />
|
567
|
-
</state>
|
568
|
-
</provider>
|
569
|
-
</entry>
|
570
|
-
<entry file="file://$PROJECT_DIR$/lib/aquarium/aspects/default_objects_handler.rb">
|
571
|
-
<provider selected="true" editor-type-id="text-editor">
|
572
|
-
<state line="3" column="7" selection-start="59" selection-end="59" vertical-scroll-proportion="0.0">
|
573
|
-
<folding />
|
574
|
-
</state>
|
575
|
-
</provider>
|
576
|
-
</entry>
|
577
|
-
<entry file="file://$PROJECT_DIR$/lib/aquarium/aspects.rb">
|
578
|
-
<provider selected="true" editor-type-id="text-editor">
|
579
|
-
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
580
|
-
<folding />
|
581
|
-
</state>
|
582
|
-
</provider>
|
583
|
-
</entry>
|
584
|
-
<entry file="file://$PROJECT_DIR$/TODO.rb">
|
585
|
-
<provider selected="true" editor-type-id="text-editor">
|
586
|
-
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
587
|
-
<folding />
|
588
|
-
</state>
|
589
|
-
</provider>
|
590
|
-
</entry>
|
591
|
-
<entry file="file://$PROJECT_DIR$/demo1.rb">
|
592
|
-
<provider selected="true" editor-type-id="text-editor">
|
593
|
-
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
594
|
-
<folding />
|
595
|
-
</state>
|
596
|
-
</provider>
|
597
|
-
</entry>
|
598
|
-
<entry file="file://$PROJECT_DIR$/lib/aquarium/aspects/aspect.rb">
|
599
|
-
<provider selected="true" editor-type-id="text-editor">
|
600
|
-
<state line="439" column="8" selection-start="18845" selection-end="18845" vertical-scroll-proportion="0.0">
|
601
|
-
<folding />
|
602
|
-
</state>
|
603
|
-
</provider>
|
604
|
-
</entry>
|
605
|
-
<entry file="file://$PROJECT_DIR$/lib/aquarium/aspects/pointcut.rb">
|
606
|
-
<provider selected="true" editor-type-id="text-editor">
|
607
|
-
<state line="190" column="10" selection-start="10659" selection-end="10659" vertical-scroll-proportion="0.0">
|
608
|
-
<folding />
|
609
|
-
</state>
|
610
|
-
</provider>
|
611
|
-
</entry>
|
612
|
-
<entry file="file://$PROJECT_DIR$/lib/aquarium/aspects/advice.rb">
|
613
|
-
<provider selected="true" editor-type-id="text-editor">
|
614
|
-
<state line="2" column="34" selection-start="108" selection-end="108" vertical-scroll-proportion="0.03907204">
|
615
|
-
<folding />
|
616
|
-
</state>
|
617
|
-
</provider>
|
618
|
-
</entry>
|
619
|
-
</component>
|
620
|
-
<component name="se.expertsystem.intellij.aop.aspectj.AspectJProjectComponent">
|
621
|
-
<setting name="isActivated" value="false" />
|
622
|
-
</component>
|
623
|
-
</project>
|
624
|
-
|