inquery 1.0.11 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/rubocop.yml +1 -1
- data/.github/workflows/ruby.yml +24 -8
- data/.gitignore +2 -2
- data/.rubocop.yml +4 -0
- data/Appraisals +24 -4
- data/CHANGELOG.md +38 -0
- data/Gemfile +17 -1
- data/Gemfile.lock +125 -0
- data/LICENSE +1 -1
- data/MIGRATION.md +260 -0
- data/README.md +14 -8
- data/RUBY_VERSION +1 -1
- data/Rakefile +4 -11
- data/VERSION +1 -1
- data/doc/Inquery/Exceptions/Base.html +4 -4
- data/doc/Inquery/Exceptions/InvalidRelation.html +4 -4
- data/doc/Inquery/Exceptions/UnknownCallSignature.html +4 -4
- data/doc/Inquery/Exceptions.html +4 -4
- data/doc/Inquery/MethodAccessibleHash.html +431 -0
- data/doc/Inquery/Mixins/RawSqlUtils.html +17 -4
- data/doc/Inquery/Mixins/RelationValidation/ClassMethods.html +8 -7
- data/doc/Inquery/Mixins/RelationValidation.html +9 -8
- data/doc/Inquery/Mixins/SchemaValidation/ClassMethods.html +4 -4
- data/doc/Inquery/Mixins/SchemaValidation.html +4 -4
- data/doc/Inquery/Mixins.html +4 -4
- data/doc/Inquery/Query/Chainable.html +207 -90
- data/doc/Inquery/Query.html +401 -73
- data/doc/Inquery.html +12 -9
- data/doc/_index.html +12 -5
- data/doc/class_list.html +6 -3
- data/doc/css/full_list.css +3 -3
- data/doc/css/style.css +6 -0
- data/doc/file.README.html +102 -16
- data/doc/file_list.html +5 -2
- data/doc/frames.html +10 -5
- data/doc/index.html +102 -16
- data/doc/js/app.js +294 -264
- data/doc/js/full_list.js +30 -4
- data/doc/method_list.html +48 -21
- data/doc/top-level-namespace.html +4 -4
- data/gemfiles/rails_5.2.gemfile +1 -0
- data/gemfiles/rails_6.0.gemfile +1 -0
- data/gemfiles/rails_6.1.gemfile +1 -0
- data/gemfiles/rails_7.0.gemfile +1 -0
- data/gemfiles/{rails_5.1.gemfile → rails_7.1.gemfile} +2 -1
- data/gemfiles/rails_7.2.gemfile +8 -0
- data/gemfiles/rails_8.0.gemfile +8 -0
- data/gemfiles/rails_8.1.gemfile +8 -0
- data/inquery.gemspec +11 -34
- data/lib/inquery/method_accessible_hash.rb +45 -0
- data/lib/inquery/mixins/raw_sql_utils.rb +32 -6
- data/lib/inquery/mixins/relation_validation.rb +1 -1
- data/lib/inquery/query/chainable.rb +69 -27
- data/lib/inquery/query.rb +67 -14
- data/lib/inquery.rb +2 -0
- data/test/inquery/error_handling_test.rb +117 -0
- data/test/inquery/method_accessible_hash_test.rb +85 -0
- data/test/inquery/mixins/raw_sql_utils_test.rb +67 -0
- data/test/inquery/query/chainable_test.rb +78 -0
- data/test/inquery/query_test.rb +86 -0
- data/test/test_helper.rb +11 -0
- metadata +30 -129
- data/.yardopts +0 -1
data/doc/Inquery.html
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Module: Inquery
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.37
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
<dl>
|
|
80
80
|
<dt>Defined in:</dt>
|
|
81
81
|
<dd>lib/inquery.rb<span class="defines">,<br />
|
|
82
|
-
lib/inquery/query.rb,<br /> lib/inquery/exceptions.rb,<br /> lib/inquery/query/chainable.rb,<br /> lib/inquery/mixins/raw_sql_utils.rb,<br /> lib/inquery/mixins/schema_validation.rb,<br /> lib/inquery/mixins/relation_validation.rb</span>
|
|
82
|
+
lib/inquery/query.rb,<br /> lib/inquery/exceptions.rb,<br /> lib/inquery/query/chainable.rb,<br /> lib/inquery/mixins/raw_sql_utils.rb,<br /> lib/inquery/method_accessible_hash.rb,<br /> lib/inquery/mixins/schema_validation.rb,<br /> lib/inquery/mixins/relation_validation.rb</span>
|
|
83
83
|
</dd>
|
|
84
84
|
</dl>
|
|
85
85
|
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
|
|
94
94
|
|
|
95
95
|
|
|
96
|
-
<strong class="classes">Classes:</strong> <span class='object_link'><a href="Inquery/Query.html" title="Inquery::Query (class)">Query</a></span>
|
|
96
|
+
<strong class="classes">Classes:</strong> <span class='object_link'><a href="Inquery/MethodAccessibleHash.html" title="Inquery::MethodAccessibleHash (class)">MethodAccessibleHash</a></span>, <span class='object_link'><a href="Inquery/Query.html" title="Inquery::Query (class)">Query</a></span>
|
|
97
97
|
|
|
98
98
|
|
|
99
99
|
</p>
|
|
@@ -129,7 +129,8 @@
|
|
|
129
129
|
|
|
130
130
|
|
|
131
131
|
|
|
132
|
-
<span class="summary_desc"><div class='inline'
|
|
132
|
+
<span class="summary_desc"><div class='inline'>
|
|
133
|
+
<p>Setup method that should be called in a dedicated initializer.</p>
|
|
133
134
|
</div></span>
|
|
134
135
|
|
|
135
136
|
</li>
|
|
@@ -155,7 +156,8 @@
|
|
|
155
156
|
|
|
156
157
|
</h3><div class="docstring">
|
|
157
158
|
<div class="discussion">
|
|
158
|
-
|
|
159
|
+
|
|
160
|
+
<p>Setup method that should be called in a dedicated initializer.</p>
|
|
159
161
|
|
|
160
162
|
|
|
161
163
|
</div>
|
|
@@ -188,7 +190,8 @@
|
|
|
188
190
|
|
|
189
191
|
|
|
190
192
|
—
|
|
191
|
-
<div class='inline'
|
|
193
|
+
<div class='inline'>
|
|
194
|
+
<p>the object that the method was called on</p>
|
|
192
195
|
</div>
|
|
193
196
|
|
|
194
197
|
</li>
|
|
@@ -221,9 +224,9 @@
|
|
|
221
224
|
</div>
|
|
222
225
|
|
|
223
226
|
<div id="footer">
|
|
224
|
-
Generated on
|
|
225
|
-
<a href="
|
|
226
|
-
0.9.
|
|
227
|
+
Generated on Mon Jan 5 14:06:48 2026 by
|
|
228
|
+
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
229
|
+
0.9.37 (ruby-3.3.5).
|
|
227
230
|
</div>
|
|
228
231
|
|
|
229
232
|
</div>
|
data/doc/_index.html
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<meta charset="utf-8">
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
6
|
<title>
|
|
7
|
-
Documentation by YARD 0.9.
|
|
7
|
+
Documentation by YARD 0.9.37
|
|
8
8
|
|
|
9
9
|
</title>
|
|
10
10
|
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
<div class="clear"></div>
|
|
53
53
|
</div>
|
|
54
54
|
|
|
55
|
-
<div id="content"><h1 class="noborder title">Documentation by YARD 0.9.
|
|
55
|
+
<div id="content"><h1 class="noborder title">Documentation by YARD 0.9.37</h1>
|
|
56
56
|
<div id="listing">
|
|
57
57
|
<h1 class="alphaindex">Alphabetic Index</h1>
|
|
58
58
|
|
|
@@ -159,6 +159,13 @@
|
|
|
159
159
|
<li class="letter">M</li>
|
|
160
160
|
<ul>
|
|
161
161
|
|
|
162
|
+
<li>
|
|
163
|
+
<span class='object_link'><a href="Inquery/MethodAccessibleHash.html" title="Inquery::MethodAccessibleHash (class)">MethodAccessibleHash</a></span>
|
|
164
|
+
|
|
165
|
+
<small>(Inquery)</small>
|
|
166
|
+
|
|
167
|
+
</li>
|
|
168
|
+
|
|
162
169
|
<li>
|
|
163
170
|
<span class='object_link'><a href="Inquery/Mixins.html" title="Inquery::Mixins (module)">Mixins</a></span>
|
|
164
171
|
|
|
@@ -248,9 +255,9 @@
|
|
|
248
255
|
</div>
|
|
249
256
|
|
|
250
257
|
<div id="footer">
|
|
251
|
-
Generated on
|
|
252
|
-
<a href="
|
|
253
|
-
0.9.
|
|
258
|
+
Generated on Mon Jan 5 14:06:48 2026 by
|
|
259
|
+
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
260
|
+
0.9.37 (ruby-3.3.5).
|
|
254
261
|
</div>
|
|
255
262
|
|
|
256
263
|
</div>
|
data/doc/class_list.html
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
2
|
+
<html >
|
|
3
3
|
<head>
|
|
4
4
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
5
5
|
<meta charset="utf-8" />
|
|
@@ -38,12 +38,15 @@
|
|
|
38
38
|
|
|
39
39
|
</div>
|
|
40
40
|
|
|
41
|
-
<div id="search">
|
|
41
|
+
<div id="search">
|
|
42
|
+
<label for="search-class">Search:</label>
|
|
43
|
+
<input id="search-class" type="text" />
|
|
44
|
+
</div>
|
|
42
45
|
</div>
|
|
43
46
|
|
|
44
47
|
<ul id="full_list" class="class">
|
|
45
48
|
<li id="object_" class="odd"><div class="item" style="padding-left:30px"><span class='object_link'><a href="top-level-namespace.html" title="Top Level Namespace (root)">Top Level Namespace</a></span></div></li>
|
|
46
|
-
<li id='object_Inquery' class='even'><div class='item' style='padding-left:30px'><a class='toggle'></a> <span class='object_link'><a href="Inquery.html" title="Inquery (module)">Inquery</a></span><small class='search_info'>Top Level Namespace</small></div><ul><li id='object_Inquery::Exceptions' class='collapsed odd'><div class='item' style='padding-left:45px'><a class='toggle'></a> <span class='object_link'><a href="Inquery/Exceptions.html" title="Inquery::Exceptions (module)">Exceptions</a></span><small class='search_info'>Inquery</small></div><ul><li id='object_Inquery::Exceptions::Base' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Inquery/Exceptions/Base.html" title="Inquery::Exceptions::Base (class)">Base</a></span> < StandardError<small class='search_info'>Inquery::Exceptions</small></div></li><li id='object_Inquery::Exceptions::InvalidRelation' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Inquery/Exceptions/InvalidRelation.html" title="Inquery::Exceptions::InvalidRelation (class)">InvalidRelation</a></span> < Base<small class='search_info'>Inquery::Exceptions</small></div></li><li id='object_Inquery::Exceptions::UnknownCallSignature' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Inquery/Exceptions/UnknownCallSignature.html" title="Inquery::Exceptions::UnknownCallSignature (class)">UnknownCallSignature</a></span> < Base<small class='search_info'>Inquery::Exceptions</small></div></li></ul></li><li id='object_Inquery::
|
|
49
|
+
<li id='object_Inquery' class='even'><div class='item' style='padding-left:30px'><a tabindex='0' class='toggle' role='button' aria-label='Inquery child nodes' aria-expanded='false' aria-controls='object_Inquery'></a> <span class='object_link'><a href="Inquery.html" title="Inquery (module)">Inquery</a></span><small class='search_info'>Top Level Namespace</small></div><div aria-labelledby='object_Inquery'><ul><li id='object_Inquery::Exceptions' class='collapsed odd'><div class='item' style='padding-left:45px'><a tabindex='0' class='toggle' role='button' aria-label='Exceptions child nodes' aria-expanded='false' aria-controls='object_Inquery::Exceptions'></a> <span class='object_link'><a href="Inquery/Exceptions.html" title="Inquery::Exceptions (module)">Exceptions</a></span><small class='search_info'>Inquery</small></div><div aria-labelledby='object_Inquery::Exceptions'><ul><li id='object_Inquery::Exceptions::Base' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Inquery/Exceptions/Base.html" title="Inquery::Exceptions::Base (class)">Base</a></span> < StandardError<small class='search_info'>Inquery::Exceptions</small></div></li><li id='object_Inquery::Exceptions::InvalidRelation' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Inquery/Exceptions/InvalidRelation.html" title="Inquery::Exceptions::InvalidRelation (class)">InvalidRelation</a></span> < Base<small class='search_info'>Inquery::Exceptions</small></div></li><li id='object_Inquery::Exceptions::UnknownCallSignature' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Inquery/Exceptions/UnknownCallSignature.html" title="Inquery::Exceptions::UnknownCallSignature (class)">UnknownCallSignature</a></span> < Base<small class='search_info'>Inquery::Exceptions</small></div></li></ul></div></li><li id='object_Inquery::MethodAccessibleHash' class='collapsed even'><div class='item' style='padding-left:45px'><span class='object_link'><a href="Inquery/MethodAccessibleHash.html" title="Inquery::MethodAccessibleHash (class)">MethodAccessibleHash</a></span> < Hash<small class='search_info'>Inquery</small></div></li><li id='object_Inquery::Mixins' class='collapsed odd'><div class='item' style='padding-left:45px'><a tabindex='0' class='toggle' role='button' aria-label='Mixins child nodes' aria-expanded='false' aria-controls='object_Inquery::Mixins'></a> <span class='object_link'><a href="Inquery/Mixins.html" title="Inquery::Mixins (module)">Mixins</a></span><small class='search_info'>Inquery</small></div><div aria-labelledby='object_Inquery::Mixins'><ul><li id='object_Inquery::Mixins::RawSqlUtils' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Inquery/Mixins/RawSqlUtils.html" title="Inquery::Mixins::RawSqlUtils (module)">RawSqlUtils</a></span><small class='search_info'>Inquery::Mixins</small></div></li><li id='object_Inquery::Mixins::RelationValidation' class='collapsed'><div class='item' style='padding-left:60px'><a tabindex='0' class='toggle' role='button' aria-label='RelationValidation child nodes' aria-expanded='false' aria-controls='object_Inquery::Mixins::RelationValidation'></a> <span class='object_link'><a href="Inquery/Mixins/RelationValidation.html" title="Inquery::Mixins::RelationValidation (module)">RelationValidation</a></span><small class='search_info'>Inquery::Mixins</small></div><div aria-labelledby='object_Inquery::Mixins::RelationValidation'><ul><li id='object_Inquery::Mixins::RelationValidation::ClassMethods' class='collapsed'><div class='item' style='padding-left:75px'><span class='object_link'><a href="Inquery/Mixins/RelationValidation/ClassMethods.html" title="Inquery::Mixins::RelationValidation::ClassMethods (module)">ClassMethods</a></span><small class='search_info'>Inquery::Mixins::RelationValidation</small></div></li></ul></div></li><li id='object_Inquery::Mixins::SchemaValidation' class='collapsed'><div class='item' style='padding-left:60px'><a tabindex='0' class='toggle' role='button' aria-label='SchemaValidation child nodes' aria-expanded='false' aria-controls='object_Inquery::Mixins::SchemaValidation'></a> <span class='object_link'><a href="Inquery/Mixins/SchemaValidation.html" title="Inquery::Mixins::SchemaValidation (module)">SchemaValidation</a></span><small class='search_info'>Inquery::Mixins</small></div><div aria-labelledby='object_Inquery::Mixins::SchemaValidation'><ul><li id='object_Inquery::Mixins::SchemaValidation::ClassMethods' class='collapsed'><div class='item' style='padding-left:75px'><span class='object_link'><a href="Inquery/Mixins/SchemaValidation/ClassMethods.html" title="Inquery::Mixins::SchemaValidation::ClassMethods (module)">ClassMethods</a></span><small class='search_info'>Inquery::Mixins::SchemaValidation</small></div></li></ul></div></li></ul></div></li><li id='object_Inquery::Query' class='collapsed even'><div class='item' style='padding-left:45px'><a tabindex='0' class='toggle' role='button' aria-label='Query child nodes' aria-expanded='false' aria-controls='object_Inquery::Query'></a> <span class='object_link'><a href="Inquery/Query.html" title="Inquery::Query (class)">Query</a></span> < Object<small class='search_info'>Inquery</small></div><div aria-labelledby='object_Inquery::Query'><ul><li id='object_Inquery::Query::Chainable' class='collapsed'><div class='item' style='padding-left:60px'><span class='object_link'><a href="Inquery/Query/Chainable.html" title="Inquery::Query::Chainable (class)">Chainable</a></span> < Query<small class='search_info'>Inquery::Query</small></div></li></ul></div></li></ul></div></li>
|
|
47
50
|
|
|
48
51
|
</ul>
|
|
49
52
|
</div>
|
data/doc/css/full_list.css
CHANGED
|
@@ -20,8 +20,8 @@ h1 { padding: 12px 10px; padding-bottom: 0; margin: 0; font-size: 1.4em; }
|
|
|
20
20
|
#content.insearch #noresults { margin-left: 7px; }
|
|
21
21
|
li.collapsed ul { display: none; }
|
|
22
22
|
li a.toggle { cursor: default; position: relative; left: -5px; top: 4px; text-indent: -999px; width: 10px; height: 9px; margin-left: -10px; display: block; float: left; background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAASCAYAAABb0P4QAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAK8AAACvABQqw0mAAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTM5jWRgMAAAAVdEVYdENyZWF0aW9uIFRpbWUAMy8xNC8wOeNZPpQAAAE2SURBVDiNrZTBccIwEEXfelIAHUA6CZ24BGaWO+FuzZAK4k6gg5QAdGAq+Bxs2Yqx7BzyL7Llp/VfzZeQhCTc/ezuGzKKnKSzpCxXJM8fwNXda3df5RZETlIt6YUzSQDs93sl8w3wBZxCCE10GM1OcWbWjB2mWgEH4Mfdyxm3PSepBHibgQE2wLe7r4HjEidpnXMYdQPKEMJcsZ4zs2POYQOcaPfwMVOo58zsAdMt18BuoVDPxUJRacELbXv3hUIX2vYmOUvi8C8ydz/ThjXrqKqqLbDIAdsCKBd+Wo7GWa7o9qzOQHVVVXeAbs+yHHCH4aTsaCOQqunmUy1yBUAXkdMIfMlgF5EXLo2OpV/c/Up7jG4hhHcYLgWzAZXUc2b2ixsfvc/RmNNfOXD3Q/oeL9axJE1yT9IOoUu6MGUkAAAAAElFTkSuQmCC) no-repeat bottom left; }
|
|
23
|
-
li.collapsed a.toggle {
|
|
24
|
-
li { color: #
|
|
23
|
+
li.collapsed a.toggle { cursor: default; background-position: top left; }
|
|
24
|
+
li { color: #666; cursor: pointer; }
|
|
25
25
|
li.deprecated { text-decoration: line-through; font-style: italic; }
|
|
26
26
|
li.odd { background: #f0f0f0; }
|
|
27
27
|
li.even { background: #fafafa; }
|
|
@@ -47,7 +47,7 @@ li small { display: block; font-size: 0.8em; }
|
|
|
47
47
|
li small:before { content: ""; }
|
|
48
48
|
li small:after { content: ""; }
|
|
49
49
|
li small.search_info { display: none; }
|
|
50
|
-
#search { width: 170px; position: static; margin: 3px; margin-left: 10px; font-size: 0.9em; color: #
|
|
50
|
+
#search { width: 170px; position: static; margin: 3px; margin-left: 10px; font-size: 0.9em; color: #666; padding-left: 0; padding-right: 24px; }
|
|
51
51
|
#content.insearch #search { background-position: center right; }
|
|
52
52
|
#search input { width: 110px; }
|
|
53
53
|
|
data/doc/css/style.css
CHANGED
|
@@ -82,6 +82,11 @@ body {
|
|
|
82
82
|
#search { display: none; }
|
|
83
83
|
}
|
|
84
84
|
|
|
85
|
+
@media (max-width: 320px) {
|
|
86
|
+
body { height: 100%; overflow: hidden; overflow-wrap: break-word; }
|
|
87
|
+
#main { height: 100%; overflow: auto; }
|
|
88
|
+
}
|
|
89
|
+
|
|
85
90
|
#main img { max-width: 100%; }
|
|
86
91
|
h1 { font-size: 25px; margin: 1em 0 0.5em; padding-top: 4px; border-top: 1px dotted #d5d5d5; }
|
|
87
92
|
h1.noborder { border-top: 0px; margin-top: 0; padding-top: 4px; }
|
|
@@ -106,6 +111,7 @@ h2 small a {
|
|
|
106
111
|
position: relative;
|
|
107
112
|
padding: 2px 7px;
|
|
108
113
|
}
|
|
114
|
+
a { font-weight: 550; }
|
|
109
115
|
.clear { clear: both; }
|
|
110
116
|
.inline { display: inline; }
|
|
111
117
|
.inline p:first-child { display: inline; }
|
data/doc/file.README.html
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
File: README
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.37
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -80,17 +80,103 @@ to your <code>Gemfile</code>:</p>
|
|
|
80
80
|
|
|
81
81
|
<h2 id="compatibility">Compatibility</h2>
|
|
82
82
|
|
|
83
|
-
<p>Inquery is tested
|
|
84
|
-
|
|
85
|
-
<
|
|
86
|
-
<
|
|
87
|
-
<
|
|
88
|
-
<
|
|
89
|
-
<
|
|
90
|
-
<
|
|
91
|
-
</
|
|
92
|
-
|
|
93
|
-
<
|
|
83
|
+
<p>Inquery is tested against multiple Ruby and Rails version combinations. The following table shows the compatibility matrix:</p>
|
|
84
|
+
|
|
85
|
+
<table><thead>
|
|
86
|
+
<tr>
|
|
87
|
+
<th>Ruby Version</th>
|
|
88
|
+
<th>Rails 5.2</th>
|
|
89
|
+
<th>Rails 6.0</th>
|
|
90
|
+
<th>Rails 6.1</th>
|
|
91
|
+
<th>Rails 7.0</th>
|
|
92
|
+
<th>Rails 7.1</th>
|
|
93
|
+
<th>Rails 7.2</th>
|
|
94
|
+
<th>Rails 8.0</th>
|
|
95
|
+
<th>Rails 8.1</th>
|
|
96
|
+
</tr>
|
|
97
|
+
</thead><tbody>
|
|
98
|
+
<tr>
|
|
99
|
+
<td>2.6.2</td>
|
|
100
|
+
<td>✓</td>
|
|
101
|
+
<td>✓</td>
|
|
102
|
+
<td>✓</td>
|
|
103
|
+
<td>-</td>
|
|
104
|
+
<td>-</td>
|
|
105
|
+
<td>-</td>
|
|
106
|
+
<td>-</td>
|
|
107
|
+
<td>-</td>
|
|
108
|
+
</tr>
|
|
109
|
+
<tr>
|
|
110
|
+
<td>2.7.1</td>
|
|
111
|
+
<td>-</td>
|
|
112
|
+
<td>✓</td>
|
|
113
|
+
<td>✓</td>
|
|
114
|
+
<td>✓</td>
|
|
115
|
+
<td>-</td>
|
|
116
|
+
<td>-</td>
|
|
117
|
+
<td>-</td>
|
|
118
|
+
<td>-</td>
|
|
119
|
+
</tr>
|
|
120
|
+
<tr>
|
|
121
|
+
<td>3.0.1</td>
|
|
122
|
+
<td>-</td>
|
|
123
|
+
<td>-</td>
|
|
124
|
+
<td>✓</td>
|
|
125
|
+
<td>✓</td>
|
|
126
|
+
<td>-</td>
|
|
127
|
+
<td>-</td>
|
|
128
|
+
<td>-</td>
|
|
129
|
+
<td>-</td>
|
|
130
|
+
</tr>
|
|
131
|
+
<tr>
|
|
132
|
+
<td>3.1.0</td>
|
|
133
|
+
<td>-</td>
|
|
134
|
+
<td>-</td>
|
|
135
|
+
<td>-</td>
|
|
136
|
+
<td>✓</td>
|
|
137
|
+
<td>✓</td>
|
|
138
|
+
<td>-</td>
|
|
139
|
+
<td>-</td>
|
|
140
|
+
<td>-</td>
|
|
141
|
+
</tr>
|
|
142
|
+
<tr>
|
|
143
|
+
<td>3.2.0</td>
|
|
144
|
+
<td>-</td>
|
|
145
|
+
<td>-</td>
|
|
146
|
+
<td>-</td>
|
|
147
|
+
<td>✓</td>
|
|
148
|
+
<td>✓</td>
|
|
149
|
+
<td>✓</td>
|
|
150
|
+
<td>-</td>
|
|
151
|
+
<td>-</td>
|
|
152
|
+
</tr>
|
|
153
|
+
<tr>
|
|
154
|
+
<td>3.3.0</td>
|
|
155
|
+
<td>-</td>
|
|
156
|
+
<td>-</td>
|
|
157
|
+
<td>-</td>
|
|
158
|
+
<td>✓</td>
|
|
159
|
+
<td>✓</td>
|
|
160
|
+
<td>✓</td>
|
|
161
|
+
<td>✓</td>
|
|
162
|
+
<td>✓</td>
|
|
163
|
+
</tr>
|
|
164
|
+
<tr>
|
|
165
|
+
<td>3.4.1</td>
|
|
166
|
+
<td>-</td>
|
|
167
|
+
<td>-</td>
|
|
168
|
+
<td>-</td>
|
|
169
|
+
<td>-</td>
|
|
170
|
+
<td>-</td>
|
|
171
|
+
<td>✓</td>
|
|
172
|
+
<td>✓</td>
|
|
173
|
+
<td>✓</td>
|
|
174
|
+
</tr>
|
|
175
|
+
</tbody></table>
|
|
176
|
+
|
|
177
|
+
<p><strong>Minimum supported versions:</strong> Ruby 2.6.2 and Rails 5.2</p>
|
|
178
|
+
|
|
179
|
+
<p>Other Ruby/Rails version combinations might work but are not covered by our automated tests.</p>
|
|
94
180
|
|
|
95
181
|
<h2 id="basic-usage">Basic usage</h2>
|
|
96
182
|
|
|
@@ -402,13 +488,13 @@ post</a>.</p>
|
|
|
402
488
|
|
|
403
489
|
<h2 id="copyright">Copyright</h2>
|
|
404
490
|
|
|
405
|
-
<p>Copyright © 2016 -
|
|
491
|
+
<p>Copyright © 2016 - 2026 Sitrox. See <code>LICENSE</code> for further details.</p>
|
|
406
492
|
</div></div>
|
|
407
493
|
|
|
408
494
|
<div id="footer">
|
|
409
|
-
Generated on
|
|
410
|
-
<a href="
|
|
411
|
-
0.9.
|
|
495
|
+
Generated on Mon Jan 5 14:06:48 2026 by
|
|
496
|
+
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
497
|
+
0.9.37 (ruby-3.3.5).
|
|
412
498
|
</div>
|
|
413
499
|
|
|
414
500
|
</div>
|
data/doc/file_list.html
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<html>
|
|
2
|
+
<html >
|
|
3
3
|
<head>
|
|
4
4
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
5
5
|
<meta charset="utf-8" />
|
|
@@ -38,7 +38,10 @@
|
|
|
38
38
|
|
|
39
39
|
</div>
|
|
40
40
|
|
|
41
|
-
<div id="search">
|
|
41
|
+
<div id="search">
|
|
42
|
+
<label for="search-class">Search:</label>
|
|
43
|
+
<input id="search-class" type="text" />
|
|
44
|
+
</div>
|
|
42
45
|
</div>
|
|
43
46
|
|
|
44
47
|
<ul id="full_list" class="file">
|
data/doc/frames.html
CHANGED
|
@@ -2,13 +2,18 @@
|
|
|
2
2
|
<html>
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8">
|
|
5
|
-
<title>Documentation by YARD 0.9.
|
|
5
|
+
<title>Documentation by YARD 0.9.37</title>
|
|
6
6
|
</head>
|
|
7
7
|
<script type="text/javascript">
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
8
|
+
var mainUrl = 'index.html';
|
|
9
|
+
try {
|
|
10
|
+
var match = decodeURIComponent(window.location.hash).match(/^#!(.+)/);
|
|
11
|
+
var name = match ? match[1] : mainUrl;
|
|
12
|
+
var url = new URL(name, location.href);
|
|
13
|
+
window.top.location.replace(url.origin === location.origin ? name : mainUrl);
|
|
14
|
+
} catch (e) {
|
|
15
|
+
window.top.location.replace(mainUrl);
|
|
16
|
+
}
|
|
12
17
|
</script>
|
|
13
18
|
<noscript>
|
|
14
19
|
<h1>Oops!</h1>
|
data/doc/index.html
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
File: README
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.37
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -80,17 +80,103 @@ to your <code>Gemfile</code>:</p>
|
|
|
80
80
|
|
|
81
81
|
<h2 id="compatibility">Compatibility</h2>
|
|
82
82
|
|
|
83
|
-
<p>Inquery is tested
|
|
84
|
-
|
|
85
|
-
<
|
|
86
|
-
<
|
|
87
|
-
<
|
|
88
|
-
<
|
|
89
|
-
<
|
|
90
|
-
<
|
|
91
|
-
</
|
|
92
|
-
|
|
93
|
-
<
|
|
83
|
+
<p>Inquery is tested against multiple Ruby and Rails version combinations. The following table shows the compatibility matrix:</p>
|
|
84
|
+
|
|
85
|
+
<table><thead>
|
|
86
|
+
<tr>
|
|
87
|
+
<th>Ruby Version</th>
|
|
88
|
+
<th>Rails 5.2</th>
|
|
89
|
+
<th>Rails 6.0</th>
|
|
90
|
+
<th>Rails 6.1</th>
|
|
91
|
+
<th>Rails 7.0</th>
|
|
92
|
+
<th>Rails 7.1</th>
|
|
93
|
+
<th>Rails 7.2</th>
|
|
94
|
+
<th>Rails 8.0</th>
|
|
95
|
+
<th>Rails 8.1</th>
|
|
96
|
+
</tr>
|
|
97
|
+
</thead><tbody>
|
|
98
|
+
<tr>
|
|
99
|
+
<td>2.6.2</td>
|
|
100
|
+
<td>✓</td>
|
|
101
|
+
<td>✓</td>
|
|
102
|
+
<td>✓</td>
|
|
103
|
+
<td>-</td>
|
|
104
|
+
<td>-</td>
|
|
105
|
+
<td>-</td>
|
|
106
|
+
<td>-</td>
|
|
107
|
+
<td>-</td>
|
|
108
|
+
</tr>
|
|
109
|
+
<tr>
|
|
110
|
+
<td>2.7.1</td>
|
|
111
|
+
<td>-</td>
|
|
112
|
+
<td>✓</td>
|
|
113
|
+
<td>✓</td>
|
|
114
|
+
<td>✓</td>
|
|
115
|
+
<td>-</td>
|
|
116
|
+
<td>-</td>
|
|
117
|
+
<td>-</td>
|
|
118
|
+
<td>-</td>
|
|
119
|
+
</tr>
|
|
120
|
+
<tr>
|
|
121
|
+
<td>3.0.1</td>
|
|
122
|
+
<td>-</td>
|
|
123
|
+
<td>-</td>
|
|
124
|
+
<td>✓</td>
|
|
125
|
+
<td>✓</td>
|
|
126
|
+
<td>-</td>
|
|
127
|
+
<td>-</td>
|
|
128
|
+
<td>-</td>
|
|
129
|
+
<td>-</td>
|
|
130
|
+
</tr>
|
|
131
|
+
<tr>
|
|
132
|
+
<td>3.1.0</td>
|
|
133
|
+
<td>-</td>
|
|
134
|
+
<td>-</td>
|
|
135
|
+
<td>-</td>
|
|
136
|
+
<td>✓</td>
|
|
137
|
+
<td>✓</td>
|
|
138
|
+
<td>-</td>
|
|
139
|
+
<td>-</td>
|
|
140
|
+
<td>-</td>
|
|
141
|
+
</tr>
|
|
142
|
+
<tr>
|
|
143
|
+
<td>3.2.0</td>
|
|
144
|
+
<td>-</td>
|
|
145
|
+
<td>-</td>
|
|
146
|
+
<td>-</td>
|
|
147
|
+
<td>✓</td>
|
|
148
|
+
<td>✓</td>
|
|
149
|
+
<td>✓</td>
|
|
150
|
+
<td>-</td>
|
|
151
|
+
<td>-</td>
|
|
152
|
+
</tr>
|
|
153
|
+
<tr>
|
|
154
|
+
<td>3.3.0</td>
|
|
155
|
+
<td>-</td>
|
|
156
|
+
<td>-</td>
|
|
157
|
+
<td>-</td>
|
|
158
|
+
<td>✓</td>
|
|
159
|
+
<td>✓</td>
|
|
160
|
+
<td>✓</td>
|
|
161
|
+
<td>✓</td>
|
|
162
|
+
<td>✓</td>
|
|
163
|
+
</tr>
|
|
164
|
+
<tr>
|
|
165
|
+
<td>3.4.1</td>
|
|
166
|
+
<td>-</td>
|
|
167
|
+
<td>-</td>
|
|
168
|
+
<td>-</td>
|
|
169
|
+
<td>-</td>
|
|
170
|
+
<td>-</td>
|
|
171
|
+
<td>✓</td>
|
|
172
|
+
<td>✓</td>
|
|
173
|
+
<td>✓</td>
|
|
174
|
+
</tr>
|
|
175
|
+
</tbody></table>
|
|
176
|
+
|
|
177
|
+
<p><strong>Minimum supported versions:</strong> Ruby 2.6.2 and Rails 5.2</p>
|
|
178
|
+
|
|
179
|
+
<p>Other Ruby/Rails version combinations might work but are not covered by our automated tests.</p>
|
|
94
180
|
|
|
95
181
|
<h2 id="basic-usage">Basic usage</h2>
|
|
96
182
|
|
|
@@ -402,13 +488,13 @@ post</a>.</p>
|
|
|
402
488
|
|
|
403
489
|
<h2 id="copyright">Copyright</h2>
|
|
404
490
|
|
|
405
|
-
<p>Copyright © 2016 -
|
|
491
|
+
<p>Copyright © 2016 - 2026 Sitrox. See <code>LICENSE</code> for further details.</p>
|
|
406
492
|
</div></div>
|
|
407
493
|
|
|
408
494
|
<div id="footer">
|
|
409
|
-
Generated on
|
|
410
|
-
<a href="
|
|
411
|
-
0.9.
|
|
495
|
+
Generated on Mon Jan 5 14:06:48 2026 by
|
|
496
|
+
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
497
|
+
0.9.37 (ruby-3.3.5).
|
|
412
498
|
</div>
|
|
413
499
|
|
|
414
500
|
</div>
|