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