neon_sakura 0.1.4
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 +7 -0
- data/.ai-reviewer/README.md +182 -0
- data/.ai-reviewer/ai-reviewer.sh +56 -0
- data/.ai-reviewer/build-system-prompt.sh +136 -0
- data/.ai-reviewer/extract-claude-sections.sh +32 -0
- data/.ai-reviewer/test-ai-reviewer.sh +40 -0
- data/.ai-reviewer-config.yml +190 -0
- data/.github/dependabot.yml +12 -0
- data/.github/settings.yml +70 -0
- data/.github/workflows/ai-pr-review-on-comment.yml +384 -0
- data/.github/workflows/ai-pr-review.yml +328 -0
- data/.github/workflows/license-check.yml +78 -0
- data/.github/workflows/lint.yml +79 -0
- data/.github/workflows/security.yml +131 -0
- data/.github/workflows/semgrep.yml +26 -0
- data/.github/workflows/test.yml +44 -0
- data/.gitignore +75 -0
- data/.rubocop.yml +33 -0
- data/.ruby-version +1 -0
- data/.simplecov +14 -0
- data/.stylelintignore +10 -0
- data/.stylelintrc.json +37 -0
- data/AGENTS.md +51 -0
- data/CHANGELOG.md +568 -0
- data/CLAUDE.md +632 -0
- data/Gemfile +8 -0
- data/Gemfile.lock +327 -0
- data/LICENSE +21 -0
- data/README.md +1209 -0
- data/Rakefile +25 -0
- data/app/assets/images/cherry_blossom.svg +1525 -0
- data/app/assets/images/cherry_blossom_tree.png +0 -0
- data/app/assets/images/prysm-icon.png +0 -0
- data/app/assets/stylesheets/base.css +29 -0
- data/app/assets/stylesheets/components.css +1652 -0
- data/app/assets/stylesheets/forms.css +152 -0
- data/app/assets/stylesheets/loading.css +145 -0
- data/app/assets/stylesheets/neon_sakura.css +40 -0
- data/app/assets/stylesheets/pagy-tailwind.css +120 -0
- data/app/assets/stylesheets/theme-default.css +40 -0
- data/app/assets/stylesheets/theme-green.css +84 -0
- data/app/assets/stylesheets/theme-purple.css +94 -0
- data/app/assets/stylesheets/theme-red.css +84 -0
- data/app/assets/stylesheets/utility-borders.css +29 -0
- data/app/assets/stylesheets/utility-colors.css +185 -0
- data/app/assets/stylesheets/utility-effects.css +123 -0
- data/app/assets/stylesheets/utility-gradients.css +158 -0
- data/app/assets/stylesheets/utility-layout.css +132 -0
- data/app/assets/stylesheets/utility-reset.css +13 -0
- data/app/assets/stylesheets/utility-responsive.css +145 -0
- data/app/assets/stylesheets/utility-sizing.css +99 -0
- data/app/assets/stylesheets/utility-spacing.css +174 -0
- data/app/assets/stylesheets/utility-typography.css +97 -0
- data/app/controllers/errors_controller.rb +120 -0
- data/app/controllers/style_guide_controller.rb +117 -0
- data/app/helpers/errors_helper.rb +12 -0
- data/app/helpers/neon_sakura/navbar_helper.rb +43 -0
- data/app/helpers/style_guide_helper.rb +36 -0
- data/app/javascript/neon_sakura/dropdown.js +22 -0
- data/app/javascript/neon_sakura/navbar.js +71 -0
- data/app/javascript/neon_sakura/theme_switcher.js +187 -0
- data/app/views/errors/show.html.erb +105 -0
- data/app/views/layouts/error.html.erb +19 -0
- data/app/views/layouts/mission_control/jobs/_application_selection.html.erb +14 -0
- data/app/views/layouts/mission_control/jobs/_navigation.html.erb +21 -0
- data/app/views/layouts/mission_control/jobs/application.html.erb +453 -0
- data/app/views/layouts/style_guide.html.erb +416 -0
- data/app/views/shared/_file_upload.html.erb +184 -0
- data/app/views/shared/_footer.html.erb +23 -0
- data/app/views/shared/_header.html.erb +42 -0
- data/app/views/shared/_navbar.html.erb +306 -0
- data/app/views/shared/_profile_image_selector.html.erb +165 -0
- data/app/views/shared/_theme_switcher.html.erb +64 -0
- data/app/views/shared/icons/_adjustments.html.erb +10 -0
- data/app/views/shared/icons/_alert_circle.html.erb +3 -0
- data/app/views/shared/icons/_alert_triangle.html.erb +3 -0
- data/app/views/shared/icons/_archive.html.erb +3 -0
- data/app/views/shared/icons/_arrow_down.html.erb +3 -0
- data/app/views/shared/icons/_arrow_left.html.erb +3 -0
- data/app/views/shared/icons/_arrow_up.html.erb +3 -0
- data/app/views/shared/icons/_arrows_pointing_in.html.erb +10 -0
- data/app/views/shared/icons/_arrows_pointing_out.html.erb +10 -0
- data/app/views/shared/icons/_artemis_logo.html.erb +26 -0
- data/app/views/shared/icons/_auth_banner.html.erb +1 -0
- data/app/views/shared/icons/_bars.html.erb +10 -0
- data/app/views/shared/icons/_bell.html.erb +3 -0
- data/app/views/shared/icons/_book.html.erb +3 -0
- data/app/views/shared/icons/_bookmark.html.erb +3 -0
- data/app/views/shared/icons/_box.html.erb +3 -0
- data/app/views/shared/icons/_brain.html.erb +3 -0
- data/app/views/shared/icons/_briefcase.html.erb +3 -0
- data/app/views/shared/icons/_calendar.html.erb +3 -0
- data/app/views/shared/icons/_camera.html.erb +4 -0
- data/app/views/shared/icons/_chart_bar.html.erb +3 -0
- data/app/views/shared/icons/_chart_line.html.erb +10 -0
- data/app/views/shared/icons/_chart_pie.html.erb +11 -0
- data/app/views/shared/icons/_chat.html.erb +3 -0
- data/app/views/shared/icons/_check.html.erb +3 -0
- data/app/views/shared/icons/_check_circle.html.erb +3 -0
- data/app/views/shared/icons/_cherry_blossom.html.erb +1516 -0
- data/app/views/shared/icons/_cherry_blossom_silhouette.html.erb +1016 -0
- data/app/views/shared/icons/_cherry_blossom_single_flower.html.erb +1125 -0
- data/app/views/shared/icons/_cherry_blossom_tree.html.erb +159 -0
- data/app/views/shared/icons/_chevron_down.html.erb +3 -0
- data/app/views/shared/icons/_chevron_right.html.erb +9 -0
- data/app/views/shared/icons/_clipboard.html.erb +3 -0
- data/app/views/shared/icons/_clock.html.erb +3 -0
- data/app/views/shared/icons/_close.html.erb +3 -0
- data/app/views/shared/icons/_cog.html.erb +4 -0
- data/app/views/shared/icons/_crop.html.erb +10 -0
- data/app/views/shared/icons/_crown.html.erb +3 -0
- data/app/views/shared/icons/_disc.html.erb +3 -0
- data/app/views/shared/icons/_download.html.erb +3 -0
- data/app/views/shared/icons/_dragonfly.html.erb +58 -0
- data/app/views/shared/icons/_duplicate.html.erb +4 -0
- data/app/views/shared/icons/_edit.html.erb +3 -0
- data/app/views/shared/icons/_envelope.html.erb +3 -0
- data/app/views/shared/icons/_eraser.html.erb +10 -0
- data/app/views/shared/icons/_external_link.html.erb +3 -0
- data/app/views/shared/icons/_eye.html.erb +4 -0
- data/app/views/shared/icons/_file_csv.html.erb +10 -0
- data/app/views/shared/icons/_file_export.html.erb +10 -0
- data/app/views/shared/icons/_file_image.html.erb +10 -0
- data/app/views/shared/icons/_file_import.html.erb +10 -0
- data/app/views/shared/icons/_file_question.html.erb +6 -0
- data/app/views/shared/icons/_film.html.erb +3 -0
- data/app/views/shared/icons/_filter.html.erb +3 -0
- data/app/views/shared/icons/_folder.html.erb +3 -0
- data/app/views/shared/icons/_folder_open.html.erb +3 -0
- data/app/views/shared/icons/_folder_plus.html.erb +3 -0
- data/app/views/shared/icons/_globe.html.erb +3 -0
- data/app/views/shared/icons/_google.html.erb +11 -0
- data/app/views/shared/icons/_heart.html.erb +3 -0
- data/app/views/shared/icons/_heart_broken.html.erb +11 -0
- data/app/views/shared/icons/_heart_pulse.html.erb +4 -0
- data/app/views/shared/icons/_history.html.erb +11 -0
- data/app/views/shared/icons/_home.html.erb +10 -0
- data/app/views/shared/icons/_image.html.erb +3 -0
- data/app/views/shared/icons/_inbox.html.erb +3 -0
- data/app/views/shared/icons/_info_circle.html.erb +10 -0
- data/app/views/shared/icons/_key.html.erb +3 -0
- data/app/views/shared/icons/_layers.html.erb +10 -0
- data/app/views/shared/icons/_lightbulb.html.erb +10 -0
- data/app/views/shared/icons/_lightning.html.erb +3 -0
- data/app/views/shared/icons/_list.html.erb +3 -0
- data/app/views/shared/icons/_lock.html.erb +3 -0
- data/app/views/shared/icons/_logout.html.erb +3 -0
- data/app/views/shared/icons/_magazine.html.erb +3 -0
- data/app/views/shared/icons/_magic.html.erb +3 -0
- data/app/views/shared/icons/_minus.html.erb +10 -0
- data/app/views/shared/icons/_mobile.html.erb +10 -0
- data/app/views/shared/icons/_moon.html.erb +3 -0
- data/app/views/shared/icons/_network.html.erb +10 -0
- data/app/views/shared/icons/_new_item_banner.html.erb +1 -0
- data/app/views/shared/icons/_ouroboros.html.erb +24 -0
- data/app/views/shared/icons/_package.html.erb +3 -0
- data/app/views/shared/icons/_palette.html.erb +3 -0
- data/app/views/shared/icons/_paper_plane.html.erb +10 -0
- data/app/views/shared/icons/_photo.html.erb +10 -0
- data/app/views/shared/icons/_play.html.erb +4 -0
- data/app/views/shared/icons/_plus.html.erb +3 -0
- data/app/views/shared/icons/_pocket.html.erb +11 -0
- data/app/views/shared/icons/_prysm-icon.html.erb +34 -0
- data/app/views/shared/icons/_prysm.html.erb +13 -0
- data/app/views/shared/icons/_pushbullet-1.html.erb +29 -0
- data/app/views/shared/icons/_pushbullet-2.html.erb +2 -0
- data/app/views/shared/icons/_puzzle.html.erb +10 -0
- data/app/views/shared/icons/_qrcode.html.erb +3 -0
- data/app/views/shared/icons/_question.html.erb +3 -0
- data/app/views/shared/icons/_receipt.html.erb +10 -0
- data/app/views/shared/icons/_redo.html.erb +3 -0
- data/app/views/shared/icons/_refresh.html.erb +3 -0
- data/app/views/shared/icons/_rocket.html.erb +10 -0
- data/app/views/shared/icons/_rss.html.erb +3 -0
- data/app/views/shared/icons/_save.html.erb +3 -0
- data/app/views/shared/icons/_search.html.erb +3 -0
- data/app/views/shared/icons/_search_minus.html.erb +10 -0
- data/app/views/shared/icons/_search_plus.html.erb +10 -0
- data/app/views/shared/icons/_server_error.html.erb +6 -0
- data/app/views/shared/icons/_share.html.erb +3 -0
- data/app/views/shared/icons/_shield_check.html.erb +3 -0
- data/app/views/shared/icons/_sign_in.html.erb +3 -0
- data/app/views/shared/icons/_spinner.html.erb +4 -0
- data/app/views/shared/icons/_star.html.erb +3 -0
- data/app/views/shared/icons/_store.html.erb +10 -0
- data/app/views/shared/icons/_sun.html.erb +3 -0
- data/app/views/shared/icons/_sync.html.erb +3 -0
- data/app/views/shared/icons/_table.html.erb +3 -0
- data/app/views/shared/icons/_tag.html.erb +3 -0
- data/app/views/shared/icons/_tags.html.erb +11 -0
- data/app/views/shared/icons/_tools.html.erb +4 -0
- data/app/views/shared/icons/_trash.html.erb +3 -0
- data/app/views/shared/icons/_undo.html.erb +3 -0
- data/app/views/shared/icons/_unlock.html.erb +3 -0
- data/app/views/shared/icons/_upload.html.erb +3 -0
- data/app/views/shared/icons/_user.html.erb +3 -0
- data/app/views/shared/icons/_user_circle.html.erb +10 -0
- data/app/views/shared/icons/_user_plus.html.erb +10 -0
- data/app/views/shared/icons/_video.html.erb +3 -0
- data/app/views/shared/icons/_wrench.html.erb +11 -0
- data/app/views/style_guide/index.html.erb +77 -0
- data/app/views/style_guide/sections/_alerts.html.erb +114 -0
- data/app/views/style_guide/sections/_badges.html.erb +78 -0
- data/app/views/style_guide/sections/_buttons.html.erb +130 -0
- data/app/views/style_guide/sections/_cards.html.erb +84 -0
- data/app/views/style_guide/sections/_colors.html.erb +106 -0
- data/app/views/style_guide/sections/_file_upload.html.erb +135 -0
- data/app/views/style_guide/sections/_forms.html.erb +129 -0
- data/app/views/style_guide/sections/_gradients.html.erb +253 -0
- data/app/views/style_guide/sections/_header.html.erb +12 -0
- data/app/views/style_guide/sections/_icons.html.erb +55 -0
- data/app/views/style_guide/sections/_images.html.erb +40 -0
- data/app/views/style_guide/sections/_loading.html.erb +242 -0
- data/app/views/style_guide/sections/_pagination.html.erb +212 -0
- data/app/views/style_guide/sections/_profile_components.html.erb +203 -0
- data/app/views/style_guide/sections/_theme_switcher.html.erb +72 -0
- data/app/views/style_guide/sections/_typography.html.erb +65 -0
- data/bin/ai-optimize-claude-md +540 -0
- data/bin/ai-review-local +345 -0
- data/bin/ai-security-review +585 -0
- data/bin/brakeman +9 -0
- data/bin/install-hooks +57 -0
- data/bin/rake +7 -0
- data/bin/rubocop +10 -0
- data/bin/verify_setup.rb +31 -0
- data/config/brakeman.ignore +28 -0
- data/config/initializers/neon_sakura.rb +15 -0
- data/config/license_overrides.yml +13 -0
- data/config/routes.rb +21 -0
- data/config/theme_mappings.yml +61 -0
- data/docs/PRYSM_ASSETS.md +210 -0
- data/docs/plans/extract_ai_reviewer_plan.md +151 -0
- data/docs/plans/neon_sakura_gem_plan.md +138 -0
- data/lib/neon_sakura/configuration.rb +94 -0
- data/lib/neon_sakura/engine.rb +48 -0
- data/lib/neon_sakura/icon_helper.rb +54 -0
- data/lib/neon_sakura/profile_helper.rb +24 -0
- data/lib/neon_sakura/stylesheet_helper.rb +40 -0
- data/lib/neon_sakura/theme_helper.rb +63 -0
- data/lib/neon_sakura/theme_importer.rb +112 -0
- data/lib/neon_sakura/version.rb +5 -0
- data/lib/neon_sakura.rb +13 -0
- data/neon_sakura.gemspec +50 -0
- data/package.json +18 -0
- data/scripts/git-hooks/post-merge +132 -0
- data/scripts/git-hooks/pre-commit +123 -0
- data/scripts/git-hooks/pre-push +127 -0
- data/scripts/license-check.rb +587 -0
- data/settings.local.json +12 -0
- data/yarn.lock +778 -0
- metadata +503 -0
data/Gemfile.lock
ADDED
|
@@ -0,0 +1,327 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: .
|
|
3
|
+
specs:
|
|
4
|
+
neon_sakura (0.1.4)
|
|
5
|
+
propshaft (>= 1.3.1)
|
|
6
|
+
rails (>= 8.0.0)
|
|
7
|
+
|
|
8
|
+
GEM
|
|
9
|
+
remote: https://rubygems.org/
|
|
10
|
+
specs:
|
|
11
|
+
action_text-trix (2.1.16)
|
|
12
|
+
railties
|
|
13
|
+
actioncable (8.1.1)
|
|
14
|
+
actionpack (= 8.1.1)
|
|
15
|
+
activesupport (= 8.1.1)
|
|
16
|
+
nio4r (~> 2.0)
|
|
17
|
+
websocket-driver (>= 0.6.1)
|
|
18
|
+
zeitwerk (~> 2.6)
|
|
19
|
+
actionmailbox (8.1.1)
|
|
20
|
+
actionpack (= 8.1.1)
|
|
21
|
+
activejob (= 8.1.1)
|
|
22
|
+
activerecord (= 8.1.1)
|
|
23
|
+
activestorage (= 8.1.1)
|
|
24
|
+
activesupport (= 8.1.1)
|
|
25
|
+
mail (>= 2.8.0)
|
|
26
|
+
actionmailer (8.1.1)
|
|
27
|
+
actionpack (= 8.1.1)
|
|
28
|
+
actionview (= 8.1.1)
|
|
29
|
+
activejob (= 8.1.1)
|
|
30
|
+
activesupport (= 8.1.1)
|
|
31
|
+
mail (>= 2.8.0)
|
|
32
|
+
rails-dom-testing (~> 2.2)
|
|
33
|
+
actionpack (8.1.1)
|
|
34
|
+
actionview (= 8.1.1)
|
|
35
|
+
activesupport (= 8.1.1)
|
|
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.1.1)
|
|
44
|
+
action_text-trix (~> 2.1.15)
|
|
45
|
+
actionpack (= 8.1.1)
|
|
46
|
+
activerecord (= 8.1.1)
|
|
47
|
+
activestorage (= 8.1.1)
|
|
48
|
+
activesupport (= 8.1.1)
|
|
49
|
+
globalid (>= 0.6.0)
|
|
50
|
+
nokogiri (>= 1.8.5)
|
|
51
|
+
actionview (8.1.1)
|
|
52
|
+
activesupport (= 8.1.1)
|
|
53
|
+
builder (~> 3.1)
|
|
54
|
+
erubi (~> 1.11)
|
|
55
|
+
rails-dom-testing (~> 2.2)
|
|
56
|
+
rails-html-sanitizer (~> 1.6)
|
|
57
|
+
activejob (8.1.1)
|
|
58
|
+
activesupport (= 8.1.1)
|
|
59
|
+
globalid (>= 0.3.6)
|
|
60
|
+
activemodel (8.1.1)
|
|
61
|
+
activesupport (= 8.1.1)
|
|
62
|
+
activerecord (8.1.1)
|
|
63
|
+
activemodel (= 8.1.1)
|
|
64
|
+
activesupport (= 8.1.1)
|
|
65
|
+
timeout (>= 0.4.0)
|
|
66
|
+
activestorage (8.1.1)
|
|
67
|
+
actionpack (= 8.1.1)
|
|
68
|
+
activejob (= 8.1.1)
|
|
69
|
+
activerecord (= 8.1.1)
|
|
70
|
+
activesupport (= 8.1.1)
|
|
71
|
+
marcel (~> 1.0)
|
|
72
|
+
activesupport (8.1.1)
|
|
73
|
+
base64
|
|
74
|
+
bigdecimal
|
|
75
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
76
|
+
connection_pool (>= 2.2.5)
|
|
77
|
+
drb
|
|
78
|
+
i18n (>= 1.6, < 2)
|
|
79
|
+
json
|
|
80
|
+
logger (>= 1.4.2)
|
|
81
|
+
minitest (>= 5.1)
|
|
82
|
+
securerandom (>= 0.3)
|
|
83
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
|
84
|
+
uri (>= 0.13.1)
|
|
85
|
+
addressable (2.8.8)
|
|
86
|
+
public_suffix (>= 2.0.2, < 8.0)
|
|
87
|
+
ansi (1.5.0)
|
|
88
|
+
ast (2.4.3)
|
|
89
|
+
base64 (0.3.0)
|
|
90
|
+
bigdecimal (4.0.1)
|
|
91
|
+
brakeman (7.1.2)
|
|
92
|
+
racc
|
|
93
|
+
builder (3.3.0)
|
|
94
|
+
bundler-audit (0.9.3)
|
|
95
|
+
bundler (>= 1.2.0)
|
|
96
|
+
thor (~> 1.0)
|
|
97
|
+
coderay (1.1.3)
|
|
98
|
+
concurrent-ruby (1.3.6)
|
|
99
|
+
connection_pool (3.0.2)
|
|
100
|
+
crack (1.0.1)
|
|
101
|
+
bigdecimal
|
|
102
|
+
rexml
|
|
103
|
+
crass (1.0.6)
|
|
104
|
+
date (3.5.1)
|
|
105
|
+
docile (1.4.1)
|
|
106
|
+
drb (2.2.3)
|
|
107
|
+
erb (6.0.1)
|
|
108
|
+
erubi (1.13.1)
|
|
109
|
+
globalid (1.3.0)
|
|
110
|
+
activesupport (>= 6.1)
|
|
111
|
+
hashdiff (1.2.1)
|
|
112
|
+
i18n (1.14.8)
|
|
113
|
+
concurrent-ruby (~> 1.0)
|
|
114
|
+
io-console (0.8.2)
|
|
115
|
+
irb (1.16.0)
|
|
116
|
+
pp (>= 0.6.0)
|
|
117
|
+
rdoc (>= 4.0.0)
|
|
118
|
+
reline (>= 0.4.2)
|
|
119
|
+
json (2.18.0)
|
|
120
|
+
language_server-protocol (3.17.0.5)
|
|
121
|
+
lint_roller (1.1.0)
|
|
122
|
+
logger (1.7.0)
|
|
123
|
+
loofah (2.25.0)
|
|
124
|
+
crass (~> 1.0.2)
|
|
125
|
+
nokogiri (>= 1.12.0)
|
|
126
|
+
mail (2.9.0)
|
|
127
|
+
logger
|
|
128
|
+
mini_mime (>= 0.1.1)
|
|
129
|
+
net-imap
|
|
130
|
+
net-pop
|
|
131
|
+
net-smtp
|
|
132
|
+
marcel (1.1.0)
|
|
133
|
+
method_source (1.1.0)
|
|
134
|
+
mini_mime (1.1.5)
|
|
135
|
+
minitest (6.0.1)
|
|
136
|
+
prism (~> 1.5)
|
|
137
|
+
minitest-focus (1.4.1)
|
|
138
|
+
minitest (> 5.0)
|
|
139
|
+
minitest-reporters (1.7.1)
|
|
140
|
+
ansi
|
|
141
|
+
builder
|
|
142
|
+
minitest (>= 5.0)
|
|
143
|
+
ruby-progressbar
|
|
144
|
+
mocha (3.0.1)
|
|
145
|
+
ruby2_keywords (>= 0.0.5)
|
|
146
|
+
net-imap (0.5.12)
|
|
147
|
+
date
|
|
148
|
+
net-protocol
|
|
149
|
+
net-pop (0.1.2)
|
|
150
|
+
net-protocol
|
|
151
|
+
net-protocol (0.2.2)
|
|
152
|
+
timeout
|
|
153
|
+
net-smtp (0.5.1)
|
|
154
|
+
net-protocol
|
|
155
|
+
nio4r (2.7.5)
|
|
156
|
+
nokogiri (1.19.0-aarch64-linux-gnu)
|
|
157
|
+
racc (~> 1.4)
|
|
158
|
+
nokogiri (1.19.0-aarch64-linux-musl)
|
|
159
|
+
racc (~> 1.4)
|
|
160
|
+
nokogiri (1.19.0-arm-linux-gnu)
|
|
161
|
+
racc (~> 1.4)
|
|
162
|
+
nokogiri (1.19.0-arm-linux-musl)
|
|
163
|
+
racc (~> 1.4)
|
|
164
|
+
nokogiri (1.19.0-arm64-darwin)
|
|
165
|
+
racc (~> 1.4)
|
|
166
|
+
nokogiri (1.19.0-x86_64-darwin)
|
|
167
|
+
racc (~> 1.4)
|
|
168
|
+
nokogiri (1.19.0-x86_64-linux-gnu)
|
|
169
|
+
racc (~> 1.4)
|
|
170
|
+
nokogiri (1.19.0-x86_64-linux-musl)
|
|
171
|
+
racc (~> 1.4)
|
|
172
|
+
parallel (1.27.0)
|
|
173
|
+
parser (3.3.10.0)
|
|
174
|
+
ast (~> 2.4.1)
|
|
175
|
+
racc
|
|
176
|
+
pp (0.6.3)
|
|
177
|
+
prettyprint
|
|
178
|
+
prettyprint (0.2.0)
|
|
179
|
+
prism (1.6.0)
|
|
180
|
+
propshaft (1.3.1)
|
|
181
|
+
actionpack (>= 7.0.0)
|
|
182
|
+
activesupport (>= 7.0.0)
|
|
183
|
+
rack
|
|
184
|
+
pry (0.16.0)
|
|
185
|
+
coderay (~> 1.1)
|
|
186
|
+
method_source (~> 1.0)
|
|
187
|
+
reline (>= 0.6.0)
|
|
188
|
+
psych (5.3.1)
|
|
189
|
+
date
|
|
190
|
+
stringio
|
|
191
|
+
public_suffix (7.0.0)
|
|
192
|
+
racc (1.8.1)
|
|
193
|
+
rack (3.2.4)
|
|
194
|
+
rack-session (2.1.1)
|
|
195
|
+
base64 (>= 0.1.0)
|
|
196
|
+
rack (>= 3.0.0)
|
|
197
|
+
rack-test (2.2.0)
|
|
198
|
+
rack (>= 1.3)
|
|
199
|
+
rackup (2.3.1)
|
|
200
|
+
rack (>= 3)
|
|
201
|
+
rails (8.1.1)
|
|
202
|
+
actioncable (= 8.1.1)
|
|
203
|
+
actionmailbox (= 8.1.1)
|
|
204
|
+
actionmailer (= 8.1.1)
|
|
205
|
+
actionpack (= 8.1.1)
|
|
206
|
+
actiontext (= 8.1.1)
|
|
207
|
+
actionview (= 8.1.1)
|
|
208
|
+
activejob (= 8.1.1)
|
|
209
|
+
activemodel (= 8.1.1)
|
|
210
|
+
activerecord (= 8.1.1)
|
|
211
|
+
activestorage (= 8.1.1)
|
|
212
|
+
activesupport (= 8.1.1)
|
|
213
|
+
bundler (>= 1.15.0)
|
|
214
|
+
railties (= 8.1.1)
|
|
215
|
+
rails-dom-testing (2.3.0)
|
|
216
|
+
activesupport (>= 5.0.0)
|
|
217
|
+
minitest
|
|
218
|
+
nokogiri (>= 1.6)
|
|
219
|
+
rails-html-sanitizer (1.6.2)
|
|
220
|
+
loofah (~> 2.21)
|
|
221
|
+
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.1)
|
|
223
|
+
actionpack (= 8.1.1)
|
|
224
|
+
activesupport (= 8.1.1)
|
|
225
|
+
irb (~> 1.13)
|
|
226
|
+
rackup (>= 1.0.0)
|
|
227
|
+
rake (>= 12.2)
|
|
228
|
+
thor (~> 1.0, >= 1.2.2)
|
|
229
|
+
tsort (>= 0.2)
|
|
230
|
+
zeitwerk (~> 2.6)
|
|
231
|
+
rainbow (3.1.1)
|
|
232
|
+
rake (13.3.1)
|
|
233
|
+
rdoc (7.0.3)
|
|
234
|
+
erb
|
|
235
|
+
psych (>= 4.0.0)
|
|
236
|
+
tsort
|
|
237
|
+
regexp_parser (2.11.3)
|
|
238
|
+
reline (0.6.3)
|
|
239
|
+
io-console (~> 0.5)
|
|
240
|
+
rexml (3.4.4)
|
|
241
|
+
rubocop (1.81.7)
|
|
242
|
+
json (~> 2.3)
|
|
243
|
+
language_server-protocol (~> 3.17.0.2)
|
|
244
|
+
lint_roller (~> 1.1.0)
|
|
245
|
+
parallel (~> 1.10)
|
|
246
|
+
parser (>= 3.3.0.2)
|
|
247
|
+
rainbow (>= 2.2.2, < 4.0)
|
|
248
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
|
249
|
+
rubocop-ast (>= 1.47.1, < 2.0)
|
|
250
|
+
ruby-progressbar (~> 1.7)
|
|
251
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
|
252
|
+
rubocop-ast (1.48.0)
|
|
253
|
+
parser (>= 3.3.7.2)
|
|
254
|
+
prism (~> 1.4)
|
|
255
|
+
rubocop-performance (1.26.1)
|
|
256
|
+
lint_roller (~> 1.1)
|
|
257
|
+
rubocop (>= 1.75.0, < 2.0)
|
|
258
|
+
rubocop-ast (>= 1.47.1, < 2.0)
|
|
259
|
+
rubocop-rails (2.34.2)
|
|
260
|
+
activesupport (>= 4.2.0)
|
|
261
|
+
lint_roller (~> 1.1)
|
|
262
|
+
rack (>= 1.1)
|
|
263
|
+
rubocop (>= 1.75.0, < 2.0)
|
|
264
|
+
rubocop-ast (>= 1.44.0, < 2.0)
|
|
265
|
+
rubocop-rails-omakase (1.1.0)
|
|
266
|
+
rubocop (>= 1.72)
|
|
267
|
+
rubocop-performance (>= 1.24)
|
|
268
|
+
rubocop-rails (>= 2.30)
|
|
269
|
+
ruby-progressbar (1.13.0)
|
|
270
|
+
ruby2_keywords (0.0.5)
|
|
271
|
+
securerandom (0.4.1)
|
|
272
|
+
simplecov (0.22.0)
|
|
273
|
+
docile (~> 1.1)
|
|
274
|
+
simplecov-html (~> 0.11)
|
|
275
|
+
simplecov_json_formatter (~> 0.1)
|
|
276
|
+
simplecov-html (0.13.2)
|
|
277
|
+
simplecov_json_formatter (0.1.4)
|
|
278
|
+
stringio (3.2.0)
|
|
279
|
+
thor (1.4.0)
|
|
280
|
+
timecop (0.9.10)
|
|
281
|
+
timeout (0.5.0)
|
|
282
|
+
tsort (0.2.0)
|
|
283
|
+
tzinfo (2.0.6)
|
|
284
|
+
concurrent-ruby (~> 1.0)
|
|
285
|
+
unicode-display_width (3.2.0)
|
|
286
|
+
unicode-emoji (~> 4.1)
|
|
287
|
+
unicode-emoji (4.1.0)
|
|
288
|
+
uri (1.1.1)
|
|
289
|
+
useragent (0.16.11)
|
|
290
|
+
webmock (3.26.1)
|
|
291
|
+
addressable (>= 2.8.0)
|
|
292
|
+
crack (>= 0.3.2)
|
|
293
|
+
hashdiff (>= 0.4.0, < 2.0.0)
|
|
294
|
+
websocket-driver (0.8.0)
|
|
295
|
+
base64
|
|
296
|
+
websocket-extensions (>= 0.1.0)
|
|
297
|
+
websocket-extensions (0.1.5)
|
|
298
|
+
zeitwerk (2.7.4)
|
|
299
|
+
|
|
300
|
+
PLATFORMS
|
|
301
|
+
aarch64-linux-gnu
|
|
302
|
+
aarch64-linux-musl
|
|
303
|
+
arm-linux-gnu
|
|
304
|
+
arm-linux-musl
|
|
305
|
+
arm64-darwin
|
|
306
|
+
x86_64-darwin
|
|
307
|
+
x86_64-linux-gnu
|
|
308
|
+
x86_64-linux-musl
|
|
309
|
+
|
|
310
|
+
DEPENDENCIES
|
|
311
|
+
brakeman (~> 7.1.1)
|
|
312
|
+
bundler (~> 2.7.2)
|
|
313
|
+
bundler-audit (~> 0.9.3)
|
|
314
|
+
minitest (~> 6.0.1)
|
|
315
|
+
minitest-focus (~> 1.4.0)
|
|
316
|
+
minitest-reporters (~> 1.7.1)
|
|
317
|
+
mocha (~> 3.0.1)
|
|
318
|
+
neon_sakura!
|
|
319
|
+
pry (~> 0.16.0)
|
|
320
|
+
rake (~> 13.3.1)
|
|
321
|
+
rubocop-rails-omakase (~> 1.1.0)
|
|
322
|
+
simplecov (~> 0.22.0)
|
|
323
|
+
timecop (~> 0.9.10)
|
|
324
|
+
webmock (~> 3.26.1)
|
|
325
|
+
|
|
326
|
+
BUNDLED WITH
|
|
327
|
+
2.7.2
|
data/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Jason Chalom
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|