rails_select_on_includes 0.4.10 → 0.4.11
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/README.md +8 -8
- data/lib/rails_select_on_includes/version.rb +1 -1
- data/lib/rails_select_on_includes.rb +5 -6
- metadata +3 -8
- data/.idea/.name +0 -1
- data/.idea/misc.xml +0 -14
- data/.idea/rails_select_on_includes.iml +0 -30
- data/.idea/vcs.xml +0 -6
- data/.idea/workspace.xml +0 -970
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 03fed7f9c9270e12f70fd00de87733d07044167b
|
4
|
+
data.tar.gz: 50044e3b724e9226ce359450f3032e53db3152dc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f5356f752a1362055feeba69ed3520d3465a8564cafd553d0da6b062f2f8d484372b70bc65eaed380bed0bce0a0ddf641afe63ffa5f9ca55e04bfceda68e10a4
|
7
|
+
data.tar.gz: '068a8257e1ec1791f43ea534e942f16c8a537383bc81e4413812bf40b88a0fb3859a60d2695819c7e1d25eceefa96e8d28debd15fc5a4c32d547493a718cbd2a'
|
data/README.md
CHANGED
@@ -89,11 +89,11 @@ Works out of the box, monkey-patches base-class alias columns, for select attrib
|
|
89
89
|
It not affecting query creation, since query already contains all columns, i.e. to_sql returns same string.
|
90
90
|
Works with selection in all formats:
|
91
91
|
|
92
|
-
1 'table_name.column' or 'table_name.column as column_1'
|
92
|
+
1. 'table_name.column' or 'table_name.column as column_1' will be parsed! distinct on can be used also
|
93
|
+
2. '(subquery with AS) AS column_1 '
|
94
|
+
3. Select with aliased arel function: .select(Comment.arel_table[:id].count.as('comments_count'))
|
95
|
+
4. Select with aliased arel attirubte: .select(Comment.arel_table[:column].as('column_alias'))
|
93
96
|
|
94
|
-
2 { table_name: column } or { table_name: [column1, column2] }
|
95
|
-
|
96
|
-
3 { table_name: 2 } where 2 relates to upper syntax
|
97
97
|
|
98
98
|
## Usage (рус)
|
99
99
|
|
@@ -101,11 +101,11 @@ Works with selection in all formats:
|
|
101
101
|
|
102
102
|
Поддерживает select в следующих форматах :
|
103
103
|
|
104
|
-
1 'table_name.column' or 'table_name.column as column_1'
|
105
|
-
|
106
|
-
|
104
|
+
1. 'table_name.column' or 'table_name.column as column_1' will be parsed! distinct on can be used also
|
105
|
+
2. '(subquery with AS) AS column_1 '
|
106
|
+
3. Select with aliased arel function: .select(Comment.arel_table[:id].count.as('comments_count'))
|
107
|
+
4. Select with aliased arel attirubte: .select(Comment.arel_table[:column].as('column_alias'))
|
107
108
|
|
108
|
-
3 { table_name: 2 } where 2 relates to upper syntax
|
109
109
|
|
110
110
|
## Testing
|
111
111
|
|
@@ -20,21 +20,20 @@ require 'active_support/core_ext/string/filters'
|
|
20
20
|
@virtual_attributes_names = []
|
21
21
|
end
|
22
22
|
# valid formats are:
|
23
|
-
#
|
24
|
-
#
|
25
|
-
#
|
23
|
+
# 'table_name.column' or 'table_name.column as column_1' will be parsed! distinct on can be used also
|
24
|
+
# '(subquery with AS) AS column_1 '
|
25
|
+
# Select with aliased arel function: .select(Comment.arel_table[:id].count.as('comments_count'))
|
26
|
+
# Select with aliased arel attirubte: .select(Comment.arel_table[:column].as('column_alias'))
|
26
27
|
def update_aliases_to_select_values( select_values )
|
27
28
|
return if select_values.blank?
|
28
29
|
select_values.each do |sv|
|
29
30
|
# if sv is symbol that we assume that its a base table column and it will be aliased and added as usual
|
30
31
|
# all we need is some specials joins+select from related tables
|
31
32
|
case sv
|
32
|
-
when Hash
|
33
|
-
flatten_hash_values(sv).each { |sub_sv| add_virtual_attribute(sub_sv) }
|
34
33
|
when String
|
35
34
|
sv.split( ", " ).each do |sub_sv|
|
36
35
|
if sub_sv[/.+ as .+/i]
|
37
|
-
add_virtual_attribute(sub_sv
|
36
|
+
add_virtual_attribute(sub_sv.rpartition(/ as /i).last.strip)
|
38
37
|
elsif sub_sv[/.+\.[^\*]+/]
|
39
38
|
add_virtual_attribute(sub_sv[/\..+/][1..-1].strip)
|
40
39
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails_select_on_includes
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- alekseyl
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-10-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|
@@ -61,11 +61,6 @@ extensions: []
|
|
61
61
|
extra_rdoc_files: []
|
62
62
|
files:
|
63
63
|
- ".gitignore"
|
64
|
-
- ".idea/.name"
|
65
|
-
- ".idea/misc.xml"
|
66
|
-
- ".idea/rails_select_on_includes.iml"
|
67
|
-
- ".idea/vcs.xml"
|
68
|
-
- ".idea/workspace.xml"
|
69
64
|
- Gemfile
|
70
65
|
- LICENSE.txt
|
71
66
|
- README.md
|
@@ -94,7 +89,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
94
89
|
version: '0'
|
95
90
|
requirements: []
|
96
91
|
rubyforge_project:
|
97
|
-
rubygems_version: 2.
|
92
|
+
rubygems_version: 2.6.11
|
98
93
|
signing_key:
|
99
94
|
specification_version: 4
|
100
95
|
summary: Patching rails include/select/virtual attributes issue
|
data/.idea/.name
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
rails_select_on_includes
|
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>
|
@@ -1,30 +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="activemodel (v5.0.0.1, RVM: ruby-2.3.0 [pg_cache]) [gem]" level="application" />
|
19
|
-
<orderEntry type="library" scope="PROVIDED" name="activerecord (v5.0.0.1, RVM: ruby-2.3.0 [pg_cache]) [gem]" level="application" />
|
20
|
-
<orderEntry type="library" scope="PROVIDED" name="activesupport (v5.0.0.1, RVM: ruby-2.3.0 [pg_cache]) [gem]" level="application" />
|
21
|
-
<orderEntry type="library" scope="PROVIDED" name="arel (v7.1.2, RVM: ruby-2.3.0 [pg_cache]) [gem]" level="application" />
|
22
|
-
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.13.1, RVM: ruby-2.3.0 [pg_cache]) [gem]" level="application" />
|
23
|
-
<orderEntry type="library" scope="PROVIDED" name="concurrent-ruby (v1.0.2, RVM: ruby-2.3.0 [pg_cache]) [gem]" level="application" />
|
24
|
-
<orderEntry type="library" scope="PROVIDED" name="i18n (v0.7.0, RVM: ruby-2.3.0 [pg_cache]) [gem]" level="application" />
|
25
|
-
<orderEntry type="library" scope="PROVIDED" name="minitest (v5.9.1, RVM: ruby-2.3.0 [pg_cache]) [gem]" level="application" />
|
26
|
-
<orderEntry type="library" scope="PROVIDED" name="rake (v10.4.2, RVM: ruby-2.3.0 [pg_cache]) [gem]" level="application" />
|
27
|
-
<orderEntry type="library" scope="PROVIDED" name="thread_safe (v0.3.5, RVM: ruby-2.3.0 [pg_cache]) [gem]" level="application" />
|
28
|
-
<orderEntry type="library" scope="PROVIDED" name="tzinfo (v1.2.2, RVM: ruby-2.3.0 [pg_cache]) [gem]" level="application" />
|
29
|
-
</component>
|
30
|
-
</module>
|
data/.idea/vcs.xml
DELETED
data/.idea/workspace.xml
DELETED
@@ -1,970 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<project version="4">
|
3
|
-
<component name="ChangeListManager">
|
4
|
-
<list default="true" id="e9b8aeec-46b7-4241-ab0a-cc8285e66518" name="Default" comment="close err on load, same class now is used for rails 4">
|
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/rails_select_on_includes.iml" />
|
8
|
-
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/vcs.xml" />
|
9
|
-
<change type="NEW" beforePath="" afterPath="$PROJECT_DIR$/.idea/workspace.xml" />
|
10
|
-
</list>
|
11
|
-
<ignored path="rails_select_on_includes.iws" />
|
12
|
-
<ignored path=".idea/workspace.xml" />
|
13
|
-
<ignored path=".idea/dataSources.local.xml" />
|
14
|
-
<option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
|
15
|
-
<option name="TRACKING_ENABLED" value="true" />
|
16
|
-
<option name="SHOW_DIALOG" value="false" />
|
17
|
-
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
18
|
-
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
19
|
-
<option name="LAST_RESOLUTION" value="IGNORE" />
|
20
|
-
</component>
|
21
|
-
<component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
|
22
|
-
<component name="CreatePatchCommitExecutor">
|
23
|
-
<option name="PATCH_PATH" value="" />
|
24
|
-
</component>
|
25
|
-
<component name="ExecutionTargetManager" SELECTED_TARGET="default_target" />
|
26
|
-
<component name="FavoritesManager">
|
27
|
-
<favorites_list name="rails_select_on_includes" />
|
28
|
-
</component>
|
29
|
-
<component name="FileEditorManager">
|
30
|
-
<leaf>
|
31
|
-
<file leaf-file-name="rails_select_on_includes.rb" pinned="false" current-in-tab="false">
|
32
|
-
<entry file="file://$PROJECT_DIR$/lib/rails_select_on_includes.rb">
|
33
|
-
<provider selected="true" editor-type-id="text-editor">
|
34
|
-
<state vertical-scroll-proportion="0.0">
|
35
|
-
<caret line="64" column="54" selection-start-line="64" selection-start-column="54" selection-end-line="64" selection-end-column="54" />
|
36
|
-
<folding />
|
37
|
-
</state>
|
38
|
-
</provider>
|
39
|
-
</entry>
|
40
|
-
</file>
|
41
|
-
<file leaf-file-name="version.rb" pinned="false" current-in-tab="false">
|
42
|
-
<entry file="file://$PROJECT_DIR$/lib/rails_select_on_includes/version.rb">
|
43
|
-
<provider selected="true" editor-type-id="text-editor">
|
44
|
-
<state vertical-scroll-proportion="-1.862069">
|
45
|
-
<caret line="3" column="0" selection-start-line="3" selection-start-column="0" selection-end-line="3" selection-end-column="0" />
|
46
|
-
<folding />
|
47
|
-
</state>
|
48
|
-
</provider>
|
49
|
-
</entry>
|
50
|
-
</file>
|
51
|
-
<file leaf-file-name="Gemfile" pinned="false" current-in-tab="false">
|
52
|
-
<entry file="file://$PROJECT_DIR$/Gemfile">
|
53
|
-
<provider selected="true" editor-type-id="text-editor">
|
54
|
-
<state vertical-scroll-proportion="0.0">
|
55
|
-
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
56
|
-
<folding />
|
57
|
-
</state>
|
58
|
-
</provider>
|
59
|
-
</entry>
|
60
|
-
</file>
|
61
|
-
<file leaf-file-name="rails_select_on_includes.gemspec" pinned="false" current-in-tab="false">
|
62
|
-
<entry file="file://$PROJECT_DIR$/rails_select_on_includes.gemspec">
|
63
|
-
<provider selected="true" editor-type-id="text-editor">
|
64
|
-
<state vertical-scroll-proportion="-9.931034">
|
65
|
-
<caret line="16" column="96" selection-start-line="16" selection-start-column="96" selection-end-line="16" selection-end-column="96" />
|
66
|
-
<folding />
|
67
|
-
</state>
|
68
|
-
</provider>
|
69
|
-
</entry>
|
70
|
-
</file>
|
71
|
-
<file leaf-file-name=".gitignore" pinned="false" current-in-tab="true">
|
72
|
-
<entry file="file://$PROJECT_DIR$/.gitignore">
|
73
|
-
<provider selected="true" editor-type-id="text-editor">
|
74
|
-
<state vertical-scroll-proportion="0.0">
|
75
|
-
<caret line="0" column="6" selection-start-line="0" selection-start-column="6" selection-end-line="0" selection-end-column="6" />
|
76
|
-
<folding />
|
77
|
-
</state>
|
78
|
-
</provider>
|
79
|
-
</entry>
|
80
|
-
</file>
|
81
|
-
<file leaf-file-name="README.md" pinned="false" current-in-tab="false">
|
82
|
-
<entry file="file://$PROJECT_DIR$/README.md">
|
83
|
-
<provider selected="true" editor-type-id="split-provider[text-editor;MultiMarkdownPreviewEditor]">
|
84
|
-
<state split_layout="FIRST">
|
85
|
-
<first_editor vertical-scroll-proportion="0.0">
|
86
|
-
<caret line="22" column="0" selection-start-line="22" selection-start-column="0" selection-end-line="22" selection-end-column="0" />
|
87
|
-
<folding />
|
88
|
-
</first_editor>
|
89
|
-
<second_editor />
|
90
|
-
</state>
|
91
|
-
</provider>
|
92
|
-
<provider editor-type-id="MultiMarkdownFxPreviewEditor">
|
93
|
-
<state />
|
94
|
-
</provider>
|
95
|
-
</entry>
|
96
|
-
</file>
|
97
|
-
</leaf>
|
98
|
-
</component>
|
99
|
-
<component name="Git.Settings">
|
100
|
-
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
101
|
-
<option name="RECENT_BRANCH_BY_REPOSITORY">
|
102
|
-
<map>
|
103
|
-
<entry key="$PROJECT_DIR$" value="rails_4" />
|
104
|
-
</map>
|
105
|
-
</option>
|
106
|
-
</component>
|
107
|
-
<component name="IdeDocumentHistory">
|
108
|
-
<option name="CHANGED_PATHS">
|
109
|
-
<list>
|
110
|
-
<option value="$PROJECT_DIR$/.gitignore" />
|
111
|
-
<option value="$PROJECT_DIR$/README.md" />
|
112
|
-
<option value="$PROJECT_DIR$/lib/rails_select_on_includes.rb" />
|
113
|
-
<option value="$PROJECT_DIR$/rails_select_on_includes.gemspec" />
|
114
|
-
<option value="$PROJECT_DIR$/lib/rails_select_on_includes/version.rb" />
|
115
|
-
</list>
|
116
|
-
</option>
|
117
|
-
</component>
|
118
|
-
<component name="JsBuildToolGruntFileManager" detection-done="true" />
|
119
|
-
<component name="JsGulpfileManager">
|
120
|
-
<detection-done>true</detection-done>
|
121
|
-
</component>
|
122
|
-
<component name="NamedScopeManager">
|
123
|
-
<order />
|
124
|
-
</component>
|
125
|
-
<component name="ProjectFrameBounds">
|
126
|
-
<option name="x" value="65" />
|
127
|
-
<option name="y" value="24" />
|
128
|
-
<option name="width" value="1855" />
|
129
|
-
<option name="height" value="1056" />
|
130
|
-
</component>
|
131
|
-
<component name="ProjectLevelVcsManager" settingsEditedManually="true">
|
132
|
-
<OptionsSetting value="true" id="Add" />
|
133
|
-
<OptionsSetting value="true" id="Remove" />
|
134
|
-
<OptionsSetting value="true" id="Checkout" />
|
135
|
-
<OptionsSetting value="true" id="Update" />
|
136
|
-
<OptionsSetting value="true" id="Status" />
|
137
|
-
<OptionsSetting value="true" id="Edit" />
|
138
|
-
<ConfirmationsSetting value="0" id="Add" />
|
139
|
-
<ConfirmationsSetting value="0" id="Remove" />
|
140
|
-
</component>
|
141
|
-
<component name="ProjectView">
|
142
|
-
<navigator currentView="ProjectPane" proportions="" version="1">
|
143
|
-
<flattenPackages />
|
144
|
-
<showMembers />
|
145
|
-
<showModules />
|
146
|
-
<showLibraryContents />
|
147
|
-
<hideEmptyPackages />
|
148
|
-
<abbreviatePackageNames />
|
149
|
-
<autoscrollToSource />
|
150
|
-
<autoscrollFromSource />
|
151
|
-
<sortByType />
|
152
|
-
</navigator>
|
153
|
-
<panes>
|
154
|
-
<pane id="ProjectPane">
|
155
|
-
<subPane>
|
156
|
-
<PATH>
|
157
|
-
<PATH_ELEMENT>
|
158
|
-
<option name="myItemId" value="rails_select_on_includes" />
|
159
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
160
|
-
</PATH_ELEMENT>
|
161
|
-
</PATH>
|
162
|
-
<PATH>
|
163
|
-
<PATH_ELEMENT>
|
164
|
-
<option name="myItemId" value="rails_select_on_includes" />
|
165
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
166
|
-
</PATH_ELEMENT>
|
167
|
-
<PATH_ELEMENT>
|
168
|
-
<option name="myItemId" value="rails_select_on_includes" />
|
169
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
170
|
-
</PATH_ELEMENT>
|
171
|
-
</PATH>
|
172
|
-
<PATH>
|
173
|
-
<PATH_ELEMENT>
|
174
|
-
<option name="myItemId" value="rails_select_on_includes" />
|
175
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
176
|
-
</PATH_ELEMENT>
|
177
|
-
<PATH_ELEMENT>
|
178
|
-
<option name="myItemId" value="rails_select_on_includes" />
|
179
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
180
|
-
</PATH_ELEMENT>
|
181
|
-
<PATH_ELEMENT>
|
182
|
-
<option name="myItemId" value="lib" />
|
183
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
184
|
-
</PATH_ELEMENT>
|
185
|
-
</PATH>
|
186
|
-
<PATH>
|
187
|
-
<PATH_ELEMENT>
|
188
|
-
<option name="myItemId" value="rails_select_on_includes" />
|
189
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
190
|
-
</PATH_ELEMENT>
|
191
|
-
<PATH_ELEMENT>
|
192
|
-
<option name="myItemId" value="rails_select_on_includes" />
|
193
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
194
|
-
</PATH_ELEMENT>
|
195
|
-
<PATH_ELEMENT>
|
196
|
-
<option name="myItemId" value="lib" />
|
197
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
198
|
-
</PATH_ELEMENT>
|
199
|
-
<PATH_ELEMENT>
|
200
|
-
<option name="myItemId" value="rails_select_on_includes" />
|
201
|
-
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
202
|
-
</PATH_ELEMENT>
|
203
|
-
</PATH>
|
204
|
-
</subPane>
|
205
|
-
</pane>
|
206
|
-
<pane id="Scratches" />
|
207
|
-
<pane id="Scope" />
|
208
|
-
</panes>
|
209
|
-
</component>
|
210
|
-
<component name="PropertiesComponent">
|
211
|
-
<property name="WebServerToolWindowFactoryState" value="false" />
|
212
|
-
<property name="FullScreen" value="false" />
|
213
|
-
<property name="FileHistory.git4idea.history.GitHistoryProvider_flatWidth0" value="202" />
|
214
|
-
<property name="FileHistory.git4idea.history.GitHistoryProvider_flatOrder0" value="0" />
|
215
|
-
<property name="FileHistory.git4idea.history.GitHistoryProvider_flatWidth1" value="222" />
|
216
|
-
<property name="FileHistory.git4idea.history.GitHistoryProvider_flatOrder1" value="1" />
|
217
|
-
<property name="FileHistory.git4idea.history.GitHistoryProvider_flatWidth2" value="228" />
|
218
|
-
<property name="FileHistory.git4idea.history.GitHistoryProvider_flatOrder2" value="2" />
|
219
|
-
<property name="FileHistory.git4idea.history.GitHistoryProvider_flatWidth3" value="1127" />
|
220
|
-
<property name="FileHistory.git4idea.history.GitHistoryProvider_flatOrder3" value="3" />
|
221
|
-
<property name="FileHistory.git4idea.history.GitHistoryProvider_treeWidth0" value="202" />
|
222
|
-
<property name="FileHistory.git4idea.history.GitHistoryProvider_treeOrder0" value="0" />
|
223
|
-
<property name="FileHistory.git4idea.history.GitHistoryProvider_treeWidth1" value="222" />
|
224
|
-
<property name="FileHistory.git4idea.history.GitHistoryProvider_treeOrder1" value="1" />
|
225
|
-
<property name="FileHistory.git4idea.history.GitHistoryProvider_treeWidth2" value="228" />
|
226
|
-
<property name="FileHistory.git4idea.history.GitHistoryProvider_treeOrder2" value="2" />
|
227
|
-
<property name="FileHistory.git4idea.history.GitHistoryProvider_treeWidth3" value="1127" />
|
228
|
-
<property name="FileHistory.git4idea.history.GitHistoryProvider_treeOrder3" value="3" />
|
229
|
-
</component>
|
230
|
-
<component name="RunManager">
|
231
|
-
<configuration default="true" type="CucumberRunConfigurationType" factoryName="Cucumber">
|
232
|
-
<predefined_log_file id="RUBY_CUCUMBER" enabled="true" />
|
233
|
-
<module name="" />
|
234
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
235
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
236
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
237
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
238
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
239
|
-
<envs />
|
240
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
241
|
-
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
242
|
-
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
243
|
-
<COVERAGE_PATTERN ENABLED="true">
|
244
|
-
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
245
|
-
</COVERAGE_PATTERN>
|
246
|
-
</EXTENSION>
|
247
|
-
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
248
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*.feature" />
|
249
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
250
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
251
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
252
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TAGS_FILTER" VALUE="" />
|
253
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_NAME_FILTER" VALUE="" />
|
254
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_ARGS" VALUE="--color -r features" />
|
255
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
256
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
257
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="VERBOSE_OPTION" VALUE="false" />
|
258
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
259
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
260
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
261
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_RUNNER_PATH" VALUE="" />
|
262
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_RUNNER" VALUE="false" />
|
263
|
-
<CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SETTINGS_VERSION" VALUE="2" />
|
264
|
-
<method />
|
265
|
-
</configuration>
|
266
|
-
<configuration default="true" type="JavascriptDebugType" factoryName="JavaScript Debug">
|
267
|
-
<method />
|
268
|
-
</configuration>
|
269
|
-
<configuration default="true" type="RSpecRunConfigurationType" factoryName="RSpec">
|
270
|
-
<predefined_log_file id="RUBY_RSPEC" enabled="true" />
|
271
|
-
<module name="" />
|
272
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
273
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
274
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
275
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
276
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
277
|
-
<envs />
|
278
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
279
|
-
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
280
|
-
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
281
|
-
<COVERAGE_PATTERN ENABLED="true">
|
282
|
-
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
283
|
-
</COVERAGE_PATTERN>
|
284
|
-
</EXTENSION>
|
285
|
-
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
286
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
287
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
288
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
|
289
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
|
290
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
|
291
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
292
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
|
293
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
|
294
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
|
295
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
296
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
297
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
298
|
-
<RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
|
299
|
-
<method />
|
300
|
-
</configuration>
|
301
|
-
<configuration default="true" type="RubyRunConfigurationType" factoryName="Ruby">
|
302
|
-
<module name="" />
|
303
|
-
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
304
|
-
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="" />
|
305
|
-
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
306
|
-
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
307
|
-
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
308
|
-
<envs />
|
309
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
310
|
-
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
311
|
-
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
312
|
-
<COVERAGE_PATTERN ENABLED="true">
|
313
|
-
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
314
|
-
</COVERAGE_PATTERN>
|
315
|
-
</EXTENSION>
|
316
|
-
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
317
|
-
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="" />
|
318
|
-
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
319
|
-
<method />
|
320
|
-
</configuration>
|
321
|
-
<configuration default="true" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest">
|
322
|
-
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
323
|
-
<module name="" />
|
324
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
325
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
|
326
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
327
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
328
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
329
|
-
<envs />
|
330
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
331
|
-
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
332
|
-
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
333
|
-
<COVERAGE_PATTERN ENABLED="true">
|
334
|
-
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
335
|
-
</COVERAGE_PATTERN>
|
336
|
-
</EXTENSION>
|
337
|
-
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
338
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
339
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
|
340
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
341
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
|
342
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
343
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
344
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
345
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
346
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
347
|
-
<method />
|
348
|
-
</configuration>
|
349
|
-
<configuration default="true" type="js.build_tools.gulp" factoryName="Gulp.js">
|
350
|
-
<node-options />
|
351
|
-
<gulpfile />
|
352
|
-
<tasks />
|
353
|
-
<arguments />
|
354
|
-
<pass-parent-envs>true</pass-parent-envs>
|
355
|
-
<envs />
|
356
|
-
<method />
|
357
|
-
</configuration>
|
358
|
-
</component>
|
359
|
-
<component name="ShelveChangesManager" show_recycled="false" />
|
360
|
-
<component name="SvnConfiguration">
|
361
|
-
<configuration />
|
362
|
-
</component>
|
363
|
-
<component name="TaskManager">
|
364
|
-
<task active="true" id="Default" summary="Default task">
|
365
|
-
<changelist id="e9b8aeec-46b7-4241-ab0a-cc8285e66518" name="Default" comment="" />
|
366
|
-
<created>1474649042660</created>
|
367
|
-
<option name="number" value="Default" />
|
368
|
-
<updated>1474649042660</updated>
|
369
|
-
</task>
|
370
|
-
<task id="LOCAL-00001" summary="initial commit">
|
371
|
-
<created>1474656316766</created>
|
372
|
-
<option name="number" value="00001" />
|
373
|
-
<option name="project" value="LOCAL" />
|
374
|
-
<updated>1474656316766</updated>
|
375
|
-
</task>
|
376
|
-
<task id="LOCAL-00002" summary="flatten_hash_values errors">
|
377
|
-
<created>1475220722849</created>
|
378
|
-
<option name="number" value="00002" />
|
379
|
-
<option name="project" value="LOCAL" />
|
380
|
-
<updated>1475220722849</updated>
|
381
|
-
</task>
|
382
|
-
<task id="LOCAL-00003" summary="case insensitive as">
|
383
|
-
<created>1481543915924</created>
|
384
|
-
<option name="number" value="00003" />
|
385
|
-
<option name="project" value="LOCAL" />
|
386
|
-
<updated>1481543915924</updated>
|
387
|
-
</task>
|
388
|
-
<task id="LOCAL-00004" summary="split version to 4.2 and 5 as rails">
|
389
|
-
<created>1483724081540</created>
|
390
|
-
<option name="number" value="00004" />
|
391
|
-
<option name="project" value="LOCAL" />
|
392
|
-
<updated>1483724081540</updated>
|
393
|
-
</task>
|
394
|
-
<task id="LOCAL-00005" summary="0.5 version for rails 5">
|
395
|
-
<created>1483724342632</created>
|
396
|
-
<option name="number" value="00005" />
|
397
|
-
<option name="project" value="LOCAL" />
|
398
|
-
<updated>1483724342632</updated>
|
399
|
-
</task>
|
400
|
-
<task id="LOCAL-00006" summary="0.5.1 with types on virtual attributes">
|
401
|
-
<created>1487054204393</created>
|
402
|
-
<option name="number" value="00006" />
|
403
|
-
<option name="project" value="LOCAL" />
|
404
|
-
<updated>1487054204393</updated>
|
405
|
-
</task>
|
406
|
-
<task id="LOCAL-00007" summary="https://github.com/alekseyl/rails_select_on_includes/issues/3 done.">
|
407
|
-
<created>1487058271545</created>
|
408
|
-
<option name="number" value="00007" />
|
409
|
-
<option name="project" value="LOCAL" />
|
410
|
-
<updated>1487058271545</updated>
|
411
|
-
</task>
|
412
|
-
<task id="LOCAL-00008" summary="refactored to class_eval">
|
413
|
-
<created>1487140804921</created>
|
414
|
-
<option name="number" value="00008" />
|
415
|
-
<option name="project" value="LOCAL" />
|
416
|
-
<updated>1487140804921</updated>
|
417
|
-
</task>
|
418
|
-
<task id="LOCAL-00009" summary="refactored to class_eval">
|
419
|
-
<created>1487274511446</created>
|
420
|
-
<option name="number" value="00009" />
|
421
|
-
<option name="project" value="LOCAL" />
|
422
|
-
<updated>1487274511446</updated>
|
423
|
-
</task>
|
424
|
-
<task id="LOCAL-00010" summary="close err on load, same class now is used for rails 4">
|
425
|
-
<created>1487284823632</created>
|
426
|
-
<option name="number" value="00010" />
|
427
|
-
<option name="project" value="LOCAL" />
|
428
|
-
<updated>1487284823632</updated>
|
429
|
-
</task>
|
430
|
-
<task id="LOCAL-00011" summary="ArelNodes+">
|
431
|
-
<created>1500544250765</created>
|
432
|
-
<option name="number" value="00011" />
|
433
|
-
<option name="project" value="LOCAL" />
|
434
|
-
<updated>1500544250765</updated>
|
435
|
-
</task>
|
436
|
-
<option name="localTasksCounter" value="12" />
|
437
|
-
<servers />
|
438
|
-
</component>
|
439
|
-
<component name="ToolWindowManager">
|
440
|
-
<frame x="65" y="24" width="1855" height="1056" extended-state="6" />
|
441
|
-
<editor active="false" />
|
442
|
-
<layout>
|
443
|
-
<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" />
|
444
|
-
<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" />
|
445
|
-
<window_info id="Messages" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32881" sideWeight="0.5" order="8" side_tool="false" content_ui="tabs" />
|
446
|
-
<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" />
|
447
|
-
<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" />
|
448
|
-
<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" />
|
449
|
-
<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" />
|
450
|
-
<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" />
|
451
|
-
<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" />
|
452
|
-
<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" />
|
453
|
-
<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" />
|
454
|
-
<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" />
|
455
|
-
<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" />
|
456
|
-
<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" />
|
457
|
-
<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" />
|
458
|
-
<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" />
|
459
|
-
<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" />
|
460
|
-
<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" />
|
461
|
-
<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" />
|
462
|
-
<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" />
|
463
|
-
<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" />
|
464
|
-
</layout>
|
465
|
-
</component>
|
466
|
-
<component name="Vcs.Log.UiProperties">
|
467
|
-
<option name="RECENTLY_FILTERED_USER_GROUPS">
|
468
|
-
<collection />
|
469
|
-
</option>
|
470
|
-
<option name="RECENTLY_FILTERED_BRANCH_GROUPS">
|
471
|
-
<collection />
|
472
|
-
</option>
|
473
|
-
</component>
|
474
|
-
<component name="VcsContentAnnotationSettings">
|
475
|
-
<option name="myLimit" value="2678400000" />
|
476
|
-
</component>
|
477
|
-
<component name="VcsManagerConfiguration">
|
478
|
-
<MESSAGE value="initial commit" />
|
479
|
-
<MESSAGE value="flatten_hash_values errors" />
|
480
|
-
<MESSAGE value="case insensitive as" />
|
481
|
-
<MESSAGE value="split version to 4.2 and 5 as rails" />
|
482
|
-
<MESSAGE value="0.5 version for rails 5" />
|
483
|
-
<MESSAGE value="0.5.1 with types on virtual attributes" />
|
484
|
-
<MESSAGE value="https://github.com/alekseyl/rails_select_on_includes/issues/3 done." />
|
485
|
-
<MESSAGE value="refactored to class_eval" />
|
486
|
-
<MESSAGE value="close err on load, same class now is used for rails 4" />
|
487
|
-
<MESSAGE value="ArelNodes+" />
|
488
|
-
<option name="LAST_COMMIT_MESSAGE" value="ArelNodes+" />
|
489
|
-
</component>
|
490
|
-
<component name="XDebuggerManager">
|
491
|
-
<breakpoint-manager />
|
492
|
-
<watches-manager />
|
493
|
-
</component>
|
494
|
-
<component name="editorHistoryManager">
|
495
|
-
<entry file="file://$PROJECT_DIR$/Gemfile">
|
496
|
-
<provider selected="true" editor-type-id="text-editor">
|
497
|
-
<state vertical-scroll-proportion="0.0">
|
498
|
-
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
499
|
-
<folding />
|
500
|
-
</state>
|
501
|
-
</provider>
|
502
|
-
</entry>
|
503
|
-
<entry file="file://$PROJECT_DIR$/rails_select_on_includes.gemspec">
|
504
|
-
<provider selected="true" editor-type-id="text-editor">
|
505
|
-
<state vertical-scroll-proportion="0.0">
|
506
|
-
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
507
|
-
<folding />
|
508
|
-
</state>
|
509
|
-
</provider>
|
510
|
-
</entry>
|
511
|
-
<entry file="file://$PROJECT_DIR$/.gitignore">
|
512
|
-
<provider selected="true" editor-type-id="text-editor">
|
513
|
-
<state vertical-scroll-proportion="0.0">
|
514
|
-
<caret line="0" column="6" selection-start-line="0" selection-start-column="6" selection-end-line="0" selection-end-column="6" />
|
515
|
-
<folding />
|
516
|
-
</state>
|
517
|
-
</provider>
|
518
|
-
</entry>
|
519
|
-
<entry file="file://$PROJECT_DIR$/README.md">
|
520
|
-
<provider selected="true" editor-type-id="split-provider[text-editor;MultiMarkdownPreviewEditor]">
|
521
|
-
<state split_layout="FIRST">
|
522
|
-
<first_editor vertical-scroll-proportion="0.0">
|
523
|
-
<caret line="22" column="0" selection-start-line="22" selection-start-column="0" selection-end-line="22" selection-end-column="0" />
|
524
|
-
<folding />
|
525
|
-
</first_editor>
|
526
|
-
<second_editor />
|
527
|
-
</state>
|
528
|
-
</provider>
|
529
|
-
<provider editor-type-id="MultiMarkdownFxPreviewEditor">
|
530
|
-
<state />
|
531
|
-
</provider>
|
532
|
-
</entry>
|
533
|
-
<entry file="file://$PROJECT_DIR$/lib/rails_select_on_includes.rb">
|
534
|
-
<provider selected="true" editor-type-id="text-editor">
|
535
|
-
<state vertical-scroll-proportion="0.0">
|
536
|
-
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
537
|
-
<folding />
|
538
|
-
</state>
|
539
|
-
</provider>
|
540
|
-
</entry>
|
541
|
-
<entry file="file://$PROJECT_DIR$/lib/rails_select_on_includes/version.rb">
|
542
|
-
<provider selected="true" editor-type-id="text-editor">
|
543
|
-
<state vertical-scroll-proportion="0.0">
|
544
|
-
<caret line="1" column="18" selection-start-line="1" selection-start-column="18" selection-end-line="1" selection-end-column="18" />
|
545
|
-
<folding />
|
546
|
-
</state>
|
547
|
-
</provider>
|
548
|
-
</entry>
|
549
|
-
<entry file="file://$PROJECT_DIR$/Gemfile">
|
550
|
-
<provider selected="true" editor-type-id="text-editor">
|
551
|
-
<state vertical-scroll-proportion="0.0">
|
552
|
-
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
553
|
-
<folding />
|
554
|
-
</state>
|
555
|
-
</provider>
|
556
|
-
</entry>
|
557
|
-
<entry file="file://$PROJECT_DIR$/rails_select_on_includes.gemspec">
|
558
|
-
<provider selected="true" editor-type-id="text-editor">
|
559
|
-
<state vertical-scroll-proportion="0.0">
|
560
|
-
<caret line="19" column="23" selection-start-line="19" selection-start-column="23" selection-end-line="19" selection-end-column="23" />
|
561
|
-
<folding />
|
562
|
-
</state>
|
563
|
-
</provider>
|
564
|
-
</entry>
|
565
|
-
<entry file="file://$PROJECT_DIR$/.gitignore">
|
566
|
-
<provider selected="true" editor-type-id="text-editor">
|
567
|
-
<state vertical-scroll-proportion="0.0">
|
568
|
-
<caret line="0" column="6" selection-start-line="0" selection-start-column="6" selection-end-line="0" selection-end-column="6" />
|
569
|
-
<folding />
|
570
|
-
</state>
|
571
|
-
</provider>
|
572
|
-
</entry>
|
573
|
-
<entry file="file://$PROJECT_DIR$/README.md">
|
574
|
-
<provider selected="true" editor-type-id="split-provider[text-editor;MultiMarkdownPreviewEditor]">
|
575
|
-
<state split_layout="FIRST">
|
576
|
-
<first_editor vertical-scroll-proportion="0.0">
|
577
|
-
<caret line="26" column="0" selection-start-line="26" selection-start-column="0" selection-end-line="26" selection-end-column="0" />
|
578
|
-
<folding />
|
579
|
-
</first_editor>
|
580
|
-
<second_editor />
|
581
|
-
</state>
|
582
|
-
</provider>
|
583
|
-
<provider editor-type-id="MultiMarkdownFxPreviewEditor">
|
584
|
-
<state />
|
585
|
-
</provider>
|
586
|
-
</entry>
|
587
|
-
<entry file="file://$PROJECT_DIR$/lib/rails_select_on_includes.rb">
|
588
|
-
<provider selected="true" editor-type-id="text-editor">
|
589
|
-
<state vertical-scroll-proportion="0.0">
|
590
|
-
<caret line="15" column="55" selection-start-line="15" selection-start-column="55" selection-end-line="15" selection-end-column="55" />
|
591
|
-
<folding />
|
592
|
-
</state>
|
593
|
-
</provider>
|
594
|
-
</entry>
|
595
|
-
<entry file="file://$PROJECT_DIR$/lib/rails_select_on_includes/version.rb">
|
596
|
-
<provider selected="true" editor-type-id="text-editor">
|
597
|
-
<state vertical-scroll-proportion="0.0">
|
598
|
-
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
599
|
-
<folding />
|
600
|
-
</state>
|
601
|
-
</provider>
|
602
|
-
</entry>
|
603
|
-
<entry file="file://$PROJECT_DIR$/Gemfile">
|
604
|
-
<provider selected="true" editor-type-id="text-editor">
|
605
|
-
<state vertical-scroll-proportion="0.0">
|
606
|
-
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
607
|
-
<folding />
|
608
|
-
</state>
|
609
|
-
</provider>
|
610
|
-
</entry>
|
611
|
-
<entry file="file://$PROJECT_DIR$/rails_select_on_includes.gemspec">
|
612
|
-
<provider selected="true" editor-type-id="text-editor">
|
613
|
-
<state vertical-scroll-proportion="0.0">
|
614
|
-
<caret line="19" column="23" selection-start-line="19" selection-start-column="23" selection-end-line="19" selection-end-column="23" />
|
615
|
-
<folding />
|
616
|
-
</state>
|
617
|
-
</provider>
|
618
|
-
</entry>
|
619
|
-
<entry file="file://$PROJECT_DIR$/.gitignore">
|
620
|
-
<provider selected="true" editor-type-id="text-editor">
|
621
|
-
<state vertical-scroll-proportion="0.0">
|
622
|
-
<caret line="0" column="6" selection-start-line="0" selection-start-column="6" selection-end-line="0" selection-end-column="6" />
|
623
|
-
<folding />
|
624
|
-
</state>
|
625
|
-
</provider>
|
626
|
-
</entry>
|
627
|
-
<entry file="file://$PROJECT_DIR$/README.md">
|
628
|
-
<provider selected="true" editor-type-id="split-provider[text-editor;MultiMarkdownPreviewEditor]">
|
629
|
-
<state split_layout="FIRST">
|
630
|
-
<first_editor vertical-scroll-proportion="0.0">
|
631
|
-
<caret line="22" column="0" selection-start-line="22" selection-start-column="0" selection-end-line="22" selection-end-column="0" />
|
632
|
-
<folding />
|
633
|
-
</first_editor>
|
634
|
-
<second_editor />
|
635
|
-
</state>
|
636
|
-
</provider>
|
637
|
-
<provider editor-type-id="MultiMarkdownFxPreviewEditor">
|
638
|
-
<state />
|
639
|
-
</provider>
|
640
|
-
</entry>
|
641
|
-
<entry file="file://$PROJECT_DIR$/rails_select_on_includes.gemspec">
|
642
|
-
<provider selected="true" editor-type-id="text-editor">
|
643
|
-
<state vertical-scroll-proportion="0.0">
|
644
|
-
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
645
|
-
<folding />
|
646
|
-
</state>
|
647
|
-
</provider>
|
648
|
-
</entry>
|
649
|
-
<entry file="file://$PROJECT_DIR$/.gitignore">
|
650
|
-
<provider selected="true" editor-type-id="text-editor">
|
651
|
-
<state vertical-scroll-proportion="0.0">
|
652
|
-
<caret line="0" column="6" selection-start-line="0" selection-start-column="6" selection-end-line="0" selection-end-column="6" />
|
653
|
-
<folding />
|
654
|
-
</state>
|
655
|
-
</provider>
|
656
|
-
</entry>
|
657
|
-
<entry file="file://$PROJECT_DIR$/README.md">
|
658
|
-
<provider selected="true" editor-type-id="split-provider[text-editor;MultiMarkdownPreviewEditor]">
|
659
|
-
<state split_layout="FIRST">
|
660
|
-
<first_editor vertical-scroll-proportion="0.0">
|
661
|
-
<caret line="22" column="0" selection-start-line="22" selection-start-column="0" selection-end-line="22" selection-end-column="0" />
|
662
|
-
<folding />
|
663
|
-
</first_editor>
|
664
|
-
<second_editor />
|
665
|
-
</state>
|
666
|
-
</provider>
|
667
|
-
<provider editor-type-id="MultiMarkdownFxPreviewEditor">
|
668
|
-
<state />
|
669
|
-
</provider>
|
670
|
-
</entry>
|
671
|
-
<entry file="file://$PROJECT_DIR$/lib/rails_select_on_includes.rb">
|
672
|
-
<provider selected="true" editor-type-id="text-editor">
|
673
|
-
<state vertical-scroll-proportion="0.0">
|
674
|
-
<caret line="36" column="26" selection-start-line="36" selection-start-column="26" selection-end-line="36" selection-end-column="37" />
|
675
|
-
<folding />
|
676
|
-
</state>
|
677
|
-
</provider>
|
678
|
-
</entry>
|
679
|
-
<entry file="file://$PROJECT_DIR$/lib/rails_select_on_includes/version.rb">
|
680
|
-
<provider selected="true" editor-type-id="text-editor">
|
681
|
-
<state vertical-scroll-proportion="0.0">
|
682
|
-
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
683
|
-
<folding />
|
684
|
-
</state>
|
685
|
-
</provider>
|
686
|
-
</entry>
|
687
|
-
<entry file="file://$PROJECT_DIR$/rails_select_on_includes.gemspec">
|
688
|
-
<provider selected="true" editor-type-id="text-editor">
|
689
|
-
<state vertical-scroll-proportion="0.0">
|
690
|
-
<caret line="19" column="35" selection-start-line="19" selection-start-column="35" selection-end-line="19" selection-end-column="35" />
|
691
|
-
<folding />
|
692
|
-
</state>
|
693
|
-
</provider>
|
694
|
-
</entry>
|
695
|
-
<entry file="file://$PROJECT_DIR$/.gitignore">
|
696
|
-
<provider selected="true" editor-type-id="text-editor">
|
697
|
-
<state vertical-scroll-proportion="0.0">
|
698
|
-
<caret line="0" column="6" selection-start-line="0" selection-start-column="6" selection-end-line="0" selection-end-column="6" />
|
699
|
-
<folding />
|
700
|
-
</state>
|
701
|
-
</provider>
|
702
|
-
</entry>
|
703
|
-
<entry file="file://$PROJECT_DIR$/README.md">
|
704
|
-
<provider selected="true" editor-type-id="split-provider[text-editor;MultiMarkdownPreviewEditor]">
|
705
|
-
<state split_layout="FIRST">
|
706
|
-
<first_editor vertical-scroll-proportion="0.0">
|
707
|
-
<caret line="22" column="0" selection-start-line="22" selection-start-column="0" selection-end-line="22" selection-end-column="0" />
|
708
|
-
<folding />
|
709
|
-
</first_editor>
|
710
|
-
<second_editor />
|
711
|
-
</state>
|
712
|
-
</provider>
|
713
|
-
<provider editor-type-id="MultiMarkdownFxPreviewEditor">
|
714
|
-
<state />
|
715
|
-
</provider>
|
716
|
-
</entry>
|
717
|
-
<entry file="file://$PROJECT_DIR$/lib/rails_select_on_includes.rb">
|
718
|
-
<provider selected="true" editor-type-id="text-editor">
|
719
|
-
<state vertical-scroll-proportion="0.0">
|
720
|
-
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
721
|
-
<folding />
|
722
|
-
</state>
|
723
|
-
</provider>
|
724
|
-
</entry>
|
725
|
-
<entry file="file://$PROJECT_DIR$/lib/rails_select_on_includes/version.rb">
|
726
|
-
<provider selected="true" editor-type-id="text-editor">
|
727
|
-
<state vertical-scroll-proportion="0.0">
|
728
|
-
<caret line="1" column="18" selection-start-line="1" selection-start-column="18" selection-end-line="1" selection-end-column="18" />
|
729
|
-
<folding />
|
730
|
-
</state>
|
731
|
-
</provider>
|
732
|
-
</entry>
|
733
|
-
<entry file="file://$PROJECT_DIR$/rails_select_on_includes.gemspec">
|
734
|
-
<provider selected="true" editor-type-id="text-editor">
|
735
|
-
<state vertical-scroll-proportion="0.0">
|
736
|
-
<caret line="19" column="35" selection-start-line="19" selection-start-column="35" selection-end-line="19" selection-end-column="35" />
|
737
|
-
<folding />
|
738
|
-
</state>
|
739
|
-
</provider>
|
740
|
-
</entry>
|
741
|
-
<entry file="file://$PROJECT_DIR$/.gitignore">
|
742
|
-
<provider selected="true" editor-type-id="text-editor">
|
743
|
-
<state vertical-scroll-proportion="0.0">
|
744
|
-
<caret line="0" column="6" selection-start-line="0" selection-start-column="6" selection-end-line="0" selection-end-column="6" />
|
745
|
-
<folding />
|
746
|
-
</state>
|
747
|
-
</provider>
|
748
|
-
</entry>
|
749
|
-
<entry file="file://$PROJECT_DIR$/README.md">
|
750
|
-
<provider selected="true" editor-type-id="split-provider[text-editor;MultiMarkdownPreviewEditor]">
|
751
|
-
<state split_layout="FIRST">
|
752
|
-
<first_editor vertical-scroll-proportion="0.0">
|
753
|
-
<caret line="17" column="44" selection-start-line="17" selection-start-column="44" selection-end-line="17" selection-end-column="44" />
|
754
|
-
<folding />
|
755
|
-
</first_editor>
|
756
|
-
<second_editor />
|
757
|
-
</state>
|
758
|
-
</provider>
|
759
|
-
<provider editor-type-id="MultiMarkdownFxPreviewEditor">
|
760
|
-
<state />
|
761
|
-
</provider>
|
762
|
-
</entry>
|
763
|
-
<entry file="file://$PROJECT_DIR$/lib/rails_select_on_includes.rb">
|
764
|
-
<provider selected="true" editor-type-id="text-editor">
|
765
|
-
<state vertical-scroll-proportion="0.0">
|
766
|
-
<caret line="39" column="9" selection-start-line="39" selection-start-column="9" selection-end-line="39" selection-end-column="9" />
|
767
|
-
<folding />
|
768
|
-
</state>
|
769
|
-
</provider>
|
770
|
-
</entry>
|
771
|
-
<entry file="file://$PROJECT_DIR$/lib/rails_select_on_includes/version.rb">
|
772
|
-
<provider selected="true" editor-type-id="text-editor">
|
773
|
-
<state vertical-scroll-proportion="0.0">
|
774
|
-
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
775
|
-
<folding />
|
776
|
-
</state>
|
777
|
-
</provider>
|
778
|
-
</entry>
|
779
|
-
<entry file="file://$PROJECT_DIR$/rails_select_on_includes.gemspec">
|
780
|
-
<provider selected="true" editor-type-id="text-editor">
|
781
|
-
<state vertical-scroll-proportion="0.0">
|
782
|
-
<caret line="19" column="35" selection-start-line="19" selection-start-column="35" selection-end-line="19" selection-end-column="35" />
|
783
|
-
<folding />
|
784
|
-
</state>
|
785
|
-
</provider>
|
786
|
-
</entry>
|
787
|
-
<entry file="file://$PROJECT_DIR$/.gitignore">
|
788
|
-
<provider selected="true" editor-type-id="text-editor">
|
789
|
-
<state vertical-scroll-proportion="0.0">
|
790
|
-
<caret line="0" column="6" selection-start-line="0" selection-start-column="6" selection-end-line="0" selection-end-column="6" />
|
791
|
-
<folding />
|
792
|
-
</state>
|
793
|
-
</provider>
|
794
|
-
</entry>
|
795
|
-
<entry file="file://$PROJECT_DIR$/README.md">
|
796
|
-
<provider selected="true" editor-type-id="split-provider[text-editor;MultiMarkdownPreviewEditor]">
|
797
|
-
<state split_layout="FIRST">
|
798
|
-
<first_editor vertical-scroll-proportion="0.0">
|
799
|
-
<caret line="14" column="44" selection-start-line="14" selection-start-column="44" selection-end-line="14" selection-end-column="44" />
|
800
|
-
<folding />
|
801
|
-
</first_editor>
|
802
|
-
<second_editor />
|
803
|
-
</state>
|
804
|
-
</provider>
|
805
|
-
<provider editor-type-id="MultiMarkdownFxPreviewEditor">
|
806
|
-
<state />
|
807
|
-
</provider>
|
808
|
-
</entry>
|
809
|
-
<entry file="file://$PROJECT_DIR$/lib/rails_select_on_includes.rb">
|
810
|
-
<provider selected="true" editor-type-id="text-editor">
|
811
|
-
<state vertical-scroll-proportion="0.0">
|
812
|
-
<caret line="25" column="25" selection-start-line="22" selection-start-column="8" selection-end-line="25" selection-end-column="25" />
|
813
|
-
<folding />
|
814
|
-
</state>
|
815
|
-
</provider>
|
816
|
-
</entry>
|
817
|
-
<entry file="file://$PROJECT_DIR$/rails_select_on_includes.gemspec">
|
818
|
-
<provider selected="true" editor-type-id="text-editor">
|
819
|
-
<state vertical-scroll-proportion="0.0">
|
820
|
-
<caret line="19" column="35" selection-start-line="19" selection-start-column="35" selection-end-line="19" selection-end-column="35" />
|
821
|
-
<folding />
|
822
|
-
</state>
|
823
|
-
</provider>
|
824
|
-
</entry>
|
825
|
-
<entry file="file://$PROJECT_DIR$/.gitignore">
|
826
|
-
<provider selected="true" editor-type-id="text-editor">
|
827
|
-
<state vertical-scroll-proportion="0.0">
|
828
|
-
<caret line="0" column="6" selection-start-line="0" selection-start-column="6" selection-end-line="0" selection-end-column="6" />
|
829
|
-
<folding />
|
830
|
-
</state>
|
831
|
-
</provider>
|
832
|
-
</entry>
|
833
|
-
<entry file="file://$PROJECT_DIR$/README.md">
|
834
|
-
<provider selected="true" editor-type-id="split-provider[text-editor;MultiMarkdownPreviewEditor]">
|
835
|
-
<state split_layout="FIRST">
|
836
|
-
<first_editor vertical-scroll-proportion="0.0">
|
837
|
-
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
838
|
-
<folding />
|
839
|
-
</first_editor>
|
840
|
-
<second_editor />
|
841
|
-
</state>
|
842
|
-
</provider>
|
843
|
-
<provider editor-type-id="MultiMarkdownFxPreviewEditor">
|
844
|
-
<state />
|
845
|
-
</provider>
|
846
|
-
</entry>
|
847
|
-
<entry file="file://$PROJECT_DIR$/lib/rails_select_on_includes.rb">
|
848
|
-
<provider selected="true" editor-type-id="text-editor">
|
849
|
-
<state vertical-scroll-proportion="0.0">
|
850
|
-
<caret line="25" column="25" selection-start-line="22" selection-start-column="8" selection-end-line="25" selection-end-column="25" />
|
851
|
-
<folding />
|
852
|
-
</state>
|
853
|
-
</provider>
|
854
|
-
</entry>
|
855
|
-
<entry file="file://$PROJECT_DIR$/rails_select_on_includes.gemspec">
|
856
|
-
<provider selected="true" editor-type-id="text-editor">
|
857
|
-
<state vertical-scroll-proportion="0.0">
|
858
|
-
<caret line="19" column="35" selection-start-line="19" selection-start-column="35" selection-end-line="19" selection-end-column="35" />
|
859
|
-
<folding />
|
860
|
-
</state>
|
861
|
-
</provider>
|
862
|
-
</entry>
|
863
|
-
<entry file="file://$PROJECT_DIR$/.gitignore">
|
864
|
-
<provider selected="true" editor-type-id="text-editor">
|
865
|
-
<state vertical-scroll-proportion="0.0">
|
866
|
-
<caret line="0" column="6" selection-start-line="0" selection-start-column="6" selection-end-line="0" selection-end-column="6" />
|
867
|
-
<folding />
|
868
|
-
</state>
|
869
|
-
</provider>
|
870
|
-
</entry>
|
871
|
-
<entry file="file://$PROJECT_DIR$/README.md">
|
872
|
-
<provider selected="true" editor-type-id="split-provider[text-editor;MultiMarkdownPreviewEditor]">
|
873
|
-
<state split_layout="FIRST">
|
874
|
-
<first_editor vertical-scroll-proportion="0.0">
|
875
|
-
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
876
|
-
<folding />
|
877
|
-
</first_editor>
|
878
|
-
<second_editor />
|
879
|
-
</state>
|
880
|
-
</provider>
|
881
|
-
<provider editor-type-id="MultiMarkdownFxPreviewEditor">
|
882
|
-
<state />
|
883
|
-
</provider>
|
884
|
-
</entry>
|
885
|
-
<entry file="file://$PROJECT_DIR$/lib/rails_select_on_includes.rb">
|
886
|
-
<provider selected="true" editor-type-id="text-editor">
|
887
|
-
<state vertical-scroll-proportion="0.0">
|
888
|
-
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
889
|
-
<folding />
|
890
|
-
</state>
|
891
|
-
</provider>
|
892
|
-
</entry>
|
893
|
-
<entry file="file://$PROJECT_DIR$/.gitignore">
|
894
|
-
<provider selected="true" editor-type-id="text-editor">
|
895
|
-
<state vertical-scroll-proportion="0.0">
|
896
|
-
<caret line="0" column="6" selection-start-line="0" selection-start-column="6" selection-end-line="0" selection-end-column="6" />
|
897
|
-
<folding />
|
898
|
-
</state>
|
899
|
-
</provider>
|
900
|
-
</entry>
|
901
|
-
<entry file="file://$PROJECT_DIR$/README.md">
|
902
|
-
<provider selected="true" editor-type-id="split-provider[text-editor;MultiMarkdownPreviewEditor]">
|
903
|
-
<state split_layout="FIRST">
|
904
|
-
<first_editor vertical-scroll-proportion="0.0">
|
905
|
-
<caret line="47" column="0" selection-start-line="47" selection-start-column="0" selection-end-line="47" selection-end-column="0" />
|
906
|
-
<folding />
|
907
|
-
</first_editor>
|
908
|
-
<second_editor />
|
909
|
-
</state>
|
910
|
-
</provider>
|
911
|
-
<provider editor-type-id="MultiMarkdownFxPreviewEditor">
|
912
|
-
<state />
|
913
|
-
</provider>
|
914
|
-
</entry>
|
915
|
-
<entry file="file://$PROJECT_DIR$/README.md">
|
916
|
-
<provider selected="true" editor-type-id="split-provider[text-editor;MultiMarkdownPreviewEditor]">
|
917
|
-
<state split_layout="FIRST">
|
918
|
-
<first_editor vertical-scroll-proportion="0.0">
|
919
|
-
<caret line="22" column="0" selection-start-line="22" selection-start-column="0" selection-end-line="22" selection-end-column="0" />
|
920
|
-
<folding />
|
921
|
-
</first_editor>
|
922
|
-
<second_editor />
|
923
|
-
</state>
|
924
|
-
</provider>
|
925
|
-
<provider editor-type-id="MultiMarkdownFxPreviewEditor">
|
926
|
-
<state />
|
927
|
-
</provider>
|
928
|
-
</entry>
|
929
|
-
<entry file="file://$PROJECT_DIR$/Gemfile">
|
930
|
-
<provider selected="true" editor-type-id="text-editor">
|
931
|
-
<state vertical-scroll-proportion="0.0">
|
932
|
-
<caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
|
933
|
-
<folding />
|
934
|
-
</state>
|
935
|
-
</provider>
|
936
|
-
</entry>
|
937
|
-
<entry file="file://$PROJECT_DIR$/lib/rails_select_on_includes.rb">
|
938
|
-
<provider selected="true" editor-type-id="text-editor">
|
939
|
-
<state vertical-scroll-proportion="0.0">
|
940
|
-
<caret line="64" column="54" selection-start-line="64" selection-start-column="54" selection-end-line="64" selection-end-column="54" />
|
941
|
-
<folding />
|
942
|
-
</state>
|
943
|
-
</provider>
|
944
|
-
</entry>
|
945
|
-
<entry file="file://$PROJECT_DIR$/rails_select_on_includes.gemspec">
|
946
|
-
<provider selected="true" editor-type-id="text-editor">
|
947
|
-
<state vertical-scroll-proportion="-9.931034">
|
948
|
-
<caret line="16" column="96" selection-start-line="16" selection-start-column="96" selection-end-line="16" selection-end-column="96" />
|
949
|
-
<folding />
|
950
|
-
</state>
|
951
|
-
</provider>
|
952
|
-
</entry>
|
953
|
-
<entry file="file://$PROJECT_DIR$/lib/rails_select_on_includes/version.rb">
|
954
|
-
<provider selected="true" editor-type-id="text-editor">
|
955
|
-
<state vertical-scroll-proportion="-1.862069">
|
956
|
-
<caret line="3" column="0" selection-start-line="3" selection-start-column="0" selection-end-line="3" selection-end-column="0" />
|
957
|
-
<folding />
|
958
|
-
</state>
|
959
|
-
</provider>
|
960
|
-
</entry>
|
961
|
-
<entry file="file://$PROJECT_DIR$/.gitignore">
|
962
|
-
<provider selected="true" editor-type-id="text-editor">
|
963
|
-
<state vertical-scroll-proportion="-0.0">
|
964
|
-
<caret line="0" column="6" selection-start-line="0" selection-start-column="6" selection-end-line="0" selection-end-column="6" />
|
965
|
-
<folding />
|
966
|
-
</state>
|
967
|
-
</provider>
|
968
|
-
</entry>
|
969
|
-
</component>
|
970
|
-
</project>
|