search_rails 1.1.3 → 2.0.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 +5 -5
- data/.github/dependabot.yml +15 -0
- data/.github/workflows/ci.yml +38 -0
- data/.gitignore +30 -9
- data/.node-version +1 -0
- data/.npm-version +1 -0
- data/.prettierignore +2 -0
- data/.rspec +1 -2
- data/.rubocop.yml +130 -0
- data/.ruby-version +1 -0
- data/.tool-versions +3 -0
- data/Gemfile +19 -6
- data/Gemfile.lock +398 -0
- data/LICENSE +19 -0
- data/README.md +2 -80
- data/Rakefile +3 -4
- data/VERSION +1 -0
- data/lib/search.rb +667 -0
- data/lib/search_rails.rb +11 -529
- data/package-lock.json +14 -0
- data/package.json +7 -0
- data/search_rails.gemspec +18 -24
- metadata +46 -46
- data/.travis.yml +0 -5
- data/CODE_OF_CONDUCT.md +0 -74
- data/LICENSE.txt +0 -21
- data/bin/console +0 -14
- data/bin/search:install +0 -5
- data/bin/search:install:devise +0 -5
- data/bin/setup +0 -8
- data/lib/search_rails/version.rb +0 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 8a79fc4299b467f81c78011f7adfc6158c8bd495ce877c38f650cfca37b6e481
|
4
|
+
data.tar.gz: 930eeaf0281e221d2453b81d1c640e8123a925c109aaaf1d19f9b7bae7dc569c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dda508c9eb1603596ca523ea7a0b2cfe29c98ad538d3b01f7b317df1c45911d150c4cbec119b518840bac36f262f81885a184ac5183a085912b67603ead7fae8
|
7
|
+
data.tar.gz: c6122d126a7bd240c0e845809f1a6d13d9526301d0737da134fcaaba54a66c638413ef669d11bd981cb031892d588073b861aa7d300f135a452ca9a5f3f43243
|
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
updates:
|
3
|
+
- directory: "/"
|
4
|
+
package-ecosystem: github-actions
|
5
|
+
schedule:
|
6
|
+
interval: daily
|
7
|
+
- directory: "/"
|
8
|
+
package-ecosystem: npm
|
9
|
+
schedule:
|
10
|
+
interval: daily
|
11
|
+
- directory: "/"
|
12
|
+
package-ecosystem: bundler
|
13
|
+
schedule:
|
14
|
+
interval: daily
|
15
|
+
version: 2
|
@@ -0,0 +1,38 @@
|
|
1
|
+
---
|
2
|
+
jobs:
|
3
|
+
bundler-audit:
|
4
|
+
name: Bundler Audit
|
5
|
+
runs-on: ubuntu-latest
|
6
|
+
steps:
|
7
|
+
- uses: actions/checkout@v4
|
8
|
+
- uses: ruby/setup-ruby@v1
|
9
|
+
with:
|
10
|
+
bundler-cache: true
|
11
|
+
- run: bin/bundler-audit check --update
|
12
|
+
npm-audit:
|
13
|
+
name: npm Audit
|
14
|
+
runs-on: ubuntu-latest
|
15
|
+
steps:
|
16
|
+
- uses: actions/checkout@v4
|
17
|
+
- uses: actions/setup-node@v4
|
18
|
+
- run: npm audit
|
19
|
+
rspec:
|
20
|
+
name: Test
|
21
|
+
runs-on: ubuntu-latest
|
22
|
+
steps:
|
23
|
+
- uses: actions/checkout@v4
|
24
|
+
- uses: ruby/setup-ruby@v1
|
25
|
+
with:
|
26
|
+
bundler-cache: true
|
27
|
+
- run: bin/test
|
28
|
+
rubocop:
|
29
|
+
name: Rubocop
|
30
|
+
runs-on: ubuntu-latest
|
31
|
+
steps:
|
32
|
+
- uses: actions/checkout@v4
|
33
|
+
- uses: ruby/setup-ruby@v1
|
34
|
+
with:
|
35
|
+
bundler-cache: true
|
36
|
+
- run: bin/rubocop
|
37
|
+
name: CI
|
38
|
+
'on': push
|
data/.gitignore
CHANGED
@@ -1,9 +1,30 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
/
|
1
|
+
.DS_Store
|
2
|
+
*.gem
|
3
|
+
/.bundle
|
4
|
+
/.env
|
5
|
+
/.env.*.local
|
6
|
+
/.env.prod
|
7
|
+
/.env.staging
|
8
|
+
/.expo
|
9
|
+
/app/assets/builds
|
10
|
+
/config/*.key
|
11
|
+
/config/credentials/*.key
|
12
|
+
/log
|
13
|
+
/node_modules
|
14
|
+
/public/assets
|
15
|
+
/spec/examples.txt
|
16
|
+
/storage
|
17
|
+
/tmp
|
18
|
+
/tmp/pids
|
19
|
+
/tmp/storage
|
20
|
+
/vendor/bundle
|
21
|
+
!/.env*.erb
|
22
|
+
!/app/assets/builds/.keep
|
23
|
+
!/db/.keep
|
24
|
+
!/log/.keep
|
25
|
+
!/storage/.keep
|
26
|
+
!/tmp/.keep
|
27
|
+
!/tmp/pids/
|
28
|
+
!/tmp/pids/.keep
|
29
|
+
!/tmp/storage/
|
30
|
+
!/tmp/storage/.keep
|
data/.node-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
23.11.0
|
data/.npm-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
11.2.0
|
data/.prettierignore
ADDED
data/.rspec
CHANGED
@@ -1,2 +1 @@
|
|
1
|
-
--
|
2
|
-
--color
|
1
|
+
--require spec_helper
|
data/.rubocop.yml
ADDED
@@ -0,0 +1,130 @@
|
|
1
|
+
---
|
2
|
+
AllCops:
|
3
|
+
Exclude:
|
4
|
+
- "**/node_modules/**/*"
|
5
|
+
- "**/vendor/**/*"
|
6
|
+
- "**/db/schema.rb"
|
7
|
+
NewCops: enable
|
8
|
+
TargetRubyVersion: 3.0
|
9
|
+
Layout/ClosingHeredocIndentation:
|
10
|
+
Enabled: false
|
11
|
+
Layout/FirstArgumentIndentation:
|
12
|
+
Enabled: false
|
13
|
+
Layout/HashAlignment:
|
14
|
+
Enabled: false
|
15
|
+
Layout/HeredocIndentation:
|
16
|
+
Enabled: false
|
17
|
+
Layout/LineEndStringConcatenationIndentation:
|
18
|
+
Enabled: false
|
19
|
+
Layout/LineLength:
|
20
|
+
Enabled: false
|
21
|
+
Layout/MultilineMethodCallIndentation:
|
22
|
+
Enabled: false
|
23
|
+
Layout/MultilineOperationIndentation:
|
24
|
+
Enabled: false
|
25
|
+
Layout/SpaceInsideHashLiteralBraces:
|
26
|
+
Enabled: false
|
27
|
+
Lint/EmptyClass:
|
28
|
+
Enabled: false
|
29
|
+
Lint/MissingSuper:
|
30
|
+
Enabled: false
|
31
|
+
Lint/PercentStringArray:
|
32
|
+
Enabled: false
|
33
|
+
Lint/ShadowingOuterLocalVariable:
|
34
|
+
Enabled: false
|
35
|
+
Lint/SuppressedException:
|
36
|
+
Enabled: false
|
37
|
+
Lint/UnusedBlockArgument:
|
38
|
+
Enabled: false
|
39
|
+
Lint/UselessAssignment:
|
40
|
+
Enabled: false
|
41
|
+
Metrics/AbcSize:
|
42
|
+
Enabled: false
|
43
|
+
Metrics/BlockLength:
|
44
|
+
Enabled: false
|
45
|
+
Metrics/ClassLength:
|
46
|
+
Enabled: false
|
47
|
+
Metrics/CyclomaticComplexity:
|
48
|
+
Enabled: false
|
49
|
+
Metrics/MethodLength:
|
50
|
+
Enabled: false
|
51
|
+
Metrics/ModuleLength:
|
52
|
+
Enabled: false
|
53
|
+
Metrics/ParameterLists:
|
54
|
+
Enabled: false
|
55
|
+
Metrics/PerceivedComplexity:
|
56
|
+
Enabled: false
|
57
|
+
Naming/FileName:
|
58
|
+
Enabled: false
|
59
|
+
Naming/MethodParameterName:
|
60
|
+
Enabled: false
|
61
|
+
Naming/VariableNumber:
|
62
|
+
Enabled: false
|
63
|
+
Performance/Sum:
|
64
|
+
Enabled: false
|
65
|
+
Performance/UnfreezeString:
|
66
|
+
Enabled: false
|
67
|
+
RSpec/AnyInstance:
|
68
|
+
Enabled: false
|
69
|
+
RSpec/ContextWording:
|
70
|
+
Enabled: false
|
71
|
+
RSpec/DescribeClass:
|
72
|
+
Enabled: false
|
73
|
+
RSpec/ExampleLength:
|
74
|
+
Enabled: false
|
75
|
+
RSpec/ExampleWording:
|
76
|
+
Enabled: false
|
77
|
+
RSpec/MultipleExpectations:
|
78
|
+
Enabled: false
|
79
|
+
RSpec/NoExpectationExample:
|
80
|
+
Enabled: false
|
81
|
+
RSpec/PendingWithoutReason:
|
82
|
+
Enabled: false
|
83
|
+
Rails/Delegate:
|
84
|
+
Enabled: false
|
85
|
+
Rails/DynamicFindBy:
|
86
|
+
Enabled: false
|
87
|
+
Rails/HelperInstanceVariable:
|
88
|
+
Enabled: false
|
89
|
+
Rails/NegateInclude:
|
90
|
+
Enabled: false
|
91
|
+
Rails/Output:
|
92
|
+
Enabled: false
|
93
|
+
Rails/Presence:
|
94
|
+
Enabled: false
|
95
|
+
Rails/Present:
|
96
|
+
Enabled: false
|
97
|
+
Rails/ThreeStateBooleanColumn:
|
98
|
+
Enabled: false
|
99
|
+
Rails/TimeZone:
|
100
|
+
Enabled: false
|
101
|
+
Security/Eval:
|
102
|
+
Enabled: false
|
103
|
+
Style/CaseEquality:
|
104
|
+
Enabled: false
|
105
|
+
Style/Documentation:
|
106
|
+
Enabled: false
|
107
|
+
Style/DoubleNegation:
|
108
|
+
Enabled: false
|
109
|
+
Style/EmptyMethod:
|
110
|
+
Enabled: false
|
111
|
+
Style/IfUnlessModifier:
|
112
|
+
Enabled: false
|
113
|
+
Style/MultilineBlockChain:
|
114
|
+
Enabled: false
|
115
|
+
Style/NestedTernaryOperator:
|
116
|
+
Enabled: false
|
117
|
+
Style/QuotedSymbols:
|
118
|
+
Enabled: false
|
119
|
+
Style/StringLiterals:
|
120
|
+
Enabled: false
|
121
|
+
Style/StringLiteralsInInterpolation:
|
122
|
+
Enabled: false
|
123
|
+
plugins:
|
124
|
+
- rubocop-factory_bot
|
125
|
+
- rubocop-performance
|
126
|
+
- rubocop-rails
|
127
|
+
- rubocop-rake
|
128
|
+
- rubocop-rspec
|
129
|
+
- rubocop-capybara
|
130
|
+
- rubocop-rspec_rails
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
3.4.2
|
data/.tool-versions
ADDED
data/Gemfile
CHANGED
@@ -1,9 +1,22 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
source "https://rubygems.org"
|
2
4
|
|
3
5
|
gemspec
|
4
6
|
|
5
|
-
|
6
|
-
|
7
|
-
gem
|
8
|
-
gem
|
9
|
-
gem
|
7
|
+
ruby "3.4.2"
|
8
|
+
|
9
|
+
gem "bundler-audit"
|
10
|
+
gem "dorian"
|
11
|
+
gem "rake"
|
12
|
+
gem "rspec"
|
13
|
+
gem "rubocop-capybara"
|
14
|
+
gem "rubocop-factory_bot"
|
15
|
+
gem "rubocop-performance"
|
16
|
+
gem "rubocop-rails"
|
17
|
+
gem "rubocop-rake"
|
18
|
+
gem "rubocop-rspec"
|
19
|
+
gem "rubocop-rspec_rails"
|
20
|
+
gem "ruby-prof"
|
21
|
+
gem "sinatra"
|
22
|
+
gem "webmock"
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,398 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
search-rails (2.0.0)
|
5
|
+
chronic
|
6
|
+
query-ruby
|
7
|
+
rails
|
8
|
+
zeitwerk
|
9
|
+
|
10
|
+
GEM
|
11
|
+
remote: https://rubygems.org/
|
12
|
+
specs:
|
13
|
+
actioncable (8.0.2)
|
14
|
+
actionpack (= 8.0.2)
|
15
|
+
activesupport (= 8.0.2)
|
16
|
+
nio4r (~> 2.0)
|
17
|
+
websocket-driver (>= 0.6.1)
|
18
|
+
zeitwerk (~> 2.6)
|
19
|
+
actionmailbox (8.0.2)
|
20
|
+
actionpack (= 8.0.2)
|
21
|
+
activejob (= 8.0.2)
|
22
|
+
activerecord (= 8.0.2)
|
23
|
+
activestorage (= 8.0.2)
|
24
|
+
activesupport (= 8.0.2)
|
25
|
+
mail (>= 2.8.0)
|
26
|
+
actionmailer (8.0.2)
|
27
|
+
actionpack (= 8.0.2)
|
28
|
+
actionview (= 8.0.2)
|
29
|
+
activejob (= 8.0.2)
|
30
|
+
activesupport (= 8.0.2)
|
31
|
+
mail (>= 2.8.0)
|
32
|
+
rails-dom-testing (~> 2.2)
|
33
|
+
actionpack (8.0.2)
|
34
|
+
actionview (= 8.0.2)
|
35
|
+
activesupport (= 8.0.2)
|
36
|
+
nokogiri (>= 1.8.5)
|
37
|
+
rack (>= 2.2.4)
|
38
|
+
rack-session (>= 1.0.1)
|
39
|
+
rack-test (>= 0.6.3)
|
40
|
+
rails-dom-testing (~> 2.2)
|
41
|
+
rails-html-sanitizer (~> 1.6)
|
42
|
+
useragent (~> 0.16)
|
43
|
+
actiontext (8.0.2)
|
44
|
+
actionpack (= 8.0.2)
|
45
|
+
activerecord (= 8.0.2)
|
46
|
+
activestorage (= 8.0.2)
|
47
|
+
activesupport (= 8.0.2)
|
48
|
+
globalid (>= 0.6.0)
|
49
|
+
nokogiri (>= 1.8.5)
|
50
|
+
actionview (8.0.2)
|
51
|
+
activesupport (= 8.0.2)
|
52
|
+
builder (~> 3.1)
|
53
|
+
erubi (~> 1.11)
|
54
|
+
rails-dom-testing (~> 2.2)
|
55
|
+
rails-html-sanitizer (~> 1.6)
|
56
|
+
activejob (8.0.2)
|
57
|
+
activesupport (= 8.0.2)
|
58
|
+
globalid (>= 0.3.6)
|
59
|
+
activemodel (8.0.2)
|
60
|
+
activesupport (= 8.0.2)
|
61
|
+
activerecord (8.0.2)
|
62
|
+
activemodel (= 8.0.2)
|
63
|
+
activesupport (= 8.0.2)
|
64
|
+
timeout (>= 0.4.0)
|
65
|
+
activestorage (8.0.2)
|
66
|
+
actionpack (= 8.0.2)
|
67
|
+
activejob (= 8.0.2)
|
68
|
+
activerecord (= 8.0.2)
|
69
|
+
activesupport (= 8.0.2)
|
70
|
+
marcel (~> 1.0)
|
71
|
+
activesupport (8.0.2)
|
72
|
+
base64
|
73
|
+
benchmark (>= 0.3)
|
74
|
+
bigdecimal
|
75
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
76
|
+
connection_pool (>= 2.2.5)
|
77
|
+
drb
|
78
|
+
i18n (>= 1.6, < 2)
|
79
|
+
logger (>= 1.4.2)
|
80
|
+
minitest (>= 5.1)
|
81
|
+
securerandom (>= 0.3)
|
82
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
83
|
+
uri (>= 0.13.1)
|
84
|
+
addressable (2.8.7)
|
85
|
+
public_suffix (>= 2.0.2, < 7.0)
|
86
|
+
ast (2.4.3)
|
87
|
+
base64 (0.2.0)
|
88
|
+
benchmark (0.4.0)
|
89
|
+
bigdecimal (3.1.9)
|
90
|
+
builder (3.3.0)
|
91
|
+
bundler-audit (0.9.2)
|
92
|
+
bundler (>= 1.2.0, < 3)
|
93
|
+
thor (~> 1.0)
|
94
|
+
chronic (0.10.2)
|
95
|
+
cmdparse (3.0.7)
|
96
|
+
concurrent-ruby (1.3.5)
|
97
|
+
connection_pool (2.5.1)
|
98
|
+
crack (1.0.0)
|
99
|
+
bigdecimal
|
100
|
+
rexml
|
101
|
+
crass (1.0.6)
|
102
|
+
csv (3.3.4)
|
103
|
+
date (3.4.1)
|
104
|
+
diff-lcs (1.6.1)
|
105
|
+
dorian (2.6.4)
|
106
|
+
csv
|
107
|
+
dorian-arguments
|
108
|
+
dorian-eval
|
109
|
+
dorian-progress
|
110
|
+
dorian-to_struct
|
111
|
+
git
|
112
|
+
hexapdf
|
113
|
+
json
|
114
|
+
mini_racer
|
115
|
+
ostruct
|
116
|
+
parallel
|
117
|
+
syntax_tree
|
118
|
+
syntax_tree-haml
|
119
|
+
syntax_tree-xml
|
120
|
+
terminal-table
|
121
|
+
w_syntax_tree-erb
|
122
|
+
yaml
|
123
|
+
dorian-arguments (1.2.2)
|
124
|
+
bigdecimal
|
125
|
+
dorian-eval (1.5.0)
|
126
|
+
yaml
|
127
|
+
dorian-progress (1.1.2)
|
128
|
+
ruby-progressbar
|
129
|
+
dorian-to_struct (2.0.2)
|
130
|
+
drb (2.2.1)
|
131
|
+
erubi (1.13.1)
|
132
|
+
geom2d (0.4.1)
|
133
|
+
git (3.0.0)
|
134
|
+
activesupport (>= 5.0)
|
135
|
+
addressable (~> 2.8)
|
136
|
+
process_executer (~> 1.3)
|
137
|
+
rchardet (~> 1.9)
|
138
|
+
globalid (1.2.1)
|
139
|
+
activesupport (>= 6.1)
|
140
|
+
haml (6.3.0)
|
141
|
+
temple (>= 0.8.2)
|
142
|
+
thor
|
143
|
+
tilt
|
144
|
+
hashdiff (1.1.2)
|
145
|
+
hexapdf (1.2.0)
|
146
|
+
cmdparse (~> 3.0, >= 3.0.3)
|
147
|
+
geom2d (~> 0.4, >= 0.4.1)
|
148
|
+
openssl (>= 2.2.1)
|
149
|
+
strscan (>= 3.1.2)
|
150
|
+
i18n (1.14.7)
|
151
|
+
concurrent-ruby (~> 1.0)
|
152
|
+
io-console (0.8.0)
|
153
|
+
irb (1.15.2)
|
154
|
+
pp (>= 0.6.0)
|
155
|
+
rdoc (>= 4.0.0)
|
156
|
+
reline (>= 0.4.2)
|
157
|
+
json (2.10.2)
|
158
|
+
language-ruby (1.2.0)
|
159
|
+
dorian-arguments
|
160
|
+
zeitwerk
|
161
|
+
language_server-protocol (3.17.0.4)
|
162
|
+
libv8-node (23.6.1.0)
|
163
|
+
libv8-node (23.6.1.0-arm64-darwin)
|
164
|
+
libv8-node (23.6.1.0-x86_64-linux)
|
165
|
+
lint_roller (1.1.0)
|
166
|
+
logger (1.7.0)
|
167
|
+
loofah (2.24.0)
|
168
|
+
crass (~> 1.0.2)
|
169
|
+
nokogiri (>= 1.12.0)
|
170
|
+
mail (2.8.1)
|
171
|
+
mini_mime (>= 0.1.1)
|
172
|
+
net-imap
|
173
|
+
net-pop
|
174
|
+
net-smtp
|
175
|
+
marcel (1.0.4)
|
176
|
+
mini_mime (1.1.5)
|
177
|
+
mini_racer (0.18.1)
|
178
|
+
libv8-node (~> 23.6.1.0)
|
179
|
+
minitest (5.25.5)
|
180
|
+
mustermann (3.0.3)
|
181
|
+
ruby2_keywords (~> 0.0.1)
|
182
|
+
net-imap (0.5.8)
|
183
|
+
date
|
184
|
+
net-protocol
|
185
|
+
net-pop (0.1.2)
|
186
|
+
net-protocol
|
187
|
+
net-protocol (0.2.2)
|
188
|
+
timeout
|
189
|
+
net-smtp (0.5.1)
|
190
|
+
net-protocol
|
191
|
+
nio4r (2.7.4)
|
192
|
+
nokogiri (1.18.8-arm64-darwin)
|
193
|
+
racc (~> 1.4)
|
194
|
+
nokogiri (1.18.8-x86_64-linux-gnu)
|
195
|
+
racc (~> 1.4)
|
196
|
+
openssl (3.3.0)
|
197
|
+
ostruct (0.6.1)
|
198
|
+
parallel (1.27.0)
|
199
|
+
parser (3.3.8.0)
|
200
|
+
ast (~> 2.4.1)
|
201
|
+
racc
|
202
|
+
pp (0.6.2)
|
203
|
+
prettyprint
|
204
|
+
prettier_print (1.2.1)
|
205
|
+
prettyprint (0.2.0)
|
206
|
+
prism (1.4.0)
|
207
|
+
process_executer (1.3.0)
|
208
|
+
psych (5.2.3)
|
209
|
+
date
|
210
|
+
stringio
|
211
|
+
public_suffix (6.0.1)
|
212
|
+
query-ruby (1.1.0)
|
213
|
+
activesupport
|
214
|
+
bigdecimal
|
215
|
+
dorian-arguments
|
216
|
+
json
|
217
|
+
language-ruby
|
218
|
+
zeitwerk
|
219
|
+
racc (1.8.1)
|
220
|
+
rack (3.1.13)
|
221
|
+
rack-protection (4.1.1)
|
222
|
+
base64 (>= 0.1.0)
|
223
|
+
logger (>= 1.6.0)
|
224
|
+
rack (>= 3.0.0, < 4)
|
225
|
+
rack-session (2.1.0)
|
226
|
+
base64 (>= 0.1.0)
|
227
|
+
rack (>= 3.0.0)
|
228
|
+
rack-test (2.2.0)
|
229
|
+
rack (>= 1.3)
|
230
|
+
rackup (2.2.1)
|
231
|
+
rack (>= 3)
|
232
|
+
rails (8.0.2)
|
233
|
+
actioncable (= 8.0.2)
|
234
|
+
actionmailbox (= 8.0.2)
|
235
|
+
actionmailer (= 8.0.2)
|
236
|
+
actionpack (= 8.0.2)
|
237
|
+
actiontext (= 8.0.2)
|
238
|
+
actionview (= 8.0.2)
|
239
|
+
activejob (= 8.0.2)
|
240
|
+
activemodel (= 8.0.2)
|
241
|
+
activerecord (= 8.0.2)
|
242
|
+
activestorage (= 8.0.2)
|
243
|
+
activesupport (= 8.0.2)
|
244
|
+
bundler (>= 1.15.0)
|
245
|
+
railties (= 8.0.2)
|
246
|
+
rails-dom-testing (2.2.0)
|
247
|
+
activesupport (>= 5.0.0)
|
248
|
+
minitest
|
249
|
+
nokogiri (>= 1.6)
|
250
|
+
rails-html-sanitizer (1.6.2)
|
251
|
+
loofah (~> 2.21)
|
252
|
+
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)
|
253
|
+
railties (8.0.2)
|
254
|
+
actionpack (= 8.0.2)
|
255
|
+
activesupport (= 8.0.2)
|
256
|
+
irb (~> 1.13)
|
257
|
+
rackup (>= 1.0.0)
|
258
|
+
rake (>= 12.2)
|
259
|
+
thor (~> 1.0, >= 1.2.2)
|
260
|
+
zeitwerk (~> 2.6)
|
261
|
+
rainbow (3.1.1)
|
262
|
+
rake (13.2.1)
|
263
|
+
rchardet (1.9.0)
|
264
|
+
rdoc (6.13.1)
|
265
|
+
psych (>= 4.0.0)
|
266
|
+
regexp_parser (2.10.0)
|
267
|
+
reline (0.6.1)
|
268
|
+
io-console (~> 0.5)
|
269
|
+
rexml (3.4.1)
|
270
|
+
rspec (3.13.0)
|
271
|
+
rspec-core (~> 3.13.0)
|
272
|
+
rspec-expectations (~> 3.13.0)
|
273
|
+
rspec-mocks (~> 3.13.0)
|
274
|
+
rspec-core (3.13.3)
|
275
|
+
rspec-support (~> 3.13.0)
|
276
|
+
rspec-expectations (3.13.3)
|
277
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
278
|
+
rspec-support (~> 3.13.0)
|
279
|
+
rspec-mocks (3.13.2)
|
280
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
281
|
+
rspec-support (~> 3.13.0)
|
282
|
+
rspec-support (3.13.2)
|
283
|
+
rubocop (1.75.2)
|
284
|
+
json (~> 2.3)
|
285
|
+
language_server-protocol (~> 3.17.0.2)
|
286
|
+
lint_roller (~> 1.1.0)
|
287
|
+
parallel (~> 1.10)
|
288
|
+
parser (>= 3.3.0.2)
|
289
|
+
rainbow (>= 2.2.2, < 4.0)
|
290
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
291
|
+
rubocop-ast (>= 1.44.0, < 2.0)
|
292
|
+
ruby-progressbar (~> 1.7)
|
293
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
294
|
+
rubocop-ast (1.44.1)
|
295
|
+
parser (>= 3.3.7.2)
|
296
|
+
prism (~> 1.4)
|
297
|
+
rubocop-capybara (2.22.1)
|
298
|
+
lint_roller (~> 1.1)
|
299
|
+
rubocop (~> 1.72, >= 1.72.1)
|
300
|
+
rubocop-factory_bot (2.27.1)
|
301
|
+
lint_roller (~> 1.1)
|
302
|
+
rubocop (~> 1.72, >= 1.72.1)
|
303
|
+
rubocop-performance (1.25.0)
|
304
|
+
lint_roller (~> 1.1)
|
305
|
+
rubocop (>= 1.75.0, < 2.0)
|
306
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
307
|
+
rubocop-rails (2.31.0)
|
308
|
+
activesupport (>= 4.2.0)
|
309
|
+
lint_roller (~> 1.1)
|
310
|
+
rack (>= 1.1)
|
311
|
+
rubocop (>= 1.75.0, < 2.0)
|
312
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
313
|
+
rubocop-rake (0.7.1)
|
314
|
+
lint_roller (~> 1.1)
|
315
|
+
rubocop (>= 1.72.1)
|
316
|
+
rubocop-rspec (3.6.0)
|
317
|
+
lint_roller (~> 1.1)
|
318
|
+
rubocop (~> 1.72, >= 1.72.1)
|
319
|
+
rubocop-rspec_rails (2.31.0)
|
320
|
+
lint_roller (~> 1.1)
|
321
|
+
rubocop (~> 1.72, >= 1.72.1)
|
322
|
+
rubocop-rspec (~> 3.5)
|
323
|
+
ruby-prof (1.7.1)
|
324
|
+
ruby-progressbar (1.13.0)
|
325
|
+
ruby2_keywords (0.0.5)
|
326
|
+
securerandom (0.4.1)
|
327
|
+
sinatra (4.1.1)
|
328
|
+
logger (>= 1.6.0)
|
329
|
+
mustermann (~> 3.0)
|
330
|
+
rack (>= 3.0.0, < 4)
|
331
|
+
rack-protection (= 4.1.1)
|
332
|
+
rack-session (>= 2.0.0, < 3)
|
333
|
+
tilt (~> 2.0)
|
334
|
+
stringio (3.1.7)
|
335
|
+
strscan (3.1.3)
|
336
|
+
syntax_tree (6.2.0)
|
337
|
+
prettier_print (>= 1.2.0)
|
338
|
+
syntax_tree-haml (4.0.3)
|
339
|
+
haml (>= 5.2)
|
340
|
+
prettier_print (>= 1.2.1)
|
341
|
+
syntax_tree (>= 6.0.0)
|
342
|
+
syntax_tree-xml (0.1.0)
|
343
|
+
prettier_print
|
344
|
+
syntax_tree (>= 2.0.1)
|
345
|
+
temple (0.10.3)
|
346
|
+
terminal-table (4.0.0)
|
347
|
+
unicode-display_width (>= 1.1.1, < 4)
|
348
|
+
thor (1.3.2)
|
349
|
+
tilt (2.6.0)
|
350
|
+
timeout (0.4.3)
|
351
|
+
tzinfo (2.0.6)
|
352
|
+
concurrent-ruby (~> 1.0)
|
353
|
+
unicode-display_width (3.1.4)
|
354
|
+
unicode-emoji (~> 4.0, >= 4.0.4)
|
355
|
+
unicode-emoji (4.0.4)
|
356
|
+
uri (1.0.3)
|
357
|
+
useragent (0.16.11)
|
358
|
+
w_syntax_tree-erb (0.12.0)
|
359
|
+
prettier_print (~> 1.2, >= 1.2.0)
|
360
|
+
syntax_tree (~> 6.1, >= 6.1.1)
|
361
|
+
webmock (3.25.1)
|
362
|
+
addressable (>= 2.8.0)
|
363
|
+
crack (>= 0.3.2)
|
364
|
+
hashdiff (>= 0.4.0, < 2.0.0)
|
365
|
+
websocket-driver (0.7.7)
|
366
|
+
base64
|
367
|
+
websocket-extensions (>= 0.1.0)
|
368
|
+
websocket-extensions (0.1.5)
|
369
|
+
yaml (0.4.0)
|
370
|
+
zeitwerk (2.7.2)
|
371
|
+
|
372
|
+
PLATFORMS
|
373
|
+
arm64-darwin-23
|
374
|
+
arm64-darwin-24
|
375
|
+
x86_64-linux
|
376
|
+
|
377
|
+
DEPENDENCIES
|
378
|
+
bundler-audit
|
379
|
+
dorian
|
380
|
+
rake
|
381
|
+
rspec
|
382
|
+
rubocop-capybara
|
383
|
+
rubocop-factory_bot
|
384
|
+
rubocop-performance
|
385
|
+
rubocop-rails
|
386
|
+
rubocop-rake
|
387
|
+
rubocop-rspec
|
388
|
+
rubocop-rspec_rails
|
389
|
+
ruby-prof
|
390
|
+
search-rails!
|
391
|
+
sinatra
|
392
|
+
webmock
|
393
|
+
|
394
|
+
RUBY VERSION
|
395
|
+
ruby 3.4.2p28
|
396
|
+
|
397
|
+
BUNDLED WITH
|
398
|
+
2.6.7
|
data/LICENSE
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
Copyright 2024 Dorian Marié <dorian@dorianmarie.com>
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
4
|
+
this software and associated documentation files (the “Software”), to deal in
|
5
|
+
the Software without restriction, including without limitation the rights to
|
6
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
7
|
+
of the Software, and to permit persons to whom the Software is furnished to
|
8
|
+
do so, subject to the following conditions:
|
9
|
+
|
10
|
+
The above copyright notice and this permission notice shall be included in
|
11
|
+
all copies or substantial portions of the Software.
|
12
|
+
|
13
|
+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
16
|
+
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
18
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
19
|
+
THE SOFTWARE.
|