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
@@ -279,7 +279,7 @@ describe JoinPoint, "#dup" do
|
|
279
279
|
end
|
280
280
|
|
281
281
|
describe JoinPoint, "#eql?" do
|
282
|
-
|
282
|
+
before :each do
|
283
283
|
@jp1 = JoinPoint.new :type => Dummy, :method_name => :count
|
284
284
|
@jp2 = JoinPoint.new :type => Dummy, :method_name => :count
|
285
285
|
@jp3 = JoinPoint.new :type => Array, :method_name => :size
|
@@ -313,7 +313,7 @@ describe JoinPoint, "#eql?" do
|
|
313
313
|
end
|
314
314
|
|
315
315
|
describe JoinPoint, "#==" do
|
316
|
-
|
316
|
+
before :each do
|
317
317
|
@jp1 = JoinPoint.new :type => Dummy, :method_name => :count
|
318
318
|
@jp2 = JoinPoint.new :type => Dummy, :method_name => :count
|
319
319
|
@jp3 = JoinPoint.new :type => Array, :method_name => :size
|
@@ -347,7 +347,7 @@ describe JoinPoint, "#==" do
|
|
347
347
|
end
|
348
348
|
|
349
349
|
describe JoinPoint, "#<=>" do
|
350
|
-
|
350
|
+
before :each do
|
351
351
|
@jp1 = JoinPoint.new :type => Dummy, :method_name => :count
|
352
352
|
@jp1nc = JoinPoint.new :type => Dummy, :method_name => :count
|
353
353
|
@jp2 = JoinPoint.new :type => Dummy, :method_name => :count
|
@@ -536,7 +536,7 @@ def do_common_eql_setup
|
|
536
536
|
end
|
537
537
|
|
538
538
|
describe JoinPoint::Context, "#eql?" do
|
539
|
-
|
539
|
+
before :each do
|
540
540
|
do_common_eql_setup
|
541
541
|
end
|
542
542
|
|
@@ -558,7 +558,7 @@ describe JoinPoint::Context, "#eql?" do
|
|
558
558
|
end
|
559
559
|
|
560
560
|
describe JoinPoint::Context, "#==" do
|
561
|
-
|
561
|
+
before :each do
|
562
562
|
do_common_eql_setup
|
563
563
|
end
|
564
564
|
|
@@ -96,7 +96,10 @@ end
|
|
96
96
|
|
97
97
|
def ignored_join_point jp
|
98
98
|
# Ignore any types introduced by RSpec, other Aquarium types, and the "pretty printer" module (which Rake uses?)
|
99
|
-
jp.target_type.name =~ /^Spec/ or
|
99
|
+
jp.target_type.name =~ /^Spec/ or
|
100
|
+
jp.target_type.name =~ /^Aquarium::(Aspects|Extras|Utils|PointcutFinderTestClasses)/ or
|
101
|
+
jp.target_type.name =~ /^PP/ or
|
102
|
+
jp.target_type.name =~ /InstanceExecHelper/
|
100
103
|
end
|
101
104
|
|
102
105
|
describe Pointcut, "methods" do
|
@@ -7,7 +7,10 @@ include Aquarium::Utils
|
|
7
7
|
def purge_actuals actuals
|
8
8
|
# Remove extra stuff inserted by RSpec, Aquarium, and "pretty printer" (rake?), possibly in other specs!
|
9
9
|
actuals.matched_keys.reject do |t2|
|
10
|
-
t2.name.include?("Spec::") or
|
10
|
+
t2.name.include?("Spec::") or
|
11
|
+
t2.name =~ /Aquarium::(Utils|Extras|Examples|Aspects|PointcutFinderTestClasses)/ or
|
12
|
+
t2.name =~ /^PP/ or
|
13
|
+
t2.name =~ /InstanceExecHelper/
|
11
14
|
end
|
12
15
|
end
|
13
16
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aquarium
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aquarium Development Team
|
@@ -9,7 +9,7 @@ autorequire: aquarium
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date:
|
12
|
+
date: 2009-10-03 00:00:00 -05:00
|
13
13
|
default_executable: ""
|
14
14
|
dependencies: []
|
15
15
|
|
@@ -25,18 +25,12 @@ extra_rdoc_files:
|
|
25
25
|
- MIT_LICENSE
|
26
26
|
- UPGRADE
|
27
27
|
files:
|
28
|
-
- Aquarium-IDEA.ipr
|
29
|
-
- Aquarium-IDEA.iws
|
30
|
-
- Aquarium.ipr
|
31
|
-
- Aquarium.iws
|
32
28
|
- CHANGES
|
33
29
|
- EXAMPLES.rd
|
34
30
|
- MIT_LICENSE
|
35
|
-
- ParseTreePlay.rb
|
36
31
|
- Rakefile
|
37
32
|
- README
|
38
33
|
- RELEASE-PLAN
|
39
|
-
- TODO.rb
|
40
34
|
- UPGRADE
|
41
35
|
- lib/aquarium/aspects/advice.rb
|
42
36
|
- lib/aquarium/aspects/aspect.rb
|
@@ -168,6 +162,6 @@ rubyforge_project: aquarium
|
|
168
162
|
rubygems_version: 1.3.0
|
169
163
|
signing_key:
|
170
164
|
specification_version: 2
|
171
|
-
summary: Aquarium-0.4.
|
165
|
+
summary: Aquarium-0.4.4 (r7) - Aspect-Oriented Programming toolkit for Ruby http://aquarium.rubyforge.org
|
172
166
|
test_files: []
|
173
167
|
|
data/Aquarium-IDEA.ipr
DELETED
@@ -1,252 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<project relativePaths="false" version="4">
|
3
|
-
<component name="BuildJarProjectSettings">
|
4
|
-
<option name="BUILD_JARS_ON_MAKE" value="false" />
|
5
|
-
</component>
|
6
|
-
<component name="CodeStyleProjectProfileManger">
|
7
|
-
<option name="PROJECT_PROFILE" />
|
8
|
-
<option name="USE_PROJECT_LEVEL_SETTINGS" value="false" />
|
9
|
-
</component>
|
10
|
-
<component name="CodeStyleSettingsManager">
|
11
|
-
<option name="PER_PROJECT_SETTINGS" />
|
12
|
-
<option name="USE_PER_PROJECT_SETTINGS" value="false" />
|
13
|
-
</component>
|
14
|
-
<component name="CompilerConfiguration">
|
15
|
-
<option name="DEFAULT_COMPILER" value="Javac" />
|
16
|
-
<option name="DEPLOY_AFTER_MAKE" value="0" />
|
17
|
-
<resourceExtensions>
|
18
|
-
<entry name=".+\.(properties|xml|html|dtd|tld)" />
|
19
|
-
<entry name=".+\.(gif|png|jpeg|jpg)" />
|
20
|
-
</resourceExtensions>
|
21
|
-
<wildcardResourcePatterns>
|
22
|
-
<entry name="?*.properties" />
|
23
|
-
<entry name="?*.xml" />
|
24
|
-
<entry name="?*.gif" />
|
25
|
-
<entry name="?*.png" />
|
26
|
-
<entry name="?*.jpeg" />
|
27
|
-
<entry name="?*.jpg" />
|
28
|
-
<entry name="?*.html" />
|
29
|
-
<entry name="?*.dtd" />
|
30
|
-
<entry name="?*.tld" />
|
31
|
-
</wildcardResourcePatterns>
|
32
|
-
</component>
|
33
|
-
<component name="DependenciesAnalyzeManager">
|
34
|
-
<option name="myForwardDirection" value="false" />
|
35
|
-
</component>
|
36
|
-
<component name="DependencyValidationManager">
|
37
|
-
<option name="SKIP_IMPORT_STATEMENTS" value="false" />
|
38
|
-
</component>
|
39
|
-
<component name="EclipseCompilerSettings">
|
40
|
-
<option name="DEBUGGING_INFO" value="true" />
|
41
|
-
<option name="GENERATE_NO_WARNINGS" value="true" />
|
42
|
-
<option name="DEPRECATION" value="false" />
|
43
|
-
<option name="ADDITIONAL_OPTIONS_STRING" value="" />
|
44
|
-
<option name="MAXIMUM_HEAP_SIZE" value="128" />
|
45
|
-
</component>
|
46
|
-
<component name="EclipseEmbeddedCompilerSettings">
|
47
|
-
<option name="DEBUGGING_INFO" value="true" />
|
48
|
-
<option name="GENERATE_NO_WARNINGS" value="true" />
|
49
|
-
<option name="DEPRECATION" value="false" />
|
50
|
-
<option name="ADDITIONAL_OPTIONS_STRING" value="" />
|
51
|
-
<option name="MAXIMUM_HEAP_SIZE" value="128" />
|
52
|
-
</component>
|
53
|
-
<component name="EntryPointsManager">
|
54
|
-
<entry_points version="2.0" />
|
55
|
-
</component>
|
56
|
-
<component name="IdProvider" IDEtalkID="53EEFD48C8B1B7B0962C7EE8DFDEF59E" />
|
57
|
-
<component name="InspectionProjectProfileManager">
|
58
|
-
<option name="PROJECT_PROFILE" value="Project Default" />
|
59
|
-
<option name="USE_PROJECT_LEVEL_SETTINGS" value="false" />
|
60
|
-
<scopes />
|
61
|
-
<profiles>
|
62
|
-
<profile version="1.0" is_locked="false">
|
63
|
-
<option name="myName" value="Project Default" />
|
64
|
-
<option name="myLocal" value="false" />
|
65
|
-
<inspection_tool class="RubyDuckType" level="INFO" enabled="true" />
|
66
|
-
<inspection_tool class="RubyResolve" level="WARNING" enabled="true" />
|
67
|
-
</profile>
|
68
|
-
</profiles>
|
69
|
-
<list size="0" />
|
70
|
-
</component>
|
71
|
-
<component name="JavacSettings">
|
72
|
-
<option name="DEBUGGING_INFO" value="true" />
|
73
|
-
<option name="GENERATE_NO_WARNINGS" value="false" />
|
74
|
-
<option name="DEPRECATION" value="true" />
|
75
|
-
<option name="ADDITIONAL_OPTIONS_STRING" value="" />
|
76
|
-
<option name="MAXIMUM_HEAP_SIZE" value="128" />
|
77
|
-
</component>
|
78
|
-
<component name="JavadocGenerationManager">
|
79
|
-
<option name="OUTPUT_DIRECTORY" />
|
80
|
-
<option name="OPTION_SCOPE" value="protected" />
|
81
|
-
<option name="OPTION_HIERARCHY" value="true" />
|
82
|
-
<option name="OPTION_NAVIGATOR" value="true" />
|
83
|
-
<option name="OPTION_INDEX" value="true" />
|
84
|
-
<option name="OPTION_SEPARATE_INDEX" value="true" />
|
85
|
-
<option name="OPTION_DOCUMENT_TAG_USE" value="false" />
|
86
|
-
<option name="OPTION_DOCUMENT_TAG_AUTHOR" value="false" />
|
87
|
-
<option name="OPTION_DOCUMENT_TAG_VERSION" value="false" />
|
88
|
-
<option name="OPTION_DOCUMENT_TAG_DEPRECATED" value="true" />
|
89
|
-
<option name="OPTION_DEPRECATED_LIST" value="true" />
|
90
|
-
<option name="OTHER_OPTIONS" value="" />
|
91
|
-
<option name="HEAP_SIZE" />
|
92
|
-
<option name="LOCALE" />
|
93
|
-
<option name="OPEN_IN_BROWSER" value="true" />
|
94
|
-
</component>
|
95
|
-
<component name="JikesSettings">
|
96
|
-
<option name="JIKES_PATH" value="" />
|
97
|
-
<option name="DEBUGGING_INFO" value="true" />
|
98
|
-
<option name="DEPRECATION" value="true" />
|
99
|
-
<option name="GENERATE_NO_WARNINGS" value="false" />
|
100
|
-
<option name="IS_EMACS_ERRORS_MODE" value="true" />
|
101
|
-
<option name="ADDITIONAL_OPTIONS_STRING" value="" />
|
102
|
-
</component>
|
103
|
-
<component name="Palette2">
|
104
|
-
<group name="Swing">
|
105
|
-
<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">
|
106
|
-
<default-constraints vsize-policy="1" hsize-policy="6" anchor="0" fill="1" />
|
107
|
-
</item>
|
108
|
-
<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">
|
109
|
-
<default-constraints vsize-policy="6" hsize-policy="1" anchor="0" fill="2" />
|
110
|
-
</item>
|
111
|
-
<item class="javax.swing.JPanel" icon="/com/intellij/uiDesigner/icons/panel.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
112
|
-
<default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3" />
|
113
|
-
</item>
|
114
|
-
<item class="javax.swing.JScrollPane" icon="/com/intellij/uiDesigner/icons/scrollPane.png" removable="false" auto-create-binding="false" can-attach-label="true">
|
115
|
-
<default-constraints vsize-policy="7" hsize-policy="7" anchor="0" fill="3" />
|
116
|
-
</item>
|
117
|
-
<item class="javax.swing.JButton" icon="/com/intellij/uiDesigner/icons/button.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
118
|
-
<default-constraints vsize-policy="0" hsize-policy="3" anchor="0" fill="1" />
|
119
|
-
<initial-values>
|
120
|
-
<property name="text" value="Button" />
|
121
|
-
</initial-values>
|
122
|
-
</item>
|
123
|
-
<item class="javax.swing.JRadioButton" icon="/com/intellij/uiDesigner/icons/radioButton.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
124
|
-
<default-constraints vsize-policy="0" hsize-policy="3" anchor="8" fill="0" />
|
125
|
-
<initial-values>
|
126
|
-
<property name="text" value="RadioButton" />
|
127
|
-
</initial-values>
|
128
|
-
</item>
|
129
|
-
<item class="javax.swing.JCheckBox" icon="/com/intellij/uiDesigner/icons/checkBox.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
130
|
-
<default-constraints vsize-policy="0" hsize-policy="3" anchor="8" fill="0" />
|
131
|
-
<initial-values>
|
132
|
-
<property name="text" value="CheckBox" />
|
133
|
-
</initial-values>
|
134
|
-
</item>
|
135
|
-
<item class="javax.swing.JLabel" icon="/com/intellij/uiDesigner/icons/label.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
136
|
-
<default-constraints vsize-policy="0" hsize-policy="0" anchor="8" fill="0" />
|
137
|
-
<initial-values>
|
138
|
-
<property name="text" value="Label" />
|
139
|
-
</initial-values>
|
140
|
-
</item>
|
141
|
-
<item class="javax.swing.JTextField" icon="/com/intellij/uiDesigner/icons/textField.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
142
|
-
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
|
143
|
-
<preferred-size width="150" height="-1" />
|
144
|
-
</default-constraints>
|
145
|
-
</item>
|
146
|
-
<item class="javax.swing.JPasswordField" icon="/com/intellij/uiDesigner/icons/passwordField.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
147
|
-
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
|
148
|
-
<preferred-size width="150" height="-1" />
|
149
|
-
</default-constraints>
|
150
|
-
</item>
|
151
|
-
<item class="javax.swing.JFormattedTextField" icon="/com/intellij/uiDesigner/icons/formattedTextField.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
152
|
-
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
|
153
|
-
<preferred-size width="150" height="-1" />
|
154
|
-
</default-constraints>
|
155
|
-
</item>
|
156
|
-
<item class="javax.swing.JTextArea" icon="/com/intellij/uiDesigner/icons/textArea.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
157
|
-
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
158
|
-
<preferred-size width="150" height="50" />
|
159
|
-
</default-constraints>
|
160
|
-
</item>
|
161
|
-
<item class="javax.swing.JTextPane" icon="/com/intellij/uiDesigner/icons/textPane.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
162
|
-
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
163
|
-
<preferred-size width="150" height="50" />
|
164
|
-
</default-constraints>
|
165
|
-
</item>
|
166
|
-
<item class="javax.swing.JEditorPane" icon="/com/intellij/uiDesigner/icons/editorPane.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
167
|
-
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
168
|
-
<preferred-size width="150" height="50" />
|
169
|
-
</default-constraints>
|
170
|
-
</item>
|
171
|
-
<item class="javax.swing.JComboBox" icon="/com/intellij/uiDesigner/icons/comboBox.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
172
|
-
<default-constraints vsize-policy="0" hsize-policy="2" anchor="8" fill="1" />
|
173
|
-
</item>
|
174
|
-
<item class="javax.swing.JTable" icon="/com/intellij/uiDesigner/icons/table.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
175
|
-
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
176
|
-
<preferred-size width="150" height="50" />
|
177
|
-
</default-constraints>
|
178
|
-
</item>
|
179
|
-
<item class="javax.swing.JList" icon="/com/intellij/uiDesigner/icons/list.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
180
|
-
<default-constraints vsize-policy="6" hsize-policy="2" anchor="0" fill="3">
|
181
|
-
<preferred-size width="150" height="50" />
|
182
|
-
</default-constraints>
|
183
|
-
</item>
|
184
|
-
<item class="javax.swing.JTree" icon="/com/intellij/uiDesigner/icons/tree.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
185
|
-
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
186
|
-
<preferred-size width="150" height="50" />
|
187
|
-
</default-constraints>
|
188
|
-
</item>
|
189
|
-
<item class="javax.swing.JTabbedPane" icon="/com/intellij/uiDesigner/icons/tabbedPane.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
190
|
-
<default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3">
|
191
|
-
<preferred-size width="200" height="200" />
|
192
|
-
</default-constraints>
|
193
|
-
</item>
|
194
|
-
<item class="javax.swing.JSplitPane" icon="/com/intellij/uiDesigner/icons/splitPane.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
195
|
-
<default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3">
|
196
|
-
<preferred-size width="200" height="200" />
|
197
|
-
</default-constraints>
|
198
|
-
</item>
|
199
|
-
<item class="javax.swing.JSpinner" icon="/com/intellij/uiDesigner/icons/spinner.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
200
|
-
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1" />
|
201
|
-
</item>
|
202
|
-
<item class="javax.swing.JSlider" icon="/com/intellij/uiDesigner/icons/slider.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
203
|
-
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1" />
|
204
|
-
</item>
|
205
|
-
<item class="javax.swing.JSeparator" icon="/com/intellij/uiDesigner/icons/separator.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
206
|
-
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3" />
|
207
|
-
</item>
|
208
|
-
<item class="javax.swing.JProgressBar" icon="/com/intellij/uiDesigner/icons/progressbar.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
209
|
-
<default-constraints vsize-policy="0" hsize-policy="6" anchor="0" fill="1" />
|
210
|
-
</item>
|
211
|
-
<item class="javax.swing.JToolBar" icon="/com/intellij/uiDesigner/icons/toolbar.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
212
|
-
<default-constraints vsize-policy="0" hsize-policy="6" anchor="0" fill="1">
|
213
|
-
<preferred-size width="-1" height="20" />
|
214
|
-
</default-constraints>
|
215
|
-
</item>
|
216
|
-
<item class="javax.swing.JToolBar$Separator" icon="/com/intellij/uiDesigner/icons/toolbarSeparator.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
217
|
-
<default-constraints vsize-policy="0" hsize-policy="0" anchor="0" fill="1" />
|
218
|
-
</item>
|
219
|
-
<item class="javax.swing.JScrollBar" icon="/com/intellij/uiDesigner/icons/scrollbar.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
220
|
-
<default-constraints vsize-policy="6" hsize-policy="0" anchor="0" fill="2" />
|
221
|
-
</item>
|
222
|
-
</group>
|
223
|
-
</component>
|
224
|
-
<component name="ProjectFileVersion" converted="true" />
|
225
|
-
<component name="ProjectModuleManager">
|
226
|
-
<modules>
|
227
|
-
<module fileurl="file://$PROJECT_DIR$/aquarium.iml" filepath="$PROJECT_DIR$/aquarium.iml" />
|
228
|
-
</modules>
|
229
|
-
</component>
|
230
|
-
<component name="ProjectRootManager" version="2" assert-keyword="true" jdk-15="true" project-jdk-name="Ruby SDK 1.8.6" project-jdk-type="RUBY_SDK">
|
231
|
-
<output url="file://$PROJECT_DIR$/out" />
|
232
|
-
</component>
|
233
|
-
<component name="ResourceManagerContainer">
|
234
|
-
<option name="myResourceBundles">
|
235
|
-
<value>
|
236
|
-
<list size="0" />
|
237
|
-
</value>
|
238
|
-
</option>
|
239
|
-
</component>
|
240
|
-
<component name="RmicSettings">
|
241
|
-
<option name="IS_EANABLED" value="false" />
|
242
|
-
<option name="DEBUGGING_INFO" value="true" />
|
243
|
-
<option name="GENERATE_NO_WARNINGS" value="false" />
|
244
|
-
<option name="GENERATE_IIOP_STUBS" value="false" />
|
245
|
-
<option name="ADDITIONAL_OPTIONS_STRING" value="" />
|
246
|
-
</component>
|
247
|
-
<component name="VcsDirectoryMappings">
|
248
|
-
<mapping directory="" vcs="svn" />
|
249
|
-
</component>
|
250
|
-
<component name="WebServicesPlugin" addRequiredLibraries="true" />
|
251
|
-
</project>
|
252
|
-
|
data/Aquarium-IDEA.iws
DELETED
@@ -1,493 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<project relativePaths="false" version="4">
|
3
|
-
<component name="CCaseConfig">
|
4
|
-
<option name="checkoutReserved" value="false" />
|
5
|
-
<option name="markExternalChangeAsUpToDate" value="true" />
|
6
|
-
<option name="checkInUseHijack" value="true" />
|
7
|
-
<option name="useUcmModel" value="true" />
|
8
|
-
<option name="isOffline" value="false" />
|
9
|
-
<option name="synchOutside" value="false" />
|
10
|
-
<option name="isHistoryResticted" value="true" />
|
11
|
-
<option name="useIdenticalSwitch" value="true" />
|
12
|
-
<option name="synchActivitiesOnRefresh" value="true" />
|
13
|
-
<option name="lastScr" value="" />
|
14
|
-
<option name="scrTextFileName" value="" />
|
15
|
-
<option name="historyRevisionsNumber" value="4" />
|
16
|
-
</component>
|
17
|
-
<component name="ChangeListManager">
|
18
|
-
<list default="true" name="Default" comment="" />
|
19
|
-
<ignored path="Aquarium-IDEA.iws" />
|
20
|
-
<ignored path=".idea/workspace.xml" />
|
21
|
-
</component>
|
22
|
-
<component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
|
23
|
-
<component name="Commander">
|
24
|
-
<leftPanel />
|
25
|
-
<rightPanel />
|
26
|
-
<splitter proportion="0.5" />
|
27
|
-
</component>
|
28
|
-
<component name="CreatePatchCommitExecutor">
|
29
|
-
<option name="PATCH_PATH" value="" />
|
30
|
-
<option name="REVERSE_PATCH" value="false" />
|
31
|
-
</component>
|
32
|
-
<component name="DaemonCodeAnalyzer">
|
33
|
-
<disable_hints />
|
34
|
-
</component>
|
35
|
-
<component name="DebuggerManager">
|
36
|
-
<breakpoint_any>
|
37
|
-
<breakpoint>
|
38
|
-
<option name="NOTIFY_CAUGHT" value="true" />
|
39
|
-
<option name="NOTIFY_UNCAUGHT" value="true" />
|
40
|
-
<option name="ENABLED" value="false" />
|
41
|
-
<option name="LOG_ENABLED" value="false" />
|
42
|
-
<option name="LOG_EXPRESSION_ENABLED" value="false" />
|
43
|
-
<option name="SUSPEND_POLICY" value="SuspendAll" />
|
44
|
-
<option name="COUNT_FILTER_ENABLED" value="false" />
|
45
|
-
<option name="COUNT_FILTER" value="0" />
|
46
|
-
<option name="CONDITION_ENABLED" value="false" />
|
47
|
-
<option name="CLASS_FILTERS_ENABLED" value="false" />
|
48
|
-
<option name="INSTANCE_FILTERS_ENABLED" value="false" />
|
49
|
-
<option name="CONDITION" value="" />
|
50
|
-
<option name="LOG_MESSAGE" value="" />
|
51
|
-
</breakpoint>
|
52
|
-
<breakpoint>
|
53
|
-
<option name="NOTIFY_CAUGHT" value="true" />
|
54
|
-
<option name="NOTIFY_UNCAUGHT" value="true" />
|
55
|
-
<option name="ENABLED" value="false" />
|
56
|
-
<option name="LOG_ENABLED" value="false" />
|
57
|
-
<option name="LOG_EXPRESSION_ENABLED" value="false" />
|
58
|
-
<option name="SUSPEND_POLICY" value="SuspendAll" />
|
59
|
-
<option name="COUNT_FILTER_ENABLED" value="false" />
|
60
|
-
<option name="COUNT_FILTER" value="0" />
|
61
|
-
<option name="CONDITION_ENABLED" value="false" />
|
62
|
-
<option name="CLASS_FILTERS_ENABLED" value="false" />
|
63
|
-
<option name="INSTANCE_FILTERS_ENABLED" value="false" />
|
64
|
-
<option name="CONDITION" value="" />
|
65
|
-
<option name="LOG_MESSAGE" value="" />
|
66
|
-
</breakpoint>
|
67
|
-
</breakpoint_any>
|
68
|
-
<breakpoint_rules />
|
69
|
-
<ui_properties />
|
70
|
-
</component>
|
71
|
-
<component name="DynamicManagerImpl">
|
72
|
-
<option name="containingClasses">
|
73
|
-
<map />
|
74
|
-
</option>
|
75
|
-
</component>
|
76
|
-
<component name="ErrorTreeViewConfiguration">
|
77
|
-
<option name="IS_AUTOSCROLL_TO_SOURCE" value="false" />
|
78
|
-
<option name="HIDE_WARNINGS" value="false" />
|
79
|
-
</component>
|
80
|
-
<component name="FavoritesManager">
|
81
|
-
<favorites_list name="Aquarium-IDEA" />
|
82
|
-
</component>
|
83
|
-
<component name="FileEditorManager">
|
84
|
-
<leaf>
|
85
|
-
<file leaf-file-name="aquarium.rb" pinned="false" current="false" current-in-tab="false">
|
86
|
-
<entry file="file://$PROJECT_DIR$/lib/aquarium.rb">
|
87
|
-
<provider selected="true" editor-type-id="text-editor">
|
88
|
-
<state line="4" column="18" selection-start="191" selection-end="192" vertical-scroll-proportion="0.07646356">
|
89
|
-
<folding />
|
90
|
-
</state>
|
91
|
-
</provider>
|
92
|
-
</entry>
|
93
|
-
</file>
|
94
|
-
<file leaf-file-name="aspect.rb" pinned="false" current="false" current-in-tab="false">
|
95
|
-
<entry file="file://$PROJECT_DIR$/lib/aquarium/aspects/aspect.rb">
|
96
|
-
<provider selected="true" editor-type-id="text-editor">
|
97
|
-
<state line="253" column="10" selection-start="11553" selection-end="11553" vertical-scroll-proportion="0.01946472">
|
98
|
-
<folding>
|
99
|
-
<marker date="1210531618000" expanded="true" signature="16696:17751" placeholder=" ... end" />
|
100
|
-
<marker date="1210531618000" expanded="true" signature="17612:17742" placeholder="unless ... end" />
|
101
|
-
<marker date="1210531618000" expanded="true" signature="20578:20715" placeholder=" ... end" />
|
102
|
-
<marker date="1210531618000" expanded="true" signature="20578:20693" placeholder="heredoc ..." />
|
103
|
-
</folding>
|
104
|
-
</state>
|
105
|
-
</provider>
|
106
|
-
</entry>
|
107
|
-
</file>
|
108
|
-
<file leaf-file-name="aspect_invocation_spec.rb" pinned="false" current="true" current-in-tab="true">
|
109
|
-
<entry file="file://$PROJECT_DIR$/spec/aquarium/aspects/aspect_invocation_spec.rb">
|
110
|
-
<provider selected="true" editor-type-id="text-editor">
|
111
|
-
<state line="302" column="7" selection-start="17251" selection-end="17254" vertical-scroll-proportion="0.01946472">
|
112
|
-
<folding />
|
113
|
-
</state>
|
114
|
-
</provider>
|
115
|
-
</entry>
|
116
|
-
</file>
|
117
|
-
<file leaf-file-name="aspect_spec.rb" pinned="false" current="false" current-in-tab="false">
|
118
|
-
<entry file="file://$PROJECT_DIR$/spec/aquarium/aspects/aspect_spec.rb">
|
119
|
-
<provider selected="true" editor-type-id="text-editor">
|
120
|
-
<state line="45" column="59" selection-start="1226" selection-end="1228" vertical-scroll-proportion="0.01946472">
|
121
|
-
<folding />
|
122
|
-
</state>
|
123
|
-
</provider>
|
124
|
-
</entry>
|
125
|
-
</file>
|
126
|
-
<file leaf-file-name="TODO.rb" pinned="false" current="false" current-in-tab="false">
|
127
|
-
<entry file="file://$PROJECT_DIR$/TODO.rb">
|
128
|
-
<provider selected="true" editor-type-id="text-editor">
|
129
|
-
<state line="7" column="22" selection-start="138" selection-end="138" vertical-scroll-proportion="0.01911589">
|
130
|
-
<folding />
|
131
|
-
</state>
|
132
|
-
</provider>
|
133
|
-
</entry>
|
134
|
-
</file>
|
135
|
-
<file leaf-file-name="type_finder_spec.rb" pinned="false" current="false" current-in-tab="false">
|
136
|
-
<entry file="file://$PROJECT_DIR$/spec/aquarium/finders/type_finder_spec.rb">
|
137
|
-
<provider selected="true" editor-type-id="text-editor">
|
138
|
-
<state line="25" column="5" selection-start="911" selection-end="911" vertical-scroll-proportion="0.01911589">
|
139
|
-
<folding />
|
140
|
-
</state>
|
141
|
-
</provider>
|
142
|
-
</entry>
|
143
|
-
</file>
|
144
|
-
</leaf>
|
145
|
-
</component>
|
146
|
-
<component name="FindManager">
|
147
|
-
<FindUsagesManager>
|
148
|
-
<setting name="OPEN_NEW_TAB" value="false" />
|
149
|
-
</FindUsagesManager>
|
150
|
-
</component>
|
151
|
-
<component name="HierarchyBrowserManager">
|
152
|
-
<option name="IS_AUTOSCROLL_TO_SOURCE" value="false" />
|
153
|
-
<option name="SORT_ALPHABETICALLY" value="false" />
|
154
|
-
<option name="HIDE_CLASSES_WHERE_METHOD_NOT_IMPLEMENTED" value="false" />
|
155
|
-
</component>
|
156
|
-
<component name="ModuleEditorState">
|
157
|
-
<option name="LAST_EDITED_MODULE_NAME" />
|
158
|
-
<option name="LAST_EDITED_TAB_NAME" />
|
159
|
-
</component>
|
160
|
-
<component name="ProjectLevelVcsManager">
|
161
|
-
<OptionsSetting value="true" id="Add" />
|
162
|
-
<OptionsSetting value="true" id="Remove" />
|
163
|
-
<OptionsSetting value="true" id="Checkout" />
|
164
|
-
<OptionsSetting value="true" id="Update" />
|
165
|
-
<OptionsSetting value="true" id="Status" />
|
166
|
-
<OptionsSetting value="true" id="Edit" />
|
167
|
-
<OptionsSetting value="true" id="Undo Check Out" />
|
168
|
-
<OptionsSetting value="true" id="Get Latest Version" />
|
169
|
-
<ConfirmationsSetting value="0" id="Add" />
|
170
|
-
<ConfirmationsSetting value="0" id="Remove" />
|
171
|
-
</component>
|
172
|
-
<component name="ProjectPane">
|
173
|
-
<subPane>
|
174
|
-
<PATH>
|
175
|
-
<PATH_ELEMENT>
|
176
|
-
<option name="myItemId" value="Aquarium-IDEA" />
|
177
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
178
|
-
</PATH_ELEMENT>
|
179
|
-
</PATH>
|
180
|
-
</subPane>
|
181
|
-
</component>
|
182
|
-
<component name="ProjectReloadState">
|
183
|
-
<option name="STATE" value="0" />
|
184
|
-
</component>
|
185
|
-
<component name="ProjectView">
|
186
|
-
<navigator currentView="ProjectPane" proportions="0.11111111" version="1" splitterProportion="0.5">
|
187
|
-
<flattenPackages />
|
188
|
-
<showMembers />
|
189
|
-
<showModules />
|
190
|
-
<showLibraryContents />
|
191
|
-
<hideEmptyPackages />
|
192
|
-
<abbreviatePackageNames />
|
193
|
-
<showStructure ProjectPane="false" />
|
194
|
-
<autoscrollToSource />
|
195
|
-
<autoscrollFromSource />
|
196
|
-
<sortByType />
|
197
|
-
</navigator>
|
198
|
-
</component>
|
199
|
-
<component name="PropertiesComponent">
|
200
|
-
<property name="MemberChooser.copyJavadoc" value="false" />
|
201
|
-
<property name="GoToClass.includeLibraries" value="false" />
|
202
|
-
<property name="MemberChooser.showClasses" value="true" />
|
203
|
-
<property name="MemberChooser.sorted" value="false" />
|
204
|
-
<property name="GoToFile.includeJavaFiles" value="false" />
|
205
|
-
<property name="GoToClass.toSaveIncludeLibraries" value="false" />
|
206
|
-
</component>
|
207
|
-
<component name="RubyDocSettings">
|
208
|
-
<RUBY_DOC NAME="DEFAULTS" VALUE="true" />
|
209
|
-
<RUBY_DOC NAME="NUMBER" VALUE="0" />
|
210
|
-
</component>
|
211
|
-
<component name="RunManager" selected="RubyOnRails.aspect_spec">
|
212
|
-
<tempConfiguration default="false" name="aspect_spec" type="RubyRunConfigurationType" factoryName="RSpec">
|
213
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
214
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="$PROJECT_DIR$/spec/aquarium/aspects/aspect_spec.rb" />
|
215
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="[none]" />
|
216
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
217
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
218
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="-fs" />
|
219
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e STDOUT.sync=true;STDERR.sync=true;load($0=ARGV.shift)" />
|
220
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$PROJECT_DIR$/spec/aquarium/aspects" />
|
221
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="MODULE_NAME" VALUE="aquarium" />
|
222
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
223
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
224
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUN_SPECS_SEPARATELY" VALUE="false" />
|
225
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_COLOURED_OUTPUT_ENABLED" VALUE="true" />
|
226
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
227
|
-
<RunnerSettings RunnerId="Run" />
|
228
|
-
<ConfigurationWrapper RunnerId="Run" />
|
229
|
-
<method>
|
230
|
-
<option name="Make" value="true" />
|
231
|
-
</method>
|
232
|
-
</tempConfiguration>
|
233
|
-
<configuration default="true" type="Applet" factoryName="Applet">
|
234
|
-
<module name="" />
|
235
|
-
<option name="MAIN_CLASS_NAME" />
|
236
|
-
<option name="HTML_FILE_NAME" />
|
237
|
-
<option name="HTML_USED" value="false" />
|
238
|
-
<option name="WIDTH" value="400" />
|
239
|
-
<option name="HEIGHT" value="300" />
|
240
|
-
<option name="POLICY_FILE" value="$APPLICATION_HOME_DIR$/bin/appletviewer.policy" />
|
241
|
-
<option name="VM_PARAMETERS" />
|
242
|
-
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
|
243
|
-
<option name="ALTERNATIVE_JRE_PATH" />
|
244
|
-
</configuration>
|
245
|
-
<configuration default="true" type="JUnit" factoryName="JUnit" enabled="false" merge="false">
|
246
|
-
<module name="" />
|
247
|
-
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
|
248
|
-
<option name="ALTERNATIVE_JRE_PATH" />
|
249
|
-
<option name="PACKAGE_NAME" />
|
250
|
-
<option name="MAIN_CLASS_NAME" />
|
251
|
-
<option name="METHOD_NAME" />
|
252
|
-
<option name="TEST_OBJECT" value="class" />
|
253
|
-
<option name="VM_PARAMETERS" />
|
254
|
-
<option name="PARAMETERS" />
|
255
|
-
<option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" />
|
256
|
-
<option name="ENV_VARIABLES" />
|
257
|
-
<option name="PASS_PARENT_ENVS" value="true" />
|
258
|
-
<option name="ADDITIONAL_CLASS_PATH" />
|
259
|
-
<option name="TEST_SEARCH_SCOPE">
|
260
|
-
<value defaultName="wholeProject" />
|
261
|
-
</option>
|
262
|
-
<envs />
|
263
|
-
</configuration>
|
264
|
-
<configuration default="true" type="Application" factoryName="Application" enabled="false" merge="false">
|
265
|
-
<option name="MAIN_CLASS_NAME" />
|
266
|
-
<option name="VM_PARAMETERS" />
|
267
|
-
<option name="PROGRAM_PARAMETERS" />
|
268
|
-
<option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" />
|
269
|
-
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="false" />
|
270
|
-
<option name="ALTERNATIVE_JRE_PATH" />
|
271
|
-
<option name="ENABLE_SWING_INSPECTOR" value="false" />
|
272
|
-
<option name="ENV_VARIABLES" />
|
273
|
-
<option name="PASS_PARENT_ENVS" value="true" />
|
274
|
-
<module name="" />
|
275
|
-
<envs />
|
276
|
-
</configuration>
|
277
|
-
<configuration default="true" type="RubyRunConfigurationType" factoryName="RSpec">
|
278
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
279
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
280
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="[none]" />
|
281
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
282
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
283
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="-fs" />
|
284
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e STDOUT.sync=true;STDERR.sync=true;load($0=ARGV.shift)" />
|
285
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
286
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="MODULE_NAME" VALUE="" />
|
287
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
288
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
289
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUN_SPECS_SEPARATELY" VALUE="false" />
|
290
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_COLOURED_OUTPUT_ENABLED" VALUE="true" />
|
291
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
292
|
-
</configuration>
|
293
|
-
<configuration default="true" type="Remote" factoryName="Remote">
|
294
|
-
<option name="USE_SOCKET_TRANSPORT" value="true" />
|
295
|
-
<option name="SERVER_MODE" value="false" />
|
296
|
-
<option name="SHMEM_ADDRESS" value="javadebug" />
|
297
|
-
<option name="HOST" value="localhost" />
|
298
|
-
<option name="PORT" value="5005" />
|
299
|
-
</configuration>
|
300
|
-
<list size="1">
|
301
|
-
<item index="0" class="java.lang.String" itemvalue="RubyOnRails.aspect_spec" />
|
302
|
-
</list>
|
303
|
-
<configuration name="<template>" type="WebApp" default="true" selected="false">
|
304
|
-
<Host>localhost</Host>
|
305
|
-
<Port>5050</Port>
|
306
|
-
</configuration>
|
307
|
-
</component>
|
308
|
-
<component name="StarteamConfiguration">
|
309
|
-
<option name="SERVER" value="" />
|
310
|
-
<option name="PORT" value="49201" />
|
311
|
-
<option name="USER" value="" />
|
312
|
-
<option name="PASSWORD" value="" />
|
313
|
-
<option name="PROJECT" value="" />
|
314
|
-
<option name="VIEW" value="" />
|
315
|
-
<option name="ALTERNATIVE_WORKING_PATH" value="" />
|
316
|
-
<option name="LOCK_ON_CHECKOUT" value="false" />
|
317
|
-
<option name="UNLOCK_ON_CHECKIN" value="false" />
|
318
|
-
</component>
|
319
|
-
<component name="StructureViewFactory">
|
320
|
-
<option name="AUTOSCROLL_MODE" value="true" />
|
321
|
-
<option name="AUTOSCROLL_FROM_SOURCE" value="false" />
|
322
|
-
<option name="ACTIVE_ACTIONS" value="" />
|
323
|
-
</component>
|
324
|
-
<component name="SvnConfiguration">
|
325
|
-
<option name="USER" value="" />
|
326
|
-
<option name="PASSWORD" value="" />
|
327
|
-
<option name="LAST_MERGED_REVISION" />
|
328
|
-
<option name="UPDATE_RUN_STATUS" value="false" />
|
329
|
-
<option name="UPDATE_RECURSIVELY" value="true" />
|
330
|
-
<option name="MERGE_DRY_RUN" value="false" />
|
331
|
-
<configuration useDefault="true">/Users/deanwampler/.subversion</configuration>
|
332
|
-
</component>
|
333
|
-
<component name="TodoView" selected-index="0">
|
334
|
-
<todo-panel id="selected-file">
|
335
|
-
<are-packages-shown value="false" />
|
336
|
-
<are-modules-shown value="false" />
|
337
|
-
<flatten-packages value="false" />
|
338
|
-
<is-autoscroll-to-source value="true" />
|
339
|
-
</todo-panel>
|
340
|
-
<todo-panel id="all">
|
341
|
-
<are-packages-shown value="true" />
|
342
|
-
<are-modules-shown value="false" />
|
343
|
-
<flatten-packages value="false" />
|
344
|
-
<is-autoscroll-to-source value="true" />
|
345
|
-
</todo-panel>
|
346
|
-
<todo-panel id="default-changelist">
|
347
|
-
<are-packages-shown value="false" />
|
348
|
-
<are-modules-shown value="false" />
|
349
|
-
<flatten-packages value="false" />
|
350
|
-
<is-autoscroll-to-source value="false" />
|
351
|
-
</todo-panel>
|
352
|
-
</component>
|
353
|
-
<component name="ToolWindowManager">
|
354
|
-
<frame x="10" y="22" width="1660" height="1010" extended-state="0" />
|
355
|
-
<editor active="false" />
|
356
|
-
<layout>
|
357
|
-
<window_info id="UI Designer" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" order="3" />
|
358
|
-
<window_info id="IDEtalk" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" order="3" />
|
359
|
-
<window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" order="7" />
|
360
|
-
<window_info id="Project" active="true" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.24953446" order="0" />
|
361
|
-
<window_info id="RDoc" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" order="8" />
|
362
|
-
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3295711" order="1" />
|
363
|
-
<window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.24953446" order="1" />
|
364
|
-
<window_info id="Messages" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" order="8" />
|
365
|
-
<window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" order="6" />
|
366
|
-
<window_info id="Module Dependencies" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" order="3" />
|
367
|
-
<window_info id="Dependency Viewer" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" order="8" />
|
368
|
-
<window_info id="Palette" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" order="3" />
|
369
|
-
<window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" order="1" />
|
370
|
-
<window_info id="Maven projects" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" order="3" />
|
371
|
-
<window_info id="Changes" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" order="8" />
|
372
|
-
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="SLIDING" type="SLIDING" visible="false" weight="0.32919955" order="2" />
|
373
|
-
<window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" order="2" />
|
374
|
-
<window_info id="Dilbert" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" order="8" />
|
375
|
-
<window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" order="0" />
|
376
|
-
<window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" order="4" />
|
377
|
-
<window_info id="IDEtalk Messages" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" order="8" />
|
378
|
-
<window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" order="8" />
|
379
|
-
<window_info id="Duplicates" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" order="8" />
|
380
|
-
<window_info id="Message" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" order="0" />
|
381
|
-
<window_info id="Web" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" order="2" />
|
382
|
-
<window_info id="EJB" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" order="3" />
|
383
|
-
<window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" order="5" />
|
384
|
-
</layout>
|
385
|
-
</component>
|
386
|
-
<component name="VcsManagerConfiguration">
|
387
|
-
<option name="OFFER_MOVE_TO_ANOTHER_CHANGELIST_ON_PARTIAL_COMMIT" value="true" />
|
388
|
-
<option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="true" />
|
389
|
-
<option name="PERFORM_UPDATE_IN_BACKGROUND" value="false" />
|
390
|
-
<option name="PERFORM_COMMIT_IN_BACKGROUND" value="false" />
|
391
|
-
<option name="PERFORM_EDIT_IN_BACKGROUND" value="true" />
|
392
|
-
<option name="PERFORM_ADD_REMOVE_IN_BACKGROUND" value="true" />
|
393
|
-
<option name="FORCE_NON_EMPTY_COMMENT" value="false" />
|
394
|
-
<option name="LAST_COMMIT_MESSAGE" />
|
395
|
-
<option name="OPTIMIZE_IMPORTS_BEFORE_PROJECT_COMMIT" value="false" />
|
396
|
-
<option name="REFORMAT_BEFORE_PROJECT_COMMIT" value="false" />
|
397
|
-
<option name="REFORMAT_BEFORE_FILE_COMMIT" value="false" />
|
398
|
-
<option name="FILE_HISTORY_DIALOG_COMMENTS_SPLITTER_PROPORTION" value="0.8" />
|
399
|
-
<option name="FILE_HISTORY_DIALOG_SPLITTER_PROPORTION" value="0.5" />
|
400
|
-
<option name="ACTIVE_VCS_NAME" />
|
401
|
-
<option name="UPDATE_GROUP_BY_PACKAGES" value="false" />
|
402
|
-
<option name="UPDATE_GROUP_BY_CHANGELIST" value="false" />
|
403
|
-
<option name="SHOW_FILE_HISTORY_AS_TREE" value="false" />
|
404
|
-
<option name="FILE_HISTORY_SPLITTER_PROPORTION" value="0.6" />
|
405
|
-
</component>
|
406
|
-
<component name="VssConfiguration">
|
407
|
-
<option name="CLIENT_PATH" value="" />
|
408
|
-
<option name="SRCSAFEINI_PATH" value="" />
|
409
|
-
<option name="USER_NAME" value="" />
|
410
|
-
<option name="PWD" value="" />
|
411
|
-
<CheckoutOptions>
|
412
|
-
<option name="COMMENT" value="" />
|
413
|
-
<option name="DO_NOT_GET_LATEST_VERSION" value="false" />
|
414
|
-
<option name="REPLACE_WRITABLE" value="false" />
|
415
|
-
<option name="RECURSIVE" value="false" />
|
416
|
-
</CheckoutOptions>
|
417
|
-
<CheckinOptions>
|
418
|
-
<option name="COMMENT" value="" />
|
419
|
-
<option name="KEEP_CHECKED_OUT" value="false" />
|
420
|
-
<option name="RECURSIVE" value="false" />
|
421
|
-
</CheckinOptions>
|
422
|
-
<AddOptions>
|
423
|
-
<option name="STORE_ONLY_LATEST_VERSION" value="false" />
|
424
|
-
<option name="CHECK_OUT_IMMEDIATELY" value="false" />
|
425
|
-
</AddOptions>
|
426
|
-
<UndocheckoutOptions>
|
427
|
-
<option name="MAKE_WRITABLE" value="false" />
|
428
|
-
<option name="REPLACE_LOCAL_COPY" value="0" />
|
429
|
-
<option name="RECURSIVE" value="false" />
|
430
|
-
</UndocheckoutOptions>
|
431
|
-
<GetOptions>
|
432
|
-
<option name="REPLACE_WRITABLE" value="0" />
|
433
|
-
<option name="MAKE_WRITABLE" value="false" />
|
434
|
-
<option name="ANSWER_NEGATIVELY" value="false" />
|
435
|
-
<option name="ANSWER_POSITIVELY" value="false" />
|
436
|
-
<option name="RECURSIVE" value="false" />
|
437
|
-
<option name="VERSION" />
|
438
|
-
</GetOptions>
|
439
|
-
</component>
|
440
|
-
<component name="editorHistoryManager">
|
441
|
-
<entry file="file://$PROJECT_DIR$/lib/aquarium.rb">
|
442
|
-
<provider selected="true" editor-type-id="text-editor">
|
443
|
-
<state line="4" column="18" selection-start="191" selection-end="192" vertical-scroll-proportion="0.07646356">
|
444
|
-
<folding />
|
445
|
-
</state>
|
446
|
-
</provider>
|
447
|
-
</entry>
|
448
|
-
<entry file="file://$PROJECT_DIR$/lib/aquarium/aspects/aspect.rb">
|
449
|
-
<provider selected="true" editor-type-id="text-editor">
|
450
|
-
<state line="253" column="10" selection-start="11553" selection-end="11553" vertical-scroll-proportion="0.01946472">
|
451
|
-
<folding>
|
452
|
-
<marker date="1210531618000" expanded="true" signature="16696:17751" placeholder=" ... end" />
|
453
|
-
<marker date="1210531618000" expanded="true" signature="17612:17742" placeholder="unless ... end" />
|
454
|
-
<marker date="1210531618000" expanded="true" signature="20578:20715" placeholder=" ... end" />
|
455
|
-
<marker date="1210531618000" expanded="true" signature="20578:20693" placeholder="heredoc ..." />
|
456
|
-
</folding>
|
457
|
-
</state>
|
458
|
-
</provider>
|
459
|
-
</entry>
|
460
|
-
<entry file="file://$PROJECT_DIR$/spec/aquarium/aspects/aspect_spec.rb">
|
461
|
-
<provider selected="true" editor-type-id="text-editor">
|
462
|
-
<state line="45" column="59" selection-start="1226" selection-end="1228" vertical-scroll-proportion="0.01946472">
|
463
|
-
<folding />
|
464
|
-
</state>
|
465
|
-
</provider>
|
466
|
-
</entry>
|
467
|
-
<entry file="file://$PROJECT_DIR$/TODO.rb">
|
468
|
-
<provider selected="true" editor-type-id="text-editor">
|
469
|
-
<state line="7" column="22" selection-start="138" selection-end="138" vertical-scroll-proportion="0.01911589">
|
470
|
-
<folding />
|
471
|
-
</state>
|
472
|
-
</provider>
|
473
|
-
</entry>
|
474
|
-
<entry file="file://$PROJECT_DIR$/spec/aquarium/finders/type_finder_spec.rb">
|
475
|
-
<provider selected="true" editor-type-id="text-editor">
|
476
|
-
<state line="25" column="5" selection-start="911" selection-end="911" vertical-scroll-proportion="0.01911589">
|
477
|
-
<folding />
|
478
|
-
</state>
|
479
|
-
</provider>
|
480
|
-
</entry>
|
481
|
-
<entry file="file://$PROJECT_DIR$/spec/aquarium/aspects/aspect_invocation_spec.rb">
|
482
|
-
<provider selected="true" editor-type-id="text-editor">
|
483
|
-
<state line="302" column="7" selection-start="17251" selection-end="17254" vertical-scroll-proportion="0.01946472">
|
484
|
-
<folding />
|
485
|
-
</state>
|
486
|
-
</provider>
|
487
|
-
</entry>
|
488
|
-
</component>
|
489
|
-
<component name="se.expertsystem.intellij.aop.aspectj.AspectJProjectComponent">
|
490
|
-
<setting name="isActivated" value="false" />
|
491
|
-
</component>
|
492
|
-
</project>
|
493
|
-
|