neon_sakura 0.1.6 → 0.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/license-check.yml +2 -2
- data/.github/workflows/security.yml +2 -2
- data/.sublime-project +78 -0
- data/CHANGELOG.md +10 -0
- data/Gemfile.lock +94 -84
- data/app/assets/stylesheets/components.css +230 -16
- data/app/assets/stylesheets/utility-effects.css +3 -3
- data/app/javascript/neon_sakura/image_viewer_modal.js +331 -0
- data/app/views/layouts/style_guide.html.erb +3 -0
- data/app/views/shared/_image_viewer_modal.html.erb +42 -0
- data/app/views/style_guide/index.html.erb +5 -0
- data/app/views/style_guide/sections/_image_viewer_modal.html.erb +188 -0
- data/lib/neon_sakura/version.rb +1 -1
- data/neon_sakura.gemspec +3 -2
- data/package.json +2 -2
- data/yarn.lock +333 -331
- metadata +23 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c2facc5d391d993b94057e0df5c69df3fa2bc5a576e4377aacdb035be9f9a67d
|
|
4
|
+
data.tar.gz: 93f8a5f6e3017b5dab897bcffea9c7c37ec96b37a7fe1e069e97e27b733150bf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 06de8a7ca39b8ab42afae1bdae49e6873bf532b46f2b6e34f3fe5da7e6182cdcc043fb72dc6078a96c060415ea355b16b2cd82cf560f95bf058bda1af51cfaff
|
|
7
|
+
data.tar.gz: 9a5df0faa83cad1924bded56954695915c4ceaebfc3be94f8ef6a4eeb1a15499ba0df93872396ed6c31b7f685a632b956789ba1cf2fd00896ecb06f541471100
|
|
@@ -34,7 +34,7 @@ jobs:
|
|
|
34
34
|
run: ruby scripts/license-check.rb
|
|
35
35
|
|
|
36
36
|
- name: Upload license report as artifact
|
|
37
|
-
uses: actions/upload-artifact@
|
|
37
|
+
uses: actions/upload-artifact@v7
|
|
38
38
|
if: failure()
|
|
39
39
|
with:
|
|
40
40
|
name: license-check-report
|
|
@@ -71,7 +71,7 @@ jobs:
|
|
|
71
71
|
license_finder --format markdown >> license-audit-report.md
|
|
72
72
|
|
|
73
73
|
- name: Upload detailed license audit
|
|
74
|
-
uses: actions/upload-artifact@
|
|
74
|
+
uses: actions/upload-artifact@v7
|
|
75
75
|
with:
|
|
76
76
|
name: license-audit-report
|
|
77
77
|
path: license-audit-report.md
|
|
@@ -64,7 +64,7 @@ jobs:
|
|
|
64
64
|
continue-on-error: false
|
|
65
65
|
|
|
66
66
|
- name: Upload Semgrep Results
|
|
67
|
-
uses: actions/upload-artifact@
|
|
67
|
+
uses: actions/upload-artifact@v7
|
|
68
68
|
if: always()
|
|
69
69
|
with:
|
|
70
70
|
name: semgrep-results
|
|
@@ -122,7 +122,7 @@ jobs:
|
|
|
122
122
|
continue-on-error: true
|
|
123
123
|
|
|
124
124
|
- name: Upload Trivy scan results as artifacts
|
|
125
|
-
uses: actions/upload-artifact@
|
|
125
|
+
uses: actions/upload-artifact@v7
|
|
126
126
|
if: always()
|
|
127
127
|
with:
|
|
128
128
|
name: trivy-security-results
|
data/.sublime-project
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
{
|
|
2
|
+
"folders": [
|
|
3
|
+
{
|
|
4
|
+
"path": ".",
|
|
5
|
+
|
|
6
|
+
"folder_exclude_patterns": [
|
|
7
|
+
// === Core VCS / tooling (never useful) ===
|
|
8
|
+
".git",
|
|
9
|
+
".bundle",
|
|
10
|
+
".yarn",
|
|
11
|
+
".sass-cache",
|
|
12
|
+
".webpack",
|
|
13
|
+
".pytest_cache",
|
|
14
|
+
"__pycache__",
|
|
15
|
+
|
|
16
|
+
// === Dependencies ===
|
|
17
|
+
"node_modules",
|
|
18
|
+
"vendor/bundle",
|
|
19
|
+
".venv",
|
|
20
|
+
"venv",
|
|
21
|
+
|
|
22
|
+
// === Generated build output ===
|
|
23
|
+
"public/packs",
|
|
24
|
+
"public/packs-test",
|
|
25
|
+
"public/assets",
|
|
26
|
+
"dist",
|
|
27
|
+
"build",
|
|
28
|
+
|
|
29
|
+
// === Runtime noise (truly never useful) ===
|
|
30
|
+
"log",
|
|
31
|
+
"coverage",
|
|
32
|
+
"tmp/cache",
|
|
33
|
+
"tmp/pids",
|
|
34
|
+
"tmp/sockets",
|
|
35
|
+
"tmp/storage"
|
|
36
|
+
// Note: tmp/ itself is intentionally NOT excluded here —
|
|
37
|
+
// see index_exclude_patterns below so it stays browsable.
|
|
38
|
+
],
|
|
39
|
+
|
|
40
|
+
"file_exclude_patterns": [
|
|
41
|
+
// === Compiled / minified ===
|
|
42
|
+
"*.min.js",
|
|
43
|
+
"*.min.css",
|
|
44
|
+
"*.map",
|
|
45
|
+
"*.pyc",
|
|
46
|
+
"*.pyo",
|
|
47
|
+
|
|
48
|
+
// === Logs & runtime debris ===
|
|
49
|
+
"*.log",
|
|
50
|
+
".DS_Store",
|
|
51
|
+
"*.swp",
|
|
52
|
+
"*.orig",
|
|
53
|
+
"*.rej"
|
|
54
|
+
],
|
|
55
|
+
|
|
56
|
+
// Visible in sidebar + openable, but NOT symbol-indexed.
|
|
57
|
+
// This is the main lever for reducing memory without losing access.
|
|
58
|
+
"index_exclude_patterns": [
|
|
59
|
+
// tmp docs you open occasionally but don't need to Goto-Symbol in
|
|
60
|
+
"tmp/*",
|
|
61
|
+
|
|
62
|
+
// Lock files are huge and never searched by symbol
|
|
63
|
+
"Gemfile.lock",
|
|
64
|
+
"yarn.lock",
|
|
65
|
+
"package-lock.json",
|
|
66
|
+
"*.lock",
|
|
67
|
+
|
|
68
|
+
// Rails generated schema — large, auto-written, not hand-edited
|
|
69
|
+
"db/schema.rb",
|
|
70
|
+
|
|
71
|
+
// AWS / CDK generated manifests
|
|
72
|
+
"cdk.out/*",
|
|
73
|
+
"*.tfstate",
|
|
74
|
+
"*.tfstate.backup"
|
|
75
|
+
]
|
|
76
|
+
}
|
|
77
|
+
]
|
|
78
|
+
}
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.1.7] - 2026-02-07
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- Image viewer modal component with gallery navigation, zoom/pan, thumbnails
|
|
14
|
+
- Keyboard navigation (Arrow keys, Escape) and touch/swipe support
|
|
15
|
+
- Theme-aware styling using CSS custom properties (works in all 6 themes)
|
|
16
|
+
- Reusable partial: `shared/image_viewer_modal`
|
|
17
|
+
- JavaScript API: `NeonSakura.ImageViewerModal.open(images, startIndex, title)`
|
|
18
|
+
- Style guide section with live demo
|
|
19
|
+
|
|
10
20
|
## [0.1.6] - 2026-01-08
|
|
11
21
|
|
|
12
22
|
### Added
|
data/Gemfile.lock
CHANGED
|
@@ -1,38 +1,38 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
neon_sakura (0.1.
|
|
4
|
+
neon_sakura (0.1.8)
|
|
5
5
|
propshaft (>= 1.3.1)
|
|
6
6
|
rails (>= 8.0.0)
|
|
7
7
|
|
|
8
8
|
GEM
|
|
9
9
|
remote: https://rubygems.org/
|
|
10
10
|
specs:
|
|
11
|
-
action_text-trix (2.1.
|
|
11
|
+
action_text-trix (2.1.17)
|
|
12
12
|
railties
|
|
13
|
-
actioncable (8.1.
|
|
14
|
-
actionpack (= 8.1.
|
|
15
|
-
activesupport (= 8.1.
|
|
13
|
+
actioncable (8.1.3)
|
|
14
|
+
actionpack (= 8.1.3)
|
|
15
|
+
activesupport (= 8.1.3)
|
|
16
16
|
nio4r (~> 2.0)
|
|
17
17
|
websocket-driver (>= 0.6.1)
|
|
18
18
|
zeitwerk (~> 2.6)
|
|
19
|
-
actionmailbox (8.1.
|
|
20
|
-
actionpack (= 8.1.
|
|
21
|
-
activejob (= 8.1.
|
|
22
|
-
activerecord (= 8.1.
|
|
23
|
-
activestorage (= 8.1.
|
|
24
|
-
activesupport (= 8.1.
|
|
19
|
+
actionmailbox (8.1.3)
|
|
20
|
+
actionpack (= 8.1.3)
|
|
21
|
+
activejob (= 8.1.3)
|
|
22
|
+
activerecord (= 8.1.3)
|
|
23
|
+
activestorage (= 8.1.3)
|
|
24
|
+
activesupport (= 8.1.3)
|
|
25
25
|
mail (>= 2.8.0)
|
|
26
|
-
actionmailer (8.1.
|
|
27
|
-
actionpack (= 8.1.
|
|
28
|
-
actionview (= 8.1.
|
|
29
|
-
activejob (= 8.1.
|
|
30
|
-
activesupport (= 8.1.
|
|
26
|
+
actionmailer (8.1.3)
|
|
27
|
+
actionpack (= 8.1.3)
|
|
28
|
+
actionview (= 8.1.3)
|
|
29
|
+
activejob (= 8.1.3)
|
|
30
|
+
activesupport (= 8.1.3)
|
|
31
31
|
mail (>= 2.8.0)
|
|
32
32
|
rails-dom-testing (~> 2.2)
|
|
33
|
-
actionpack (8.1.
|
|
34
|
-
actionview (= 8.1.
|
|
35
|
-
activesupport (= 8.1.
|
|
33
|
+
actionpack (8.1.3)
|
|
34
|
+
actionview (= 8.1.3)
|
|
35
|
+
activesupport (= 8.1.3)
|
|
36
36
|
nokogiri (>= 1.8.5)
|
|
37
37
|
rack (>= 2.2.4)
|
|
38
38
|
rack-session (>= 1.0.1)
|
|
@@ -40,36 +40,36 @@ GEM
|
|
|
40
40
|
rails-dom-testing (~> 2.2)
|
|
41
41
|
rails-html-sanitizer (~> 1.6)
|
|
42
42
|
useragent (~> 0.16)
|
|
43
|
-
actiontext (8.1.
|
|
43
|
+
actiontext (8.1.3)
|
|
44
44
|
action_text-trix (~> 2.1.15)
|
|
45
|
-
actionpack (= 8.1.
|
|
46
|
-
activerecord (= 8.1.
|
|
47
|
-
activestorage (= 8.1.
|
|
48
|
-
activesupport (= 8.1.
|
|
45
|
+
actionpack (= 8.1.3)
|
|
46
|
+
activerecord (= 8.1.3)
|
|
47
|
+
activestorage (= 8.1.3)
|
|
48
|
+
activesupport (= 8.1.3)
|
|
49
49
|
globalid (>= 0.6.0)
|
|
50
50
|
nokogiri (>= 1.8.5)
|
|
51
|
-
actionview (8.1.
|
|
52
|
-
activesupport (= 8.1.
|
|
51
|
+
actionview (8.1.3)
|
|
52
|
+
activesupport (= 8.1.3)
|
|
53
53
|
builder (~> 3.1)
|
|
54
54
|
erubi (~> 1.11)
|
|
55
55
|
rails-dom-testing (~> 2.2)
|
|
56
56
|
rails-html-sanitizer (~> 1.6)
|
|
57
|
-
activejob (8.1.
|
|
58
|
-
activesupport (= 8.1.
|
|
57
|
+
activejob (8.1.3)
|
|
58
|
+
activesupport (= 8.1.3)
|
|
59
59
|
globalid (>= 0.3.6)
|
|
60
|
-
activemodel (8.1.
|
|
61
|
-
activesupport (= 8.1.
|
|
62
|
-
activerecord (8.1.
|
|
63
|
-
activemodel (= 8.1.
|
|
64
|
-
activesupport (= 8.1.
|
|
60
|
+
activemodel (8.1.3)
|
|
61
|
+
activesupport (= 8.1.3)
|
|
62
|
+
activerecord (8.1.3)
|
|
63
|
+
activemodel (= 8.1.3)
|
|
64
|
+
activesupport (= 8.1.3)
|
|
65
65
|
timeout (>= 0.4.0)
|
|
66
|
-
activestorage (8.1.
|
|
67
|
-
actionpack (= 8.1.
|
|
68
|
-
activejob (= 8.1.
|
|
69
|
-
activerecord (= 8.1.
|
|
70
|
-
activesupport (= 8.1.
|
|
66
|
+
activestorage (8.1.3)
|
|
67
|
+
actionpack (= 8.1.3)
|
|
68
|
+
activejob (= 8.1.3)
|
|
69
|
+
activerecord (= 8.1.3)
|
|
70
|
+
activesupport (= 8.1.3)
|
|
71
71
|
marcel (~> 1.0)
|
|
72
|
-
activesupport (8.1.
|
|
72
|
+
activesupport (8.1.3)
|
|
73
73
|
base64
|
|
74
74
|
bigdecimal
|
|
75
75
|
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
@@ -82,13 +82,13 @@ GEM
|
|
|
82
82
|
securerandom (>= 0.3)
|
|
83
83
|
tzinfo (~> 2.0, >= 2.0.5)
|
|
84
84
|
uri (>= 0.13.1)
|
|
85
|
-
addressable (2.8.
|
|
85
|
+
addressable (2.8.9)
|
|
86
86
|
public_suffix (>= 2.0.2, < 8.0)
|
|
87
87
|
ansi (1.5.0)
|
|
88
88
|
ast (2.4.3)
|
|
89
89
|
base64 (0.3.0)
|
|
90
90
|
bigdecimal (4.0.1)
|
|
91
|
-
brakeman (
|
|
91
|
+
brakeman (8.0.4)
|
|
92
92
|
racc
|
|
93
93
|
builder (3.3.0)
|
|
94
94
|
bundler-audit (0.9.3)
|
|
@@ -101,26 +101,32 @@ GEM
|
|
|
101
101
|
bigdecimal
|
|
102
102
|
rexml
|
|
103
103
|
crass (1.0.6)
|
|
104
|
+
csv (3.3.5)
|
|
104
105
|
date (3.5.1)
|
|
105
106
|
docile (1.4.1)
|
|
106
107
|
drb (2.2.3)
|
|
107
|
-
erb (6.0.
|
|
108
|
+
erb (6.0.2)
|
|
108
109
|
erubi (1.13.1)
|
|
109
110
|
globalid (1.3.0)
|
|
110
111
|
activesupport (>= 6.1)
|
|
111
112
|
hashdiff (1.2.1)
|
|
113
|
+
httparty (0.24.2)
|
|
114
|
+
csv
|
|
115
|
+
mini_mime (>= 1.0.0)
|
|
116
|
+
multi_xml (>= 0.5.2)
|
|
112
117
|
i18n (1.14.8)
|
|
113
118
|
concurrent-ruby (~> 1.0)
|
|
114
119
|
io-console (0.8.2)
|
|
115
|
-
irb (1.
|
|
120
|
+
irb (1.17.0)
|
|
116
121
|
pp (>= 0.6.0)
|
|
122
|
+
prism (>= 1.3.0)
|
|
117
123
|
rdoc (>= 4.0.0)
|
|
118
124
|
reline (>= 0.4.2)
|
|
119
|
-
json (2.
|
|
125
|
+
json (2.19.3)
|
|
120
126
|
language_server-protocol (3.17.0.5)
|
|
121
127
|
lint_roller (1.1.0)
|
|
122
128
|
logger (1.7.0)
|
|
123
|
-
loofah (2.25.
|
|
129
|
+
loofah (2.25.1)
|
|
124
130
|
crass (~> 1.0.2)
|
|
125
131
|
nokogiri (>= 1.12.0)
|
|
126
132
|
mail (2.9.0)
|
|
@@ -132,7 +138,8 @@ GEM
|
|
|
132
138
|
marcel (1.1.0)
|
|
133
139
|
method_source (1.1.0)
|
|
134
140
|
mini_mime (1.1.5)
|
|
135
|
-
minitest (6.0.
|
|
141
|
+
minitest (6.0.2)
|
|
142
|
+
drb (~> 2.0)
|
|
136
143
|
prism (~> 1.5)
|
|
137
144
|
minitest-focus (1.4.1)
|
|
138
145
|
minitest (> 5.0)
|
|
@@ -141,9 +148,11 @@ GEM
|
|
|
141
148
|
builder
|
|
142
149
|
minitest (>= 5.0)
|
|
143
150
|
ruby-progressbar
|
|
144
|
-
mocha (3.0
|
|
151
|
+
mocha (3.1.0)
|
|
145
152
|
ruby2_keywords (>= 0.0.5)
|
|
146
|
-
|
|
153
|
+
multi_xml (0.8.1)
|
|
154
|
+
bigdecimal (>= 3.1, < 5)
|
|
155
|
+
net-imap (0.6.2)
|
|
147
156
|
date
|
|
148
157
|
net-protocol
|
|
149
158
|
net-pop (0.1.2)
|
|
@@ -153,21 +162,21 @@ GEM
|
|
|
153
162
|
net-smtp (0.5.1)
|
|
154
163
|
net-protocol
|
|
155
164
|
nio4r (2.7.5)
|
|
156
|
-
nokogiri (1.19.
|
|
165
|
+
nokogiri (1.19.2-aarch64-linux-gnu)
|
|
157
166
|
racc (~> 1.4)
|
|
158
|
-
nokogiri (1.19.
|
|
167
|
+
nokogiri (1.19.2-aarch64-linux-musl)
|
|
159
168
|
racc (~> 1.4)
|
|
160
|
-
nokogiri (1.19.
|
|
169
|
+
nokogiri (1.19.2-arm-linux-gnu)
|
|
161
170
|
racc (~> 1.4)
|
|
162
|
-
nokogiri (1.19.
|
|
171
|
+
nokogiri (1.19.2-arm-linux-musl)
|
|
163
172
|
racc (~> 1.4)
|
|
164
|
-
nokogiri (1.19.
|
|
173
|
+
nokogiri (1.19.2-arm64-darwin)
|
|
165
174
|
racc (~> 1.4)
|
|
166
|
-
nokogiri (1.19.
|
|
175
|
+
nokogiri (1.19.2-x86_64-darwin)
|
|
167
176
|
racc (~> 1.4)
|
|
168
|
-
nokogiri (1.19.
|
|
177
|
+
nokogiri (1.19.2-x86_64-linux-gnu)
|
|
169
178
|
racc (~> 1.4)
|
|
170
|
-
nokogiri (1.19.
|
|
179
|
+
nokogiri (1.19.2-x86_64-linux-musl)
|
|
171
180
|
racc (~> 1.4)
|
|
172
181
|
parallel (1.27.0)
|
|
173
182
|
parser (3.3.10.0)
|
|
@@ -176,7 +185,7 @@ GEM
|
|
|
176
185
|
pp (0.6.3)
|
|
177
186
|
prettyprint
|
|
178
187
|
prettyprint (0.2.0)
|
|
179
|
-
prism (1.
|
|
188
|
+
prism (1.9.0)
|
|
180
189
|
propshaft (1.3.1)
|
|
181
190
|
actionpack (>= 7.0.0)
|
|
182
191
|
activesupport (>= 7.0.0)
|
|
@@ -188,9 +197,9 @@ GEM
|
|
|
188
197
|
psych (5.3.1)
|
|
189
198
|
date
|
|
190
199
|
stringio
|
|
191
|
-
public_suffix (7.0.
|
|
200
|
+
public_suffix (7.0.5)
|
|
192
201
|
racc (1.8.1)
|
|
193
|
-
rack (3.2.
|
|
202
|
+
rack (3.2.5)
|
|
194
203
|
rack-session (2.1.1)
|
|
195
204
|
base64 (>= 0.1.0)
|
|
196
205
|
rack (>= 3.0.0)
|
|
@@ -198,30 +207,30 @@ GEM
|
|
|
198
207
|
rack (>= 1.3)
|
|
199
208
|
rackup (2.3.1)
|
|
200
209
|
rack (>= 3)
|
|
201
|
-
rails (8.1.
|
|
202
|
-
actioncable (= 8.1.
|
|
203
|
-
actionmailbox (= 8.1.
|
|
204
|
-
actionmailer (= 8.1.
|
|
205
|
-
actionpack (= 8.1.
|
|
206
|
-
actiontext (= 8.1.
|
|
207
|
-
actionview (= 8.1.
|
|
208
|
-
activejob (= 8.1.
|
|
209
|
-
activemodel (= 8.1.
|
|
210
|
-
activerecord (= 8.1.
|
|
211
|
-
activestorage (= 8.1.
|
|
212
|
-
activesupport (= 8.1.
|
|
210
|
+
rails (8.1.3)
|
|
211
|
+
actioncable (= 8.1.3)
|
|
212
|
+
actionmailbox (= 8.1.3)
|
|
213
|
+
actionmailer (= 8.1.3)
|
|
214
|
+
actionpack (= 8.1.3)
|
|
215
|
+
actiontext (= 8.1.3)
|
|
216
|
+
actionview (= 8.1.3)
|
|
217
|
+
activejob (= 8.1.3)
|
|
218
|
+
activemodel (= 8.1.3)
|
|
219
|
+
activerecord (= 8.1.3)
|
|
220
|
+
activestorage (= 8.1.3)
|
|
221
|
+
activesupport (= 8.1.3)
|
|
213
222
|
bundler (>= 1.15.0)
|
|
214
|
-
railties (= 8.1.
|
|
223
|
+
railties (= 8.1.3)
|
|
215
224
|
rails-dom-testing (2.3.0)
|
|
216
225
|
activesupport (>= 5.0.0)
|
|
217
226
|
minitest
|
|
218
227
|
nokogiri (>= 1.6)
|
|
219
|
-
rails-html-sanitizer (1.
|
|
220
|
-
loofah (~> 2.
|
|
228
|
+
rails-html-sanitizer (1.7.0)
|
|
229
|
+
loofah (~> 2.25)
|
|
221
230
|
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)
|
|
222
|
-
railties (8.1.
|
|
223
|
-
actionpack (= 8.1.
|
|
224
|
-
activesupport (= 8.1.
|
|
231
|
+
railties (8.1.3)
|
|
232
|
+
actionpack (= 8.1.3)
|
|
233
|
+
activesupport (= 8.1.3)
|
|
225
234
|
irb (~> 1.13)
|
|
226
235
|
rackup (>= 1.0.0)
|
|
227
236
|
rake (>= 12.2)
|
|
@@ -230,7 +239,7 @@ GEM
|
|
|
230
239
|
zeitwerk (~> 2.6)
|
|
231
240
|
rainbow (3.1.1)
|
|
232
241
|
rake (13.3.1)
|
|
233
|
-
rdoc (7.0
|
|
242
|
+
rdoc (7.2.0)
|
|
234
243
|
erb
|
|
235
244
|
psych (>= 4.0.0)
|
|
236
245
|
tsort
|
|
@@ -276,9 +285,9 @@ GEM
|
|
|
276
285
|
simplecov-html (0.13.2)
|
|
277
286
|
simplecov_json_formatter (0.1.4)
|
|
278
287
|
stringio (3.2.0)
|
|
279
|
-
thor (1.
|
|
288
|
+
thor (1.5.0)
|
|
280
289
|
timecop (0.9.10)
|
|
281
|
-
timeout (0.
|
|
290
|
+
timeout (0.6.0)
|
|
282
291
|
tsort (0.2.0)
|
|
283
292
|
tzinfo (2.0.6)
|
|
284
293
|
concurrent-ruby (~> 1.0)
|
|
@@ -287,7 +296,7 @@ GEM
|
|
|
287
296
|
unicode-emoji (4.1.0)
|
|
288
297
|
uri (1.1.1)
|
|
289
298
|
useragent (0.16.11)
|
|
290
|
-
webmock (3.26.
|
|
299
|
+
webmock (3.26.2)
|
|
291
300
|
addressable (>= 2.8.0)
|
|
292
301
|
crack (>= 0.3.2)
|
|
293
302
|
hashdiff (>= 0.4.0, < 2.0.0)
|
|
@@ -295,7 +304,7 @@ GEM
|
|
|
295
304
|
base64
|
|
296
305
|
websocket-extensions (>= 0.1.0)
|
|
297
306
|
websocket-extensions (0.1.5)
|
|
298
|
-
zeitwerk (2.7.
|
|
307
|
+
zeitwerk (2.7.5)
|
|
299
308
|
|
|
300
309
|
PLATFORMS
|
|
301
310
|
aarch64-linux-gnu
|
|
@@ -308,13 +317,14 @@ PLATFORMS
|
|
|
308
317
|
x86_64-linux-musl
|
|
309
318
|
|
|
310
319
|
DEPENDENCIES
|
|
311
|
-
brakeman (~>
|
|
320
|
+
brakeman (~> 8.0.4)
|
|
312
321
|
bundler (~> 2.7.2)
|
|
313
322
|
bundler-audit (~> 0.9.3)
|
|
323
|
+
httparty (~> 0.24.2)
|
|
314
324
|
minitest (~> 6.0.1)
|
|
315
325
|
minitest-focus (~> 1.4.0)
|
|
316
326
|
minitest-reporters (~> 1.7.1)
|
|
317
|
-
mocha (~> 3.0
|
|
327
|
+
mocha (~> 3.1.0)
|
|
318
328
|
neon_sakura!
|
|
319
329
|
pry (~> 0.16.0)
|
|
320
330
|
rake (~> 13.3.1)
|