shimmer 0.0.39 → 0.0.40
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.devcontainer/devcontainer.json +41 -0
- data/.devcontainer/docker-compose.yml +21 -0
- data/.rubocop.yml +2 -1
- data/Gemfile +10 -15
- data/Gemfile.lock +228 -242
- data/config/rubocop_extensions/rspec.yml +1 -1
- data/lib/shimmer/form/radio_field.rb +1 -1
- data/lib/shimmer/utils/config.rb +5 -3
- data/lib/shimmer/utils/file_helper.rb +1 -1
- data/lib/shimmer/version.rb +1 -1
- metadata +4 -4
- data/gemfiles/Gemfile-rails-7-0 +0 -49
- data/gemfiles/Gemfile-rails-7-0.lock +0 -410
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5506a51bba0e3b7bd2e1890b492495dd81e6b022ac80ad89f3742554a8af1cfa
|
4
|
+
data.tar.gz: 27306ea6f76d995b790f0285fc3e4810b3ffc85819438f464073ce3bb037ca48
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 171daf856ef54a34063e037118e506cc4bd7e5577170e643d69e410fdea7b322e944d9122a60ab82a8992587f7f2a565d1f5a492349026547d8c570d08139bfe
|
7
|
+
data.tar.gz: 0461e40d0a5847ad8ff5aeb28fb43e8c504a573363a8c5e50595d4bfd28e44d1c29085bd0167858f0e3131f1ac1dac9afc63aaf18325014f3b84d1c4a964cfe6
|
@@ -0,0 +1,41 @@
|
|
1
|
+
{
|
2
|
+
"name": "shimmer",
|
3
|
+
"dockerComposeFile": "docker-compose.yml",
|
4
|
+
"service": "app",
|
5
|
+
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
|
6
|
+
"postCreateCommand": "bin/setup",
|
7
|
+
"remoteUser": "root",
|
8
|
+
"customizations": {
|
9
|
+
"vscode": {
|
10
|
+
"extensions": [
|
11
|
+
"dbaeumer.vscode-eslint",
|
12
|
+
"GitHub.copilot",
|
13
|
+
"esbenp.prettier-vscode",
|
14
|
+
"sianglim.slim",
|
15
|
+
"Shopify.ruby-lsp",
|
16
|
+
"EditorConfig.EditorConfig",
|
17
|
+
"eamodio.gitlens"
|
18
|
+
],
|
19
|
+
"settings": {
|
20
|
+
"rubyLsp.rubyVersionManager": {
|
21
|
+
"identifier": "rvm"
|
22
|
+
},
|
23
|
+
"[ruby]": {
|
24
|
+
"editor.formatOnSave": true,
|
25
|
+
"editor.defaultFormatter": "Shopify.ruby-lsp"
|
26
|
+
}
|
27
|
+
}
|
28
|
+
}
|
29
|
+
},
|
30
|
+
"features": {
|
31
|
+
"ghcr.io/devcontainers/features/desktop-lite:1": {}
|
32
|
+
},
|
33
|
+
"forwardPorts": [
|
34
|
+
6080
|
35
|
+
],
|
36
|
+
"portsAttributes": {
|
37
|
+
"6080": {
|
38
|
+
"label": "playwright"
|
39
|
+
}
|
40
|
+
}
|
41
|
+
}
|
@@ -0,0 +1,21 @@
|
|
1
|
+
services:
|
2
|
+
app:
|
3
|
+
image: ghcr.io/nerdgeschoss/nerdgeschoss/development-environment:3.3-22
|
4
|
+
user: root
|
5
|
+
volumes:
|
6
|
+
- ../..:/workspaces:cached
|
7
|
+
- ~/.netrc:/root/.netrc
|
8
|
+
- ~/.ssh:/root/.ssh
|
9
|
+
- ~/.config/gh:/root/.config/gh
|
10
|
+
- ~/.cache/devcontainer/playwright:/root/.cache/devcontainer/playwright
|
11
|
+
- ~/.aws:/root/.aws
|
12
|
+
- /var/run/docker.sock:/var/run/docker.sock
|
13
|
+
|
14
|
+
# Overrides default command so things don't shut down after the process ends.
|
15
|
+
command: sleep infinity
|
16
|
+
|
17
|
+
environment:
|
18
|
+
TZ: Europe/Berlin
|
19
|
+
EDITOR: code --wait
|
20
|
+
|
21
|
+
working_dir: /workspace
|
data/.rubocop.yml
CHANGED
data/Gemfile
CHANGED
@@ -7,7 +7,7 @@ gemspec
|
|
7
7
|
|
8
8
|
gem "rails"
|
9
9
|
gem "propshaft"
|
10
|
-
gem "sqlite3"
|
10
|
+
gem "sqlite3"
|
11
11
|
gem "puma"
|
12
12
|
gem "jsbundling-rails"
|
13
13
|
gem "turbo-rails"
|
@@ -22,25 +22,20 @@ gem "dotenv-rails"
|
|
22
22
|
gem "image_processing"
|
23
23
|
|
24
24
|
group :development, :test do
|
25
|
-
gem "debug",
|
25
|
+
gem "debug", require: false
|
26
26
|
gem "rake"
|
27
27
|
gem "rspec-rails"
|
28
28
|
gem "rspec-retry"
|
29
|
-
gem "pry"
|
30
|
-
gem "pry-rails"
|
31
|
-
gem "pry-byebug"
|
32
|
-
gem "pry-doc"
|
33
|
-
gem "guard"
|
34
|
-
gem "guard-rspec"
|
35
29
|
gem "capybara"
|
36
30
|
gem "rack_session_access"
|
37
|
-
gem "
|
38
|
-
gem "standard"
|
39
|
-
gem "rubocop"
|
40
|
-
gem "rubocop-rails"
|
41
|
-
gem "rubocop-performance"
|
42
|
-
gem "rubocop-rspec"
|
43
|
-
gem "rubocop-rake"
|
31
|
+
gem "capybara-playwright-driver"
|
32
|
+
gem "standard", require: false
|
33
|
+
gem "rubocop", require: false
|
34
|
+
gem "rubocop-rails", require: false
|
35
|
+
gem "rubocop-performance", require: false
|
36
|
+
gem "rubocop-rspec", require: false
|
37
|
+
gem "rubocop-rake", require: false
|
38
|
+
gem "ruby-lsp-rspec", require: false
|
44
39
|
end
|
45
40
|
|
46
41
|
group :development do
|
data/Gemfile.lock
CHANGED
@@ -6,156 +6,145 @@ PATH
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
8
8
|
specs:
|
9
|
-
actioncable (7.
|
10
|
-
actionpack (= 7.
|
11
|
-
activesupport (= 7.
|
9
|
+
actioncable (7.2.1.1)
|
10
|
+
actionpack (= 7.2.1.1)
|
11
|
+
activesupport (= 7.2.1.1)
|
12
12
|
nio4r (~> 2.0)
|
13
13
|
websocket-driver (>= 0.6.1)
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
activesupport (= 7.0.8.4)
|
37
|
-
rack (~> 2.0, >= 2.2.4)
|
14
|
+
zeitwerk (~> 2.6)
|
15
|
+
actionmailbox (7.2.1.1)
|
16
|
+
actionpack (= 7.2.1.1)
|
17
|
+
activejob (= 7.2.1.1)
|
18
|
+
activerecord (= 7.2.1.1)
|
19
|
+
activestorage (= 7.2.1.1)
|
20
|
+
activesupport (= 7.2.1.1)
|
21
|
+
mail (>= 2.8.0)
|
22
|
+
actionmailer (7.2.1.1)
|
23
|
+
actionpack (= 7.2.1.1)
|
24
|
+
actionview (= 7.2.1.1)
|
25
|
+
activejob (= 7.2.1.1)
|
26
|
+
activesupport (= 7.2.1.1)
|
27
|
+
mail (>= 2.8.0)
|
28
|
+
rails-dom-testing (~> 2.2)
|
29
|
+
actionpack (7.2.1.1)
|
30
|
+
actionview (= 7.2.1.1)
|
31
|
+
activesupport (= 7.2.1.1)
|
32
|
+
nokogiri (>= 1.8.5)
|
33
|
+
racc
|
34
|
+
rack (>= 2.2.4, < 3.2)
|
35
|
+
rack-session (>= 1.0.1)
|
38
36
|
rack-test (>= 0.6.3)
|
39
|
-
rails-dom-testing (~> 2.
|
40
|
-
rails-html-sanitizer (~> 1.
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
37
|
+
rails-dom-testing (~> 2.2)
|
38
|
+
rails-html-sanitizer (~> 1.6)
|
39
|
+
useragent (~> 0.16)
|
40
|
+
actiontext (7.2.1.1)
|
41
|
+
actionpack (= 7.2.1.1)
|
42
|
+
activerecord (= 7.2.1.1)
|
43
|
+
activestorage (= 7.2.1.1)
|
44
|
+
activesupport (= 7.2.1.1)
|
46
45
|
globalid (>= 0.6.0)
|
47
46
|
nokogiri (>= 1.8.5)
|
48
|
-
actionview (7.
|
49
|
-
activesupport (= 7.
|
47
|
+
actionview (7.2.1.1)
|
48
|
+
activesupport (= 7.2.1.1)
|
50
49
|
builder (~> 3.1)
|
51
|
-
erubi (~> 1.
|
52
|
-
rails-dom-testing (~> 2.
|
53
|
-
rails-html-sanitizer (~> 1.
|
54
|
-
activejob (7.
|
55
|
-
activesupport (= 7.
|
50
|
+
erubi (~> 1.11)
|
51
|
+
rails-dom-testing (~> 2.2)
|
52
|
+
rails-html-sanitizer (~> 1.6)
|
53
|
+
activejob (7.2.1.1)
|
54
|
+
activesupport (= 7.2.1.1)
|
56
55
|
globalid (>= 0.3.6)
|
57
|
-
activemodel (7.
|
58
|
-
activesupport (= 7.
|
59
|
-
activerecord (7.
|
60
|
-
activemodel (= 7.
|
61
|
-
activesupport (= 7.
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
56
|
+
activemodel (7.2.1.1)
|
57
|
+
activesupport (= 7.2.1.1)
|
58
|
+
activerecord (7.2.1.1)
|
59
|
+
activemodel (= 7.2.1.1)
|
60
|
+
activesupport (= 7.2.1.1)
|
61
|
+
timeout (>= 0.4.0)
|
62
|
+
activestorage (7.2.1.1)
|
63
|
+
actionpack (= 7.2.1.1)
|
64
|
+
activejob (= 7.2.1.1)
|
65
|
+
activerecord (= 7.2.1.1)
|
66
|
+
activesupport (= 7.2.1.1)
|
67
67
|
marcel (~> 1.0)
|
68
|
-
|
69
|
-
|
70
|
-
|
68
|
+
activesupport (7.2.1.1)
|
69
|
+
base64
|
70
|
+
bigdecimal
|
71
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
72
|
+
connection_pool (>= 2.2.5)
|
73
|
+
drb
|
71
74
|
i18n (>= 1.6, < 2)
|
75
|
+
logger (>= 1.4.2)
|
72
76
|
minitest (>= 5.1)
|
73
|
-
|
74
|
-
|
75
|
-
|
77
|
+
securerandom (>= 0.3)
|
78
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
79
|
+
addressable (2.8.7)
|
80
|
+
public_suffix (>= 2.0.2, < 7.0)
|
76
81
|
annotate (3.2.0)
|
77
82
|
activerecord (>= 3.2, < 8.0)
|
78
83
|
rake (>= 10.4, < 14.0)
|
79
84
|
ast (2.4.2)
|
80
85
|
awesome_print (1.9.2)
|
86
|
+
base64 (0.2.0)
|
87
|
+
bigdecimal (3.1.8)
|
81
88
|
bindex (0.8.1)
|
82
|
-
bootsnap (1.
|
89
|
+
bootsnap (1.18.4)
|
83
90
|
msgpack (~> 1.2)
|
84
91
|
builder (3.3.0)
|
85
|
-
|
86
|
-
capybara (3.38.0)
|
92
|
+
capybara (3.40.0)
|
87
93
|
addressable
|
88
94
|
matrix
|
89
95
|
mini_mime (>= 0.1.3)
|
90
|
-
nokogiri (~> 1.
|
96
|
+
nokogiri (~> 1.11)
|
91
97
|
rack (>= 1.6.0)
|
92
98
|
rack-test (>= 0.6.3)
|
93
99
|
regexp_parser (>= 1.5, < 3.0)
|
94
100
|
xpath (~> 3.2)
|
95
|
-
|
96
|
-
|
101
|
+
capybara-playwright-driver (0.5.2)
|
102
|
+
addressable
|
103
|
+
capybara
|
104
|
+
playwright-ruby-client (>= 1.16.0)
|
105
|
+
concurrent-ruby (1.3.4)
|
106
|
+
connection_pool (2.4.1)
|
97
107
|
crass (1.0.6)
|
98
|
-
cssbundling-rails (1.1
|
108
|
+
cssbundling-rails (1.4.1)
|
99
109
|
railties (>= 6.0.0)
|
100
|
-
cuprite (0.14.3)
|
101
|
-
capybara (~> 3.0)
|
102
|
-
ferrum (~> 0.13.0)
|
103
110
|
date (3.3.4)
|
104
|
-
debug (1.
|
105
|
-
irb (
|
106
|
-
reline (>= 0.3.
|
107
|
-
diff-lcs (1.5.
|
108
|
-
dotenv (
|
109
|
-
dotenv-rails (
|
110
|
-
dotenv (=
|
111
|
-
railties (>=
|
111
|
+
debug (1.9.2)
|
112
|
+
irb (~> 1.10)
|
113
|
+
reline (>= 0.3.8)
|
114
|
+
diff-lcs (1.5.1)
|
115
|
+
dotenv (3.1.4)
|
116
|
+
dotenv-rails (3.1.4)
|
117
|
+
dotenv (= 3.1.4)
|
118
|
+
railties (>= 6.1)
|
119
|
+
drb (2.2.1)
|
112
120
|
erubi (1.13.0)
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
websocket-driver (>= 0.6, < 0.8)
|
118
|
-
ffi (1.15.5)
|
119
|
-
formatador (1.1.0)
|
121
|
+
ffi (1.17.0-aarch64-linux-gnu)
|
122
|
+
ffi (1.17.0-arm64-darwin)
|
123
|
+
ffi (1.17.0-x86_64-darwin)
|
124
|
+
ffi (1.17.0-x86_64-linux-gnu)
|
120
125
|
globalid (1.2.1)
|
121
126
|
activesupport (>= 6.1)
|
122
|
-
|
123
|
-
formatador (>= 0.2.4)
|
124
|
-
listen (>= 2.7, < 4.0)
|
125
|
-
lumberjack (>= 1.0.12, < 2.0)
|
126
|
-
nenv (~> 0.1)
|
127
|
-
notiffany (~> 0.0)
|
128
|
-
pry (>= 0.13.0)
|
129
|
-
shellany (~> 0.0)
|
130
|
-
thor (>= 0.18.1)
|
131
|
-
guard-compat (1.2.1)
|
132
|
-
guard-rspec (4.7.3)
|
133
|
-
guard (~> 2.1)
|
134
|
-
guard-compat (~> 1.1)
|
135
|
-
rspec (>= 2.99.0, < 4.0)
|
136
|
-
i18n (1.14.5)
|
127
|
+
i18n (1.14.6)
|
137
128
|
concurrent-ruby (~> 1.0)
|
138
|
-
image_processing (1.
|
129
|
+
image_processing (1.13.0)
|
139
130
|
mini_magick (>= 4.9.5, < 5)
|
140
131
|
ruby-vips (>= 2.0.17, < 3)
|
141
|
-
io-console (0.
|
142
|
-
irb (1.
|
143
|
-
|
144
|
-
|
132
|
+
io-console (0.7.2)
|
133
|
+
irb (1.14.1)
|
134
|
+
rdoc (>= 4.0.0)
|
135
|
+
reline (>= 0.4.2)
|
136
|
+
jbuilder (2.13.0)
|
145
137
|
actionview (>= 5.0.0)
|
146
138
|
activesupport (>= 5.0.0)
|
147
|
-
jsbundling-rails (1.
|
139
|
+
jsbundling-rails (1.3.1)
|
148
140
|
railties (>= 6.0.0)
|
149
|
-
json (2.
|
141
|
+
json (2.7.2)
|
150
142
|
language_server-protocol (3.17.0.3)
|
151
|
-
lint_roller (1.
|
152
|
-
|
153
|
-
rb-fsevent (~> 0.10, >= 0.10.3)
|
154
|
-
rb-inotify (~> 0.9, >= 0.9.10)
|
143
|
+
lint_roller (1.1.0)
|
144
|
+
logger (1.6.1)
|
155
145
|
loofah (2.22.0)
|
156
146
|
crass (~> 1.0.2)
|
157
147
|
nokogiri (>= 1.12.0)
|
158
|
-
lumberjack (1.2.8)
|
159
148
|
mail (2.8.1)
|
160
149
|
mini_mime (>= 0.1.1)
|
161
150
|
net-imap
|
@@ -163,14 +152,15 @@ GEM
|
|
163
152
|
net-smtp
|
164
153
|
marcel (1.0.4)
|
165
154
|
matrix (0.4.2)
|
166
|
-
|
167
|
-
|
155
|
+
mime-types (3.6.0)
|
156
|
+
logger
|
157
|
+
mime-types-data (~> 3.2015)
|
158
|
+
mime-types-data (3.2024.1001)
|
159
|
+
mini_magick (4.13.2)
|
168
160
|
mini_mime (1.1.5)
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
nenv (0.3.0)
|
173
|
-
net-imap (0.4.14)
|
161
|
+
minitest (5.25.1)
|
162
|
+
msgpack (1.7.3)
|
163
|
+
net-imap (0.5.0)
|
174
164
|
date
|
175
165
|
net-protocol
|
176
166
|
net-pop (0.1.2)
|
@@ -180,61 +170,58 @@ GEM
|
|
180
170
|
net-smtp (0.5.0)
|
181
171
|
net-protocol
|
182
172
|
nio4r (2.7.3)
|
183
|
-
nokogiri (1.16.
|
184
|
-
mini_portile2 (~> 2.8.2)
|
173
|
+
nokogiri (1.16.7-aarch64-linux)
|
185
174
|
racc (~> 1.4)
|
186
|
-
nokogiri (1.16.
|
175
|
+
nokogiri (1.16.7-arm64-darwin)
|
187
176
|
racc (~> 1.4)
|
188
|
-
nokogiri (1.16.
|
177
|
+
nokogiri (1.16.7-x86_64-darwin)
|
189
178
|
racc (~> 1.4)
|
190
|
-
nokogiri (1.16.
|
179
|
+
nokogiri (1.16.7-x86_64-linux)
|
191
180
|
racc (~> 1.4)
|
192
|
-
|
193
|
-
|
194
|
-
shellany (~> 0.0)
|
195
|
-
parallel (1.23.0)
|
196
|
-
parser (3.2.2.1)
|
181
|
+
parallel (1.26.3)
|
182
|
+
parser (3.3.5.0)
|
197
183
|
ast (~> 2.4.1)
|
198
|
-
|
184
|
+
racc
|
185
|
+
playwright-ruby-client (1.47.0)
|
186
|
+
concurrent-ruby (>= 1.1.6)
|
187
|
+
mime-types (>= 3.0)
|
188
|
+
prism (1.2.0)
|
189
|
+
propshaft (1.1.0)
|
199
190
|
actionpack (>= 7.0.0)
|
200
191
|
activesupport (>= 7.0.0)
|
201
192
|
rack
|
202
193
|
railties (>= 7.0.0)
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
byebug (~> 11.0)
|
208
|
-
pry (>= 0.13, < 0.15)
|
209
|
-
pry-doc (1.4.0)
|
210
|
-
pry (~> 0.11)
|
211
|
-
yard (~> 0.9.11)
|
212
|
-
pry-rails (0.3.9)
|
213
|
-
pry (>= 0.10.4)
|
214
|
-
public_suffix (5.0.1)
|
215
|
-
puma (6.0.2)
|
194
|
+
psych (5.1.2)
|
195
|
+
stringio
|
196
|
+
public_suffix (6.0.1)
|
197
|
+
puma (6.4.3)
|
216
198
|
nio4r (~> 2.0)
|
217
|
-
racc (1.8.
|
218
|
-
rack (
|
199
|
+
racc (1.8.1)
|
200
|
+
rack (3.1.8)
|
201
|
+
rack-session (2.0.0)
|
202
|
+
rack (>= 3.0.0)
|
219
203
|
rack-test (2.1.0)
|
220
204
|
rack (>= 1.3)
|
221
205
|
rack_session_access (0.2.0)
|
222
206
|
builder (>= 2.0.0)
|
223
207
|
rack (>= 1.0.0)
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
208
|
+
rackup (2.1.0)
|
209
|
+
rack (>= 3)
|
210
|
+
webrick (~> 1.8)
|
211
|
+
rails (7.2.1.1)
|
212
|
+
actioncable (= 7.2.1.1)
|
213
|
+
actionmailbox (= 7.2.1.1)
|
214
|
+
actionmailer (= 7.2.1.1)
|
215
|
+
actionpack (= 7.2.1.1)
|
216
|
+
actiontext (= 7.2.1.1)
|
217
|
+
actionview (= 7.2.1.1)
|
218
|
+
activejob (= 7.2.1.1)
|
219
|
+
activemodel (= 7.2.1.1)
|
220
|
+
activerecord (= 7.2.1.1)
|
221
|
+
activestorage (= 7.2.1.1)
|
222
|
+
activesupport (= 7.2.1.1)
|
236
223
|
bundler (>= 1.15.0)
|
237
|
-
railties (= 7.
|
224
|
+
railties (= 7.2.1.1)
|
238
225
|
rails-dom-testing (2.2.0)
|
239
226
|
activesupport (>= 5.0.0)
|
240
227
|
minitest
|
@@ -242,128 +229,132 @@ GEM
|
|
242
229
|
rails-html-sanitizer (1.6.0)
|
243
230
|
loofah (~> 2.21)
|
244
231
|
nokogiri (~> 1.14)
|
245
|
-
railties (7.
|
246
|
-
actionpack (= 7.
|
247
|
-
activesupport (= 7.
|
248
|
-
|
232
|
+
railties (7.2.1.1)
|
233
|
+
actionpack (= 7.2.1.1)
|
234
|
+
activesupport (= 7.2.1.1)
|
235
|
+
irb (~> 1.13)
|
236
|
+
rackup (>= 1.0.0)
|
249
237
|
rake (>= 12.2)
|
250
|
-
thor (~> 1.0)
|
251
|
-
zeitwerk (~> 2.
|
238
|
+
thor (~> 1.0, >= 1.2.2)
|
239
|
+
zeitwerk (~> 2.6)
|
252
240
|
rainbow (3.1.1)
|
253
241
|
rake (13.2.1)
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
242
|
+
rbs (3.6.1)
|
243
|
+
logger
|
244
|
+
rdoc (6.7.0)
|
245
|
+
psych (>= 4.0.0)
|
246
|
+
regexp_parser (2.9.2)
|
247
|
+
reline (0.5.10)
|
259
248
|
io-console (~> 0.5)
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
rspec-expectations (~> 3.12.0)
|
264
|
-
rspec-mocks (~> 3.12.0)
|
265
|
-
rspec-core (3.12.1)
|
266
|
-
rspec-support (~> 3.12.0)
|
267
|
-
rspec-expectations (3.12.2)
|
249
|
+
rspec-core (3.13.2)
|
250
|
+
rspec-support (~> 3.13.0)
|
251
|
+
rspec-expectations (3.13.3)
|
268
252
|
diff-lcs (>= 1.2.0, < 2.0)
|
269
|
-
rspec-support (~> 3.
|
270
|
-
rspec-mocks (3.
|
253
|
+
rspec-support (~> 3.13.0)
|
254
|
+
rspec-mocks (3.13.2)
|
271
255
|
diff-lcs (>= 1.2.0, < 2.0)
|
272
|
-
rspec-support (~> 3.
|
273
|
-
rspec-rails (
|
274
|
-
actionpack (>=
|
275
|
-
activesupport (>=
|
276
|
-
railties (>=
|
277
|
-
rspec-core (~> 3.
|
278
|
-
rspec-expectations (~> 3.
|
279
|
-
rspec-mocks (~> 3.
|
280
|
-
rspec-support (~> 3.
|
256
|
+
rspec-support (~> 3.13.0)
|
257
|
+
rspec-rails (7.0.1)
|
258
|
+
actionpack (>= 7.0)
|
259
|
+
activesupport (>= 7.0)
|
260
|
+
railties (>= 7.0)
|
261
|
+
rspec-core (~> 3.13)
|
262
|
+
rspec-expectations (~> 3.13)
|
263
|
+
rspec-mocks (~> 3.13)
|
264
|
+
rspec-support (~> 3.13)
|
281
265
|
rspec-retry (0.6.2)
|
282
266
|
rspec-core (> 3.3)
|
283
|
-
rspec-support (3.
|
284
|
-
rubocop (1.
|
267
|
+
rspec-support (3.13.1)
|
268
|
+
rubocop (1.67.0)
|
285
269
|
json (~> 2.3)
|
270
|
+
language_server-protocol (>= 3.17.0)
|
286
271
|
parallel (~> 1.10)
|
287
|
-
parser (>= 3.
|
272
|
+
parser (>= 3.3.0.2)
|
288
273
|
rainbow (>= 2.2.2, < 4.0)
|
289
|
-
regexp_parser (>=
|
290
|
-
|
291
|
-
rubocop-ast (>= 1.28.0, < 2.0)
|
274
|
+
regexp_parser (>= 2.4, < 3.0)
|
275
|
+
rubocop-ast (>= 1.32.2, < 2.0)
|
292
276
|
ruby-progressbar (~> 1.7)
|
293
277
|
unicode-display_width (>= 2.4.0, < 3.0)
|
294
|
-
rubocop-ast (1.
|
295
|
-
parser (>= 3.
|
296
|
-
rubocop-
|
297
|
-
rubocop (
|
298
|
-
|
299
|
-
|
300
|
-
rubocop-ast (>= 0.4.0)
|
301
|
-
rubocop-rails (2.17.4)
|
278
|
+
rubocop-ast (1.32.3)
|
279
|
+
parser (>= 3.3.1.0)
|
280
|
+
rubocop-performance (1.22.1)
|
281
|
+
rubocop (>= 1.48.1, < 2.0)
|
282
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
283
|
+
rubocop-rails (2.26.2)
|
302
284
|
activesupport (>= 4.2.0)
|
303
285
|
rack (>= 1.1)
|
304
|
-
rubocop (>= 1.
|
286
|
+
rubocop (>= 1.52.0, < 2.0)
|
287
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
305
288
|
rubocop-rake (0.6.0)
|
306
289
|
rubocop (~> 1.0)
|
307
|
-
rubocop-rspec (
|
308
|
-
rubocop (~> 1.
|
309
|
-
|
290
|
+
rubocop-rspec (3.1.0)
|
291
|
+
rubocop (~> 1.61)
|
292
|
+
ruby-lsp (0.20.1)
|
293
|
+
language_server-protocol (~> 3.17.0)
|
294
|
+
prism (>= 1.2, < 2.0)
|
295
|
+
rbs (>= 3, < 4)
|
296
|
+
sorbet-runtime (>= 0.5.10782)
|
297
|
+
ruby-lsp-rspec (0.1.17)
|
298
|
+
ruby-lsp (~> 0.20.1)
|
310
299
|
ruby-progressbar (1.13.0)
|
311
|
-
ruby-vips (2.
|
300
|
+
ruby-vips (2.2.2)
|
312
301
|
ffi (~> 1.12)
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
302
|
+
logger
|
303
|
+
securerandom (0.3.1)
|
304
|
+
slim (5.2.1)
|
305
|
+
temple (~> 0.10.0)
|
306
|
+
tilt (>= 2.1.0)
|
307
|
+
slim-rails (3.6.3)
|
318
308
|
actionpack (>= 3.1)
|
319
309
|
railties (>= 3.1)
|
320
|
-
slim (>= 3.0, < 5.0)
|
321
|
-
|
322
|
-
|
323
|
-
sqlite3 (1.
|
324
|
-
sqlite3 (1.
|
325
|
-
sqlite3 (1.
|
326
|
-
standard (1.
|
310
|
+
slim (>= 3.0, < 6.0, != 5.0.0)
|
311
|
+
sorbet-runtime (0.5.11611)
|
312
|
+
sqlite3 (2.1.1-aarch64-linux-gnu)
|
313
|
+
sqlite3 (2.1.1-arm64-darwin)
|
314
|
+
sqlite3 (2.1.1-x86_64-darwin)
|
315
|
+
sqlite3 (2.1.1-x86_64-linux-gnu)
|
316
|
+
standard (1.35.0.1)
|
327
317
|
language_server-protocol (~> 3.17.0.2)
|
328
318
|
lint_roller (~> 1.0)
|
329
|
-
rubocop (~> 1.
|
319
|
+
rubocop (~> 1.62)
|
330
320
|
standard-custom (~> 1.0.0)
|
331
|
-
standard-performance (~> 1.
|
332
|
-
standard-custom (1.0.
|
333
|
-
lint_roller (~> 1.0)
|
334
|
-
standard-performance (1.0.1)
|
321
|
+
standard-performance (~> 1.3)
|
322
|
+
standard-custom (1.0.2)
|
335
323
|
lint_roller (~> 1.0)
|
336
|
-
rubocop
|
337
|
-
|
324
|
+
rubocop (~> 1.50)
|
325
|
+
standard-performance (1.5.0)
|
326
|
+
lint_roller (~> 1.1)
|
327
|
+
rubocop-performance (~> 1.22.0)
|
328
|
+
stimulus-rails (1.3.4)
|
338
329
|
railties (>= 6.0.0)
|
339
|
-
|
340
|
-
|
341
|
-
|
330
|
+
stringio (3.1.1)
|
331
|
+
temple (0.10.3)
|
332
|
+
thor (1.3.2)
|
333
|
+
tilt (2.4.0)
|
342
334
|
timeout (0.4.1)
|
343
|
-
turbo-rails (
|
335
|
+
turbo-rails (2.0.11)
|
344
336
|
actionpack (>= 6.0.0)
|
345
|
-
activejob (>= 6.0.0)
|
346
337
|
railties (>= 6.0.0)
|
347
338
|
tzinfo (2.0.6)
|
348
339
|
concurrent-ruby (~> 1.0)
|
349
|
-
unicode-display_width (2.
|
350
|
-
|
340
|
+
unicode-display_width (2.6.0)
|
341
|
+
useragent (0.16.10)
|
342
|
+
web-console (4.2.1)
|
351
343
|
actionview (>= 6.0.0)
|
352
344
|
activemodel (>= 6.0.0)
|
353
345
|
bindex (>= 0.4.0)
|
354
346
|
railties (>= 6.0.0)
|
355
|
-
webrick (1.8.
|
347
|
+
webrick (1.8.2)
|
356
348
|
websocket-driver (0.7.6)
|
357
349
|
websocket-extensions (>= 0.1.0)
|
358
350
|
websocket-extensions (0.1.5)
|
359
351
|
xpath (3.2.0)
|
360
352
|
nokogiri (~> 1.8)
|
361
|
-
|
362
|
-
zeitwerk (2.6.16)
|
353
|
+
zeitwerk (2.7.1)
|
363
354
|
|
364
355
|
PLATFORMS
|
356
|
+
aarch64-linux
|
365
357
|
arm64-darwin-22
|
366
|
-
ruby
|
367
358
|
x86_64-darwin-22
|
368
359
|
x86_64-linux
|
369
360
|
|
@@ -372,21 +363,15 @@ DEPENDENCIES
|
|
372
363
|
awesome_print
|
373
364
|
bootsnap
|
374
365
|
capybara
|
366
|
+
capybara-playwright-driver
|
375
367
|
cssbundling-rails
|
376
|
-
cuprite
|
377
368
|
debug
|
378
369
|
dotenv
|
379
370
|
dotenv-rails
|
380
|
-
guard
|
381
|
-
guard-rspec
|
382
371
|
image_processing
|
383
372
|
jbuilder
|
384
373
|
jsbundling-rails
|
385
374
|
propshaft
|
386
|
-
pry
|
387
|
-
pry-byebug
|
388
|
-
pry-doc
|
389
|
-
pry-rails
|
390
375
|
puma
|
391
376
|
rack_session_access
|
392
377
|
rails
|
@@ -398,9 +383,10 @@ DEPENDENCIES
|
|
398
383
|
rubocop-rails
|
399
384
|
rubocop-rake
|
400
385
|
rubocop-rspec
|
386
|
+
ruby-lsp-rspec
|
401
387
|
shimmer!
|
402
388
|
slim-rails
|
403
|
-
sqlite3
|
389
|
+
sqlite3
|
404
390
|
standard
|
405
391
|
stimulus-rails
|
406
392
|
turbo-rails
|
data/lib/shimmer/utils/config.rb
CHANGED
@@ -11,13 +11,15 @@ module Shimmer
|
|
11
11
|
default_value = options.delete(:default) if default_provided
|
12
12
|
raise ArgumentError, "unknown option#{"s" if options.length > 1}: #{options.keys.join(", ")}." if options.any?
|
13
13
|
|
14
|
+
credentials = Rails.application.credentials
|
14
15
|
method_name = method_name.to_s
|
15
16
|
type = :string
|
16
|
-
key = method_name.delete_suffix("!").delete_suffix("?")
|
17
|
+
key = method_name.delete_suffix("!").delete_suffix("?").to_sym
|
17
18
|
required = method_name.end_with?("!")
|
18
19
|
type = :bool if method_name.end_with?("?")
|
19
|
-
value = ENV[key.upcase].presence
|
20
|
-
value ||= Rails.
|
20
|
+
value = ENV[key.to_s.upcase].presence
|
21
|
+
value ||= credentials.dig(Rails.env.to_sym, key)
|
22
|
+
value ||= credentials[key]
|
21
23
|
value = default_value if value.nil?
|
22
24
|
raise MissingConfigError, "#{key.upcase} environment value is missing" if required && value.blank?
|
23
25
|
|
@@ -23,7 +23,7 @@ module Shimmer
|
|
23
23
|
options[:loading] ||= :lazy
|
24
24
|
options[:srcset] = "#{source} 1x, #{image_file_path(attachment, width: width.to_i * 2, height: height ? height.to_i * 2 : nil)} 2x" if options[:width].present?
|
25
25
|
end
|
26
|
-
super
|
26
|
+
super(source, options)
|
27
27
|
end
|
28
28
|
|
29
29
|
def image_file_path(source, width: nil, height: nil)
|
data/lib/shimmer/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: shimmer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.40
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jens Ravens
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-10-
|
11
|
+
date: 2024-10-23 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email:
|
@@ -18,6 +18,8 @@ extensions: []
|
|
18
18
|
extra_rdoc_files: []
|
19
19
|
files:
|
20
20
|
- ".babelrc"
|
21
|
+
- ".devcontainer/devcontainer.json"
|
22
|
+
- ".devcontainer/docker-compose.yml"
|
21
23
|
- ".editorconfig"
|
22
24
|
- ".eslintrc.js"
|
23
25
|
- ".prettierrc"
|
@@ -47,8 +49,6 @@ files:
|
|
47
49
|
- config/rubocop_extensions/graphql.yml
|
48
50
|
- config/rubocop_extensions/rails.yml
|
49
51
|
- config/rubocop_extensions/rspec.yml
|
50
|
-
- gemfiles/Gemfile-rails-7-0
|
51
|
-
- gemfiles/Gemfile-rails-7-0.lock
|
52
52
|
- lib/shimmer.rb
|
53
53
|
- lib/shimmer/auth.rb
|
54
54
|
- lib/shimmer/auth/apple_provider.rb
|
data/gemfiles/Gemfile-rails-7-0
DELETED
@@ -1,49 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
source "https://rubygems.org"
|
4
|
-
|
5
|
-
# Specify your gem's dependencies in shimmer.gemspec
|
6
|
-
gemspec path: ".."
|
7
|
-
|
8
|
-
gem "rails", "~> 7.0.0"
|
9
|
-
gem "propshaft"
|
10
|
-
gem "sqlite3", "~> 1.6"
|
11
|
-
gem "puma"
|
12
|
-
gem "jsbundling-rails"
|
13
|
-
gem "turbo-rails"
|
14
|
-
gem "stimulus-rails"
|
15
|
-
gem "cssbundling-rails"
|
16
|
-
gem "jbuilder"
|
17
|
-
gem "bootsnap", require: false
|
18
|
-
gem "dotenv"
|
19
|
-
gem "slim-rails"
|
20
|
-
gem "awesome_print"
|
21
|
-
gem "dotenv-rails"
|
22
|
-
gem "image_processing"
|
23
|
-
|
24
|
-
group :development, :test do
|
25
|
-
gem "debug", platforms: %i[mri mingw x64_mingw]
|
26
|
-
gem "rake"
|
27
|
-
gem "rspec-rails"
|
28
|
-
gem "rspec-retry"
|
29
|
-
gem "pry"
|
30
|
-
gem "pry-rails"
|
31
|
-
gem "pry-byebug"
|
32
|
-
gem "pry-doc"
|
33
|
-
gem "guard"
|
34
|
-
gem "guard-rspec"
|
35
|
-
gem "capybara"
|
36
|
-
gem "rack_session_access"
|
37
|
-
gem "cuprite"
|
38
|
-
gem "standard"
|
39
|
-
gem "rubocop"
|
40
|
-
gem "rubocop-rails"
|
41
|
-
gem "rubocop-performance"
|
42
|
-
gem "rubocop-rspec"
|
43
|
-
gem "rubocop-rake"
|
44
|
-
end
|
45
|
-
|
46
|
-
group :development do
|
47
|
-
gem "web-console"
|
48
|
-
gem "annotate"
|
49
|
-
end
|
@@ -1,410 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
shimmer (0.0.1)
|
5
|
-
|
6
|
-
GEM
|
7
|
-
remote: https://rubygems.org/
|
8
|
-
specs:
|
9
|
-
actioncable (7.0.8.4)
|
10
|
-
actionpack (= 7.0.8.4)
|
11
|
-
activesupport (= 7.0.8.4)
|
12
|
-
nio4r (~> 2.0)
|
13
|
-
websocket-driver (>= 0.6.1)
|
14
|
-
actionmailbox (7.0.8.4)
|
15
|
-
actionpack (= 7.0.8.4)
|
16
|
-
activejob (= 7.0.8.4)
|
17
|
-
activerecord (= 7.0.8.4)
|
18
|
-
activestorage (= 7.0.8.4)
|
19
|
-
activesupport (= 7.0.8.4)
|
20
|
-
mail (>= 2.7.1)
|
21
|
-
net-imap
|
22
|
-
net-pop
|
23
|
-
net-smtp
|
24
|
-
actionmailer (7.0.8.4)
|
25
|
-
actionpack (= 7.0.8.4)
|
26
|
-
actionview (= 7.0.8.4)
|
27
|
-
activejob (= 7.0.8.4)
|
28
|
-
activesupport (= 7.0.8.4)
|
29
|
-
mail (~> 2.5, >= 2.5.4)
|
30
|
-
net-imap
|
31
|
-
net-pop
|
32
|
-
net-smtp
|
33
|
-
rails-dom-testing (~> 2.0)
|
34
|
-
actionpack (7.0.8.4)
|
35
|
-
actionview (= 7.0.8.4)
|
36
|
-
activesupport (= 7.0.8.4)
|
37
|
-
rack (~> 2.0, >= 2.2.4)
|
38
|
-
rack-test (>= 0.6.3)
|
39
|
-
rails-dom-testing (~> 2.0)
|
40
|
-
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
41
|
-
actiontext (7.0.8.4)
|
42
|
-
actionpack (= 7.0.8.4)
|
43
|
-
activerecord (= 7.0.8.4)
|
44
|
-
activestorage (= 7.0.8.4)
|
45
|
-
activesupport (= 7.0.8.4)
|
46
|
-
globalid (>= 0.6.0)
|
47
|
-
nokogiri (>= 1.8.5)
|
48
|
-
actionview (7.0.8.4)
|
49
|
-
activesupport (= 7.0.8.4)
|
50
|
-
builder (~> 3.1)
|
51
|
-
erubi (~> 1.4)
|
52
|
-
rails-dom-testing (~> 2.0)
|
53
|
-
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
54
|
-
activejob (7.0.8.4)
|
55
|
-
activesupport (= 7.0.8.4)
|
56
|
-
globalid (>= 0.3.6)
|
57
|
-
activemodel (7.0.8.4)
|
58
|
-
activesupport (= 7.0.8.4)
|
59
|
-
activerecord (7.0.8.4)
|
60
|
-
activemodel (= 7.0.8.4)
|
61
|
-
activesupport (= 7.0.8.4)
|
62
|
-
activestorage (7.0.8.4)
|
63
|
-
actionpack (= 7.0.8.4)
|
64
|
-
activejob (= 7.0.8.4)
|
65
|
-
activerecord (= 7.0.8.4)
|
66
|
-
activesupport (= 7.0.8.4)
|
67
|
-
marcel (~> 1.0)
|
68
|
-
mini_mime (>= 1.1.0)
|
69
|
-
activesupport (7.0.8.4)
|
70
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
71
|
-
i18n (>= 1.6, < 2)
|
72
|
-
minitest (>= 5.1)
|
73
|
-
tzinfo (~> 2.0)
|
74
|
-
addressable (2.8.1)
|
75
|
-
public_suffix (>= 2.0.2, < 6.0)
|
76
|
-
annotate (3.2.0)
|
77
|
-
activerecord (>= 3.2, < 8.0)
|
78
|
-
rake (>= 10.4, < 14.0)
|
79
|
-
ast (2.4.2)
|
80
|
-
awesome_print (1.9.2)
|
81
|
-
bindex (0.8.1)
|
82
|
-
bootsnap (1.16.0)
|
83
|
-
msgpack (~> 1.2)
|
84
|
-
builder (3.3.0)
|
85
|
-
byebug (11.1.3)
|
86
|
-
capybara (3.38.0)
|
87
|
-
addressable
|
88
|
-
matrix
|
89
|
-
mini_mime (>= 0.1.3)
|
90
|
-
nokogiri (~> 1.8)
|
91
|
-
rack (>= 1.6.0)
|
92
|
-
rack-test (>= 0.6.3)
|
93
|
-
regexp_parser (>= 1.5, < 3.0)
|
94
|
-
xpath (~> 3.2)
|
95
|
-
coderay (1.1.3)
|
96
|
-
concurrent-ruby (1.3.3)
|
97
|
-
crass (1.0.6)
|
98
|
-
cssbundling-rails (1.1.2)
|
99
|
-
railties (>= 6.0.0)
|
100
|
-
cuprite (0.14.3)
|
101
|
-
capybara (~> 3.0)
|
102
|
-
ferrum (~> 0.13.0)
|
103
|
-
date (3.3.4)
|
104
|
-
debug (1.7.1)
|
105
|
-
irb (>= 1.5.0)
|
106
|
-
reline (>= 0.3.1)
|
107
|
-
diff-lcs (1.5.0)
|
108
|
-
dotenv (2.8.1)
|
109
|
-
dotenv-rails (2.8.1)
|
110
|
-
dotenv (= 2.8.1)
|
111
|
-
railties (>= 3.2)
|
112
|
-
erubi (1.13.0)
|
113
|
-
ferrum (0.13)
|
114
|
-
addressable (~> 2.5)
|
115
|
-
concurrent-ruby (~> 1.1)
|
116
|
-
webrick (~> 1.7)
|
117
|
-
websocket-driver (>= 0.6, < 0.8)
|
118
|
-
ffi (1.15.5)
|
119
|
-
formatador (1.1.0)
|
120
|
-
globalid (1.2.1)
|
121
|
-
activesupport (>= 6.1)
|
122
|
-
guard (2.18.0)
|
123
|
-
formatador (>= 0.2.4)
|
124
|
-
listen (>= 2.7, < 4.0)
|
125
|
-
lumberjack (>= 1.0.12, < 2.0)
|
126
|
-
nenv (~> 0.1)
|
127
|
-
notiffany (~> 0.0)
|
128
|
-
pry (>= 0.13.0)
|
129
|
-
shellany (~> 0.0)
|
130
|
-
thor (>= 0.18.1)
|
131
|
-
guard-compat (1.2.1)
|
132
|
-
guard-rspec (4.7.3)
|
133
|
-
guard (~> 2.1)
|
134
|
-
guard-compat (~> 1.1)
|
135
|
-
rspec (>= 2.99.0, < 4.0)
|
136
|
-
i18n (1.14.5)
|
137
|
-
concurrent-ruby (~> 1.0)
|
138
|
-
image_processing (1.12.2)
|
139
|
-
mini_magick (>= 4.9.5, < 5)
|
140
|
-
ruby-vips (>= 2.0.17, < 3)
|
141
|
-
io-console (0.6.0)
|
142
|
-
irb (1.6.2)
|
143
|
-
reline (>= 0.3.0)
|
144
|
-
jbuilder (2.11.5)
|
145
|
-
actionview (>= 5.0.0)
|
146
|
-
activesupport (>= 5.0.0)
|
147
|
-
jsbundling-rails (1.1.1)
|
148
|
-
railties (>= 6.0.0)
|
149
|
-
json (2.6.3)
|
150
|
-
language_server-protocol (3.17.0.3)
|
151
|
-
lint_roller (1.0.0)
|
152
|
-
listen (3.8.0)
|
153
|
-
rb-fsevent (~> 0.10, >= 0.10.3)
|
154
|
-
rb-inotify (~> 0.9, >= 0.9.10)
|
155
|
-
loofah (2.22.0)
|
156
|
-
crass (~> 1.0.2)
|
157
|
-
nokogiri (>= 1.12.0)
|
158
|
-
lumberjack (1.2.8)
|
159
|
-
mail (2.8.1)
|
160
|
-
mini_mime (>= 0.1.1)
|
161
|
-
net-imap
|
162
|
-
net-pop
|
163
|
-
net-smtp
|
164
|
-
marcel (1.0.4)
|
165
|
-
matrix (0.4.2)
|
166
|
-
method_source (1.1.0)
|
167
|
-
mini_magick (4.12.0)
|
168
|
-
mini_mime (1.1.5)
|
169
|
-
mini_portile2 (2.8.7)
|
170
|
-
minitest (5.24.1)
|
171
|
-
msgpack (1.6.0)
|
172
|
-
nenv (0.3.0)
|
173
|
-
net-imap (0.4.14)
|
174
|
-
date
|
175
|
-
net-protocol
|
176
|
-
net-pop (0.1.2)
|
177
|
-
net-protocol
|
178
|
-
net-protocol (0.2.2)
|
179
|
-
timeout
|
180
|
-
net-smtp (0.5.0)
|
181
|
-
net-protocol
|
182
|
-
nio4r (2.7.3)
|
183
|
-
nokogiri (1.16.6)
|
184
|
-
mini_portile2 (~> 2.8.2)
|
185
|
-
racc (~> 1.4)
|
186
|
-
nokogiri (1.16.6-arm64-darwin)
|
187
|
-
racc (~> 1.4)
|
188
|
-
nokogiri (1.16.6-x86_64-darwin)
|
189
|
-
racc (~> 1.4)
|
190
|
-
nokogiri (1.16.6-x86_64-linux)
|
191
|
-
racc (~> 1.4)
|
192
|
-
notiffany (0.1.3)
|
193
|
-
nenv (~> 0.1)
|
194
|
-
shellany (~> 0.0)
|
195
|
-
parallel (1.23.0)
|
196
|
-
parser (3.2.2.1)
|
197
|
-
ast (~> 2.4.1)
|
198
|
-
propshaft (0.6.4)
|
199
|
-
actionpack (>= 7.0.0)
|
200
|
-
activesupport (>= 7.0.0)
|
201
|
-
rack
|
202
|
-
railties (>= 7.0.0)
|
203
|
-
pry (0.14.2)
|
204
|
-
coderay (~> 1.1)
|
205
|
-
method_source (~> 1.0)
|
206
|
-
pry-byebug (3.10.1)
|
207
|
-
byebug (~> 11.0)
|
208
|
-
pry (>= 0.13, < 0.15)
|
209
|
-
pry-doc (1.4.0)
|
210
|
-
pry (~> 0.11)
|
211
|
-
yard (~> 0.9.11)
|
212
|
-
pry-rails (0.3.9)
|
213
|
-
pry (>= 0.10.4)
|
214
|
-
public_suffix (5.0.1)
|
215
|
-
puma (6.0.2)
|
216
|
-
nio4r (~> 2.0)
|
217
|
-
racc (1.8.0)
|
218
|
-
rack (2.2.9)
|
219
|
-
rack-test (2.1.0)
|
220
|
-
rack (>= 1.3)
|
221
|
-
rack_session_access (0.2.0)
|
222
|
-
builder (>= 2.0.0)
|
223
|
-
rack (>= 1.0.0)
|
224
|
-
rails (7.0.8.4)
|
225
|
-
actioncable (= 7.0.8.4)
|
226
|
-
actionmailbox (= 7.0.8.4)
|
227
|
-
actionmailer (= 7.0.8.4)
|
228
|
-
actionpack (= 7.0.8.4)
|
229
|
-
actiontext (= 7.0.8.4)
|
230
|
-
actionview (= 7.0.8.4)
|
231
|
-
activejob (= 7.0.8.4)
|
232
|
-
activemodel (= 7.0.8.4)
|
233
|
-
activerecord (= 7.0.8.4)
|
234
|
-
activestorage (= 7.0.8.4)
|
235
|
-
activesupport (= 7.0.8.4)
|
236
|
-
bundler (>= 1.15.0)
|
237
|
-
railties (= 7.0.8.4)
|
238
|
-
rails-dom-testing (2.2.0)
|
239
|
-
activesupport (>= 5.0.0)
|
240
|
-
minitest
|
241
|
-
nokogiri (>= 1.6)
|
242
|
-
rails-html-sanitizer (1.6.0)
|
243
|
-
loofah (~> 2.21)
|
244
|
-
nokogiri (~> 1.14)
|
245
|
-
railties (7.0.8.4)
|
246
|
-
actionpack (= 7.0.8.4)
|
247
|
-
activesupport (= 7.0.8.4)
|
248
|
-
method_source
|
249
|
-
rake (>= 12.2)
|
250
|
-
thor (~> 1.0)
|
251
|
-
zeitwerk (~> 2.5)
|
252
|
-
rainbow (3.1.1)
|
253
|
-
rake (13.2.1)
|
254
|
-
rb-fsevent (0.11.2)
|
255
|
-
rb-inotify (0.10.1)
|
256
|
-
ffi (~> 1.0)
|
257
|
-
regexp_parser (2.8.0)
|
258
|
-
reline (0.3.2)
|
259
|
-
io-console (~> 0.5)
|
260
|
-
rexml (3.2.5)
|
261
|
-
rspec (3.12.0)
|
262
|
-
rspec-core (~> 3.12.0)
|
263
|
-
rspec-expectations (~> 3.12.0)
|
264
|
-
rspec-mocks (~> 3.12.0)
|
265
|
-
rspec-core (3.12.1)
|
266
|
-
rspec-support (~> 3.12.0)
|
267
|
-
rspec-expectations (3.12.2)
|
268
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
269
|
-
rspec-support (~> 3.12.0)
|
270
|
-
rspec-mocks (3.12.3)
|
271
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
272
|
-
rspec-support (~> 3.12.0)
|
273
|
-
rspec-rails (6.0.1)
|
274
|
-
actionpack (>= 6.1)
|
275
|
-
activesupport (>= 6.1)
|
276
|
-
railties (>= 6.1)
|
277
|
-
rspec-core (~> 3.11)
|
278
|
-
rspec-expectations (~> 3.11)
|
279
|
-
rspec-mocks (~> 3.11)
|
280
|
-
rspec-support (~> 3.11)
|
281
|
-
rspec-retry (0.6.2)
|
282
|
-
rspec-core (> 3.3)
|
283
|
-
rspec-support (3.12.0)
|
284
|
-
rubocop (1.50.2)
|
285
|
-
json (~> 2.3)
|
286
|
-
parallel (~> 1.10)
|
287
|
-
parser (>= 3.2.0.0)
|
288
|
-
rainbow (>= 2.2.2, < 4.0)
|
289
|
-
regexp_parser (>= 1.8, < 3.0)
|
290
|
-
rexml (>= 3.2.5, < 4.0)
|
291
|
-
rubocop-ast (>= 1.28.0, < 2.0)
|
292
|
-
ruby-progressbar (~> 1.7)
|
293
|
-
unicode-display_width (>= 2.4.0, < 3.0)
|
294
|
-
rubocop-ast (1.28.0)
|
295
|
-
parser (>= 3.2.1.0)
|
296
|
-
rubocop-capybara (2.18.0)
|
297
|
-
rubocop (~> 1.41)
|
298
|
-
rubocop-performance (1.16.0)
|
299
|
-
rubocop (>= 1.7.0, < 2.0)
|
300
|
-
rubocop-ast (>= 0.4.0)
|
301
|
-
rubocop-rails (2.17.4)
|
302
|
-
activesupport (>= 4.2.0)
|
303
|
-
rack (>= 1.1)
|
304
|
-
rubocop (>= 1.33.0, < 2.0)
|
305
|
-
rubocop-rake (0.6.0)
|
306
|
-
rubocop (~> 1.0)
|
307
|
-
rubocop-rspec (2.20.0)
|
308
|
-
rubocop (~> 1.33)
|
309
|
-
rubocop-capybara (~> 2.17)
|
310
|
-
ruby-progressbar (1.13.0)
|
311
|
-
ruby-vips (2.1.4)
|
312
|
-
ffi (~> 1.12)
|
313
|
-
shellany (0.0.1)
|
314
|
-
slim (4.1.0)
|
315
|
-
temple (>= 0.7.6, < 0.9)
|
316
|
-
tilt (>= 2.0.6, < 2.1)
|
317
|
-
slim-rails (3.5.1)
|
318
|
-
actionpack (>= 3.1)
|
319
|
-
railties (>= 3.1)
|
320
|
-
slim (>= 3.0, < 5.0)
|
321
|
-
sqlite3 (1.7.3)
|
322
|
-
mini_portile2 (~> 2.8.0)
|
323
|
-
sqlite3 (1.7.3-arm64-darwin)
|
324
|
-
sqlite3 (1.7.3-x86_64-darwin)
|
325
|
-
sqlite3 (1.7.3-x86_64-linux)
|
326
|
-
standard (1.28.0)
|
327
|
-
language_server-protocol (~> 3.17.0.2)
|
328
|
-
lint_roller (~> 1.0)
|
329
|
-
rubocop (~> 1.50.2)
|
330
|
-
standard-custom (~> 1.0.0)
|
331
|
-
standard-performance (~> 1.0.1)
|
332
|
-
standard-custom (1.0.0)
|
333
|
-
lint_roller (~> 1.0)
|
334
|
-
standard-performance (1.0.1)
|
335
|
-
lint_roller (~> 1.0)
|
336
|
-
rubocop-performance (~> 1.16.0)
|
337
|
-
stimulus-rails (1.2.1)
|
338
|
-
railties (>= 6.0.0)
|
339
|
-
temple (0.8.2)
|
340
|
-
thor (1.3.1)
|
341
|
-
tilt (2.0.11)
|
342
|
-
timeout (0.4.1)
|
343
|
-
turbo-rails (1.3.3)
|
344
|
-
actionpack (>= 6.0.0)
|
345
|
-
activejob (>= 6.0.0)
|
346
|
-
railties (>= 6.0.0)
|
347
|
-
tzinfo (2.0.6)
|
348
|
-
concurrent-ruby (~> 1.0)
|
349
|
-
unicode-display_width (2.4.2)
|
350
|
-
web-console (4.2.0)
|
351
|
-
actionview (>= 6.0.0)
|
352
|
-
activemodel (>= 6.0.0)
|
353
|
-
bindex (>= 0.4.0)
|
354
|
-
railties (>= 6.0.0)
|
355
|
-
webrick (1.8.1)
|
356
|
-
websocket-driver (0.7.6)
|
357
|
-
websocket-extensions (>= 0.1.0)
|
358
|
-
websocket-extensions (0.1.5)
|
359
|
-
xpath (3.2.0)
|
360
|
-
nokogiri (~> 1.8)
|
361
|
-
yard (0.9.26)
|
362
|
-
zeitwerk (2.6.16)
|
363
|
-
|
364
|
-
PLATFORMS
|
365
|
-
arm64-darwin-22
|
366
|
-
ruby
|
367
|
-
x86_64-darwin-22
|
368
|
-
x86_64-linux
|
369
|
-
|
370
|
-
DEPENDENCIES
|
371
|
-
annotate
|
372
|
-
awesome_print
|
373
|
-
bootsnap
|
374
|
-
capybara
|
375
|
-
cssbundling-rails
|
376
|
-
cuprite
|
377
|
-
debug
|
378
|
-
dotenv
|
379
|
-
dotenv-rails
|
380
|
-
guard
|
381
|
-
guard-rspec
|
382
|
-
image_processing
|
383
|
-
jbuilder
|
384
|
-
jsbundling-rails
|
385
|
-
propshaft
|
386
|
-
pry
|
387
|
-
pry-byebug
|
388
|
-
pry-doc
|
389
|
-
pry-rails
|
390
|
-
puma
|
391
|
-
rack_session_access
|
392
|
-
rails (~> 7.0.0)
|
393
|
-
rake
|
394
|
-
rspec-rails
|
395
|
-
rspec-retry
|
396
|
-
rubocop
|
397
|
-
rubocop-performance
|
398
|
-
rubocop-rails
|
399
|
-
rubocop-rake
|
400
|
-
rubocop-rspec
|
401
|
-
shimmer!
|
402
|
-
slim-rails
|
403
|
-
sqlite3 (~> 1.6)
|
404
|
-
standard
|
405
|
-
stimulus-rails
|
406
|
-
turbo-rails
|
407
|
-
web-console
|
408
|
-
|
409
|
-
BUNDLED WITH
|
410
|
-
2.4.9
|