memory_model 0.0.2 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/.ruby-version +1 -0
- data/.travis.yml +7 -4
- data/Appraisals +9 -0
- data/Guardfile +7 -1
- data/README.md +5 -1
- data/Rakefile +12 -0
- data/gemfiles/rails_3.gemfile +8 -0
- data/gemfiles/rails_3.gemfile.lock +109 -0
- data/gemfiles/rails_4.gemfile +8 -0
- data/gemfiles/rails_4.gemfile.lock +117 -0
- data/lib/memory_model/base/actions/class_methods.rb +27 -0
- data/lib/memory_model/base/actions.rb +75 -0
- data/lib/memory_model/base/attributes.rb +87 -0
- data/lib/memory_model/base/auto_increment.rb +47 -0
- data/lib/memory_model/base/collectible.rb +26 -0
- data/lib/memory_model/base/conversion.rb +11 -0
- data/lib/memory_model/base/fields/field.rb +57 -0
- data/lib/memory_model/base/fields/field_set.rb +87 -0
- data/lib/memory_model/base/fields.rb +49 -0
- data/lib/memory_model/base/operations/comparisons.rb +25 -0
- data/lib/memory_model/base/operations.rb +10 -0
- data/lib/memory_model/base/persistence.rb +13 -11
- data/lib/memory_model/base.rb +58 -43
- data/lib/memory_model/collection/finders.rb +75 -0
- data/lib/memory_model/collection/index/multi.rb +61 -0
- data/lib/memory_model/collection/index/unique.rb +79 -0
- data/lib/memory_model/collection/index.rb +86 -0
- data/lib/memory_model/collection/initializers.rb +48 -0
- data/lib/memory_model/collection/loader_delegate.rb +63 -0
- data/lib/memory_model/collection/marshaled_record.rb +23 -0
- data/lib/memory_model/collection/operations.rb +82 -0
- data/lib/memory_model/collection.rb +18 -73
- data/lib/memory_model/version.rb +1 -1
- data/lib/memory_model.rb +7 -7
- data/memory_model.gemspec +8 -3
- data/spec/benchmark/benchmark.rb +126 -0
- data/spec/memory_model/base/{actionable_spec.rb → actions_spec.rb} +34 -103
- data/spec/memory_model/base/{attributable_spec.rb → attributes_spec.rb} +4 -6
- data/spec/memory_model/base/{collectable_spec.rb → collectible_spec.rb} +1 -1
- data/spec/memory_model/base/fieldable/field_set_spec.rb +23 -37
- data/spec/memory_model/base/fieldable/field_spec.rb +16 -16
- data/spec/memory_model/base/{fieldable_spec.rb → fields_spec.rb} +1 -1
- data/spec/memory_model/base/{comparable_spec.rb → operations/comparisons_spec.rb} +4 -4
- data/spec/memory_model/base/persistence_spec.rb +2 -2
- data/spec/memory_model/base_spec.rb +10 -9
- data/spec/memory_model/collection_spec.rb +24 -146
- data/spec/spec_helper.rb +11 -0
- data/spec/support/delegate_matcher.rb +40 -0
- metadata +120 -65
- data/.idea/.rakeTasks +0 -7
- data/.idea/dictionaries/jwaldrip.xml +0 -3
- data/.idea/encodings.xml +0 -5
- data/.idea/memory_model.iml +0 -47
- data/.idea/misc.xml +0 -8
- data/.idea/modules.xml +0 -9
- data/.idea/scopes/scope_settings.xml +0 -5
- data/.idea/vcs.xml +0 -7
- data/.idea/workspace.xml +0 -701
- data/lib/memory_model/base/actionable.rb +0 -95
- data/lib/memory_model/base/attributable.rb +0 -76
- data/lib/memory_model/base/collectable.rb +0 -22
- data/lib/memory_model/base/comparable.rb +0 -16
- data/lib/memory_model/base/fieldable/field.rb +0 -35
- data/lib/memory_model/base/fieldable/field_set.rb +0 -74
- data/lib/memory_model/base/fieldable.rb +0 -45
- data/lib/memory_model/base/versionable.rb +0 -17
- data/lib/memory_model/core_ext/object.rb +0 -5
- data/spec/memory_model/base/versionable_spec.rb +0 -31
- data/spec/memory_model/core_ext/object_spec.rb +0 -12
data/.idea/workspace.xml
DELETED
@@ -1,701 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<project version="4">
|
3
|
-
<component name="ChangeListManager">
|
4
|
-
<list default="true" id="c1fa36d4-bee6-4217-b958-2ff0e71d2399" name="Default" comment="">
|
5
|
-
<change type="DELETED" beforePath="$PROJECT_DIR$/spec/concerned_inheritance/delegator_spec.rb" afterPath="" />
|
6
|
-
<change type="DELETED" beforePath="$PROJECT_DIR$/lib/concerned_inheritance.rb" afterPath="" />
|
7
|
-
<change type="DELETED" beforePath="$PROJECT_DIR$/spec/concerned_inheritance/module_methods_spec.rb" afterPath="" />
|
8
|
-
<change type="DELETED" beforePath="$PROJECT_DIR$/spec/memory_model/concerned_inheritance_spec.rb" afterPath="" />
|
9
|
-
<change type="DELETED" beforePath="$PROJECT_DIR$/spec/concerned_inheritance/class_methods_spec.rb" afterPath="" />
|
10
|
-
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/memory_model.gemspec" afterPath="$PROJECT_DIR$/memory_model.gemspec" />
|
11
|
-
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/.idea/workspace.xml" afterPath="$PROJECT_DIR$/.idea/workspace.xml" />
|
12
|
-
</list>
|
13
|
-
<ignored path="memory_model.iws" />
|
14
|
-
<ignored path=".idea/workspace.xml" />
|
15
|
-
<file path="/memory_model.gemspec" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1358127339538" ignored="false" />
|
16
|
-
<file path="/spec_helper.rb" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352179118444" ignored="false" />
|
17
|
-
<file path="/memory_model.rb" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352179197234" ignored="false" />
|
18
|
-
<file path="/memory_model_spec.rb" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352179660815" ignored="false" />
|
19
|
-
<file path="/class_methods.rb" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352181934776" ignored="false" />
|
20
|
-
<file path="/base_spec.rb" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352182135931" ignored="false" />
|
21
|
-
<file path="$PROJECT_DIR$/../restly/lib/restly/embedded_associations/class_methods.rb" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352745365772" ignored="false" />
|
22
|
-
<file path="$PROJECT_DIR$/../restly/lib/restly/base/fields.rb" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352745365772" ignored="false" />
|
23
|
-
<file path="$PROJECT_DIR$/../itriage3/app/views/diagnoses/_find_help_near_you.html.erb" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352745365772" ignored="false" />
|
24
|
-
<file path="$PROJECT_DIR$/../restly/lib/restly/base/includes.rb" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352745365772" ignored="false" />
|
25
|
-
<file path="$PROJECT_DIR$/../restly/lib/restly/base/instance.rb" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352745365772" ignored="false" />
|
26
|
-
<file path="$PROJECT_DIR$/../restly/lib/restly/associations.rb" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352745365772" ignored="false" />
|
27
|
-
<file path="$PROJECT_DIR$/../restly/lib/restly/base/resource.rb" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352745365772" ignored="false" />
|
28
|
-
<file path="$PROJECT_DIR$/../restly/lib/restly/base.rb" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352745365772" ignored="false" />
|
29
|
-
<file path="$PROJECT_DIR$/../restly/lib/restly/associations/base/loaders.rb" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352745365772" ignored="false" />
|
30
|
-
<file path="$PROJECT_DIR$/../restly/lib/restly/associations/base/modifiers.rb" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352745365772" ignored="false" />
|
31
|
-
<file path="$PROJECT_DIR$/../restly/lib/restly/base/instance/attributes.rb" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352745365772" ignored="false" />
|
32
|
-
<file path="$PROJECT_DIR$/../restly/lib/restly/associations/base/stubs.rb" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352745365772" ignored="false" />
|
33
|
-
<file path="$PROJECT_DIR$/../itriage3/config.ru" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352745365772" ignored="false" />
|
34
|
-
<file path="$PROJECT_DIR$/../restly/lib/restly/connection.rb" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352745365772" ignored="false" />
|
35
|
-
<file path="$PROJECT_DIR$/../itriage3/app/views/client/medical_facilities/___form.html.erb" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352745365772" ignored="false" />
|
36
|
-
<file path="$PROJECT_DIR$/../restly/lib/restly/error.rb" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352745365772" ignored="false" />
|
37
|
-
<file path="$PROJECT_DIR$/../itriage3/app/views/client/medical_facilities/_form.html.haml" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352745365772" ignored="false" />
|
38
|
-
<file path="$PROJECT_DIR$/../itriage3/app/models/medical_facility_category.rb" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352745365773" ignored="false" />
|
39
|
-
<file path="$PROJECT_DIR$/../restly/lib/restly/associations/belongs_to.rb" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352745365773" ignored="false" />
|
40
|
-
<file path="$PROJECT_DIR$/../restly/lib/restly/associations/base/builders.rb" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352745365773" ignored="false" />
|
41
|
-
<file path="$PROJECT_DIR$/../restly/spec/support/models.rb" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352745603096" ignored="false" />
|
42
|
-
<file path="$PROJECT_DIR$/../restly/spec/support/memory_model.rb" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352745603096" ignored="false" />
|
43
|
-
<file path="$PROJECT_DIR$/../itriage3/Gemfile" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352745779671" ignored="false" />
|
44
|
-
<file path="/app_config.yml" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352746042332" ignored="false" />
|
45
|
-
<file path="$PROJECT_DIR$/../itriage-auth/config/app_config.yml" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352746045515" ignored="false" />
|
46
|
-
<file path="/database.yml" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352746127144" ignored="false" />
|
47
|
-
<file path="$PROJECT_DIR$/../itriage-auth/config/database.yml" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352746127144" ignored="false" />
|
48
|
-
<file path="$PROJECT_DIR$/../itriage-auth/Gemfile" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352747599004" ignored="false" />
|
49
|
-
<file path="/Gemfile" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352747599004" ignored="false" />
|
50
|
-
<file path="$PROJECT_DIR$/../restly/lib/restly.rb" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352747956813" ignored="false" />
|
51
|
-
<file path="$PROJECT_DIR$/../itriage-admin/config/app_config.yml" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352748135208" ignored="false" />
|
52
|
-
<file path="/base.rb" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352748322428" ignored="false" />
|
53
|
-
<file path="$PROJECT_DIR$/../restly/lib/restly/associations/base.rb" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352748369874" ignored="false" />
|
54
|
-
<file path="/conditionals.rb" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352748579316" ignored="false" />
|
55
|
-
<file path="$PROJECT_DIR$/../restly/lib/restly/associations/base/conditionals.rb" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352748583220" ignored="false" />
|
56
|
-
<file path="/a.dummy" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352748640550" ignored="false" />
|
57
|
-
<file path="$PROJECT_DIR$/../restly/lib/restly/version.rb" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352753025081" ignored="false" />
|
58
|
-
<file path="$PROJECT_DIR$/../restly/generate" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352755137956" ignored="false" />
|
59
|
-
<file path="/generate" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352755137956" ignored="false" />
|
60
|
-
<file path="$PROJECT_DIR$/../itriage-admin/config/restly.yml" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352755823503" ignored="false" />
|
61
|
-
<file path="/restly.yml" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352755823503" ignored="false" />
|
62
|
-
<file path="$PROJECT_DIR$/../restly/restly.rb" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352762922204" ignored="false" />
|
63
|
-
<file path="/restly.rb" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352762922204" ignored="false" />
|
64
|
-
<file path="$PROJECT_DIR$/../restly/index.html" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352763221662" ignored="false" />
|
65
|
-
<file path="$PROJECT_DIR$/../restly/config.yml" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1352763302616" ignored="false" />
|
66
|
-
<file path="/Dummy.txt" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1358136372762" ignored="false" />
|
67
|
-
<file path="$PROJECT_DIR$/../concerned_inheritance/concerned_inheritance.gemspec" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1358128330490" ignored="false" />
|
68
|
-
<file path="/concerned_inheritance.gemspec" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1358128105978" ignored="false" />
|
69
|
-
<file path="$PROJECT_DIR$/../concerned_inheritance/lib/concerned_inheritance/delegator.rb" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1358126400991" ignored="false" />
|
70
|
-
<file path="/delegator.rb" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1358126400991" ignored="false" />
|
71
|
-
<file path="$PROJECT_DIR$/../concerned_inheritance/README.md" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1358128036840" ignored="false" />
|
72
|
-
<file path="/README.md" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1358127018617" ignored="false" />
|
73
|
-
<file path="$PROJECT_DIR$/../concerned_inheritance/spec/concerned_inheritance_spec.rb" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1358126836599" ignored="false" />
|
74
|
-
<file path="/concerned_inheritance_spec.rb" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1358126836599" ignored="false" />
|
75
|
-
<file path="$PROJECT_DIR$/../concerned_inheritance/travis.yml" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1358127229806" ignored="false" />
|
76
|
-
<file path="$PROJECT_DIR$/../concerned_inheritance/.travis.yml" changelist="c1fa36d4-bee6-4217-b958-2ff0e71d2399" time="1358128649475" ignored="false" />
|
77
|
-
<option name="TRACKING_ENABLED" value="true" />
|
78
|
-
<option name="SHOW_DIALOG" value="false" />
|
79
|
-
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
80
|
-
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
81
|
-
<option name="LAST_RESOLUTION" value="IGNORE" />
|
82
|
-
</component>
|
83
|
-
<component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
|
84
|
-
<component name="CoverageDataManager">
|
85
|
-
<SUITE FILE_PATH="coverage/memory_model@All_specs_in__spec.coverage" NAME="All specs in: spec Coverage Results" MODIFIED="1352786953587" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$/spec" />
|
86
|
-
</component>
|
87
|
-
<component name="CoverageOptionsProvider">
|
88
|
-
<option name="myActivateViewOnRun" value="false" />
|
89
|
-
</component>
|
90
|
-
<component name="CreatePatchCommitExecutor">
|
91
|
-
<option name="PATCH_PATH" value="" />
|
92
|
-
</component>
|
93
|
-
<component name="DaemonCodeAnalyzer">
|
94
|
-
<disable_hints />
|
95
|
-
</component>
|
96
|
-
<component name="ExecutionTargetManager" SELECTED_TARGET="default_target" />
|
97
|
-
<component name="FileEditorManager">
|
98
|
-
<splitter split-orientation="horizontal" split-proportion="0.5">
|
99
|
-
<split-first>
|
100
|
-
<leaf>
|
101
|
-
<file leaf-file-name="memory_model.gemspec" pinned="false" current="false" current-in-tab="false">
|
102
|
-
<entry file="file://$PROJECT_DIR$/memory_model.gemspec">
|
103
|
-
<provider selected="true" editor-type-id="text-editor">
|
104
|
-
<state line="6" column="36" selection-start="225" selection-end="225" vertical-scroll-proportion="0.0">
|
105
|
-
<folding />
|
106
|
-
</state>
|
107
|
-
</provider>
|
108
|
-
</entry>
|
109
|
-
</file>
|
110
|
-
<file leaf-file-name="base.rb" pinned="false" current="true" current-in-tab="true">
|
111
|
-
<entry file="file://$PROJECT_DIR$/lib/memory_model/base.rb">
|
112
|
-
<provider selected="true" editor-type-id="text-editor">
|
113
|
-
<state line="37" column="76" selection-start="981" selection-end="981" vertical-scroll-proportion="0.6462882">
|
114
|
-
<folding />
|
115
|
-
</state>
|
116
|
-
</provider>
|
117
|
-
</entry>
|
118
|
-
</file>
|
119
|
-
<file leaf-file-name=".rspec" pinned="false" current="false" current-in-tab="false">
|
120
|
-
<entry file="file://$PROJECT_DIR$/.rspec">
|
121
|
-
<provider selected="true" editor-type-id="text-editor">
|
122
|
-
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
123
|
-
<folding />
|
124
|
-
</state>
|
125
|
-
</provider>
|
126
|
-
</entry>
|
127
|
-
</file>
|
128
|
-
<file leaf-file-name="README.md" pinned="false" current="false" current-in-tab="false">
|
129
|
-
<entry file="file://$PROJECT_DIR$/README.md">
|
130
|
-
<provider selected="true" editor-type-id="text-editor">
|
131
|
-
<state line="4" column="0" selection-start="142" selection-end="171" vertical-scroll-proportion="0.0">
|
132
|
-
<folding />
|
133
|
-
</state>
|
134
|
-
</provider>
|
135
|
-
</entry>
|
136
|
-
</file>
|
137
|
-
<file leaf-file-name=".travis.yml" pinned="false" current="false" current-in-tab="false">
|
138
|
-
<entry file="file://$PROJECT_DIR$/.travis.yml">
|
139
|
-
<provider selected="true" editor-type-id="text-editor">
|
140
|
-
<state line="5" column="25" selection-start="174" selection-end="174" vertical-scroll-proportion="0.0">
|
141
|
-
<folding />
|
142
|
-
</state>
|
143
|
-
</provider>
|
144
|
-
</entry>
|
145
|
-
</file>
|
146
|
-
<file leaf-file-name="version.rb" pinned="false" current="false" current-in-tab="false">
|
147
|
-
<entry file="file://$PROJECT_DIR$/lib/memory_model/version.rb">
|
148
|
-
<provider selected="true" editor-type-id="text-editor">
|
149
|
-
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
150
|
-
<folding />
|
151
|
-
</state>
|
152
|
-
</provider>
|
153
|
-
</entry>
|
154
|
-
</file>
|
155
|
-
</leaf>
|
156
|
-
</split-first>
|
157
|
-
<split-second>
|
158
|
-
<leaf>
|
159
|
-
<file leaf-file-name="base_spec.rb" pinned="false" current="false" current-in-tab="true">
|
160
|
-
<entry file="file://$PROJECT_DIR$/spec/memory_model/base_spec.rb">
|
161
|
-
<provider selected="true" editor-type-id="text-editor">
|
162
|
-
<state line="19" column="26" selection-start="413" selection-end="413" vertical-scroll-proportion="0.32723358">
|
163
|
-
<folding />
|
164
|
-
</state>
|
165
|
-
</provider>
|
166
|
-
</entry>
|
167
|
-
</file>
|
168
|
-
</leaf>
|
169
|
-
</split-second>
|
170
|
-
</splitter>
|
171
|
-
</component>
|
172
|
-
<component name="FindManager">
|
173
|
-
<FindUsagesManager>
|
174
|
-
<setting name="OPEN_NEW_TAB" value="false" />
|
175
|
-
</FindUsagesManager>
|
176
|
-
</component>
|
177
|
-
<component name="Git.Settings">
|
178
|
-
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
179
|
-
</component>
|
180
|
-
<component name="GitLogSettings">
|
181
|
-
<option name="myDateState">
|
182
|
-
<MyDateState />
|
183
|
-
</option>
|
184
|
-
</component>
|
185
|
-
<component name="IdeDocumentHistory">
|
186
|
-
<option name="changedFiles">
|
187
|
-
<list>
|
188
|
-
<option value="$PROJECT_DIR$/lib/memory_model/base/persistence.rb" />
|
189
|
-
<option value="$PROJECT_DIR$/spec/memory_model/base/actionable_spec.rb" />
|
190
|
-
<option value="$PROJECT_DIR$/lib/memory_model/base/actionable.rb" />
|
191
|
-
<option value="$PROJECT_DIR$/spec/spec_helper.rb" />
|
192
|
-
<option value="$PROJECT_DIR$/spec/memory_model/base_spec.rb" />
|
193
|
-
<option value="$PROJECT_DIR$/spec/support/active_model_lint.rb" />
|
194
|
-
<option value="$PROJECT_DIR$/lib/memory_model/base/fieldable/field_set.rb" />
|
195
|
-
<option value="$PROJECT_DIR$/lib/memory_model/base/attributable.rb" />
|
196
|
-
<option value="$PROJECT_DIR$/spec/memory_model/base/attributable_spec.rb" />
|
197
|
-
<option value="$PROJECT_DIR$/lib/memory_model/base.rb" />
|
198
|
-
<option value="$PROJECT_DIR$/spec/memory_model/base/fieldable/field_set_spec.rb" />
|
199
|
-
<option value="$PROJECT_DIR$/lib/memory_model/base/fieldable/field.rb" />
|
200
|
-
<option value="$PROJECT_DIR$/Gemfile.lock" />
|
201
|
-
<option value="$PROJECT_DIR$/README.md" />
|
202
|
-
<option value="$PROJECT_DIR$/.travis.yml" />
|
203
|
-
<option value="$PROJECT_DIR$/memory_model.gemspec" />
|
204
|
-
</list>
|
205
|
-
</option>
|
206
|
-
</component>
|
207
|
-
<component name="ProjectFrameBounds">
|
208
|
-
<option name="y" value="22" />
|
209
|
-
<option name="width" value="1920" />
|
210
|
-
<option name="height" value="1054" />
|
211
|
-
</component>
|
212
|
-
<component name="ProjectInspectionProfilesVisibleTreeState">
|
213
|
-
<entry key="Project Default">
|
214
|
-
<profile-state>
|
215
|
-
<expanded-state>
|
216
|
-
<State>
|
217
|
-
<id />
|
218
|
-
</State>
|
219
|
-
</expanded-state>
|
220
|
-
<selected-state>
|
221
|
-
<State>
|
222
|
-
<id>CSS</id>
|
223
|
-
</State>
|
224
|
-
</selected-state>
|
225
|
-
</profile-state>
|
226
|
-
</entry>
|
227
|
-
</component>
|
228
|
-
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
229
|
-
<OptionsSetting value="true" id="Add" />
|
230
|
-
<OptionsSetting value="true" id="Remove" />
|
231
|
-
<OptionsSetting value="true" id="Checkout" />
|
232
|
-
<OptionsSetting value="true" id="Update" />
|
233
|
-
<OptionsSetting value="true" id="Status" />
|
234
|
-
<OptionsSetting value="true" id="Edit" />
|
235
|
-
<ConfirmationsSetting value="0" id="Add" />
|
236
|
-
<ConfirmationsSetting value="0" id="Remove" />
|
237
|
-
</component>
|
238
|
-
<component name="ProjectReloadState">
|
239
|
-
<option name="STATE" value="0" />
|
240
|
-
</component>
|
241
|
-
<component name="ProjectView">
|
242
|
-
<navigator currentView="ProjectPane" proportions="" version="1" splitterProportion="0.5">
|
243
|
-
<flattenPackages />
|
244
|
-
<showMembers />
|
245
|
-
<showModules />
|
246
|
-
<showLibraryContents />
|
247
|
-
<hideEmptyPackages />
|
248
|
-
<abbreviatePackageNames />
|
249
|
-
<autoscrollToSource />
|
250
|
-
<autoscrollFromSource />
|
251
|
-
<sortByType />
|
252
|
-
</navigator>
|
253
|
-
<panes>
|
254
|
-
<pane id="ProjectPane">
|
255
|
-
<subPane>
|
256
|
-
<PATH>
|
257
|
-
<PATH_ELEMENT>
|
258
|
-
<option name="myItemId" value="memory_model" />
|
259
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
260
|
-
</PATH_ELEMENT>
|
261
|
-
</PATH>
|
262
|
-
<PATH>
|
263
|
-
<PATH_ELEMENT>
|
264
|
-
<option name="myItemId" value="memory_model" />
|
265
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
266
|
-
</PATH_ELEMENT>
|
267
|
-
<PATH_ELEMENT>
|
268
|
-
<option name="myItemId" value="memory_model" />
|
269
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
270
|
-
</PATH_ELEMENT>
|
271
|
-
</PATH>
|
272
|
-
<PATH>
|
273
|
-
<PATH_ELEMENT>
|
274
|
-
<option name="myItemId" value="memory_model" />
|
275
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
276
|
-
</PATH_ELEMENT>
|
277
|
-
<PATH_ELEMENT>
|
278
|
-
<option name="myItemId" value="memory_model" />
|
279
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
280
|
-
</PATH_ELEMENT>
|
281
|
-
<PATH_ELEMENT>
|
282
|
-
<option name="myItemId" value="lib" />
|
283
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
284
|
-
</PATH_ELEMENT>
|
285
|
-
</PATH>
|
286
|
-
<PATH>
|
287
|
-
<PATH_ELEMENT>
|
288
|
-
<option name="myItemId" value="memory_model" />
|
289
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
290
|
-
</PATH_ELEMENT>
|
291
|
-
<PATH_ELEMENT>
|
292
|
-
<option name="myItemId" value="memory_model" />
|
293
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
294
|
-
</PATH_ELEMENT>
|
295
|
-
<PATH_ELEMENT>
|
296
|
-
<option name="myItemId" value="lib" />
|
297
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
298
|
-
</PATH_ELEMENT>
|
299
|
-
<PATH_ELEMENT>
|
300
|
-
<option name="myItemId" value="memory_model" />
|
301
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
302
|
-
</PATH_ELEMENT>
|
303
|
-
</PATH>
|
304
|
-
</subPane>
|
305
|
-
</pane>
|
306
|
-
<pane id="Scope" />
|
307
|
-
</panes>
|
308
|
-
</component>
|
309
|
-
<component name="PropertiesComponent">
|
310
|
-
<property name="options.splitter.main.proportions" value="0.3" />
|
311
|
-
<property name="WebServerToolWindowFactoryState" value="false" />
|
312
|
-
<property name="recentsLimit" value="5" />
|
313
|
-
<property name="options.lastSelected" value="org.jetbrains.plugins.ruby.settings.RubyIdeSdkConfigurable" />
|
314
|
-
<property name="restartRequiresConfirmation" value="true" />
|
315
|
-
<property name="last_opened_file_path" value="$PROJECT_DIR$/spec" />
|
316
|
-
<property name="FullScreen" value="false" />
|
317
|
-
<property name="options.splitter.details.proportions" value="0.2" />
|
318
|
-
<property name="options.searchVisible" value="true" />
|
319
|
-
</component>
|
320
|
-
<component name="RecentsManager">
|
321
|
-
<key name="MoveFile.RECENT_KEYS">
|
322
|
-
<recent name="$PROJECT_DIR$/spec" />
|
323
|
-
<recent name="$PROJECT_DIR$/spec/memory_model/base" />
|
324
|
-
<recent name="$PROJECT_DIR$/lib/memory_model" />
|
325
|
-
<recent name="$PROJECT_DIR$/spec/memory_model/base/fields" />
|
326
|
-
<recent name="$PROJECT_DIR$/lib/memory_model/base" />
|
327
|
-
</key>
|
328
|
-
</component>
|
329
|
-
<component name="RunManager" selected="RSpec.All specs in: spec">
|
330
|
-
<configuration default="false" name="All specs in: spec" type="RSpecRunConfigurationType" factoryName="RSpec" temporary="true">
|
331
|
-
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
332
|
-
<module name="memory_model" />
|
333
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
334
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$PROJECT_DIR$/spec" />
|
335
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
336
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
337
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
338
|
-
<envs>
|
339
|
-
<env name="JRUBY_OPTS" value="-X+O" />
|
340
|
-
</envs>
|
341
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
342
|
-
<EXTENSION ID="JRubyRunConfigurationExtension" />
|
343
|
-
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" runner="rcov">
|
344
|
-
<COVERAGE_PATTERN ENABLED="true">
|
345
|
-
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
346
|
-
</COVERAGE_PATTERN>
|
347
|
-
</EXTENSION>
|
348
|
-
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
349
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="$PROJECT_DIR$/spec" />
|
350
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
351
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
352
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
353
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
|
354
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="ALL_IN_FOLDER" />
|
355
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
356
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
357
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
358
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
359
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
360
|
-
<RunnerSettings RunnerId="RubyCover" />
|
361
|
-
<RunnerSettings RunnerId="RubyDebugRunner" />
|
362
|
-
<RunnerSettings RunnerId="RubyRunner" />
|
363
|
-
<ConfigurationWrapper RunnerId="RubyCover" />
|
364
|
-
<ConfigurationWrapper RunnerId="RubyDebugRunner" />
|
365
|
-
<ConfigurationWrapper RunnerId="RubyRunner" />
|
366
|
-
<method />
|
367
|
-
</configuration>
|
368
|
-
<configuration default="true" type="RSpecRunConfigurationType" factoryName="RSpec">
|
369
|
-
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
370
|
-
<module name="" />
|
371
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
372
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
373
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
374
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
375
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
376
|
-
<envs />
|
377
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
378
|
-
<EXTENSION ID="JRubyRunConfigurationExtension" />
|
379
|
-
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
380
|
-
<COVERAGE_PATTERN ENABLED="true">
|
381
|
-
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
382
|
-
</COVERAGE_PATTERN>
|
383
|
-
</EXTENSION>
|
384
|
-
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
385
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
386
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
387
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
388
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
389
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
|
390
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
391
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
392
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
393
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
394
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
395
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
396
|
-
<method />
|
397
|
-
</configuration>
|
398
|
-
<configuration default="true" type="RubyRunConfigurationType" factoryName="Ruby">
|
399
|
-
<module name="" />
|
400
|
-
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
401
|
-
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="" />
|
402
|
-
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
403
|
-
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
404
|
-
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
405
|
-
<envs />
|
406
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
407
|
-
<EXTENSION ID="JRubyRunConfigurationExtension" />
|
408
|
-
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
409
|
-
<COVERAGE_PATTERN ENABLED="true">
|
410
|
-
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
411
|
-
</COVERAGE_PATTERN>
|
412
|
-
</EXTENSION>
|
413
|
-
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
414
|
-
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="" />
|
415
|
-
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
416
|
-
<method />
|
417
|
-
</configuration>
|
418
|
-
<configuration default="true" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest">
|
419
|
-
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
420
|
-
<module name="" />
|
421
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
422
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
423
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
424
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
425
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
426
|
-
<envs />
|
427
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
428
|
-
<EXTENSION ID="JRubyRunConfigurationExtension" />
|
429
|
-
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
430
|
-
<COVERAGE_PATTERN ENABLED="true">
|
431
|
-
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
432
|
-
</COVERAGE_PATTERN>
|
433
|
-
</EXTENSION>
|
434
|
-
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
435
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
436
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
437
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
438
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
|
439
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
440
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
441
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
442
|
-
<method />
|
443
|
-
</configuration>
|
444
|
-
<configuration default="true" type="CucumberRunConfigurationType" factoryName="Cucumber">
|
445
|
-
<predefined_log_file id="RUBY_CUCUMBER" enabled="true" />
|
446
|
-
<module name="" />
|
447
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
448
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
449
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
450
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
451
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
452
|
-
<envs>
|
453
|
-
<env name="ANSICON" value="" />
|
454
|
-
</envs>
|
455
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
456
|
-
<EXTENSION ID="JRubyRunConfigurationExtension" />
|
457
|
-
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
458
|
-
<COVERAGE_PATTERN ENABLED="true">
|
459
|
-
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
460
|
-
</COVERAGE_PATTERN>
|
461
|
-
</EXTENSION>
|
462
|
-
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
463
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*.feature" />
|
464
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
465
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
466
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
467
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TAGS_FILTER" VALUE="" />
|
468
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_NAME_FILTER" VALUE="" />
|
469
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_ARGS" VALUE="--color -r features" />
|
470
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
471
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
472
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="VERBOSE_OPTION" VALUE="false" />
|
473
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
474
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_RUNNER_PATH" VALUE="" />
|
475
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_RUNNER" VALUE="false" />
|
476
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SETTINGS_VERSION" VALUE="2" />
|
477
|
-
<method />
|
478
|
-
</configuration>
|
479
|
-
<configuration default="true" type="JavascriptDebugSession" factoryName="Local" singleton="true">
|
480
|
-
<JSDebuggerConfigurationSettings>
|
481
|
-
<option name="engineId" value="embedded" />
|
482
|
-
<option name="fileUrl" />
|
483
|
-
</JSDebuggerConfigurationSettings>
|
484
|
-
<method />
|
485
|
-
</configuration>
|
486
|
-
<list size="1">
|
487
|
-
<item index="0" class="java.lang.String" itemvalue="RSpec.All specs in: spec" />
|
488
|
-
</list>
|
489
|
-
<recent_temporary>
|
490
|
-
<list size="1">
|
491
|
-
<item index="0" class="java.lang.String" itemvalue="RSpec.All specs in: spec" />
|
492
|
-
</list>
|
493
|
-
</recent_temporary>
|
494
|
-
</component>
|
495
|
-
<component name="ShelveChangesManager" show_recycled="false" />
|
496
|
-
<component name="SvnConfiguration" maxAnnotateRevisions="500" myUseAcceleration="nothing" myAutoUpdateAfterCommit="false" cleanupOnStartRun="false">
|
497
|
-
<option name="USER" value="" />
|
498
|
-
<option name="PASSWORD" value="" />
|
499
|
-
<option name="mySSHConnectionTimeout" value="30000" />
|
500
|
-
<option name="mySSHReadTimeout" value="30000" />
|
501
|
-
<option name="LAST_MERGED_REVISION" />
|
502
|
-
<option name="MERGE_DRY_RUN" value="false" />
|
503
|
-
<option name="MERGE_DIFF_USE_ANCESTRY" value="true" />
|
504
|
-
<option name="UPDATE_LOCK_ON_DEMAND" value="false" />
|
505
|
-
<option name="IGNORE_SPACES_IN_MERGE" value="false" />
|
506
|
-
<option name="DETECT_NESTED_COPIES" value="true" />
|
507
|
-
<option name="CHECK_NESTED_FOR_QUICK_MERGE" value="false" />
|
508
|
-
<option name="IGNORE_SPACES_IN_ANNOTATE" value="true" />
|
509
|
-
<option name="SHOW_MERGE_SOURCES_IN_ANNOTATE" value="true" />
|
510
|
-
<option name="FORCE_UPDATE" value="false" />
|
511
|
-
<option name="IGNORE_EXTERNALS" value="false" />
|
512
|
-
<configuration useDefault="true">$USER_HOME$/.subversion_IDEA</configuration>
|
513
|
-
<myIsUseDefaultProxy>false</myIsUseDefaultProxy>
|
514
|
-
</component>
|
515
|
-
<component name="TaskManager">
|
516
|
-
<task active="true" id="Default" summary="Default task">
|
517
|
-
<changelist id="c1fa36d4-bee6-4217-b958-2ff0e71d2399" name="Default" comment="" />
|
518
|
-
<created>1352176854720</created>
|
519
|
-
<updated>1352176854720</updated>
|
520
|
-
</task>
|
521
|
-
<servers />
|
522
|
-
</component>
|
523
|
-
<component name="ToolWindowManager">
|
524
|
-
<frame x="0" y="22" width="1920" height="1054" extended-state="0" />
|
525
|
-
<editor active="false" />
|
526
|
-
<layout>
|
527
|
-
<window_info id="Changes" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4728682" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
528
|
-
<window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
|
529
|
-
<window_info id="Database" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
530
|
-
<window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="1" side_tool="true" content_ui="tabs" />
|
531
|
-
<window_info id="Project" active="true" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.1696905" sideWeight="0.98537093" order="0" side_tool="false" content_ui="combo" />
|
532
|
-
<window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.399137" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
533
|
-
<window_info id="Favorites" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="2" side_tool="true" content_ui="tabs" />
|
534
|
-
<window_info id="Event Log" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3291536" sideWeight="0.5" order="7" side_tool="true" content_ui="tabs" />
|
535
|
-
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32901832" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
536
|
-
<window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
537
|
-
<window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" />
|
538
|
-
<window_info id="Message" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
539
|
-
<window_info id="Heroku" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
540
|
-
<window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
541
|
-
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33009708" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
542
|
-
<window_info id="Messages" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3398058" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
543
|
-
<window_info id="Coverage" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32986537" sideWeight="0.67098165" order="3" side_tool="true" content_ui="tabs" />
|
544
|
-
<window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
545
|
-
<window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="2" side_tool="false" content_ui="combo" />
|
546
|
-
<window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="5" side_tool="false" content_ui="tabs" />
|
547
|
-
</layout>
|
548
|
-
</component>
|
549
|
-
<component name="VcsContentAnnotationSettings">
|
550
|
-
<option name="myLimit" value="2678400000" />
|
551
|
-
</component>
|
552
|
-
<component name="VcsManagerConfiguration">
|
553
|
-
<option name="OFFER_MOVE_TO_ANOTHER_CHANGELIST_ON_PARTIAL_COMMIT" value="true" />
|
554
|
-
<option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="true" />
|
555
|
-
<option name="CHECK_NEW_TODO" value="true" />
|
556
|
-
<option name="myTodoPanelSettings">
|
557
|
-
<value>
|
558
|
-
<are-packages-shown value="false" />
|
559
|
-
<are-modules-shown value="false" />
|
560
|
-
<flatten-packages value="false" />
|
561
|
-
<is-autoscroll-to-source value="false" />
|
562
|
-
</value>
|
563
|
-
</option>
|
564
|
-
<option name="PERFORM_UPDATE_IN_BACKGROUND" value="true" />
|
565
|
-
<option name="PERFORM_COMMIT_IN_BACKGROUND" value="true" />
|
566
|
-
<option name="PERFORM_EDIT_IN_BACKGROUND" value="true" />
|
567
|
-
<option name="PERFORM_CHECKOUT_IN_BACKGROUND" value="true" />
|
568
|
-
<option name="PERFORM_ADD_REMOVE_IN_BACKGROUND" value="true" />
|
569
|
-
<option name="PERFORM_ROLLBACK_IN_BACKGROUND" value="false" />
|
570
|
-
<option name="CHECK_LOCALLY_CHANGED_CONFLICTS_IN_BACKGROUND" value="false" />
|
571
|
-
<option name="CHANGED_ON_SERVER_INTERVAL" value="60" />
|
572
|
-
<option name="SHOW_ONLY_CHANGED_IN_SELECTION_DIFF" value="true" />
|
573
|
-
<option name="CHECK_COMMIT_MESSAGE_SPELLING" value="true" />
|
574
|
-
<option name="DEFAULT_PATCH_EXTENSION" value="patch" />
|
575
|
-
<option name="SHORT_DIFF_HORISONTALLY" value="true" />
|
576
|
-
<option name="SHORT_DIFF_EXTRA_LINES" value="2" />
|
577
|
-
<option name="SOFT_WRAPS_IN_SHORT_DIFF" value="true" />
|
578
|
-
<option name="INCLUDE_TEXT_INTO_PATCH" value="false" />
|
579
|
-
<option name="INCLUDE_TEXT_INTO_SHELF" value="false" />
|
580
|
-
<option name="SHOW_FILE_HISTORY_DETAILS" value="true" />
|
581
|
-
<option name="SHOW_VCS_ERROR_NOTIFICATIONS" value="true" />
|
582
|
-
<option name="SHOW_DIRTY_RECURSIVELY" value="false" />
|
583
|
-
<option name="LIMIT_HISTORY" value="true" />
|
584
|
-
<option name="MAXIMUM_HISTORY_ROWS" value="1000" />
|
585
|
-
<option name="FORCE_NON_EMPTY_COMMENT" value="false" />
|
586
|
-
<option name="CLEAR_INITIAL_COMMIT_MESSAGE" value="false" />
|
587
|
-
<option name="LAST_COMMIT_MESSAGE" />
|
588
|
-
<option name="MAKE_NEW_CHANGELIST_ACTIVE" value="true" />
|
589
|
-
<option name="OPTIMIZE_IMPORTS_BEFORE_PROJECT_COMMIT" value="false" />
|
590
|
-
<option name="CHECK_FILES_UP_TO_DATE_BEFORE_COMMIT" value="false" />
|
591
|
-
<option name="REFORMAT_BEFORE_PROJECT_COMMIT" value="false" />
|
592
|
-
<option name="REFORMAT_BEFORE_FILE_COMMIT" value="false" />
|
593
|
-
<option name="FILE_HISTORY_DIALOG_COMMENTS_SPLITTER_PROPORTION" value="0.8" />
|
594
|
-
<option name="FILE_HISTORY_DIALOG_SPLITTER_PROPORTION" value="0.5" />
|
595
|
-
<option name="ACTIVE_VCS_NAME" />
|
596
|
-
<option name="UPDATE_GROUP_BY_PACKAGES" value="false" />
|
597
|
-
<option name="UPDATE_GROUP_BY_CHANGELIST" value="false" />
|
598
|
-
<option name="SHOW_FILE_HISTORY_AS_TREE" value="false" />
|
599
|
-
<option name="FILE_HISTORY_SPLITTER_PROPORTION" value="0.6" />
|
600
|
-
</component>
|
601
|
-
<component name="XDebuggerManager">
|
602
|
-
<breakpoint-manager />
|
603
|
-
</component>
|
604
|
-
<component name="editorHistoryManager">
|
605
|
-
<entry file="file://$PROJECT_DIR$/spec/memory_model/base/fieldable/field_set_spec.rb">
|
606
|
-
<provider selected="true" editor-type-id="text-editor">
|
607
|
-
<state line="156" column="7" selection-start="4526" selection-end="4526" vertical-scroll-proportion="0.9681093" />
|
608
|
-
</provider>
|
609
|
-
</entry>
|
610
|
-
<entry file="file://$PROJECT_DIR$/spec/memory_model/base/attributable_spec.rb">
|
611
|
-
<provider selected="true" editor-type-id="text-editor">
|
612
|
-
<state line="66" column="86" selection-start="1599" selection-end="1599" vertical-scroll-proportion="0.38268793" />
|
613
|
-
</provider>
|
614
|
-
</entry>
|
615
|
-
<entry file="file://$PROJECT_DIR$/spec/memory_model/base/persistence_spec.rb">
|
616
|
-
<provider selected="true" editor-type-id="text-editor">
|
617
|
-
<state line="32" column="41" selection-start="759" selection-end="759" vertical-scroll-proportion="0.58314353" />
|
618
|
-
</provider>
|
619
|
-
</entry>
|
620
|
-
<entry file="file://$PROJECT_DIR$/spec/memory_model/collection_spec.rb">
|
621
|
-
<provider selected="true" editor-type-id="text-editor">
|
622
|
-
<state line="14" column="7" selection-start="342" selection-end="342" vertical-scroll-proportion="0.017777778" />
|
623
|
-
</provider>
|
624
|
-
</entry>
|
625
|
-
<entry file="file://$PROJECT_DIR$/spec/memory_model/base/actionable_spec.rb">
|
626
|
-
<provider selected="true" editor-type-id="text-editor">
|
627
|
-
<state line="41" column="5" selection-start="1046" selection-end="1046" vertical-scroll-proportion="0.72888887" />
|
628
|
-
</provider>
|
629
|
-
</entry>
|
630
|
-
<entry file="file://$PROJECT_DIR$/spec/memory_model/base/comparable_spec.rb">
|
631
|
-
<provider selected="true" editor-type-id="text-editor">
|
632
|
-
<state line="3" column="16" selection-start="81" selection-end="81" vertical-scroll-proportion="0.017777778" />
|
633
|
-
</provider>
|
634
|
-
</entry>
|
635
|
-
<entry file="file://$PROJECT_DIR$/spec/memory_model/base/versionable_spec.rb">
|
636
|
-
<provider selected="true" editor-type-id="text-editor">
|
637
|
-
<state line="10" column="0" selection-start="163" selection-end="220" vertical-scroll-proportion="0.17777778" />
|
638
|
-
</provider>
|
639
|
-
</entry>
|
640
|
-
<entry file="file://$PROJECT_DIR$/spec/memory_model/base/fieldable_spec.rb">
|
641
|
-
<provider selected="true" editor-type-id="text-editor">
|
642
|
-
<state line="18" column="13" selection-start="481" selection-end="481" vertical-scroll-proportion="0.32" />
|
643
|
-
</provider>
|
644
|
-
</entry>
|
645
|
-
<entry file="file://$PROJECT_DIR$/spec/memory_model/base/collectable_spec.rb">
|
646
|
-
<provider selected="true" editor-type-id="text-editor">
|
647
|
-
<state line="4" column="5" selection-start="72" selection-end="72" vertical-scroll-proportion="0.07111111" />
|
648
|
-
</provider>
|
649
|
-
</entry>
|
650
|
-
<entry file="file://$PROJECT_DIR$/.rspec">
|
651
|
-
<provider selected="true" editor-type-id="text-editor">
|
652
|
-
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
653
|
-
<folding />
|
654
|
-
</state>
|
655
|
-
</provider>
|
656
|
-
</entry>
|
657
|
-
<entry file="file://$PROJECT_DIR$/README.md">
|
658
|
-
<provider selected="true" editor-type-id="text-editor">
|
659
|
-
<state line="4" column="0" selection-start="142" selection-end="171" vertical-scroll-proportion="0.0">
|
660
|
-
<folding />
|
661
|
-
</state>
|
662
|
-
</provider>
|
663
|
-
</entry>
|
664
|
-
<entry file="file://$PROJECT_DIR$/.travis.yml">
|
665
|
-
<provider selected="true" editor-type-id="text-editor">
|
666
|
-
<state line="5" column="25" selection-start="174" selection-end="174" vertical-scroll-proportion="0.0">
|
667
|
-
<folding />
|
668
|
-
</state>
|
669
|
-
</provider>
|
670
|
-
</entry>
|
671
|
-
<entry file="file://$PROJECT_DIR$/lib/memory_model/version.rb">
|
672
|
-
<provider selected="true" editor-type-id="text-editor">
|
673
|
-
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
674
|
-
<folding />
|
675
|
-
</state>
|
676
|
-
</provider>
|
677
|
-
</entry>
|
678
|
-
<entry file="file://$PROJECT_DIR$/memory_model.gemspec">
|
679
|
-
<provider selected="true" editor-type-id="text-editor">
|
680
|
-
<state line="6" column="36" selection-start="225" selection-end="225" vertical-scroll-proportion="0.0">
|
681
|
-
<folding />
|
682
|
-
</state>
|
683
|
-
</provider>
|
684
|
-
</entry>
|
685
|
-
<entry file="file://$PROJECT_DIR$/spec/memory_model/base_spec.rb">
|
686
|
-
<provider selected="true" editor-type-id="text-editor">
|
687
|
-
<state line="19" column="26" selection-start="413" selection-end="413" vertical-scroll-proportion="0.32723358">
|
688
|
-
<folding />
|
689
|
-
</state>
|
690
|
-
</provider>
|
691
|
-
</entry>
|
692
|
-
<entry file="file://$PROJECT_DIR$/lib/memory_model/base.rb">
|
693
|
-
<provider selected="true" editor-type-id="text-editor">
|
694
|
-
<state line="37" column="76" selection-start="981" selection-end="981" vertical-scroll-proportion="0.6462882">
|
695
|
-
<folding />
|
696
|
-
</state>
|
697
|
-
</provider>
|
698
|
-
</entry>
|
699
|
-
</component>
|
700
|
-
</project>
|
701
|
-
|