pg_cache_key 0.1.1 → 0.1.2
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.
- checksums.yaml +4 -4
- data/lib/pg_cache_key/version.rb +1 -1
- data/lib/pg_cache_key.rb +8 -5
- metadata +1 -7
- data/.idea/.name +0 -1
- data/.idea/misc.xml +0 -14
- data/.idea/modules.xml +0 -8
- data/.idea/pg_cache_key.iml +0 -21
- data/.idea/vcs.xml +0 -6
- data/.idea/workspace.xml +0 -503
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5d8ffcfe8dfd1a34a42688870727a3c96f539d34
|
4
|
+
data.tar.gz: 466f5c9bfb47bc7706d6e242a9d31da5bbf5a51d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 47607c86ad4b89498896e8cd6931d05674a2c9f81636ad7e5ca81be2e23395e74513034aad226f6c60d4ce10781282269be65cc3840175916cc3ea89b0ea41dc
|
7
|
+
data.tar.gz: 0bd221afa5afce628ae2be6aa636df476fe42f066684ec4ef79faf30a92b84768952d87d5a8b9d3b49e6833b17b1eb6637d4fca77a56d14c41afec10545dd261
|
data/lib/pg_cache_key/version.rb
CHANGED
data/lib/pg_cache_key.rb
CHANGED
@@ -15,18 +15,21 @@ require "pg_cache_key/version"
|
|
15
15
|
# end
|
16
16
|
# end
|
17
17
|
|
18
|
-
# in rails 4 it would go like this:
|
18
|
+
# in rails >= 4 it would go like this:
|
19
19
|
module ActiveRecord
|
20
20
|
# = Active Record \Relation
|
21
21
|
class Relation
|
22
22
|
def cache_key(timestamp_column = :updated_at)
|
23
23
|
cache_columns = [timestamp_column, :id]
|
24
24
|
@cache_keys ||= {}
|
25
|
-
|
25
|
+
|
26
|
+
# Rem 1: why use connection.execute instead of doing collection.select because of an order. if you using some order on your scope
|
26
27
|
# then columns you using to order must appear in the GROUP BY clause or be used in an aggregate function or you will get an error
|
27
|
-
# we need to add select cache_columns explicitly because if relation has includes it might transform columns to aliases
|
28
|
+
# Rem 2: we need to add select( cache_columns ) explicitly because if relation has includes it might transform columns to aliases
|
29
|
+
# joins(values[:includes]).unscope(:includes) - we need to move includes to joins to avoid all aliases and so
|
30
|
+
# we can't unscope(:includes) completly because some where can depend on it
|
28
31
|
@cache_keys[timestamp_column] ||= connection.execute( "SELECT md5(string_agg( #{cache_columns.map{|fld| "\"t\".\"#{fld}\"::text" }.join('||')}, '') ) as cache_key
|
29
|
-
FROM (#{ select(cache_columns).try(:to_sql) }) t" )[0]['cache_key']
|
32
|
+
FROM (#{ joins(values[:includes]).unscope(:includes).select(cache_columns).try(:to_sql) }) t" )[0]['cache_key']
|
30
33
|
end
|
31
34
|
end
|
32
|
-
end
|
35
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pg_cache_key
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- alekseyl
|
@@ -75,12 +75,6 @@ extensions: []
|
|
75
75
|
extra_rdoc_files: []
|
76
76
|
files:
|
77
77
|
- ".gitignore"
|
78
|
-
- ".idea/.name"
|
79
|
-
- ".idea/misc.xml"
|
80
|
-
- ".idea/modules.xml"
|
81
|
-
- ".idea/pg_cache_key.iml"
|
82
|
-
- ".idea/vcs.xml"
|
83
|
-
- ".idea/workspace.xml"
|
84
78
|
- Gemfile
|
85
79
|
- LICENSE.txt
|
86
80
|
- README.md
|
data/.idea/.name
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
pg_cache_key
|
data/.idea/misc.xml
DELETED
@@ -1,14 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<project version="4">
|
3
|
-
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
4
|
-
<OptionsSetting value="true" id="Add" />
|
5
|
-
<OptionsSetting value="true" id="Remove" />
|
6
|
-
<OptionsSetting value="true" id="Checkout" />
|
7
|
-
<OptionsSetting value="true" id="Update" />
|
8
|
-
<OptionsSetting value="true" id="Status" />
|
9
|
-
<OptionsSetting value="true" id="Edit" />
|
10
|
-
<ConfirmationsSetting value="0" id="Add" />
|
11
|
-
<ConfirmationsSetting value="0" id="Remove" />
|
12
|
-
</component>
|
13
|
-
<component name="ProjectRootManager" version="2" project-jdk-name="RVM: ruby-2.1.4" project-jdk-type="RUBY_SDK" />
|
14
|
-
</project>
|
data/.idea/modules.xml
DELETED
@@ -1,8 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<project version="4">
|
3
|
-
<component name="ProjectModuleManager">
|
4
|
-
<modules>
|
5
|
-
<module fileurl="file://$PROJECT_DIR$/.idea/pg_cache_key.iml" filepath="$PROJECT_DIR$/.idea/pg_cache_key.iml" />
|
6
|
-
</modules>
|
7
|
-
</component>
|
8
|
-
</project>
|
data/.idea/pg_cache_key.iml
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<module type="RUBY_MODULE" version="4">
|
3
|
-
<component name="FacetManager">
|
4
|
-
<facet type="gem" name="Ruby Gem">
|
5
|
-
<configuration>
|
6
|
-
<option name="GEM_APP_ROOT_PATH" value="$MODULE_DIR$" />
|
7
|
-
<option name="GEM_APP_TEST_PATH" value="$MODULE_DIR$/test" />
|
8
|
-
<option name="GEM_APP_LIB_PATH" value="$MODULE_DIR$/lib" />
|
9
|
-
</configuration>
|
10
|
-
</facet>
|
11
|
-
</component>
|
12
|
-
<component name="NewModuleRootManager">
|
13
|
-
<content url="file://$MODULE_DIR$">
|
14
|
-
<sourceFolder url="file://$MODULE_DIR$/test" isTestSource="true" />
|
15
|
-
</content>
|
16
|
-
<orderEntry type="jdk" jdkName="RVM: ruby-2.3.0 [pg_cache]" jdkType="RUBY_SDK" />
|
17
|
-
<orderEntry type="sourceFolder" forTests="false" />
|
18
|
-
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.13.1, RVM: ruby-2.3.0 [pg_cache]) [gem]" level="application" />
|
19
|
-
<orderEntry type="library" scope="PROVIDED" name="rake (v10.4.2, RVM: ruby-2.3.0 [pg_cache]) [gem]" level="application" />
|
20
|
-
</component>
|
21
|
-
</module>
|
data/.idea/vcs.xml
DELETED
data/.idea/workspace.xml
DELETED
@@ -1,503 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<project version="4">
|
3
|
-
<component name="ChangeListManager">
|
4
|
-
<list default="true" id="38a7448e-6129-4c84-b909-dd7a34736d62" name="Default" comment="">
|
5
|
-
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/.name" />
|
6
|
-
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/misc.xml" />
|
7
|
-
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/modules.xml" />
|
8
|
-
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/pg_cache_key.iml" />
|
9
|
-
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/vcs.xml" />
|
10
|
-
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/workspace.xml" />
|
11
|
-
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/pg_cache_key.rb" afterPath="$PROJECT_DIR$/lib/pg_cache_key.rb" />
|
12
|
-
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/pg_cache_key/version.rb" afterPath="$PROJECT_DIR$/lib/pg_cache_key/version.rb" />
|
13
|
-
</list>
|
14
|
-
<ignored path="pg_cache_key.iws" />
|
15
|
-
<ignored path=".idea/workspace.xml" />
|
16
|
-
<ignored path=".idea/dataSources.local.xml" />
|
17
|
-
<option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
|
18
|
-
<option name="TRACKING_ENABLED" value="true" />
|
19
|
-
<option name="SHOW_DIALOG" value="false" />
|
20
|
-
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
21
|
-
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
22
|
-
<option name="LAST_RESOLUTION" value="IGNORE" />
|
23
|
-
</component>
|
24
|
-
<component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
|
25
|
-
<component name="CreatePatchCommitExecutor">
|
26
|
-
<option name="PATCH_PATH" value="" />
|
27
|
-
</component>
|
28
|
-
<component name="ExecutionTargetManager" SELECTED_TARGET="default_target" />
|
29
|
-
<component name="FavoritesManager">
|
30
|
-
<favorites_list name="pg_cache_key" />
|
31
|
-
</component>
|
32
|
-
<component name="FileEditorManager">
|
33
|
-
<leaf>
|
34
|
-
<file leaf-file-name="pg_cache_key.rb" pinned="false" current-in-tab="true">
|
35
|
-
<entry file="file://$PROJECT_DIR$/lib/pg_cache_key.rb">
|
36
|
-
<provider selected="true" editor-type-id="text-editor">
|
37
|
-
<state vertical-scroll-proportion="0.64600325">
|
38
|
-
<caret line="25" column="34" selection-start-line="25" selection-start-column="34" selection-end-line="25" selection-end-column="34" />
|
39
|
-
<folding />
|
40
|
-
</state>
|
41
|
-
</provider>
|
42
|
-
</entry>
|
43
|
-
</file>
|
44
|
-
<file leaf-file-name="version.rb" pinned="false" current-in-tab="false">
|
45
|
-
<entry file="file://$PROJECT_DIR$/lib/pg_cache_key/version.rb">
|
46
|
-
<provider selected="true" editor-type-id="text-editor">
|
47
|
-
<state vertical-scroll-proportion="0.0">
|
48
|
-
<caret line="1" column="18" selection-start-line="1" selection-start-column="18" selection-end-line="1" selection-end-column="18" />
|
49
|
-
<folding />
|
50
|
-
</state>
|
51
|
-
</provider>
|
52
|
-
</entry>
|
53
|
-
</file>
|
54
|
-
<file leaf-file-name="Gemfile" pinned="false" current-in-tab="false">
|
55
|
-
<entry file="file://$PROJECT_DIR$/Gemfile">
|
56
|
-
<provider selected="true" editor-type-id="text-editor">
|
57
|
-
<state vertical-scroll-proportion="0.0">
|
58
|
-
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
59
|
-
<folding />
|
60
|
-
</state>
|
61
|
-
</provider>
|
62
|
-
</entry>
|
63
|
-
</file>
|
64
|
-
<file leaf-file-name="Rakefile" pinned="false" current-in-tab="false">
|
65
|
-
<entry file="file://$PROJECT_DIR$/Rakefile">
|
66
|
-
<provider selected="true" editor-type-id="text-editor">
|
67
|
-
<state vertical-scroll-proportion="0.0">
|
68
|
-
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
69
|
-
<folding />
|
70
|
-
</state>
|
71
|
-
</provider>
|
72
|
-
</entry>
|
73
|
-
</file>
|
74
|
-
<file leaf-file-name="pg_cache_key.gemspec" pinned="false" current-in-tab="false">
|
75
|
-
<entry file="file://$PROJECT_DIR$/pg_cache_key.gemspec">
|
76
|
-
<provider selected="true" editor-type-id="text-editor">
|
77
|
-
<state vertical-scroll-proportion="0.0">
|
78
|
-
<caret line="3" column="21" selection-start-line="3" selection-start-column="9" selection-end-line="3" selection-end-column="21" />
|
79
|
-
<folding />
|
80
|
-
</state>
|
81
|
-
</provider>
|
82
|
-
</entry>
|
83
|
-
</file>
|
84
|
-
<file leaf-file-name="README.md" pinned="false" current-in-tab="false">
|
85
|
-
<entry file="file://$PROJECT_DIR$/README.md">
|
86
|
-
<provider editor-type-id="MultiMarkdownFxPreviewEditor">
|
87
|
-
<state />
|
88
|
-
</provider>
|
89
|
-
<provider selected="true" editor-type-id="split-provider[text-editor;MultiMarkdownPreviewEditor]">
|
90
|
-
<state split_layout="FIRST">
|
91
|
-
<first_editor vertical-scroll-proportion="0.0">
|
92
|
-
<caret line="11" column="0" selection-start-line="11" selection-start-column="0" selection-end-line="11" selection-end-column="0" />
|
93
|
-
<folding />
|
94
|
-
</first_editor>
|
95
|
-
<second_editor />
|
96
|
-
</state>
|
97
|
-
</provider>
|
98
|
-
</entry>
|
99
|
-
</file>
|
100
|
-
<file leaf-file-name=".gitignore" pinned="false" current-in-tab="false">
|
101
|
-
<entry file="file://$PROJECT_DIR$/.gitignore">
|
102
|
-
<provider selected="true" editor-type-id="text-editor">
|
103
|
-
<state vertical-scroll-proportion="-0.0">
|
104
|
-
<caret line="0" column="7" selection-start-line="0" selection-start-column="7" selection-end-line="0" selection-end-column="7" />
|
105
|
-
<folding />
|
106
|
-
</state>
|
107
|
-
</provider>
|
108
|
-
</entry>
|
109
|
-
</file>
|
110
|
-
</leaf>
|
111
|
-
</component>
|
112
|
-
<component name="Git.Settings">
|
113
|
-
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
114
|
-
</component>
|
115
|
-
<component name="IdeDocumentHistory">
|
116
|
-
<option name="CHANGED_PATHS">
|
117
|
-
<list>
|
118
|
-
<option value="$PROJECT_DIR$/.gitignore" />
|
119
|
-
<option value="$PROJECT_DIR$/pg_cache_key.gemspec" />
|
120
|
-
<option value="$PROJECT_DIR$/README.md" />
|
121
|
-
<option value="$PROJECT_DIR$/lib/pg_cache_key/version.rb" />
|
122
|
-
<option value="$PROJECT_DIR$/lib/pg_cache_key.rb" />
|
123
|
-
</list>
|
124
|
-
</option>
|
125
|
-
</component>
|
126
|
-
<component name="JsBuildToolGruntFileManager" detection-done="true" />
|
127
|
-
<component name="JsGulpfileManager">
|
128
|
-
<detection-done>true</detection-done>
|
129
|
-
</component>
|
130
|
-
<component name="NamedScopeManager">
|
131
|
-
<order />
|
132
|
-
</component>
|
133
|
-
<component name="ProjectFrameBounds">
|
134
|
-
<option name="x" value="65" />
|
135
|
-
<option name="y" value="-4" />
|
136
|
-
<option name="width" value="1855" />
|
137
|
-
<option name="height" value="1084" />
|
138
|
-
</component>
|
139
|
-
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
140
|
-
<OptionsSetting value="true" id="Add" />
|
141
|
-
<OptionsSetting value="true" id="Remove" />
|
142
|
-
<OptionsSetting value="true" id="Checkout" />
|
143
|
-
<OptionsSetting value="true" id="Update" />
|
144
|
-
<OptionsSetting value="true" id="Status" />
|
145
|
-
<OptionsSetting value="true" id="Edit" />
|
146
|
-
<ConfirmationsSetting value="0" id="Add" />
|
147
|
-
<ConfirmationsSetting value="0" id="Remove" />
|
148
|
-
</component>
|
149
|
-
<component name="ProjectView">
|
150
|
-
<navigator currentView="ProjectPane" proportions="" version="1">
|
151
|
-
<flattenPackages />
|
152
|
-
<showMembers />
|
153
|
-
<showModules />
|
154
|
-
<showLibraryContents />
|
155
|
-
<hideEmptyPackages />
|
156
|
-
<abbreviatePackageNames />
|
157
|
-
<autoscrollToSource />
|
158
|
-
<autoscrollFromSource />
|
159
|
-
<sortByType />
|
160
|
-
</navigator>
|
161
|
-
<panes>
|
162
|
-
<pane id="Scratches" />
|
163
|
-
<pane id="Scope" />
|
164
|
-
<pane id="ProjectPane">
|
165
|
-
<subPane>
|
166
|
-
<PATH>
|
167
|
-
<PATH_ELEMENT>
|
168
|
-
<option name="myItemId" value="pg_cache_key" />
|
169
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
170
|
-
</PATH_ELEMENT>
|
171
|
-
</PATH>
|
172
|
-
<PATH>
|
173
|
-
<PATH_ELEMENT>
|
174
|
-
<option name="myItemId" value="pg_cache_key" />
|
175
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
176
|
-
</PATH_ELEMENT>
|
177
|
-
<PATH_ELEMENT>
|
178
|
-
<option name="myItemId" value="pg_cache_key" />
|
179
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
180
|
-
</PATH_ELEMENT>
|
181
|
-
</PATH>
|
182
|
-
<PATH>
|
183
|
-
<PATH_ELEMENT>
|
184
|
-
<option name="myItemId" value="pg_cache_key" />
|
185
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
186
|
-
</PATH_ELEMENT>
|
187
|
-
<PATH_ELEMENT>
|
188
|
-
<option name="myItemId" value="pg_cache_key" />
|
189
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
190
|
-
</PATH_ELEMENT>
|
191
|
-
<PATH_ELEMENT>
|
192
|
-
<option name="myItemId" value="lib" />
|
193
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
194
|
-
</PATH_ELEMENT>
|
195
|
-
</PATH>
|
196
|
-
<PATH>
|
197
|
-
<PATH_ELEMENT>
|
198
|
-
<option name="myItemId" value="pg_cache_key" />
|
199
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
200
|
-
</PATH_ELEMENT>
|
201
|
-
<PATH_ELEMENT>
|
202
|
-
<option name="myItemId" value="pg_cache_key" />
|
203
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
204
|
-
</PATH_ELEMENT>
|
205
|
-
<PATH_ELEMENT>
|
206
|
-
<option name="myItemId" value="lib" />
|
207
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
208
|
-
</PATH_ELEMENT>
|
209
|
-
<PATH_ELEMENT>
|
210
|
-
<option name="myItemId" value="pg_cache_key" />
|
211
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
212
|
-
</PATH_ELEMENT>
|
213
|
-
</PATH>
|
214
|
-
<PATH>
|
215
|
-
<PATH_ELEMENT>
|
216
|
-
<option name="myItemId" value="pg_cache_key" />
|
217
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
218
|
-
</PATH_ELEMENT>
|
219
|
-
<PATH_ELEMENT>
|
220
|
-
<option name="myItemId" value="pg_cache_key" />
|
221
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
222
|
-
</PATH_ELEMENT>
|
223
|
-
<PATH_ELEMENT>
|
224
|
-
<option name="myItemId" value="bin" />
|
225
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
226
|
-
</PATH_ELEMENT>
|
227
|
-
</PATH>
|
228
|
-
</subPane>
|
229
|
-
</pane>
|
230
|
-
</panes>
|
231
|
-
</component>
|
232
|
-
<component name="PropertiesComponent">
|
233
|
-
<property name="WebServerToolWindowFactoryState" value="false" />
|
234
|
-
</component>
|
235
|
-
<component name="RunManager">
|
236
|
-
<configuration default="true" type="CucumberRunConfigurationType" factoryName="Cucumber">
|
237
|
-
<predefined_log_file id="RUBY_CUCUMBER" enabled="true" />
|
238
|
-
<module name="" />
|
239
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
240
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
241
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
242
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
243
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
244
|
-
<envs />
|
245
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
246
|
-
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
247
|
-
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
248
|
-
<COVERAGE_PATTERN ENABLED="true">
|
249
|
-
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
250
|
-
</COVERAGE_PATTERN>
|
251
|
-
</EXTENSION>
|
252
|
-
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
253
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*.feature" />
|
254
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
255
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
256
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
257
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TAGS_FILTER" VALUE="" />
|
258
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_NAME_FILTER" VALUE="" />
|
259
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_ARGS" VALUE="--color -r features" />
|
260
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
261
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
262
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="VERBOSE_OPTION" VALUE="false" />
|
263
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
264
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
265
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
266
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_RUNNER_PATH" VALUE="" />
|
267
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_RUNNER" VALUE="false" />
|
268
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SETTINGS_VERSION" VALUE="2" />
|
269
|
-
<method />
|
270
|
-
</configuration>
|
271
|
-
<configuration default="true" type="JavascriptDebugType" factoryName="JavaScript Debug">
|
272
|
-
<method />
|
273
|
-
</configuration>
|
274
|
-
<configuration default="true" type="js.build_tools.gulp" factoryName="Gulp.js">
|
275
|
-
<node-options />
|
276
|
-
<gulpfile />
|
277
|
-
<tasks />
|
278
|
-
<arguments />
|
279
|
-
<pass-parent-envs>true</pass-parent-envs>
|
280
|
-
<envs />
|
281
|
-
<method />
|
282
|
-
</configuration>
|
283
|
-
</component>
|
284
|
-
<component name="ShelveChangesManager" show_recycled="false" />
|
285
|
-
<component name="SvnConfiguration">
|
286
|
-
<configuration />
|
287
|
-
</component>
|
288
|
-
<component name="TaskManager">
|
289
|
-
<task active="true" id="Default" summary="Default task">
|
290
|
-
<changelist id="38a7448e-6129-4c84-b909-dd7a34736d62" name="Default" comment="" />
|
291
|
-
<created>1474279990428</created>
|
292
|
-
<option name="number" value="Default" />
|
293
|
-
<updated>1474279990428</updated>
|
294
|
-
</task>
|
295
|
-
<task id="LOCAL-00001" summary="initial commit">
|
296
|
-
<created>1474284307762</created>
|
297
|
-
<option name="number" value="00001" />
|
298
|
-
<option name="project" value="LOCAL" />
|
299
|
-
<updated>1474284307762</updated>
|
300
|
-
</task>
|
301
|
-
<task id="LOCAL-00002" summary="initial commit">
|
302
|
-
<created>1474284383946</created>
|
303
|
-
<option name="number" value="00002" />
|
304
|
-
<option name="project" value="LOCAL" />
|
305
|
-
<updated>1474284383946</updated>
|
306
|
-
</task>
|
307
|
-
<task id="LOCAL-00003" summary="rubygems forgot">
|
308
|
-
<created>1474284631160</created>
|
309
|
-
<option name="number" value="00003" />
|
310
|
-
<option name="project" value="LOCAL" />
|
311
|
-
<updated>1474284631160</updated>
|
312
|
-
</task>
|
313
|
-
<task id="LOCAL-00004" summary="forgot home page">
|
314
|
-
<created>1474284706360</created>
|
315
|
-
<option name="number" value="00004" />
|
316
|
-
<option name="project" value="LOCAL" />
|
317
|
-
<updated>1474284706360</updated>
|
318
|
-
</task>
|
319
|
-
<task id="LOCAL-00005" summary="added link to early mentioned solution">
|
320
|
-
<created>1474285238850</created>
|
321
|
-
<option name="number" value="00005" />
|
322
|
-
<option name="project" value="LOCAL" />
|
323
|
-
<updated>1474285238850</updated>
|
324
|
-
</task>
|
325
|
-
<option name="localTasksCounter" value="6" />
|
326
|
-
<servers />
|
327
|
-
</component>
|
328
|
-
<component name="ToolWindowManager">
|
329
|
-
<frame x="65" y="-4" width="1855" height="1084" extended-state="6" />
|
330
|
-
<editor active="true" />
|
331
|
-
<layout>
|
332
|
-
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.20066334" sideWeight="0.5" order="0" side_tool="false" content_ui="combo" />
|
333
|
-
<window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3294979" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
|
334
|
-
<window_info id="Messages" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.32881" sideWeight="0.5" order="8" side_tool="false" content_ui="tabs" />
|
335
|
-
<window_info id="Event Log" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.35102266" sideWeight="0.5002764" order="4" side_tool="false" content_ui="tabs" />
|
336
|
-
<window_info id="Application Servers" 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" />
|
337
|
-
<window_info id="Database" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32946378" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
338
|
-
<window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3966597" sideWeight="0.4997236" order="10" side_tool="false" content_ui="tabs" />
|
339
|
-
<window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.2498618" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
340
|
-
<window_info id="Terminal" active="false" anchor="bottom" auto_hide="true" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3810021" sideWeight="0.4997236" order="11" side_tool="false" content_ui="tabs" />
|
341
|
-
<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" />
|
342
|
-
<window_info id="Changes" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3294979" sideWeight="0.5" order="9" side_tool="false" content_ui="tabs" />
|
343
|
-
<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" />
|
344
|
-
<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="1" side_tool="false" content_ui="tabs" />
|
345
|
-
<window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="SLIDING" type="SLIDING" visible="false" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
346
|
-
<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" />
|
347
|
-
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.38830897" sideWeight="0.4997236" order="3" side_tool="false" content_ui="tabs" />
|
348
|
-
<window_info id="Thumbnails" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3294979" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
349
|
-
<window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.2498618" sideWeight="0.5" order="2" side_tool="false" content_ui="combo" />
|
350
|
-
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.41336116" sideWeight="0.78275293" order="2" side_tool="false" content_ui="tabs" />
|
351
|
-
<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" />
|
352
|
-
<window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.45093945" sideWeight="0.4997236" order="12" side_tool="false" content_ui="tabs" />
|
353
|
-
</layout>
|
354
|
-
</component>
|
355
|
-
<component name="Vcs.Log.UiProperties">
|
356
|
-
<option name="RECENTLY_FILTERED_USER_GROUPS">
|
357
|
-
<collection />
|
358
|
-
</option>
|
359
|
-
<option name="RECENTLY_FILTERED_BRANCH_GROUPS">
|
360
|
-
<collection />
|
361
|
-
</option>
|
362
|
-
</component>
|
363
|
-
<component name="VcsContentAnnotationSettings">
|
364
|
-
<option name="myLimit" value="2678400000" />
|
365
|
-
</component>
|
366
|
-
<component name="VcsManagerConfiguration">
|
367
|
-
<MESSAGE value="initial commit" />
|
368
|
-
<MESSAGE value="rubygems forgot" />
|
369
|
-
<MESSAGE value="forgot home page" />
|
370
|
-
<MESSAGE value="added link to early mentioned solution" />
|
371
|
-
<option name="LAST_COMMIT_MESSAGE" value="added link to early mentioned solution" />
|
372
|
-
</component>
|
373
|
-
<component name="XDebuggerManager">
|
374
|
-
<breakpoint-manager />
|
375
|
-
<watches-manager />
|
376
|
-
</component>
|
377
|
-
<component name="editorHistoryManager">
|
378
|
-
<entry file="file://$PROJECT_DIR$/lib/pg_cache_key.rb">
|
379
|
-
<provider selected="true" editor-type-id="text-editor">
|
380
|
-
<state vertical-scroll-proportion="0.0">
|
381
|
-
<caret line="18" column="155" selection-start-line="18" selection-start-column="155" selection-end-line="18" selection-end-column="155" />
|
382
|
-
<folding />
|
383
|
-
</state>
|
384
|
-
</provider>
|
385
|
-
</entry>
|
386
|
-
<entry file="file://$PROJECT_DIR$/lib/pg_cache_key/version.rb">
|
387
|
-
<provider selected="true" editor-type-id="text-editor">
|
388
|
-
<state vertical-scroll-proportion="0.0">
|
389
|
-
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
390
|
-
<folding />
|
391
|
-
</state>
|
392
|
-
</provider>
|
393
|
-
</entry>
|
394
|
-
<entry file="file://$PROJECT_DIR$/Gemfile">
|
395
|
-
<provider selected="true" editor-type-id="text-editor">
|
396
|
-
<state vertical-scroll-proportion="0.0">
|
397
|
-
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
398
|
-
<folding />
|
399
|
-
</state>
|
400
|
-
</provider>
|
401
|
-
</entry>
|
402
|
-
<entry file="file://$PROJECT_DIR$/Rakefile">
|
403
|
-
<provider selected="true" editor-type-id="text-editor">
|
404
|
-
<state vertical-scroll-proportion="0.0">
|
405
|
-
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
406
|
-
<folding />
|
407
|
-
</state>
|
408
|
-
</provider>
|
409
|
-
</entry>
|
410
|
-
<entry file="file://$PROJECT_DIR$/pg_cache_key.gemspec">
|
411
|
-
<provider selected="true" editor-type-id="text-editor">
|
412
|
-
<state vertical-scroll-proportion="0.0">
|
413
|
-
<caret line="3" column="21" selection-start-line="3" selection-start-column="9" selection-end-line="3" selection-end-column="21" />
|
414
|
-
<folding />
|
415
|
-
</state>
|
416
|
-
</provider>
|
417
|
-
</entry>
|
418
|
-
<entry file="file://$PROJECT_DIR$/README.md">
|
419
|
-
<provider editor-type-id="MultiMarkdownFxPreviewEditor">
|
420
|
-
<state />
|
421
|
-
</provider>
|
422
|
-
<provider selected="true" editor-type-id="split-provider[text-editor;MultiMarkdownPreviewEditor]">
|
423
|
-
<state split_layout="FIRST">
|
424
|
-
<first_editor vertical-scroll-proportion="0.0">
|
425
|
-
<caret line="11" column="0" selection-start-line="11" selection-start-column="0" selection-end-line="11" selection-end-column="0" />
|
426
|
-
<folding />
|
427
|
-
</first_editor>
|
428
|
-
<second_editor />
|
429
|
-
</state>
|
430
|
-
</provider>
|
431
|
-
</entry>
|
432
|
-
<entry file="file://$PROJECT_DIR$/.gitignore">
|
433
|
-
<provider selected="true" editor-type-id="text-editor">
|
434
|
-
<state vertical-scroll-proportion="0.0">
|
435
|
-
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
436
|
-
<folding />
|
437
|
-
</state>
|
438
|
-
</provider>
|
439
|
-
</entry>
|
440
|
-
<entry file="file://$PROJECT_DIR$/Gemfile">
|
441
|
-
<provider selected="true" editor-type-id="text-editor">
|
442
|
-
<state vertical-scroll-proportion="0.0">
|
443
|
-
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
444
|
-
<folding />
|
445
|
-
</state>
|
446
|
-
</provider>
|
447
|
-
</entry>
|
448
|
-
<entry file="file://$PROJECT_DIR$/Rakefile">
|
449
|
-
<provider selected="true" editor-type-id="text-editor">
|
450
|
-
<state vertical-scroll-proportion="0.0">
|
451
|
-
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
452
|
-
<folding />
|
453
|
-
</state>
|
454
|
-
</provider>
|
455
|
-
</entry>
|
456
|
-
<entry file="file://$PROJECT_DIR$/pg_cache_key.gemspec">
|
457
|
-
<provider selected="true" editor-type-id="text-editor">
|
458
|
-
<state vertical-scroll-proportion="0.0">
|
459
|
-
<caret line="3" column="21" selection-start-line="3" selection-start-column="9" selection-end-line="3" selection-end-column="21" />
|
460
|
-
<folding />
|
461
|
-
</state>
|
462
|
-
</provider>
|
463
|
-
</entry>
|
464
|
-
<entry file="file://$PROJECT_DIR$/README.md">
|
465
|
-
<provider editor-type-id="MultiMarkdownFxPreviewEditor">
|
466
|
-
<state />
|
467
|
-
</provider>
|
468
|
-
<provider selected="true" editor-type-id="split-provider[text-editor;MultiMarkdownPreviewEditor]">
|
469
|
-
<state split_layout="FIRST">
|
470
|
-
<first_editor vertical-scroll-proportion="0.0">
|
471
|
-
<caret line="11" column="0" selection-start-line="11" selection-start-column="0" selection-end-line="11" selection-end-column="0" />
|
472
|
-
<folding />
|
473
|
-
</first_editor>
|
474
|
-
<second_editor />
|
475
|
-
</state>
|
476
|
-
</provider>
|
477
|
-
</entry>
|
478
|
-
<entry file="file://$PROJECT_DIR$/.gitignore">
|
479
|
-
<provider selected="true" editor-type-id="text-editor">
|
480
|
-
<state vertical-scroll-proportion="0.0">
|
481
|
-
<caret line="0" column="7" selection-start-line="0" selection-start-column="7" selection-end-line="0" selection-end-column="7" />
|
482
|
-
<folding />
|
483
|
-
</state>
|
484
|
-
</provider>
|
485
|
-
</entry>
|
486
|
-
<entry file="file://$PROJECT_DIR$/lib/pg_cache_key/version.rb">
|
487
|
-
<provider selected="true" editor-type-id="text-editor">
|
488
|
-
<state vertical-scroll-proportion="0.0">
|
489
|
-
<caret line="1" column="18" selection-start-line="1" selection-start-column="18" selection-end-line="1" selection-end-column="18" />
|
490
|
-
<folding />
|
491
|
-
</state>
|
492
|
-
</provider>
|
493
|
-
</entry>
|
494
|
-
<entry file="file://$PROJECT_DIR$/lib/pg_cache_key.rb">
|
495
|
-
<provider selected="true" editor-type-id="text-editor">
|
496
|
-
<state vertical-scroll-proportion="0.64600325">
|
497
|
-
<caret line="25" column="34" selection-start-line="25" selection-start-column="34" selection-end-line="25" selection-end-column="34" />
|
498
|
-
<folding />
|
499
|
-
</state>
|
500
|
-
</provider>
|
501
|
-
</entry>
|
502
|
-
</component>
|
503
|
-
</project>
|