inquery 1.0.9 → 1.0.11

Sign up to get free protection for your applications and to get access to all the features.
Files changed (42) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/rubocop.yml +17 -0
  3. data/.github/workflows/ruby.yml +53 -0
  4. data/.gitignore +2 -1
  5. data/.releaser_config +0 -1
  6. data/.rubocop.yml +4 -0
  7. data/Appraisals +19 -0
  8. data/CHANGELOG.md +13 -1
  9. data/LICENSE +1 -1
  10. data/README.md +23 -6
  11. data/RUBY_VERSION +1 -1
  12. data/Rakefile +4 -4
  13. data/VERSION +1 -1
  14. data/doc/Inquery/Exceptions/Base.html +3 -3
  15. data/doc/Inquery/Exceptions/InvalidRelation.html +3 -3
  16. data/doc/Inquery/Exceptions/UnknownCallSignature.html +3 -3
  17. data/doc/Inquery/Exceptions.html +3 -3
  18. data/doc/Inquery/Mixins/RawSqlUtils.html +3 -3
  19. data/doc/Inquery/Mixins/RelationValidation/ClassMethods.html +3 -3
  20. data/doc/Inquery/Mixins/RelationValidation.html +3 -3
  21. data/doc/Inquery/Mixins/SchemaValidation/ClassMethods.html +19 -5
  22. data/doc/Inquery/Mixins/SchemaValidation.html +3 -3
  23. data/doc/Inquery/Mixins.html +3 -3
  24. data/doc/Inquery/Query/Chainable.html +3 -3
  25. data/doc/Inquery/Query.html +3 -3
  26. data/doc/Inquery.html +115 -3
  27. data/doc/_index.html +8 -8
  28. data/doc/file.README.html +25 -9
  29. data/doc/frames.html +1 -1
  30. data/doc/index.html +25 -9
  31. data/doc/method_list.html +23 -15
  32. data/doc/top-level-namespace.html +3 -3
  33. data/gemfiles/rails_5.1.gemfile +7 -0
  34. data/gemfiles/rails_5.2.gemfile +7 -0
  35. data/gemfiles/rails_6.0.gemfile +7 -0
  36. data/gemfiles/rails_6.1.gemfile +7 -0
  37. data/gemfiles/rails_7.0.gemfile +7 -0
  38. data/inquery.gemspec +20 -32
  39. data/lib/inquery/mixins/schema_validation.rb +8 -1
  40. data/lib/inquery.rb +8 -0
  41. metadata +20 -13
  42. data/.travis.yml +0 -10
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 90b7d62f5ccf00b1ddd813840b80e2bf702d50ae5523a19714130c0c6a3ad570
4
- data.tar.gz: 9e45803cfbf729c3d8b1cdc8edbe94b02be8c1d3a700dbd64f8fdeb004884974
3
+ metadata.gz: 1196c966133abae58b4ba672eebc7fadf0852f4de0ff879673322bf6bfb4a285
4
+ data.tar.gz: 534d1e42f4df591e5cdb1e5e5995c8a3479f1afe03d6bb45d03773ad29c0838f
5
5
  SHA512:
6
- metadata.gz: c6c71a8976c53fc140110fb6a74f3d5aafe680feedbd92622f39323a0042accd82214229e46b6e6e97e52ee78b1e6d07b660641cd0288010c950bc5d8c9879d7
7
- data.tar.gz: 6832e0f4bc345cf8262a64f063d4d4c4d8a0d82922c635130e383720e08ca9b3ca60afada6baa9ba87f72aaf7693eacc57c8b018409252c6cabb0f82b94b6576
6
+ metadata.gz: 31c7638d4a5eb7b32df879028bd01ee612254b1c34ffd2851be7851a5bb72488851748eba904ce6c7967e70e98ba4a85729960a00addd093ea622cdf96f3df30
7
+ data.tar.gz: 0fbe2057d13400d67546ee5722eb85b5e04cc794552c85043d3e939bc89cbd55eff247f8c4b28d681297d2e1305be32da61fc47d1c811868822cf2c36e9759ac
@@ -0,0 +1,17 @@
1
+ name: Rubocop check
2
+ on: push
3
+
4
+ jobs:
5
+ verify:
6
+ name: Test
7
+ runs-on: ubuntu-latest
8
+
9
+ steps:
10
+ - uses: actions/checkout@v1
11
+ - name: Set up Ruby
12
+ uses: ruby/setup-ruby@v1
13
+ with:
14
+ ruby-version: 3.0.1
15
+ bundler-cache: true
16
+ - name: Run rubocop
17
+ run: bundle exec rubocop
@@ -0,0 +1,53 @@
1
+ name: Unit tests
2
+
3
+ on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
+ branches: [ master ]
8
+
9
+ jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
+ strategy:
13
+ fail-fast: false
14
+ matrix:
15
+ include:
16
+ - rails-version: '5.1'
17
+ ruby-version: '2.5.1'
18
+ - rails-version: '5.2'
19
+ ruby-version: '2.5.1'
20
+ - rails-version: '5.2'
21
+ ruby-version: '2.6.2'
22
+ - rails-version: '6.0'
23
+ ruby-version: '2.5.1'
24
+ - rails-version: '6.0'
25
+ ruby-version: '2.6.2'
26
+ - rails-version: '6.0'
27
+ ruby-version: '2.7.1'
28
+ - rails-version: '6.1'
29
+ ruby-version: '2.5.1'
30
+ - rails-version: '6.1'
31
+ ruby-version: '2.6.2'
32
+ - rails-version: '6.1'
33
+ ruby-version: '2.7.1'
34
+ - rails-version: '6.1'
35
+ ruby-version: '3.0.1'
36
+ - rails-version: '7.0'
37
+ ruby-version: '2.7.1'
38
+ - rails-version: '7.0'
39
+ ruby-version: '3.0.1'
40
+ - rails-version: '7.0'
41
+ ruby-version: '3.1.0'
42
+ name: Test against Ruby ${{ matrix.ruby-version }} / Rails ${{ matrix.rails-version }}
43
+ env:
44
+ BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/rails_${{ matrix.rails-version }}.gemfile
45
+ steps:
46
+ - uses: actions/checkout@v2
47
+ - name: Set up Ruby ${{ matrix.ruby-version }}
48
+ uses: ruby/setup-ruby@v1
49
+ with:
50
+ ruby-version: ${{ matrix.ruby-version }}
51
+ bundler-cache: true
52
+ - name: Run rake tests
53
+ run: bundle exec rake test
data/.gitignore CHANGED
@@ -13,4 +13,5 @@ tmtags
13
13
  /spec/reports
14
14
  /.yardoc
15
15
  .idea
16
- /*.gem
16
+ /*.gem
17
+ /gemfiles/*.lock
data/.releaser_config CHANGED
@@ -2,4 +2,3 @@ version_file: VERSION
2
2
  always_from_master: true
3
3
  yard_path: doc
4
4
  gem_style: github
5
- ruby_command: ruby -S
data/.rubocop.yml CHANGED
@@ -5,6 +5,7 @@ AllCops:
5
5
  - 'vendor/**/*'
6
6
  - 'tmp/**/*'
7
7
  - 'inquery.gemspec'
8
+ SuggestExtensions: false
8
9
 
9
10
  DisplayCopNames: true
10
11
 
@@ -101,3 +102,6 @@ Style/ConditionalAssignment:
101
102
 
102
103
  Style/CaseLikeIf:
103
104
  Enabled: false
105
+
106
+ Style/OpenStructUse:
107
+ Enabled: false
data/Appraisals ADDED
@@ -0,0 +1,19 @@
1
+ appraise 'rails-7.0' do
2
+ gem 'rails', '~> 7.0.1'
3
+ end
4
+
5
+ appraise 'rails-6.1' do
6
+ gem 'rails', '~> 6.1.4'
7
+ end
8
+
9
+ appraise 'rails-6.0' do
10
+ gem 'rails', '~> 6.0.4'
11
+ end
12
+
13
+ appraise 'rails-5.2' do
14
+ gem 'rails', '~> 5.2.6'
15
+ end
16
+
17
+ appraise 'rails-5.1' do
18
+ gem 'rails', '~> 5.1.7'
19
+ end
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Change log
2
2
 
3
+ ## 1.0.11 (2023-08-24)
4
+
5
+ * Add configuration option `config.default_schema_version` that allows you to
6
+ specify the schema version in effect when using the `schema` DSL method. For
7
+ backwards compatibility, this new setting defaults to `2`.
8
+
9
+ Internal reference: `#115859`.
10
+
11
+ ## 1.0.10 (2022-05-19)
12
+
13
+ * Update gem-internal ruby version and remove `bundler` from gemspec
14
+
3
15
  ## 1.0.9 (2021-02-24)
4
16
 
5
17
  - Update `schemacop` to version `~> 3.0.8`
@@ -34,7 +46,7 @@
34
46
 
35
47
  ## 1.0.3 (2020-05-12)
36
48
 
37
- - Overwrite parameter hash with the casted version if using
49
+ - Overwrite parameter hash with the casted version if using
38
50
  casting inside the schemacop `schema` block
39
51
 
40
52
  ## 1.0.2 (2019-10-09)
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright © 2016 - 2021 Sitrox
3
+ Copyright © 2016 - 2023 Sitrox
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -1,4 +1,5 @@
1
- [![Build Status](https://travis-ci.org/sitrox/inquery.svg?branch=master)](https://travis-ci.org/sitrox/inquery)
1
+ [![Unit tests](https://github.com/sitrox/inquery/actions/workflows/ruby.yml/badge.svg)](https://github.com/sitrox/inquery/actions/workflows/ruby.yml)
2
+ [![Rubocop check](https://github.com/sitrox/inquery/actions/workflows/rubocop.yml/badge.svg)](https://github.com/sitrox/inquery/actions/workflows/rubocop.yml)
2
3
  [![Gem Version](https://badge.fury.io/rb/inquery.svg)](https://badge.fury.io/rb/inquery)
3
4
 
4
5
  # Inquery
@@ -27,9 +28,10 @@ Inquery is tested with the following ruby versions:
27
28
  * 2.5.1
28
29
  * 2.6.2
29
30
  * 2.7.1
30
- * 3.0.0
31
+ * 3.0.1
32
+ * 3.2.1
31
33
 
32
- Other ruby versions might work but are not covered by our Travis tests.
34
+ Other ruby versions might work but are not covered by our automated tests.
33
35
 
34
36
  ## Basic usage
35
37
 
@@ -296,7 +298,9 @@ end
296
298
  ```
297
299
 
298
300
  Inquery supports both schemacop specification versions 2 and 3 using the methods
299
- `schema` / `schema2` for version 2 and method `schema3` for version 3.
301
+ `schema2` for version 2 and method `schema3` for version 3. You can also use the
302
+ method `schema`, which defaults to the schema version configured using
303
+ `config.default_schema_version` (see [Configuration](#Configuration)).
300
304
 
301
305
  ## Rails integration
302
306
 
@@ -305,6 +309,18 @@ perfectly integrated into any Rails application. It has proven to be a winning
305
309
  concept to extract all complex queries into separate classes that are
306
310
  independently executable and testable.
307
311
 
312
+ ## Configuration
313
+
314
+ Inquery can be configured globally using an optional initializer:
315
+
316
+ ```ruby
317
+ # config/initializers/inquery.rb
318
+ Inquery.setup do |config|
319
+ # Specify the default schemacop schema version. Can be one of 2 or 3.
320
+ # config.default_schema_version = 2
321
+ end
322
+ ```
323
+
308
324
  ### Directory structure
309
325
 
310
326
  While not enforced, it is encouraged to use the following structure for storing
@@ -332,8 +348,9 @@ There are some key benefits to this approach:
332
348
  ## Contributors
333
349
 
334
350
  Thanks to Jeroen Weeink for his insights regarding using query classes as scopes
335
- in his [blog post](http://craftingruby.com/posts/2015/06/29/query-objects-through-scopes.html).
351
+ in his [blog
352
+ post](http://craftingruby.com/posts/2015/06/29/query-objects-through-scopes.html).
336
353
 
337
354
  ## Copyright
338
355
 
339
- Copyright © 2016 - 2021 Sitrox. See `LICENSE` for further details.
356
+ Copyright © 2016 - 2023 Sitrox. See `LICENSE` for further details.
data/RUBY_VERSION CHANGED
@@ -1 +1 @@
1
- ruby-2.6.2-p47
1
+ ruby-3.0.1-p64
data/Rakefile CHANGED
@@ -1,7 +1,7 @@
1
1
  task :gemspec do
2
2
  gemspec = Gem::Specification.new do |spec|
3
3
  spec.name = 'inquery'
4
- spec.version = IO.read('VERSION').chomp
4
+ spec.version = File.read('VERSION').chomp
5
5
  spec.authors = ['Sitrox']
6
6
  spec.summary = %(
7
7
  A skeleton that allows extracting queries into atomic, reusable classes.
@@ -11,12 +11,12 @@ task :gemspec do
11
11
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
12
12
  spec.require_paths = ['lib']
13
13
 
14
- spec.add_development_dependency 'bundler'
14
+ spec.add_development_dependency 'appraisal'
15
15
  spec.add_development_dependency 'rake'
16
16
  spec.add_development_dependency 'sqlite3'
17
17
  spec.add_development_dependency 'haml'
18
18
  spec.add_development_dependency 'yard'
19
- spec.add_development_dependency 'rubocop', '0.92.0'
19
+ spec.add_development_dependency 'rubocop', '1.25'
20
20
  spec.add_development_dependency 'redcarpet'
21
21
  spec.add_dependency 'minitest'
22
22
  spec.add_dependency 'activesupport'
@@ -24,7 +24,7 @@ task :gemspec do
24
24
  spec.add_dependency 'schemacop', '~> 3.0.8'
25
25
  end
26
26
 
27
- File.open('inquery.gemspec', 'w') { |f| f.write(gemspec.to_ruby.strip) }
27
+ File.write('inquery.gemspec', gemspec.to_ruby.strip)
28
28
  end
29
29
 
30
30
  require 'rake/testtask'
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.9
1
+ 1.0.11
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Exception: Inquery::Exceptions::Base
8
8
 
9
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; Documentation by YARD 0.9.27
10
10
 
11
11
  </title>
12
12
 
@@ -118,9 +118,9 @@
118
118
  </div>
119
119
 
120
120
  <div id="footer">
121
- Generated on Wed Feb 24 10:57:42 2021 by
121
+ Generated on Thu Aug 24 11:11:23 2023 by
122
122
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
123
- 0.9.26 (ruby-2.6.2).
123
+ 0.9.27 (ruby-3.0.1).
124
124
  </div>
125
125
 
126
126
  </div>
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Exception: Inquery::Exceptions::InvalidRelation
8
8
 
9
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; Documentation by YARD 0.9.27
10
10
 
11
11
  </title>
12
12
 
@@ -122,9 +122,9 @@
122
122
  </div>
123
123
 
124
124
  <div id="footer">
125
- Generated on Wed Feb 24 10:57:42 2021 by
125
+ Generated on Thu Aug 24 11:11:23 2023 by
126
126
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
127
- 0.9.26 (ruby-2.6.2).
127
+ 0.9.27 (ruby-3.0.1).
128
128
  </div>
129
129
 
130
130
  </div>
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Exception: Inquery::Exceptions::UnknownCallSignature
8
8
 
9
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; Documentation by YARD 0.9.27
10
10
 
11
11
  </title>
12
12
 
@@ -122,9 +122,9 @@
122
122
  </div>
123
123
 
124
124
  <div id="footer">
125
- Generated on Wed Feb 24 10:57:42 2021 by
125
+ Generated on Thu Aug 24 11:11:23 2023 by
126
126
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
127
- 0.9.26 (ruby-2.6.2).
127
+ 0.9.27 (ruby-3.0.1).
128
128
  </div>
129
129
 
130
130
  </div>
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Module: Inquery::Exceptions
8
8
 
9
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; Documentation by YARD 0.9.27
10
10
 
11
11
  </title>
12
12
 
@@ -105,9 +105,9 @@
105
105
  </div>
106
106
 
107
107
  <div id="footer">
108
- Generated on Wed Feb 24 10:57:42 2021 by
108
+ Generated on Thu Aug 24 11:11:23 2023 by
109
109
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
110
- 0.9.26 (ruby-2.6.2).
110
+ 0.9.27 (ruby-3.0.1).
111
111
  </div>
112
112
 
113
113
  </div>
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Module: Inquery::Mixins::RawSqlUtils
8
8
 
9
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; Documentation by YARD 0.9.27
10
10
 
11
11
  </title>
12
12
 
@@ -106,9 +106,9 @@
106
106
  </div>
107
107
 
108
108
  <div id="footer">
109
- Generated on Wed Feb 24 10:57:42 2021 by
109
+ Generated on Thu Aug 24 11:11:23 2023 by
110
110
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
111
- 0.9.26 (ruby-2.6.2).
111
+ 0.9.27 (ruby-3.0.1).
112
112
  </div>
113
113
 
114
114
  </div>
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Module: Inquery::Mixins::RelationValidation::ClassMethods
8
8
 
9
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; Documentation by YARD 0.9.27
10
10
 
11
11
  </title>
12
12
 
@@ -178,9 +178,9 @@ on. See <span class='object_link'><a href="../RelationValidation.html#OPTIONS_SC
178
178
  </div>
179
179
 
180
180
  <div id="footer">
181
- Generated on Wed Feb 24 10:57:42 2021 by
181
+ Generated on Thu Aug 24 11:11:23 2023 by
182
182
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
183
- 0.9.26 (ruby-2.6.2).
183
+ 0.9.27 (ruby-3.0.1).
184
184
  </div>
185
185
 
186
186
  </div>
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Module: Inquery::Mixins::RelationValidation
8
8
 
9
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; Documentation by YARD 0.9.27
10
10
 
11
11
  </title>
12
12
 
@@ -325,9 +325,9 @@ options specified at class level using the <code>relation</code> method.</p>
325
325
  </div>
326
326
 
327
327
  <div id="footer">
328
- Generated on Wed Feb 24 10:57:42 2021 by
328
+ Generated on Thu Aug 24 11:11:23 2023 by
329
329
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
330
- 0.9.26 (ruby-2.6.2).
330
+ 0.9.27 (ruby-3.0.1).
331
331
  </div>
332
332
 
333
333
  </div>
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Module: Inquery::Mixins::SchemaValidation::ClassMethods
8
8
 
9
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; Documentation by YARD 0.9.27
10
10
 
11
11
  </title>
12
12
 
@@ -206,13 +206,27 @@
206
206
 
207
207
  25
208
208
  26
209
- 27</pre>
209
+ 27
210
+ 28
211
+ 29
212
+ 30
213
+ 31
214
+ 32
215
+ 33
216
+ 34</pre>
210
217
  </td>
211
218
  <td>
212
219
  <pre class="code"><span class="info file"># File 'lib/inquery/mixins/schema_validation.rb', line 25</span>
213
220
 
214
221
  <span class='kw'>def</span> <span class='id identifier rubyid_schema'>schema</span><span class='lparen'>(</span><span class='op'>*</span><span class='id identifier rubyid_args'>args</span><span class='comma'>,</span> <span class='op'>&amp;</span><span class='id identifier rubyid_block'>block</span><span class='rparen'>)</span>
215
- <span class='id identifier rubyid_schema2'>schema2</span><span class='lparen'>(</span><span class='op'>*</span><span class='id identifier rubyid_args'>args</span><span class='comma'>,</span> <span class='op'>&amp;</span><span class='id identifier rubyid_block'>block</span><span class='rparen'>)</span>
222
+ <span class='kw'>case</span> <span class='const'><span class='object_link'><a href="../../../Inquery.html" title="Inquery (module)">Inquery</a></span></span><span class='period'>.</span><span class='id identifier rubyid_default_schema_version'>default_schema_version</span>
223
+ <span class='kw'>when</span> <span class='int'>2</span>
224
+ <span class='id identifier rubyid_schema2'>schema2</span><span class='lparen'>(</span><span class='op'>*</span><span class='id identifier rubyid_args'>args</span><span class='comma'>,</span> <span class='op'>&amp;</span><span class='id identifier rubyid_block'>block</span><span class='rparen'>)</span>
225
+ <span class='kw'>when</span> <span class='int'>3</span>
226
+ <span class='id identifier rubyid_schema3'>schema3</span><span class='lparen'>(</span><span class='op'>*</span><span class='id identifier rubyid_args'>args</span><span class='comma'>,</span> <span class='op'>&amp;</span><span class='id identifier rubyid_block'>block</span><span class='rparen'>)</span>
227
+ <span class='kw'>else</span>
228
+ <span class='id identifier rubyid_fail'>fail</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>Schemacop schema versions supported are 2 and 3.</span><span class='tstring_end'>&#39;</span></span>
229
+ <span class='kw'>end</span>
216
230
  <span class='kw'>end</span></pre>
217
231
  </td>
218
232
  </tr>
@@ -292,9 +306,9 @@
292
306
  </div>
293
307
 
294
308
  <div id="footer">
295
- Generated on Wed Feb 24 10:57:42 2021 by
309
+ Generated on Thu Aug 24 11:11:23 2023 by
296
310
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
297
- 0.9.26 (ruby-2.6.2).
311
+ 0.9.27 (ruby-3.0.1).
298
312
  </div>
299
313
 
300
314
  </div>
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Module: Inquery::Mixins::SchemaValidation
8
8
 
9
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; Documentation by YARD 0.9.27
10
10
 
11
11
  </title>
12
12
 
@@ -116,9 +116,9 @@
116
116
  </div>
117
117
 
118
118
  <div id="footer">
119
- Generated on Wed Feb 24 10:57:42 2021 by
119
+ Generated on Thu Aug 24 11:11:23 2023 by
120
120
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
121
- 0.9.26 (ruby-2.6.2).
121
+ 0.9.27 (ruby-3.0.1).
122
122
  </div>
123
123
 
124
124
  </div>
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Module: Inquery::Mixins
8
8
 
9
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; Documentation by YARD 0.9.27
10
10
 
11
11
  </title>
12
12
 
@@ -107,9 +107,9 @@
107
107
  </div>
108
108
 
109
109
  <div id="footer">
110
- Generated on Wed Feb 24 10:57:42 2021 by
110
+ Generated on Thu Aug 24 11:11:23 2023 by
111
111
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
112
- 0.9.26 (ruby-2.6.2).
112
+ 0.9.27 (ruby-3.0.1).
113
113
  </div>
114
114
 
115
115
  </div>
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Class: Inquery::Query::Chainable
8
8
 
9
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; Documentation by YARD 0.9.27
10
10
 
11
11
  </title>
12
12
 
@@ -529,9 +529,9 @@
529
529
  </div>
530
530
 
531
531
  <div id="footer">
532
- Generated on Wed Feb 24 10:57:42 2021 by
532
+ Generated on Thu Aug 24 11:11:23 2023 by
533
533
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
534
- 0.9.26 (ruby-2.6.2).
534
+ 0.9.27 (ruby-3.0.1).
535
535
  </div>
536
536
 
537
537
  </div>
@@ -6,7 +6,7 @@
6
6
  <title>
7
7
  Class: Inquery::Query
8
8
 
9
- &mdash; Documentation by YARD 0.9.26
9
+ &mdash; Documentation by YARD 0.9.27
10
10
 
11
11
  </title>
12
12
 
@@ -779,9 +779,9 @@ easyer access.</p>
779
779
  </div>
780
780
 
781
781
  <div id="footer">
782
- Generated on Wed Feb 24 10:57:42 2021 by
782
+ Generated on Thu Aug 24 11:11:23 2023 by
783
783
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
784
- 0.9.26 (ruby-2.6.2).
784
+ 0.9.27 (ruby-3.0.1).
785
785
  </div>
786
786
 
787
787
  </div>