record_with_operator 0.0.22 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +1 -0
- data/README.rdoc +6 -1
- data/Rakefile +0 -44
- data/init.rb +1 -1
- data/lib/record_with_operator/associations/extension.rb +24 -0
- data/lib/record_with_operator/extension.rb +146 -0
- data/lib/record_with_operator/relation_methods.rb +66 -0
- data/lib/record_with_operator/utility.rb +19 -0
- data/lib/record_with_operator/version.rb +2 -2
- data/lib/record_with_operator.rb +5 -166
- data/record_with_operator.gemspec +11 -3
- data/test/database.yml +16 -16
- data/test/record_with_operator_has_many_dependent_test.rb +8 -4
- data/test/record_with_operator_test.rb +10 -16
- data/test/test_helper.rb +5 -5
- metadata +100 -24
- data/.idea/inspectionProfiles/Project_Default.xml +0 -11
- data/.idea/inspectionProfiles/profiles_settings.xml +0 -7
- data/.idea/workspace.xml +0 -455
- data/lib/association_with_operator.rb +0 -34
- data/record_with_operator/.gitignore +0 -4
- data/record_with_operator/Gemfile +0 -4
- data/record_with_operator/Rakefile +0 -2
- data/record_with_operator/lib/record_with_operator/version.rb +0 -3
- data/record_with_operator/lib/record_with_operator.rb +0 -3
- data/record_with_operator/record_with_operator.gemspec +0 -21
metadata
CHANGED
@@ -1,8 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: record_with_operator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
|
4
|
+
hash: 27
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 1
|
9
|
+
- 0
|
10
|
+
version: 0.1.0
|
6
11
|
platform: ruby
|
7
12
|
authors:
|
8
13
|
- Yasuko Ohba
|
@@ -10,41 +15,97 @@ autorequire:
|
|
10
15
|
bindir: bin
|
11
16
|
cert_chain: []
|
12
17
|
|
13
|
-
date: 2011-
|
14
|
-
|
15
|
-
|
16
|
-
|
18
|
+
date: 2011-08-11 00:00:00 +09:00
|
19
|
+
default_executable:
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
22
|
+
name: activerecord
|
23
|
+
prerelease: false
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
hash: 7
|
30
|
+
segments:
|
31
|
+
- 3
|
32
|
+
- 0
|
33
|
+
- 0
|
34
|
+
version: 3.0.0
|
35
|
+
type: :runtime
|
36
|
+
version_requirements: *id001
|
37
|
+
- !ruby/object:Gem::Dependency
|
38
|
+
name: bundler
|
39
|
+
prerelease: false
|
40
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ">="
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
hash: 23
|
46
|
+
segments:
|
47
|
+
- 1
|
48
|
+
- 0
|
49
|
+
- 0
|
50
|
+
version: 1.0.0
|
51
|
+
type: :development
|
52
|
+
version_requirements: *id002
|
53
|
+
- !ruby/object:Gem::Dependency
|
54
|
+
name: rake
|
55
|
+
prerelease: false
|
56
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
hash: 49
|
62
|
+
segments:
|
63
|
+
- 0
|
64
|
+
- 8
|
65
|
+
- 7
|
66
|
+
version: 0.8.7
|
67
|
+
type: :development
|
68
|
+
version_requirements: *id003
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: sqlite3
|
71
|
+
prerelease: false
|
72
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ">="
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
hash: 3
|
78
|
+
segments:
|
79
|
+
- 0
|
80
|
+
version: "0"
|
81
|
+
type: :development
|
82
|
+
version_requirements: *id004
|
83
|
+
description: RecordWithOperator is a rails plugin that makes your all active record models to be saved or logically deleted with created_by, updated_by, deleted_by automatically. Also it makes creator, updater, deleter association (belongs_to) if the class has created_by, updated_by, deleted_by.
|
17
84
|
email:
|
18
85
|
- y.ohba@everyleaf.com
|
19
86
|
executables: []
|
20
87
|
|
21
88
|
extensions: []
|
22
89
|
|
23
|
-
extra_rdoc_files:
|
24
|
-
|
90
|
+
extra_rdoc_files:
|
91
|
+
- README.rdoc
|
25
92
|
files:
|
26
93
|
- .gitignore
|
27
|
-
- .idea/inspectionProfiles/Project_Default.xml
|
28
|
-
- .idea/inspectionProfiles/profiles_settings.xml
|
29
|
-
- .idea/workspace.xml
|
30
94
|
- Gemfile
|
31
95
|
- MIT-LICENSE
|
32
96
|
- README.rdoc
|
33
97
|
- Rakefile
|
34
98
|
- init.rb
|
35
99
|
- install.rb
|
36
|
-
- lib/association_with_operator.rb
|
37
100
|
- lib/helpers/migration_helper.rb
|
38
101
|
- lib/record_with_operator.rb
|
102
|
+
- lib/record_with_operator/associations/extension.rb
|
103
|
+
- lib/record_with_operator/extension.rb
|
104
|
+
- lib/record_with_operator/relation_methods.rb
|
105
|
+
- lib/record_with_operator/utility.rb
|
39
106
|
- lib/record_with_operator/version.rb
|
40
107
|
- lib/tasks/record_with_operator_tasks.rake
|
41
108
|
- record_with_operator.gemspec
|
42
|
-
- record_with_operator/.gitignore
|
43
|
-
- record_with_operator/Gemfile
|
44
|
-
- record_with_operator/Rakefile
|
45
|
-
- record_with_operator/lib/record_with_operator.rb
|
46
|
-
- record_with_operator/lib/record_with_operator/version.rb
|
47
|
-
- record_with_operator/record_with_operator.gemspec
|
48
109
|
- test/database.yml
|
49
110
|
- test/record_with_operator_belongs_to_association_test.rb
|
50
111
|
- test/record_with_operator_has_many_dependent_test.rb
|
@@ -55,9 +116,10 @@ files:
|
|
55
116
|
- test/schema.rb
|
56
117
|
- test/test_helper.rb
|
57
118
|
- uninstall.rb
|
58
|
-
|
59
|
-
|
60
|
-
|
119
|
+
has_rdoc: true
|
120
|
+
homepage: https://github.com/nay/record_with_operator
|
121
|
+
licenses:
|
122
|
+
- MIT
|
61
123
|
post_install_message:
|
62
124
|
rdoc_options: []
|
63
125
|
|
@@ -68,19 +130,33 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
68
130
|
requirements:
|
69
131
|
- - ">="
|
70
132
|
- !ruby/object:Gem::Version
|
133
|
+
hash: 3
|
134
|
+
segments:
|
135
|
+
- 0
|
71
136
|
version: "0"
|
72
137
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
73
138
|
none: false
|
74
139
|
requirements:
|
75
140
|
- - ">="
|
76
141
|
- !ruby/object:Gem::Version
|
142
|
+
hash: 3
|
143
|
+
segments:
|
144
|
+
- 0
|
77
145
|
version: "0"
|
78
146
|
requirements: []
|
79
147
|
|
80
148
|
rubyforge_project: record_with_operator
|
81
|
-
rubygems_version: 1.7
|
149
|
+
rubygems_version: 1.3.7
|
82
150
|
signing_key:
|
83
151
|
specification_version: 3
|
84
152
|
summary: Rails plugin to set created_by, updated_by, deleted_by to ActiveRecord objects. Supports associations.
|
85
|
-
test_files:
|
86
|
-
|
153
|
+
test_files:
|
154
|
+
- test/database.yml
|
155
|
+
- test/record_with_operator_belongs_to_association_test.rb
|
156
|
+
- test/record_with_operator_has_many_dependent_test.rb
|
157
|
+
- test/record_with_operator_has_one_association_test.rb
|
158
|
+
- test/record_with_operator_reflection_test.rb
|
159
|
+
- test/record_with_operator_test.rb
|
160
|
+
- test/record_with_operator_user_class_name_test.rb
|
161
|
+
- test/schema.rb
|
162
|
+
- test/test_helper.rb
|
@@ -1,11 +0,0 @@
|
|
1
|
-
<component name="InspectionProjectProfileManager">
|
2
|
-
<profile version="1.0" is_locked="false">
|
3
|
-
<option name="myName" value="Project Default" />
|
4
|
-
<option name="myLocal" value="false" />
|
5
|
-
<inspection_tool class="SpellCheckingInspection" enabled="false" level="TYPO" enabled_by_default="false">
|
6
|
-
<option name="processCode" value="true" />
|
7
|
-
<option name="processLiterals" value="true" />
|
8
|
-
<option name="processComments" value="true" />
|
9
|
-
</inspection_tool>
|
10
|
-
</profile>
|
11
|
-
</component>
|
data/.idea/workspace.xml
DELETED
@@ -1,455 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<project version="4">
|
3
|
-
<component name="ChangeListManager">
|
4
|
-
<list default="true" id="f7937686-ec1f-4f1d-acb9-84d956c01936" name="Default" comment="">
|
5
|
-
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/.gitignore" afterPath="$PROJECT_DIR$/.gitignore" />
|
6
|
-
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/.idea/workspace.xml" afterPath="$PROJECT_DIR$/.idea/workspace.xml" />
|
7
|
-
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/record_with_operator/version.rb" afterPath="$PROJECT_DIR$/lib/record_with_operator/version.rb" />
|
8
|
-
</list>
|
9
|
-
<ignored path="record_with_operator.iws" />
|
10
|
-
<ignored path=".idea/workspace.xml" />
|
11
|
-
<option name="TRACKING_ENABLED" value="true" />
|
12
|
-
<option name="SHOW_DIALOG" value="false" />
|
13
|
-
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
14
|
-
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
15
|
-
<option name="LAST_RESOLUTION" value="IGNORE" />
|
16
|
-
</component>
|
17
|
-
<component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
|
18
|
-
<component name="CoverageDataManager" choice="3" />
|
19
|
-
<component name="CreatePatchCommitExecutor">
|
20
|
-
<option name="PATCH_PATH" value="" />
|
21
|
-
<option name="REVERSE_PATCH" value="false" />
|
22
|
-
</component>
|
23
|
-
<component name="DaemonCodeAnalyzer">
|
24
|
-
<disable_hints />
|
25
|
-
</component>
|
26
|
-
<component name="FavoritesManager">
|
27
|
-
<favorites_list name="record_with_operator" />
|
28
|
-
</component>
|
29
|
-
<component name="FileEditorManager">
|
30
|
-
<leaf>
|
31
|
-
<file leaf-file-name="version.rb" pinned="false" current="true" current-in-tab="true">
|
32
|
-
<entry file="file://$PROJECT_DIR$/lib/record_with_operator/version.rb">
|
33
|
-
<provider selected="true" editor-type-id="text-editor">
|
34
|
-
<state line="1" column="19" selection-start="45" selection-end="45" vertical-scroll-proportion="0.025773196">
|
35
|
-
<folding />
|
36
|
-
</state>
|
37
|
-
</provider>
|
38
|
-
</entry>
|
39
|
-
</file>
|
40
|
-
</leaf>
|
41
|
-
</component>
|
42
|
-
<component name="FindManager">
|
43
|
-
<FindUsagesManager>
|
44
|
-
<setting name="OPEN_NEW_TAB" value="false" />
|
45
|
-
</FindUsagesManager>
|
46
|
-
</component>
|
47
|
-
<component name="Git.Settings">
|
48
|
-
<option name="CHECKOUT_INCLUDE_TAGS" value="false" />
|
49
|
-
<option name="UPDATE_CHANGES_POLICY" value="STASH" />
|
50
|
-
</component>
|
51
|
-
<component name="IdeDocumentHistory">
|
52
|
-
<option name="changedFiles">
|
53
|
-
<list>
|
54
|
-
<option value="$PROJECT_DIR$/README.rdoc" />
|
55
|
-
<option value="$PROJECT_DIR$/lib/record_with_operator.rb" />
|
56
|
-
<option value="$PROJECT_DIR$/lib/version.rb" />
|
57
|
-
<option value="$PROJECT_DIR$/..gemspec" />
|
58
|
-
<option value="$PROJECT_DIR$/Rakefile" />
|
59
|
-
<option value="$PROJECT_DIR$/record_with_operator.gemspec" />
|
60
|
-
<option value="$PROJECT_DIR$/lib/helpers/migration_helper.rb" />
|
61
|
-
<option value="$PROJECT_DIR$/.gitignore" />
|
62
|
-
<option value="$PROJECT_DIR$/lib/record_with_operator/version.rb" />
|
63
|
-
</list>
|
64
|
-
</option>
|
65
|
-
</component>
|
66
|
-
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
67
|
-
<OptionsSetting value="true" id="Add" />
|
68
|
-
<OptionsSetting value="true" id="Remove" />
|
69
|
-
<OptionsSetting value="true" id="Checkout" />
|
70
|
-
<OptionsSetting value="true" id="Update" />
|
71
|
-
<OptionsSetting value="true" id="Status" />
|
72
|
-
<OptionsSetting value="true" id="Edit" />
|
73
|
-
<ConfirmationsSetting value="0" id="Add" />
|
74
|
-
<ConfirmationsSetting value="0" id="Remove" />
|
75
|
-
</component>
|
76
|
-
<component name="ProjectReloadState">
|
77
|
-
<option name="STATE" value="0" />
|
78
|
-
</component>
|
79
|
-
<component name="ProjectView">
|
80
|
-
<navigator currentView="ProjectPane" proportions="" version="1" splitterProportion="0.5">
|
81
|
-
<flattenPackages />
|
82
|
-
<showMembers />
|
83
|
-
<showModules />
|
84
|
-
<showLibraryContents />
|
85
|
-
<hideEmptyPackages />
|
86
|
-
<abbreviatePackageNames />
|
87
|
-
<autoscrollToSource />
|
88
|
-
<autoscrollFromSource />
|
89
|
-
<sortByType />
|
90
|
-
</navigator>
|
91
|
-
<panes>
|
92
|
-
<pane id="Favorites" />
|
93
|
-
<pane id="ProjectPane">
|
94
|
-
<subPane>
|
95
|
-
<PATH>
|
96
|
-
<PATH_ELEMENT>
|
97
|
-
<option name="myItemId" value="record_with_operator" />
|
98
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
99
|
-
</PATH_ELEMENT>
|
100
|
-
</PATH>
|
101
|
-
<PATH>
|
102
|
-
<PATH_ELEMENT>
|
103
|
-
<option name="myItemId" value="record_with_operator" />
|
104
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
105
|
-
</PATH_ELEMENT>
|
106
|
-
<PATH_ELEMENT>
|
107
|
-
<option name="myItemId" value="record_with_operator" />
|
108
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
109
|
-
</PATH_ELEMENT>
|
110
|
-
</PATH>
|
111
|
-
<PATH>
|
112
|
-
<PATH_ELEMENT>
|
113
|
-
<option name="myItemId" value="record_with_operator" />
|
114
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
115
|
-
</PATH_ELEMENT>
|
116
|
-
<PATH_ELEMENT>
|
117
|
-
<option name="myItemId" value="record_with_operator" />
|
118
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
119
|
-
</PATH_ELEMENT>
|
120
|
-
<PATH_ELEMENT>
|
121
|
-
<option name="myItemId" value="lib" />
|
122
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
123
|
-
</PATH_ELEMENT>
|
124
|
-
</PATH>
|
125
|
-
<PATH>
|
126
|
-
<PATH_ELEMENT>
|
127
|
-
<option name="myItemId" value="record_with_operator" />
|
128
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
129
|
-
</PATH_ELEMENT>
|
130
|
-
<PATH_ELEMENT>
|
131
|
-
<option name="myItemId" value="record_with_operator" />
|
132
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
133
|
-
</PATH_ELEMENT>
|
134
|
-
<PATH_ELEMENT>
|
135
|
-
<option name="myItemId" value="lib" />
|
136
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
137
|
-
</PATH_ELEMENT>
|
138
|
-
<PATH_ELEMENT>
|
139
|
-
<option name="myItemId" value="record_with_operator" />
|
140
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
141
|
-
</PATH_ELEMENT>
|
142
|
-
</PATH>
|
143
|
-
<PATH>
|
144
|
-
<PATH_ELEMENT>
|
145
|
-
<option name="myItemId" value="record_with_operator" />
|
146
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
147
|
-
</PATH_ELEMENT>
|
148
|
-
<PATH_ELEMENT>
|
149
|
-
<option name="myItemId" value="record_with_operator" />
|
150
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
151
|
-
</PATH_ELEMENT>
|
152
|
-
<PATH_ELEMENT>
|
153
|
-
<option name="myItemId" value="lib" />
|
154
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
155
|
-
</PATH_ELEMENT>
|
156
|
-
<PATH_ELEMENT>
|
157
|
-
<option name="myItemId" value="helpers" />
|
158
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
159
|
-
</PATH_ELEMENT>
|
160
|
-
</PATH>
|
161
|
-
</subPane>
|
162
|
-
</pane>
|
163
|
-
<pane id="Scope" />
|
164
|
-
</panes>
|
165
|
-
</component>
|
166
|
-
<component name="PropertiesComponent">
|
167
|
-
<property name="options.splitter.main.proportions" value="0.3" />
|
168
|
-
<property name="recentsLimit" value="5" />
|
169
|
-
<property name="options.lastSelected" value="preferences.sourceCode" />
|
170
|
-
<property name="RakeTaksPopup.undocumentedIncluded" value="false" />
|
171
|
-
<property name="options.splitter.details.proportions" value="0.2" />
|
172
|
-
<property name="options.searchVisible" value="true" />
|
173
|
-
</component>
|
174
|
-
<component name="RunManager" selected="Rake.test">
|
175
|
-
<configuration default="false" name="test" type="RakeRunConfigurationType" factoryName="Rake" temporary="true">
|
176
|
-
<module name="record_with_operator" />
|
177
|
-
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
178
|
-
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$PROJECT_DIR$" />
|
179
|
-
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
180
|
-
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
181
|
-
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
182
|
-
<envs />
|
183
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
184
|
-
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" track_test_folders="true" runner="rcov">
|
185
|
-
<COVERAGE_PATTERN ENABLED="true">
|
186
|
-
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
187
|
-
</COVERAGE_PATTERN>
|
188
|
-
</EXTENSION>
|
189
|
-
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_NAME" VALUE="test" />
|
190
|
-
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_ARGS" VALUE="" />
|
191
|
-
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_ATTACHED_TEST_FRAMEWORKS" VALUE=":test_unit " />
|
192
|
-
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_TRACE" VALUE="false" />
|
193
|
-
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_DRYRUN" VALUE="false" />
|
194
|
-
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_PREREQS" VALUE="false" />
|
195
|
-
<RunnerSettings RunnerId="RubyRunner" />
|
196
|
-
<ConfigurationWrapper RunnerId="RubyRunner" />
|
197
|
-
<method />
|
198
|
-
</configuration>
|
199
|
-
<configuration default="true" type="RakeRunConfigurationType" factoryName="Rake">
|
200
|
-
<module name="" />
|
201
|
-
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
202
|
-
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
203
|
-
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
204
|
-
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
205
|
-
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
206
|
-
<envs />
|
207
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
208
|
-
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" track_test_folders="true" runner="rcov">
|
209
|
-
<COVERAGE_PATTERN ENABLED="true">
|
210
|
-
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
211
|
-
</COVERAGE_PATTERN>
|
212
|
-
</EXTENSION>
|
213
|
-
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_NAME" VALUE="" />
|
214
|
-
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_ARGS" VALUE="" />
|
215
|
-
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_ATTACHED_TEST_FRAMEWORKS" VALUE="" />
|
216
|
-
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_TRACE" VALUE="false" />
|
217
|
-
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_DRYRUN" VALUE="false" />
|
218
|
-
<RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_PREREQS" VALUE="false" />
|
219
|
-
<method />
|
220
|
-
</configuration>
|
221
|
-
<configuration default="true" type="RubyRunConfigurationType" factoryName="Ruby">
|
222
|
-
<module name="" />
|
223
|
-
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
224
|
-
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="" />
|
225
|
-
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
226
|
-
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
227
|
-
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
228
|
-
<envs />
|
229
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
230
|
-
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" track_test_folders="true" runner="rcov">
|
231
|
-
<COVERAGE_PATTERN ENABLED="true">
|
232
|
-
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
233
|
-
</COVERAGE_PATTERN>
|
234
|
-
</EXTENSION>
|
235
|
-
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="" />
|
236
|
-
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
237
|
-
<method />
|
238
|
-
</configuration>
|
239
|
-
<list size="1">
|
240
|
-
<item index="0" class="java.lang.String" itemvalue="Rake.test" />
|
241
|
-
</list>
|
242
|
-
</component>
|
243
|
-
<component name="ShelveChangesManager" show_recycled="false" />
|
244
|
-
<component name="SvnConfiguration" maxAnnotateRevisions="500">
|
245
|
-
<option name="USER" value="" />
|
246
|
-
<option name="PASSWORD" value="" />
|
247
|
-
<option name="LAST_MERGED_REVISION" />
|
248
|
-
<option name="MERGE_DRY_RUN" value="false" />
|
249
|
-
<option name="MERGE_DIFF_USE_ANCESTRY" value="true" />
|
250
|
-
<option name="UPDATE_LOCK_ON_DEMAND" value="false" />
|
251
|
-
<option name="IGNORE_SPACES_IN_MERGE" value="false" />
|
252
|
-
<option name="DETECT_NESTED_COPIES" value="true" />
|
253
|
-
<option name="CHECK_NESTED_FOR_QUICK_MERGE" value="false" />
|
254
|
-
<option name="IGNORE_SPACES_IN_ANNOTATE" value="true" />
|
255
|
-
<option name="SHOW_MERGE_SOURCES_IN_ANNOTATE" value="true" />
|
256
|
-
<option name="FORCE_UPDATE" value="false" />
|
257
|
-
<myIsUseDefaultProxy>false</myIsUseDefaultProxy>
|
258
|
-
</component>
|
259
|
-
<component name="TaskManager">
|
260
|
-
<task active="true" id="Default" summary="Default task">
|
261
|
-
<created>1302710987706</created>
|
262
|
-
<updated>1302710987706</updated>
|
263
|
-
</task>
|
264
|
-
<servers />
|
265
|
-
</component>
|
266
|
-
<component name="TodoView" selected-index="0">
|
267
|
-
<todo-panel id="selected-file">
|
268
|
-
<are-packages-shown value="false" />
|
269
|
-
<are-modules-shown value="false" />
|
270
|
-
<flatten-packages value="false" />
|
271
|
-
<is-autoscroll-to-source value="false" />
|
272
|
-
</todo-panel>
|
273
|
-
<todo-panel id="all">
|
274
|
-
<are-packages-shown value="false" />
|
275
|
-
<are-modules-shown value="false" />
|
276
|
-
<flatten-packages value="false" />
|
277
|
-
<is-autoscroll-to-source value="false" />
|
278
|
-
</todo-panel>
|
279
|
-
<todo-panel id="default-changelist">
|
280
|
-
<are-packages-shown value="false" />
|
281
|
-
<are-modules-shown value="false" />
|
282
|
-
<flatten-packages value="false" />
|
283
|
-
<is-autoscroll-to-source value="false" />
|
284
|
-
</todo-panel>
|
285
|
-
</component>
|
286
|
-
<component name="ToolWindowManager">
|
287
|
-
<frame x="0" y="24" width="1920" height="1032" extended-state="0" />
|
288
|
-
<editor active="true" />
|
289
|
-
<layout>
|
290
|
-
<window_info id="Messages" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32893288" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
291
|
-
<window_info id="Changes" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32893288" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
292
|
-
<window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.32893288" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
|
293
|
-
<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" />
|
294
|
-
<window_info id="Dependency Viewer" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
295
|
-
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.24973601" sideWeight="0.6710671" order="0" side_tool="false" content_ui="tabs" />
|
296
|
-
<window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
297
|
-
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
298
|
-
<window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="-1" side_tool="false" content_ui="tabs" />
|
299
|
-
<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" />
|
300
|
-
<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" />
|
301
|
-
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
302
|
-
<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" />
|
303
|
-
<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" />
|
304
|
-
<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" />
|
305
|
-
<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" />
|
306
|
-
</layout>
|
307
|
-
</component>
|
308
|
-
<component name="VcsManagerConfiguration">
|
309
|
-
<option name="OFFER_MOVE_TO_ANOTHER_CHANGELIST_ON_PARTIAL_COMMIT" value="true" />
|
310
|
-
<option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="true" />
|
311
|
-
<option name="PERFORM_UPDATE_IN_BACKGROUND" value="true" />
|
312
|
-
<option name="PERFORM_COMMIT_IN_BACKGROUND" value="true" />
|
313
|
-
<option name="PERFORM_EDIT_IN_BACKGROUND" value="true" />
|
314
|
-
<option name="PERFORM_CHECKOUT_IN_BACKGROUND" value="true" />
|
315
|
-
<option name="PERFORM_ADD_REMOVE_IN_BACKGROUND" value="true" />
|
316
|
-
<option name="PERFORM_ROLLBACK_IN_BACKGROUND" value="false" />
|
317
|
-
<option name="CHECK_LOCALLY_CHANGED_CONFLICTS_IN_BACKGROUND" value="false" />
|
318
|
-
<option name="ENABLE_BACKGROUND_PROCESSES" value="false" />
|
319
|
-
<option name="CHANGED_ON_SERVER_INTERVAL" value="60" />
|
320
|
-
<option name="SHOW_ONLY_CHANGED_IN_SELECTION_DIFF" value="true" />
|
321
|
-
<option name="CHECK_COMMIT_MESSAGE_SPELLING" value="true" />
|
322
|
-
<option name="FORCE_NON_EMPTY_COMMENT" value="false" />
|
323
|
-
<option name="LAST_COMMIT_MESSAGE" />
|
324
|
-
<option name="MAKE_NEW_CHANGELIST_ACTIVE" value="true" />
|
325
|
-
<option name="OPTIMIZE_IMPORTS_BEFORE_PROJECT_COMMIT" value="false" />
|
326
|
-
<option name="CHECK_FILES_UP_TO_DATE_BEFORE_COMMIT" value="false" />
|
327
|
-
<option name="REFORMAT_BEFORE_PROJECT_COMMIT" value="false" />
|
328
|
-
<option name="REFORMAT_BEFORE_FILE_COMMIT" value="false" />
|
329
|
-
<option name="FILE_HISTORY_DIALOG_COMMENTS_SPLITTER_PROPORTION" value="0.8" />
|
330
|
-
<option name="FILE_HISTORY_DIALOG_SPLITTER_PROPORTION" value="0.5" />
|
331
|
-
<option name="ACTIVE_VCS_NAME" />
|
332
|
-
<option name="UPDATE_GROUP_BY_PACKAGES" value="false" />
|
333
|
-
<option name="UPDATE_GROUP_BY_CHANGELIST" value="false" />
|
334
|
-
<option name="SHOW_FILE_HISTORY_AS_TREE" value="false" />
|
335
|
-
<option name="FILE_HISTORY_SPLITTER_PROPORTION" value="0.6" />
|
336
|
-
</component>
|
337
|
-
<component name="XDebuggerManager">
|
338
|
-
<breakpoint-manager />
|
339
|
-
</component>
|
340
|
-
<component name="editorHistoryManager">
|
341
|
-
<entry file="file://$PROJECT_DIR$/README.rdoc">
|
342
|
-
<provider selected="true" editor-type-id="text-editor">
|
343
|
-
<state line="29" column="7" selection-start="1391" selection-end="1391" vertical-scroll-proportion="0.46391752">
|
344
|
-
<folding />
|
345
|
-
</state>
|
346
|
-
</provider>
|
347
|
-
</entry>
|
348
|
-
<entry file="file://$PROJECT_DIR$/test/record_with_operator_belongs_to_association_test.rb">
|
349
|
-
<provider selected="true" editor-type-id="text-editor">
|
350
|
-
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
351
|
-
<folding />
|
352
|
-
</state>
|
353
|
-
</provider>
|
354
|
-
</entry>
|
355
|
-
<entry file="file://$PROJECT_DIR$/test/record_with_operator_has_many_dependent_test.rb">
|
356
|
-
<provider selected="true" editor-type-id="text-editor">
|
357
|
-
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
358
|
-
<folding />
|
359
|
-
</state>
|
360
|
-
</provider>
|
361
|
-
</entry>
|
362
|
-
<entry file="file://$PROJECT_DIR$/test/record_with_operator_has_one_association_test.rb">
|
363
|
-
<provider selected="true" editor-type-id="text-editor">
|
364
|
-
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
365
|
-
<folding />
|
366
|
-
</state>
|
367
|
-
</provider>
|
368
|
-
</entry>
|
369
|
-
<entry file="file://$PROJECT_DIR$/test/record_with_operator_reflection_test.rb">
|
370
|
-
<provider selected="true" editor-type-id="text-editor">
|
371
|
-
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
372
|
-
<folding />
|
373
|
-
</state>
|
374
|
-
</provider>
|
375
|
-
</entry>
|
376
|
-
<entry file="file://$PROJECT_DIR$/test/record_with_operator_test.rb">
|
377
|
-
<provider selected="true" editor-type-id="text-editor">
|
378
|
-
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
379
|
-
<folding />
|
380
|
-
</state>
|
381
|
-
</provider>
|
382
|
-
</entry>
|
383
|
-
<entry file="file://$PROJECT_DIR$/test/record_with_operator_user_class_name_test.rb">
|
384
|
-
<provider selected="true" editor-type-id="text-editor">
|
385
|
-
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
386
|
-
<folding />
|
387
|
-
</state>
|
388
|
-
</provider>
|
389
|
-
</entry>
|
390
|
-
<entry file="file://$PROJECT_DIR$/test/schema.rb">
|
391
|
-
<provider selected="true" editor-type-id="text-editor">
|
392
|
-
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
393
|
-
<folding />
|
394
|
-
</state>
|
395
|
-
</provider>
|
396
|
-
</entry>
|
397
|
-
<entry file="file://$PROJECT_DIR$/lib/record_with_operator.rb">
|
398
|
-
<provider selected="true" editor-type-id="text-editor">
|
399
|
-
<state line="0" column="25" selection-start="7" selection-end="25" vertical-scroll-proportion="0.0">
|
400
|
-
<folding />
|
401
|
-
</state>
|
402
|
-
</provider>
|
403
|
-
</entry>
|
404
|
-
<entry file="file://$PROJECT_DIR$/test/test_helper.rb">
|
405
|
-
<provider selected="true" editor-type-id="text-editor">
|
406
|
-
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
407
|
-
<folding />
|
408
|
-
</state>
|
409
|
-
</provider>
|
410
|
-
</entry>
|
411
|
-
<entry file="file://$PROJECT_DIR$/record_with_operator.gemspec">
|
412
|
-
<provider selected="true" editor-type-id="text-editor">
|
413
|
-
<state line="12" column="123" selection-start="612" selection-end="612" vertical-scroll-proportion="0.30927834">
|
414
|
-
<folding />
|
415
|
-
</state>
|
416
|
-
</provider>
|
417
|
-
</entry>
|
418
|
-
<entry file="file://$PROJECT_DIR$/Rakefile">
|
419
|
-
<provider selected="true" editor-type-id="text-editor">
|
420
|
-
<state line="10" column="117" selection-start="233" selection-end="335" vertical-scroll-proportion="0.25773194">
|
421
|
-
<folding />
|
422
|
-
</state>
|
423
|
-
</provider>
|
424
|
-
</entry>
|
425
|
-
<entry file="file://$PROJECT_DIR$/Gemfile">
|
426
|
-
<provider selected="true" editor-type-id="text-editor">
|
427
|
-
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
428
|
-
<folding />
|
429
|
-
</state>
|
430
|
-
</provider>
|
431
|
-
</entry>
|
432
|
-
<entry file="file://$PROJECT_DIR$/lib/helpers/migration_helper.rb">
|
433
|
-
<provider selected="true" editor-type-id="text-editor">
|
434
|
-
<state line="7" column="3" selection-start="269" selection-end="269" vertical-scroll-proportion="0.18041237">
|
435
|
-
<folding />
|
436
|
-
</state>
|
437
|
-
</provider>
|
438
|
-
</entry>
|
439
|
-
<entry file="file://$PROJECT_DIR$/.gitignore">
|
440
|
-
<provider selected="true" editor-type-id="text-editor">
|
441
|
-
<state line="4" column="7" selection-start="40" selection-end="40" vertical-scroll-proportion="0.10309278">
|
442
|
-
<folding />
|
443
|
-
</state>
|
444
|
-
</provider>
|
445
|
-
</entry>
|
446
|
-
<entry file="file://$PROJECT_DIR$/lib/record_with_operator/version.rb">
|
447
|
-
<provider selected="true" editor-type-id="text-editor">
|
448
|
-
<state line="1" column="19" selection-start="45" selection-end="45" vertical-scroll-proportion="0.025773196">
|
449
|
-
<folding />
|
450
|
-
</state>
|
451
|
-
</provider>
|
452
|
-
</entry>
|
453
|
-
</component>
|
454
|
-
</project>
|
455
|
-
|