pursuit 1.0.1 → 1.1.1
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/gemfiles/ruby-2.6.gemfile +14 -0
- data/.github/gemfiles/ruby-2.7.gemfile +13 -0
- data/.github/gemfiles/ruby-3.0.gemfile +13 -0
- data/.github/gemfiles/ruby-3.1.gemfile +13 -0
- data/.github/gemfiles/ruby-3.2.gemfile +13 -0
- data/.github/gemfiles/ruby-3.3.gemfile +13 -0
- data/.github/gemfiles/ruby-3.4.gemfile +13 -0
- data/.github/gemfiles/ruby-head.gemfile +13 -0
- data/.github/gemfiles/ruby-jruby-head.gemfile +13 -0
- data/.github/gemfiles/ruby-jruby.gemfile +13 -0
- data/.github/gemfiles/ruby-truffleruby-head.gemfile +13 -0
- data/.github/gemfiles/ruby-truffleruby.gemfile +13 -0
- data/.github/workflows/continuous-integration.yaml +65 -0
- data/.rbenv-gemsets +1 -1
- data/.ruby-version +1 -1
- data/Gemfile +7 -7
- data/Gemfile.lock +144 -124
- data/README.md +21 -19
- data/lib/pursuit/constants.rb +1 -1
- data/lib/pursuit/predicate_parser.rb +4 -4
- data/lib/pursuit/predicate_search.rb +26 -23
- data/lib/pursuit/predicate_transform.rb +1 -1
- data/lib/pursuit/simple_search.rb +15 -13
- data/lib/pursuit/term_search.rb +18 -13
- data/pursuit.gemspec +11 -11
- data/spec/internal/app/models/product.rb +2 -29
- data/spec/internal/app/models/product_category.rb +2 -22
- data/spec/internal/app/models/product_variation.rb +7 -26
- data/spec/internal/app/searches/product_category_search.rb +50 -0
- data/spec/internal/app/searches/product_search.rb +53 -0
- data/spec/internal/app/searches/product_variation_search.rb +53 -0
- data/spec/lib/pursuit/predicate_search_spec.rb +65 -29
- data/spec/lib/pursuit/predicate_transform_spec.rb +16 -1
- data/spec/lib/pursuit/simple_search_spec.rb +33 -19
- data/spec/lib/pursuit/term_search_spec.rb +33 -19
- metadata +19 -9
- data/.github/workflows/rubygem.yaml +0 -46
- data/travis/gemfiles/7.1.gemfile +0 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0fd2623d40aac824c4fe3eb64b15432e4f48743b4a8f71f7baed05592065f21b
|
4
|
+
data.tar.gz: e8d33f3c5c633c9e0fb3de388803e66034ada5b5d780cee1f80e33e60bb9f2fa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 684b9b7a1ad04114feba9204bb6c8d6d6db4b31c826cb27695b3d2eed12be4f27453a803551f572e796be9ae574b9cdd23eab598a67921f34fc9c27d2ff8427f
|
7
|
+
data.tar.gz: b05e96b1733b99b0b271acbb50d836396df10043978904be0605d49cbb63f984e487d2ccf7f99a21f5b0e0cc27b567042459543a8087acb92036ea3dc49ee5b1
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
source 'https://rubygems.org'
|
4
|
+
|
5
|
+
gemspec path: '../../'
|
6
|
+
|
7
|
+
gem 'activerecord', '~> 6.1.0'
|
8
|
+
gem 'activesupport', '~> 6.1.0'
|
9
|
+
gem 'combustion', '~> 1.5.0'
|
10
|
+
gem 'concurrent-ruby', '1.3.4'
|
11
|
+
gem 'rake', '~> 13.2.0'
|
12
|
+
gem 'rspec-rails', '~> 6.1.0'
|
13
|
+
gem 'rspec', '~> 3.13.0'
|
14
|
+
gem 'sqlite3', '~> 1.5.0'
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
source 'https://rubygems.org'
|
4
|
+
|
5
|
+
gemspec path: '../../'
|
6
|
+
|
7
|
+
gem 'activerecord', '~> 7.1.0'
|
8
|
+
gem 'activesupport', '~> 7.1.0'
|
9
|
+
gem 'combustion', '~> 1.5.0'
|
10
|
+
gem 'rake', '~> 13.2.0'
|
11
|
+
gem 'rspec-rails', '~> 7.1.0'
|
12
|
+
gem 'rspec', '~> 3.13.0'
|
13
|
+
gem 'sqlite3', '~> 1.6.0'
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
source 'https://rubygems.org'
|
4
|
+
|
5
|
+
gemspec path: '../../'
|
6
|
+
|
7
|
+
gem 'activerecord', '~> 7.1.0'
|
8
|
+
gem 'activesupport', '~> 7.1.0'
|
9
|
+
gem 'combustion', '~> 1.5.0'
|
10
|
+
gem 'rake', '~> 13.2.0'
|
11
|
+
gem 'rspec-rails', '~> 7.1.0'
|
12
|
+
gem 'rspec', '~> 3.13.0'
|
13
|
+
gem 'sqlite3', '~> 2.0.0'
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
source 'https://rubygems.org'
|
4
|
+
|
5
|
+
gemspec path: '../../'
|
6
|
+
|
7
|
+
gem 'activerecord', '~> 7.2.0'
|
8
|
+
gem 'activesupport', '~> 7.2.0'
|
9
|
+
gem 'combustion', '~> 1.5.0'
|
10
|
+
gem 'rake', '~> 13.2.0'
|
11
|
+
gem 'rspec-rails', '~> 7.1.0'
|
12
|
+
gem 'rspec', '~> 3.13.0'
|
13
|
+
gem 'sqlite3', '~> 2.6.0'
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
source 'https://rubygems.org'
|
4
|
+
|
5
|
+
gemspec path: '../../'
|
6
|
+
|
7
|
+
gem 'activerecord', '~> 8.0.0'
|
8
|
+
gem 'activesupport', '~> 8.0.0'
|
9
|
+
gem 'combustion', '~> 1.5.0'
|
10
|
+
gem 'rake', '~> 13.2.0'
|
11
|
+
gem 'rspec-rails', '~> 7.1.0'
|
12
|
+
gem 'rspec', '~> 3.13.0'
|
13
|
+
gem 'sqlite3', '~> 2.6.0'
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
source 'https://rubygems.org'
|
4
|
+
|
5
|
+
gemspec path: '../../'
|
6
|
+
|
7
|
+
gem 'activerecord', '~> 8.0.0'
|
8
|
+
gem 'activesupport', '~> 8.0.0'
|
9
|
+
gem 'combustion', '~> 1.5.0'
|
10
|
+
gem 'rake', '~> 13.2.0'
|
11
|
+
gem 'rspec-rails', '~> 7.1.0'
|
12
|
+
gem 'rspec', '~> 3.13.0'
|
13
|
+
gem 'sqlite3', '~> 2.6.0'
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
source 'https://rubygems.org'
|
4
|
+
|
5
|
+
gemspec path: '../../'
|
6
|
+
|
7
|
+
gem 'activerecord', '~> 8.0.0'
|
8
|
+
gem 'activesupport', '~> 8.0.0'
|
9
|
+
gem 'combustion', '~> 1.5.0'
|
10
|
+
gem 'rake', '~> 13.2.0'
|
11
|
+
gem 'rspec-rails', '~> 7.1.0'
|
12
|
+
gem 'rspec', '~> 3.13.0'
|
13
|
+
gem 'sqlite3', '~> 2.6.0'
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
source 'https://rubygems.org'
|
4
|
+
|
5
|
+
gemspec path: '../../'
|
6
|
+
|
7
|
+
gem 'activerecord', '~> 8.0.0'
|
8
|
+
gem 'activesupport', '~> 8.0.0'
|
9
|
+
gem 'combustion', '~> 1.5.0'
|
10
|
+
gem 'rake', '~> 13.2.0'
|
11
|
+
gem 'rspec-rails', '~> 7.1.0'
|
12
|
+
gem 'rspec', '~> 3.13.0'
|
13
|
+
gem 'sqlite3', '~> 2.6.0'
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
source 'https://rubygems.org'
|
4
|
+
|
5
|
+
gemspec path: '../../'
|
6
|
+
|
7
|
+
gem 'activerecord', '~> 8.0.0'
|
8
|
+
gem 'activesupport', '~> 8.0.0'
|
9
|
+
gem 'combustion', '~> 1.5.0'
|
10
|
+
gem 'rake', '~> 13.2.0'
|
11
|
+
gem 'rspec-rails', '~> 7.1.0'
|
12
|
+
gem 'rspec', '~> 3.13.0'
|
13
|
+
gem 'sqlite3', '~> 2.6.0'
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
source 'https://rubygems.org'
|
4
|
+
|
5
|
+
gemspec path: '../../'
|
6
|
+
|
7
|
+
gem 'activerecord', '~> 8.0.0'
|
8
|
+
gem 'activesupport', '~> 8.0.0'
|
9
|
+
gem 'combustion', '~> 1.5.0'
|
10
|
+
gem 'rake', '~> 13.2.0'
|
11
|
+
gem 'rspec-rails', '~> 7.1.0'
|
12
|
+
gem 'rspec', '~> 3.13.0'
|
13
|
+
gem 'sqlite3', '~> 2.6.0'
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
source 'https://rubygems.org'
|
4
|
+
|
5
|
+
gemspec path: '../../'
|
6
|
+
|
7
|
+
gem 'activerecord', '~> 8.0.0'
|
8
|
+
gem 'activesupport', '~> 8.0.0'
|
9
|
+
gem 'combustion', '~> 1.5.0'
|
10
|
+
gem 'rake', '~> 13.2.0'
|
11
|
+
gem 'rspec-rails', '~> 7.1.0'
|
12
|
+
gem 'rspec', '~> 3.13.0'
|
13
|
+
gem 'sqlite3', '~> 2.6.0'
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
source 'https://rubygems.org'
|
4
|
+
|
5
|
+
gemspec path: '../../'
|
6
|
+
|
7
|
+
gem 'activerecord', '~> 8.0.0'
|
8
|
+
gem 'activesupport', '~> 8.0.0'
|
9
|
+
gem 'combustion', '~> 1.5.0'
|
10
|
+
gem 'rake', '~> 13.2.0'
|
11
|
+
gem 'rspec-rails', '~> 7.1.0'
|
12
|
+
gem 'rspec', '~> 3.13.0'
|
13
|
+
gem 'sqlite3', '~> 2.6.0'
|
@@ -0,0 +1,65 @@
|
|
1
|
+
name: Continuous Integration
|
2
|
+
|
3
|
+
on:
|
4
|
+
workflow_dispatch:
|
5
|
+
push:
|
6
|
+
|
7
|
+
concurrency:
|
8
|
+
group: ${{ github.workflow }}-${{ github.ref }}
|
9
|
+
cancel-in-progress: true
|
10
|
+
|
11
|
+
jobs:
|
12
|
+
rubocop:
|
13
|
+
name: RuboCop
|
14
|
+
runs-on: ubuntu-latest
|
15
|
+
steps:
|
16
|
+
- name: Checkout Source Code
|
17
|
+
uses: actions/checkout@v4
|
18
|
+
- name: Setup Ruby
|
19
|
+
uses: ruby/setup-ruby@v1
|
20
|
+
- name: Setup RubyGems
|
21
|
+
run: bundle install
|
22
|
+
- name: RuboCop
|
23
|
+
run: bundle exec rubocop --parallel --format progress --format html --out rubocop-report.html
|
24
|
+
- name: Upload Report
|
25
|
+
uses: actions/upload-artifact@v4
|
26
|
+
with:
|
27
|
+
name: RuboCop Report
|
28
|
+
path: rubocop-report.html
|
29
|
+
|
30
|
+
rspec:
|
31
|
+
name: RSpec
|
32
|
+
runs-on: ${{ matrix.os }}
|
33
|
+
env:
|
34
|
+
BUNDLE_GEMFILE: ${{ github.workspace }}/.github/gemfiles/ruby-${{ matrix.ruby-version }}.gemfile
|
35
|
+
strategy:
|
36
|
+
fail-fast: false
|
37
|
+
matrix:
|
38
|
+
os:
|
39
|
+
- macos-latest
|
40
|
+
- ubuntu-latest
|
41
|
+
ruby-version:
|
42
|
+
- '2.6'
|
43
|
+
- '2.7'
|
44
|
+
- '3.0'
|
45
|
+
- '3.1'
|
46
|
+
- '3.2'
|
47
|
+
- '3.3'
|
48
|
+
- '3.4'
|
49
|
+
- head
|
50
|
+
steps:
|
51
|
+
- name: Checkout Source Code
|
52
|
+
uses: actions/checkout@v4
|
53
|
+
- name: Setup Ruby
|
54
|
+
uses: ruby/setup-ruby@v1
|
55
|
+
with:
|
56
|
+
ruby-version: ${{ matrix.ruby-version }}
|
57
|
+
- name: Setup RubyGems
|
58
|
+
run: bundle install
|
59
|
+
- name: RSpec
|
60
|
+
run: bundle exec rspec --format progress --format html --out rspec-report.html
|
61
|
+
- name: Upload Report
|
62
|
+
uses: actions/upload-artifact@v4
|
63
|
+
with:
|
64
|
+
name: RSpec Report (${{ runner.os }}, Ruby ${{ matrix.ruby-version }})
|
65
|
+
path: rspec-report.html
|
data/.rbenv-gemsets
CHANGED
@@ -1 +1 @@
|
|
1
|
-
pursuit
|
1
|
+
pursuit
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.
|
1
|
+
3.4.2
|
data/Gemfile
CHANGED
@@ -5,16 +5,16 @@ source 'https://rubygems.org'
|
|
5
5
|
gemspec
|
6
6
|
|
7
7
|
group :development do
|
8
|
-
gem 'combustion', '~> 1.
|
8
|
+
gem 'combustion', '~> 1.5'
|
9
9
|
gem 'guard', '~> 2.18'
|
10
10
|
gem 'guard-rspec', '~> 4.7'
|
11
11
|
gem 'pry', '~> 0.14'
|
12
|
-
gem 'rake', '~> 13.
|
13
|
-
gem 'rspec', '~> 3.
|
14
|
-
gem 'rspec-rails', '~>
|
15
|
-
gem 'rubocop', '~> 1.
|
12
|
+
gem 'rake', '~> 13.2'
|
13
|
+
gem 'rspec', '~> 3.13'
|
14
|
+
gem 'rspec-rails', '~> 7.0'
|
15
|
+
gem 'rubocop', '~> 1.67'
|
16
16
|
gem 'rubocop-rake', '~> 0.6'
|
17
|
-
gem 'rubocop-rspec', '~> 2
|
18
|
-
gem 'sqlite3', '~> 1
|
17
|
+
gem 'rubocop-rspec', '~> 3.2'
|
18
|
+
gem 'sqlite3', '~> 2.1'
|
19
19
|
gem 'yard', '~> 0.9'
|
20
20
|
end
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
pursuit (1.
|
4
|
+
pursuit (1.1.1)
|
5
5
|
activerecord (>= 5.2.0, <= 8.0.0)
|
6
6
|
activesupport (>= 5.2.0, <= 8.0.0)
|
7
7
|
parslet (~> 2.0)
|
@@ -9,61 +9,71 @@ PATH
|
|
9
9
|
GEM
|
10
10
|
remote: https://rubygems.org/
|
11
11
|
specs:
|
12
|
-
actionpack (
|
13
|
-
actionview (=
|
14
|
-
activesupport (=
|
12
|
+
actionpack (8.0.0)
|
13
|
+
actionview (= 8.0.0)
|
14
|
+
activesupport (= 8.0.0)
|
15
15
|
nokogiri (>= 1.8.5)
|
16
16
|
rack (>= 2.2.4)
|
17
17
|
rack-session (>= 1.0.1)
|
18
18
|
rack-test (>= 0.6.3)
|
19
19
|
rails-dom-testing (~> 2.2)
|
20
20
|
rails-html-sanitizer (~> 1.6)
|
21
|
-
|
22
|
-
|
21
|
+
useragent (~> 0.16)
|
22
|
+
actionview (8.0.0)
|
23
|
+
activesupport (= 8.0.0)
|
23
24
|
builder (~> 3.1)
|
24
25
|
erubi (~> 1.11)
|
25
26
|
rails-dom-testing (~> 2.2)
|
26
27
|
rails-html-sanitizer (~> 1.6)
|
27
|
-
activemodel (
|
28
|
-
activesupport (=
|
29
|
-
activerecord (
|
30
|
-
activemodel (=
|
31
|
-
activesupport (=
|
28
|
+
activemodel (8.0.0)
|
29
|
+
activesupport (= 8.0.0)
|
30
|
+
activerecord (8.0.0)
|
31
|
+
activemodel (= 8.0.0)
|
32
|
+
activesupport (= 8.0.0)
|
32
33
|
timeout (>= 0.4.0)
|
33
|
-
activesupport (
|
34
|
+
activesupport (8.0.0)
|
34
35
|
base64
|
36
|
+
benchmark (>= 0.3)
|
35
37
|
bigdecimal
|
36
|
-
concurrent-ruby (~> 1.0, >= 1.
|
38
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
37
39
|
connection_pool (>= 2.2.5)
|
38
40
|
drb
|
39
41
|
i18n (>= 1.6, < 2)
|
42
|
+
logger (>= 1.4.2)
|
40
43
|
minitest (>= 5.1)
|
41
|
-
|
42
|
-
tzinfo (~> 2.0)
|
44
|
+
securerandom (>= 0.3)
|
45
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
46
|
+
uri (>= 0.13.1)
|
43
47
|
ast (2.4.2)
|
44
|
-
base64 (0.
|
45
|
-
|
46
|
-
|
48
|
+
base64 (0.2.0)
|
49
|
+
benchmark (0.4.0)
|
50
|
+
bigdecimal (3.1.9)
|
51
|
+
builder (3.3.0)
|
47
52
|
coderay (1.1.3)
|
48
|
-
combustion (1.
|
53
|
+
combustion (1.5.0)
|
49
54
|
activesupport (>= 3.0.0)
|
50
55
|
railties (>= 3.0.0)
|
51
56
|
thor (>= 0.14.6)
|
52
|
-
concurrent-ruby (1.
|
53
|
-
connection_pool (2.
|
57
|
+
concurrent-ruby (1.3.5)
|
58
|
+
connection_pool (2.5.0)
|
54
59
|
crass (1.0.6)
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
erubi (1.
|
59
|
-
ffi (1.
|
60
|
+
date (3.4.1)
|
61
|
+
diff-lcs (1.6.0)
|
62
|
+
drb (2.2.1)
|
63
|
+
erubi (1.13.1)
|
64
|
+
ffi (1.17.1)
|
65
|
+
ffi (1.17.1-arm64-darwin)
|
66
|
+
ffi (1.17.1-x86_64-darwin)
|
67
|
+
ffi (1.17.1-x86_64-linux-gnu)
|
60
68
|
formatador (1.1.0)
|
61
|
-
guard (2.
|
69
|
+
guard (2.19.1)
|
62
70
|
formatador (>= 0.2.4)
|
63
71
|
listen (>= 2.7, < 4.0)
|
72
|
+
logger (~> 1.6)
|
64
73
|
lumberjack (>= 1.0.12, < 2.0)
|
65
74
|
nenv (~> 0.1)
|
66
75
|
notiffany (~> 0.0)
|
76
|
+
ostruct (~> 0.6)
|
67
77
|
pry (>= 0.13.0)
|
68
78
|
shellany (~> 0.0)
|
69
79
|
thor (>= 0.18.1)
|
@@ -72,162 +82,172 @@ GEM
|
|
72
82
|
guard (~> 2.1)
|
73
83
|
guard-compat (~> 1.1)
|
74
84
|
rspec (>= 2.99.0, < 4.0)
|
75
|
-
i18n (1.14.
|
85
|
+
i18n (1.14.7)
|
76
86
|
concurrent-ruby (~> 1.0)
|
77
|
-
io-console (0.
|
78
|
-
irb (1.
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
87
|
+
io-console (0.8.0)
|
88
|
+
irb (1.15.1)
|
89
|
+
pp (>= 0.6.0)
|
90
|
+
rdoc (>= 4.0.0)
|
91
|
+
reline (>= 0.4.2)
|
92
|
+
json (2.10.1)
|
93
|
+
language_server-protocol (3.17.0.4)
|
94
|
+
lint_roller (1.1.0)
|
95
|
+
listen (3.9.0)
|
84
96
|
rb-fsevent (~> 0.10, >= 0.10.3)
|
85
97
|
rb-inotify (~> 0.9, >= 0.9.10)
|
86
|
-
|
98
|
+
logger (1.6.6)
|
99
|
+
loofah (2.24.0)
|
87
100
|
crass (~> 1.0.2)
|
88
101
|
nokogiri (>= 1.12.0)
|
89
|
-
lumberjack (1.2.
|
90
|
-
method_source (1.
|
91
|
-
|
92
|
-
|
102
|
+
lumberjack (1.2.10)
|
103
|
+
method_source (1.1.0)
|
104
|
+
mini_portile2 (2.8.8)
|
105
|
+
minitest (5.25.4)
|
93
106
|
nenv (0.3.0)
|
94
|
-
nokogiri (1.
|
107
|
+
nokogiri (1.18.3)
|
108
|
+
mini_portile2 (~> 2.8.2)
|
95
109
|
racc (~> 1.4)
|
96
|
-
nokogiri (1.
|
110
|
+
nokogiri (1.18.3-arm64-darwin)
|
97
111
|
racc (~> 1.4)
|
98
|
-
nokogiri (1.
|
112
|
+
nokogiri (1.18.3-x86_64-darwin)
|
99
113
|
racc (~> 1.4)
|
100
|
-
nokogiri (1.
|
114
|
+
nokogiri (1.18.3-x86_64-linux-gnu)
|
101
115
|
racc (~> 1.4)
|
102
116
|
notiffany (0.1.3)
|
103
117
|
nenv (~> 0.1)
|
104
118
|
shellany (~> 0.0)
|
105
|
-
|
106
|
-
|
119
|
+
ostruct (0.6.1)
|
120
|
+
parallel (1.26.3)
|
121
|
+
parser (3.3.7.1)
|
107
122
|
ast (~> 2.4.1)
|
108
123
|
racc
|
109
124
|
parslet (2.0.0)
|
110
|
-
|
125
|
+
pp (0.6.2)
|
126
|
+
prettyprint
|
127
|
+
prettyprint (0.2.0)
|
128
|
+
pry (0.15.2)
|
111
129
|
coderay (~> 1.1)
|
112
130
|
method_source (~> 1.0)
|
113
|
-
psych (5.
|
131
|
+
psych (5.2.3)
|
132
|
+
date
|
114
133
|
stringio
|
115
|
-
racc (1.
|
116
|
-
rack (3.
|
117
|
-
rack-session (2.
|
134
|
+
racc (1.8.1)
|
135
|
+
rack (3.1.11)
|
136
|
+
rack-session (2.1.0)
|
137
|
+
base64 (>= 0.1.0)
|
118
138
|
rack (>= 3.0.0)
|
119
|
-
rack-test (2.
|
139
|
+
rack-test (2.2.0)
|
120
140
|
rack (>= 1.3)
|
121
|
-
rackup (2.1
|
141
|
+
rackup (2.2.1)
|
122
142
|
rack (>= 3)
|
123
|
-
webrick (~> 1.8)
|
124
143
|
rails-dom-testing (2.2.0)
|
125
144
|
activesupport (>= 5.0.0)
|
126
145
|
minitest
|
127
146
|
nokogiri (>= 1.6)
|
128
|
-
rails-html-sanitizer (1.6.
|
147
|
+
rails-html-sanitizer (1.6.2)
|
129
148
|
loofah (~> 2.21)
|
130
|
-
nokogiri (
|
131
|
-
railties (
|
132
|
-
actionpack (=
|
133
|
-
activesupport (=
|
134
|
-
irb
|
149
|
+
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
|
150
|
+
railties (8.0.0)
|
151
|
+
actionpack (= 8.0.0)
|
152
|
+
activesupport (= 8.0.0)
|
153
|
+
irb (~> 1.13)
|
135
154
|
rackup (>= 1.0.0)
|
136
155
|
rake (>= 12.2)
|
137
156
|
thor (~> 1.0, >= 1.2.2)
|
138
157
|
zeitwerk (~> 2.6)
|
139
158
|
rainbow (3.1.1)
|
140
|
-
rake (13.1
|
159
|
+
rake (13.2.1)
|
141
160
|
rb-fsevent (0.11.2)
|
142
|
-
rb-inotify (0.
|
161
|
+
rb-inotify (0.11.1)
|
143
162
|
ffi (~> 1.0)
|
144
|
-
rdoc (6.
|
163
|
+
rdoc (6.12.0)
|
145
164
|
psych (>= 4.0.0)
|
146
|
-
regexp_parser (2.
|
147
|
-
reline (0.
|
165
|
+
regexp_parser (2.10.0)
|
166
|
+
reline (0.6.0)
|
148
167
|
io-console (~> 0.5)
|
149
|
-
|
150
|
-
|
151
|
-
rspec-
|
152
|
-
rspec-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
rspec-expectations (3.12.3)
|
168
|
+
rspec (3.13.0)
|
169
|
+
rspec-core (~> 3.13.0)
|
170
|
+
rspec-expectations (~> 3.13.0)
|
171
|
+
rspec-mocks (~> 3.13.0)
|
172
|
+
rspec-core (3.13.3)
|
173
|
+
rspec-support (~> 3.13.0)
|
174
|
+
rspec-expectations (3.13.3)
|
157
175
|
diff-lcs (>= 1.2.0, < 2.0)
|
158
|
-
rspec-support (~> 3.
|
159
|
-
rspec-mocks (3.
|
176
|
+
rspec-support (~> 3.13.0)
|
177
|
+
rspec-mocks (3.13.2)
|
160
178
|
diff-lcs (>= 1.2.0, < 2.0)
|
161
|
-
rspec-support (~> 3.
|
162
|
-
rspec-rails (
|
163
|
-
actionpack (>=
|
164
|
-
activesupport (>=
|
165
|
-
railties (>=
|
166
|
-
rspec-core (~> 3.
|
167
|
-
rspec-expectations (~> 3.
|
168
|
-
rspec-mocks (~> 3.
|
169
|
-
rspec-support (~> 3.
|
170
|
-
rspec-support (3.
|
171
|
-
rubocop (1.
|
179
|
+
rspec-support (~> 3.13.0)
|
180
|
+
rspec-rails (7.1.1)
|
181
|
+
actionpack (>= 7.0)
|
182
|
+
activesupport (>= 7.0)
|
183
|
+
railties (>= 7.0)
|
184
|
+
rspec-core (~> 3.13)
|
185
|
+
rspec-expectations (~> 3.13)
|
186
|
+
rspec-mocks (~> 3.13)
|
187
|
+
rspec-support (~> 3.13)
|
188
|
+
rspec-support (3.13.2)
|
189
|
+
rubocop (1.73.2)
|
172
190
|
json (~> 2.3)
|
173
|
-
language_server-protocol (
|
191
|
+
language_server-protocol (~> 3.17.0.2)
|
192
|
+
lint_roller (~> 1.1.0)
|
174
193
|
parallel (~> 1.10)
|
175
|
-
parser (>= 3.
|
194
|
+
parser (>= 3.3.0.2)
|
176
195
|
rainbow (>= 2.2.2, < 4.0)
|
177
|
-
regexp_parser (>=
|
178
|
-
|
179
|
-
rubocop-ast (>= 1.28.1, < 2.0)
|
196
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
197
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
180
198
|
ruby-progressbar (~> 1.7)
|
181
|
-
unicode-display_width (>= 2.4.0, <
|
182
|
-
rubocop-ast (1.
|
183
|
-
parser (>= 3.
|
184
|
-
rubocop-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
rubocop (~> 1.
|
190
|
-
rubocop-rspec (2.25.0)
|
191
|
-
rubocop (~> 1.40)
|
192
|
-
rubocop-capybara (~> 2.17)
|
193
|
-
rubocop-factory_bot (~> 2.22)
|
199
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
200
|
+
rubocop-ast (1.38.1)
|
201
|
+
parser (>= 3.3.1.0)
|
202
|
+
rubocop-rake (0.7.1)
|
203
|
+
lint_roller (~> 1.1)
|
204
|
+
rubocop (>= 1.72.1)
|
205
|
+
rubocop-rspec (3.5.0)
|
206
|
+
lint_roller (~> 1.1)
|
207
|
+
rubocop (~> 1.72, >= 1.72.1)
|
194
208
|
ruby-progressbar (1.13.0)
|
195
|
-
|
209
|
+
securerandom (0.4.1)
|
196
210
|
shellany (0.0.1)
|
197
|
-
sqlite3 (
|
198
|
-
|
199
|
-
sqlite3 (
|
200
|
-
sqlite3 (
|
201
|
-
|
202
|
-
|
203
|
-
|
211
|
+
sqlite3 (2.6.0)
|
212
|
+
mini_portile2 (~> 2.8.0)
|
213
|
+
sqlite3 (2.6.0-arm64-darwin)
|
214
|
+
sqlite3 (2.6.0-x86_64-darwin)
|
215
|
+
sqlite3 (2.6.0-x86_64-linux-gnu)
|
216
|
+
stringio (3.1.5)
|
217
|
+
thor (1.3.2)
|
218
|
+
timeout (0.4.3)
|
204
219
|
tzinfo (2.0.6)
|
205
220
|
concurrent-ruby (~> 1.0)
|
206
|
-
unicode-display_width (
|
207
|
-
|
208
|
-
|
209
|
-
|
221
|
+
unicode-display_width (3.1.4)
|
222
|
+
unicode-emoji (~> 4.0, >= 4.0.4)
|
223
|
+
unicode-emoji (4.0.4)
|
224
|
+
uri (1.0.3)
|
225
|
+
useragent (0.16.11)
|
226
|
+
yard (0.9.37)
|
227
|
+
zeitwerk (2.7.2)
|
210
228
|
|
211
229
|
PLATFORMS
|
212
230
|
arm64-darwin-22
|
231
|
+
arm64-darwin-23
|
232
|
+
arm64-darwin-24
|
213
233
|
arm64-linux
|
214
234
|
x86_64-darwin-22
|
215
235
|
x86_64-linux
|
216
236
|
|
217
237
|
DEPENDENCIES
|
218
|
-
combustion (~> 1.
|
238
|
+
combustion (~> 1.5)
|
219
239
|
guard (~> 2.18)
|
220
240
|
guard-rspec (~> 4.7)
|
221
241
|
pry (~> 0.14)
|
222
242
|
pursuit!
|
223
|
-
rake (~> 13.
|
224
|
-
rspec (~> 3.
|
225
|
-
rspec-rails (~>
|
226
|
-
rubocop (~> 1.
|
243
|
+
rake (~> 13.2)
|
244
|
+
rspec (~> 3.13)
|
245
|
+
rspec-rails (~> 7.0)
|
246
|
+
rubocop (~> 1.67)
|
227
247
|
rubocop-rake (~> 0.6)
|
228
|
-
rubocop-rspec (~> 2
|
229
|
-
sqlite3 (~> 1
|
248
|
+
rubocop-rspec (~> 3.2)
|
249
|
+
sqlite3 (~> 2.1)
|
230
250
|
yard (~> 0.9)
|
231
251
|
|
232
252
|
BUNDLED WITH
|
233
|
-
2.
|
253
|
+
2.6.5
|