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.
Files changed (251) hide show
  1. checksums.yaml +7 -0
  2. data/.ai-reviewer/README.md +182 -0
  3. data/.ai-reviewer/ai-reviewer.sh +56 -0
  4. data/.ai-reviewer/build-system-prompt.sh +136 -0
  5. data/.ai-reviewer/extract-claude-sections.sh +32 -0
  6. data/.ai-reviewer/test-ai-reviewer.sh +40 -0
  7. data/.ai-reviewer-config.yml +190 -0
  8. data/.github/dependabot.yml +12 -0
  9. data/.github/settings.yml +70 -0
  10. data/.github/workflows/ai-pr-review-on-comment.yml +384 -0
  11. data/.github/workflows/ai-pr-review.yml +328 -0
  12. data/.github/workflows/license-check.yml +78 -0
  13. data/.github/workflows/lint.yml +79 -0
  14. data/.github/workflows/security.yml +131 -0
  15. data/.github/workflows/semgrep.yml +26 -0
  16. data/.github/workflows/test.yml +44 -0
  17. data/.gitignore +75 -0
  18. data/.rubocop.yml +33 -0
  19. data/.ruby-version +1 -0
  20. data/.simplecov +14 -0
  21. data/.stylelintignore +10 -0
  22. data/.stylelintrc.json +37 -0
  23. data/AGENTS.md +51 -0
  24. data/CHANGELOG.md +568 -0
  25. data/CLAUDE.md +632 -0
  26. data/Gemfile +8 -0
  27. data/Gemfile.lock +327 -0
  28. data/LICENSE +21 -0
  29. data/README.md +1209 -0
  30. data/Rakefile +25 -0
  31. data/app/assets/images/cherry_blossom.svg +1525 -0
  32. data/app/assets/images/cherry_blossom_tree.png +0 -0
  33. data/app/assets/images/prysm-icon.png +0 -0
  34. data/app/assets/stylesheets/base.css +29 -0
  35. data/app/assets/stylesheets/components.css +1652 -0
  36. data/app/assets/stylesheets/forms.css +152 -0
  37. data/app/assets/stylesheets/loading.css +145 -0
  38. data/app/assets/stylesheets/neon_sakura.css +40 -0
  39. data/app/assets/stylesheets/pagy-tailwind.css +120 -0
  40. data/app/assets/stylesheets/theme-default.css +40 -0
  41. data/app/assets/stylesheets/theme-green.css +84 -0
  42. data/app/assets/stylesheets/theme-purple.css +94 -0
  43. data/app/assets/stylesheets/theme-red.css +84 -0
  44. data/app/assets/stylesheets/utility-borders.css +29 -0
  45. data/app/assets/stylesheets/utility-colors.css +185 -0
  46. data/app/assets/stylesheets/utility-effects.css +123 -0
  47. data/app/assets/stylesheets/utility-gradients.css +158 -0
  48. data/app/assets/stylesheets/utility-layout.css +132 -0
  49. data/app/assets/stylesheets/utility-reset.css +13 -0
  50. data/app/assets/stylesheets/utility-responsive.css +145 -0
  51. data/app/assets/stylesheets/utility-sizing.css +99 -0
  52. data/app/assets/stylesheets/utility-spacing.css +174 -0
  53. data/app/assets/stylesheets/utility-typography.css +97 -0
  54. data/app/controllers/errors_controller.rb +120 -0
  55. data/app/controllers/style_guide_controller.rb +117 -0
  56. data/app/helpers/errors_helper.rb +12 -0
  57. data/app/helpers/neon_sakura/navbar_helper.rb +43 -0
  58. data/app/helpers/style_guide_helper.rb +36 -0
  59. data/app/javascript/neon_sakura/dropdown.js +22 -0
  60. data/app/javascript/neon_sakura/navbar.js +71 -0
  61. data/app/javascript/neon_sakura/theme_switcher.js +187 -0
  62. data/app/views/errors/show.html.erb +105 -0
  63. data/app/views/layouts/error.html.erb +19 -0
  64. data/app/views/layouts/mission_control/jobs/_application_selection.html.erb +14 -0
  65. data/app/views/layouts/mission_control/jobs/_navigation.html.erb +21 -0
  66. data/app/views/layouts/mission_control/jobs/application.html.erb +453 -0
  67. data/app/views/layouts/style_guide.html.erb +416 -0
  68. data/app/views/shared/_file_upload.html.erb +184 -0
  69. data/app/views/shared/_footer.html.erb +23 -0
  70. data/app/views/shared/_header.html.erb +42 -0
  71. data/app/views/shared/_navbar.html.erb +306 -0
  72. data/app/views/shared/_profile_image_selector.html.erb +165 -0
  73. data/app/views/shared/_theme_switcher.html.erb +64 -0
  74. data/app/views/shared/icons/_adjustments.html.erb +10 -0
  75. data/app/views/shared/icons/_alert_circle.html.erb +3 -0
  76. data/app/views/shared/icons/_alert_triangle.html.erb +3 -0
  77. data/app/views/shared/icons/_archive.html.erb +3 -0
  78. data/app/views/shared/icons/_arrow_down.html.erb +3 -0
  79. data/app/views/shared/icons/_arrow_left.html.erb +3 -0
  80. data/app/views/shared/icons/_arrow_up.html.erb +3 -0
  81. data/app/views/shared/icons/_arrows_pointing_in.html.erb +10 -0
  82. data/app/views/shared/icons/_arrows_pointing_out.html.erb +10 -0
  83. data/app/views/shared/icons/_artemis_logo.html.erb +26 -0
  84. data/app/views/shared/icons/_auth_banner.html.erb +1 -0
  85. data/app/views/shared/icons/_bars.html.erb +10 -0
  86. data/app/views/shared/icons/_bell.html.erb +3 -0
  87. data/app/views/shared/icons/_book.html.erb +3 -0
  88. data/app/views/shared/icons/_bookmark.html.erb +3 -0
  89. data/app/views/shared/icons/_box.html.erb +3 -0
  90. data/app/views/shared/icons/_brain.html.erb +3 -0
  91. data/app/views/shared/icons/_briefcase.html.erb +3 -0
  92. data/app/views/shared/icons/_calendar.html.erb +3 -0
  93. data/app/views/shared/icons/_camera.html.erb +4 -0
  94. data/app/views/shared/icons/_chart_bar.html.erb +3 -0
  95. data/app/views/shared/icons/_chart_line.html.erb +10 -0
  96. data/app/views/shared/icons/_chart_pie.html.erb +11 -0
  97. data/app/views/shared/icons/_chat.html.erb +3 -0
  98. data/app/views/shared/icons/_check.html.erb +3 -0
  99. data/app/views/shared/icons/_check_circle.html.erb +3 -0
  100. data/app/views/shared/icons/_cherry_blossom.html.erb +1516 -0
  101. data/app/views/shared/icons/_cherry_blossom_silhouette.html.erb +1016 -0
  102. data/app/views/shared/icons/_cherry_blossom_single_flower.html.erb +1125 -0
  103. data/app/views/shared/icons/_cherry_blossom_tree.html.erb +159 -0
  104. data/app/views/shared/icons/_chevron_down.html.erb +3 -0
  105. data/app/views/shared/icons/_chevron_right.html.erb +9 -0
  106. data/app/views/shared/icons/_clipboard.html.erb +3 -0
  107. data/app/views/shared/icons/_clock.html.erb +3 -0
  108. data/app/views/shared/icons/_close.html.erb +3 -0
  109. data/app/views/shared/icons/_cog.html.erb +4 -0
  110. data/app/views/shared/icons/_crop.html.erb +10 -0
  111. data/app/views/shared/icons/_crown.html.erb +3 -0
  112. data/app/views/shared/icons/_disc.html.erb +3 -0
  113. data/app/views/shared/icons/_download.html.erb +3 -0
  114. data/app/views/shared/icons/_dragonfly.html.erb +58 -0
  115. data/app/views/shared/icons/_duplicate.html.erb +4 -0
  116. data/app/views/shared/icons/_edit.html.erb +3 -0
  117. data/app/views/shared/icons/_envelope.html.erb +3 -0
  118. data/app/views/shared/icons/_eraser.html.erb +10 -0
  119. data/app/views/shared/icons/_external_link.html.erb +3 -0
  120. data/app/views/shared/icons/_eye.html.erb +4 -0
  121. data/app/views/shared/icons/_file_csv.html.erb +10 -0
  122. data/app/views/shared/icons/_file_export.html.erb +10 -0
  123. data/app/views/shared/icons/_file_image.html.erb +10 -0
  124. data/app/views/shared/icons/_file_import.html.erb +10 -0
  125. data/app/views/shared/icons/_file_question.html.erb +6 -0
  126. data/app/views/shared/icons/_film.html.erb +3 -0
  127. data/app/views/shared/icons/_filter.html.erb +3 -0
  128. data/app/views/shared/icons/_folder.html.erb +3 -0
  129. data/app/views/shared/icons/_folder_open.html.erb +3 -0
  130. data/app/views/shared/icons/_folder_plus.html.erb +3 -0
  131. data/app/views/shared/icons/_globe.html.erb +3 -0
  132. data/app/views/shared/icons/_google.html.erb +11 -0
  133. data/app/views/shared/icons/_heart.html.erb +3 -0
  134. data/app/views/shared/icons/_heart_broken.html.erb +11 -0
  135. data/app/views/shared/icons/_heart_pulse.html.erb +4 -0
  136. data/app/views/shared/icons/_history.html.erb +11 -0
  137. data/app/views/shared/icons/_home.html.erb +10 -0
  138. data/app/views/shared/icons/_image.html.erb +3 -0
  139. data/app/views/shared/icons/_inbox.html.erb +3 -0
  140. data/app/views/shared/icons/_info_circle.html.erb +10 -0
  141. data/app/views/shared/icons/_key.html.erb +3 -0
  142. data/app/views/shared/icons/_layers.html.erb +10 -0
  143. data/app/views/shared/icons/_lightbulb.html.erb +10 -0
  144. data/app/views/shared/icons/_lightning.html.erb +3 -0
  145. data/app/views/shared/icons/_list.html.erb +3 -0
  146. data/app/views/shared/icons/_lock.html.erb +3 -0
  147. data/app/views/shared/icons/_logout.html.erb +3 -0
  148. data/app/views/shared/icons/_magazine.html.erb +3 -0
  149. data/app/views/shared/icons/_magic.html.erb +3 -0
  150. data/app/views/shared/icons/_minus.html.erb +10 -0
  151. data/app/views/shared/icons/_mobile.html.erb +10 -0
  152. data/app/views/shared/icons/_moon.html.erb +3 -0
  153. data/app/views/shared/icons/_network.html.erb +10 -0
  154. data/app/views/shared/icons/_new_item_banner.html.erb +1 -0
  155. data/app/views/shared/icons/_ouroboros.html.erb +24 -0
  156. data/app/views/shared/icons/_package.html.erb +3 -0
  157. data/app/views/shared/icons/_palette.html.erb +3 -0
  158. data/app/views/shared/icons/_paper_plane.html.erb +10 -0
  159. data/app/views/shared/icons/_photo.html.erb +10 -0
  160. data/app/views/shared/icons/_play.html.erb +4 -0
  161. data/app/views/shared/icons/_plus.html.erb +3 -0
  162. data/app/views/shared/icons/_pocket.html.erb +11 -0
  163. data/app/views/shared/icons/_prysm-icon.html.erb +34 -0
  164. data/app/views/shared/icons/_prysm.html.erb +13 -0
  165. data/app/views/shared/icons/_pushbullet-1.html.erb +29 -0
  166. data/app/views/shared/icons/_pushbullet-2.html.erb +2 -0
  167. data/app/views/shared/icons/_puzzle.html.erb +10 -0
  168. data/app/views/shared/icons/_qrcode.html.erb +3 -0
  169. data/app/views/shared/icons/_question.html.erb +3 -0
  170. data/app/views/shared/icons/_receipt.html.erb +10 -0
  171. data/app/views/shared/icons/_redo.html.erb +3 -0
  172. data/app/views/shared/icons/_refresh.html.erb +3 -0
  173. data/app/views/shared/icons/_rocket.html.erb +10 -0
  174. data/app/views/shared/icons/_rss.html.erb +3 -0
  175. data/app/views/shared/icons/_save.html.erb +3 -0
  176. data/app/views/shared/icons/_search.html.erb +3 -0
  177. data/app/views/shared/icons/_search_minus.html.erb +10 -0
  178. data/app/views/shared/icons/_search_plus.html.erb +10 -0
  179. data/app/views/shared/icons/_server_error.html.erb +6 -0
  180. data/app/views/shared/icons/_share.html.erb +3 -0
  181. data/app/views/shared/icons/_shield_check.html.erb +3 -0
  182. data/app/views/shared/icons/_sign_in.html.erb +3 -0
  183. data/app/views/shared/icons/_spinner.html.erb +4 -0
  184. data/app/views/shared/icons/_star.html.erb +3 -0
  185. data/app/views/shared/icons/_store.html.erb +10 -0
  186. data/app/views/shared/icons/_sun.html.erb +3 -0
  187. data/app/views/shared/icons/_sync.html.erb +3 -0
  188. data/app/views/shared/icons/_table.html.erb +3 -0
  189. data/app/views/shared/icons/_tag.html.erb +3 -0
  190. data/app/views/shared/icons/_tags.html.erb +11 -0
  191. data/app/views/shared/icons/_tools.html.erb +4 -0
  192. data/app/views/shared/icons/_trash.html.erb +3 -0
  193. data/app/views/shared/icons/_undo.html.erb +3 -0
  194. data/app/views/shared/icons/_unlock.html.erb +3 -0
  195. data/app/views/shared/icons/_upload.html.erb +3 -0
  196. data/app/views/shared/icons/_user.html.erb +3 -0
  197. data/app/views/shared/icons/_user_circle.html.erb +10 -0
  198. data/app/views/shared/icons/_user_plus.html.erb +10 -0
  199. data/app/views/shared/icons/_video.html.erb +3 -0
  200. data/app/views/shared/icons/_wrench.html.erb +11 -0
  201. data/app/views/style_guide/index.html.erb +77 -0
  202. data/app/views/style_guide/sections/_alerts.html.erb +114 -0
  203. data/app/views/style_guide/sections/_badges.html.erb +78 -0
  204. data/app/views/style_guide/sections/_buttons.html.erb +130 -0
  205. data/app/views/style_guide/sections/_cards.html.erb +84 -0
  206. data/app/views/style_guide/sections/_colors.html.erb +106 -0
  207. data/app/views/style_guide/sections/_file_upload.html.erb +135 -0
  208. data/app/views/style_guide/sections/_forms.html.erb +129 -0
  209. data/app/views/style_guide/sections/_gradients.html.erb +253 -0
  210. data/app/views/style_guide/sections/_header.html.erb +12 -0
  211. data/app/views/style_guide/sections/_icons.html.erb +55 -0
  212. data/app/views/style_guide/sections/_images.html.erb +40 -0
  213. data/app/views/style_guide/sections/_loading.html.erb +242 -0
  214. data/app/views/style_guide/sections/_pagination.html.erb +212 -0
  215. data/app/views/style_guide/sections/_profile_components.html.erb +203 -0
  216. data/app/views/style_guide/sections/_theme_switcher.html.erb +72 -0
  217. data/app/views/style_guide/sections/_typography.html.erb +65 -0
  218. data/bin/ai-optimize-claude-md +540 -0
  219. data/bin/ai-review-local +345 -0
  220. data/bin/ai-security-review +585 -0
  221. data/bin/brakeman +9 -0
  222. data/bin/install-hooks +57 -0
  223. data/bin/rake +7 -0
  224. data/bin/rubocop +10 -0
  225. data/bin/verify_setup.rb +31 -0
  226. data/config/brakeman.ignore +28 -0
  227. data/config/initializers/neon_sakura.rb +15 -0
  228. data/config/license_overrides.yml +13 -0
  229. data/config/routes.rb +21 -0
  230. data/config/theme_mappings.yml +61 -0
  231. data/docs/PRYSM_ASSETS.md +210 -0
  232. data/docs/plans/extract_ai_reviewer_plan.md +151 -0
  233. data/docs/plans/neon_sakura_gem_plan.md +138 -0
  234. data/lib/neon_sakura/configuration.rb +94 -0
  235. data/lib/neon_sakura/engine.rb +48 -0
  236. data/lib/neon_sakura/icon_helper.rb +54 -0
  237. data/lib/neon_sakura/profile_helper.rb +24 -0
  238. data/lib/neon_sakura/stylesheet_helper.rb +40 -0
  239. data/lib/neon_sakura/theme_helper.rb +63 -0
  240. data/lib/neon_sakura/theme_importer.rb +112 -0
  241. data/lib/neon_sakura/version.rb +5 -0
  242. data/lib/neon_sakura.rb +13 -0
  243. data/neon_sakura.gemspec +50 -0
  244. data/package.json +18 -0
  245. data/scripts/git-hooks/post-merge +132 -0
  246. data/scripts/git-hooks/pre-commit +123 -0
  247. data/scripts/git-hooks/pre-push +127 -0
  248. data/scripts/license-check.rb +587 -0
  249. data/settings.local.json +12 -0
  250. data/yarn.lock +778 -0
  251. metadata +503 -0
metadata ADDED
@@ -0,0 +1,503 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: neon_sakura
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.4
5
+ platform: ruby
6
+ authors:
7
+ - trex22
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: rails
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: 8.0.0
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - ">="
24
+ - !ruby/object:Gem::Version
25
+ version: 8.0.0
26
+ - !ruby/object:Gem::Dependency
27
+ name: propshaft
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 1.3.1
33
+ type: :runtime
34
+ prerelease: false
35
+ version_requirements: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: 1.3.1
40
+ - !ruby/object:Gem::Dependency
41
+ name: brakeman
42
+ requirement: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: 7.1.1
47
+ type: :development
48
+ prerelease: false
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: 7.1.1
54
+ - !ruby/object:Gem::Dependency
55
+ name: bundler
56
+ requirement: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - "~>"
59
+ - !ruby/object:Gem::Version
60
+ version: 2.7.2
61
+ type: :development
62
+ prerelease: false
63
+ version_requirements: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - "~>"
66
+ - !ruby/object:Gem::Version
67
+ version: 2.7.2
68
+ - !ruby/object:Gem::Dependency
69
+ name: bundler-audit
70
+ requirement: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - "~>"
73
+ - !ruby/object:Gem::Version
74
+ version: 0.9.3
75
+ type: :development
76
+ prerelease: false
77
+ version_requirements: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - "~>"
80
+ - !ruby/object:Gem::Version
81
+ version: 0.9.3
82
+ - !ruby/object:Gem::Dependency
83
+ name: minitest
84
+ requirement: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - "~>"
87
+ - !ruby/object:Gem::Version
88
+ version: 6.0.1
89
+ type: :development
90
+ prerelease: false
91
+ version_requirements: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - "~>"
94
+ - !ruby/object:Gem::Version
95
+ version: 6.0.1
96
+ - !ruby/object:Gem::Dependency
97
+ name: minitest-focus
98
+ requirement: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - "~>"
101
+ - !ruby/object:Gem::Version
102
+ version: 1.4.0
103
+ type: :development
104
+ prerelease: false
105
+ version_requirements: !ruby/object:Gem::Requirement
106
+ requirements:
107
+ - - "~>"
108
+ - !ruby/object:Gem::Version
109
+ version: 1.4.0
110
+ - !ruby/object:Gem::Dependency
111
+ name: minitest-reporters
112
+ requirement: !ruby/object:Gem::Requirement
113
+ requirements:
114
+ - - "~>"
115
+ - !ruby/object:Gem::Version
116
+ version: 1.7.1
117
+ type: :development
118
+ prerelease: false
119
+ version_requirements: !ruby/object:Gem::Requirement
120
+ requirements:
121
+ - - "~>"
122
+ - !ruby/object:Gem::Version
123
+ version: 1.7.1
124
+ - !ruby/object:Gem::Dependency
125
+ name: mocha
126
+ requirement: !ruby/object:Gem::Requirement
127
+ requirements:
128
+ - - "~>"
129
+ - !ruby/object:Gem::Version
130
+ version: 3.0.1
131
+ type: :development
132
+ prerelease: false
133
+ version_requirements: !ruby/object:Gem::Requirement
134
+ requirements:
135
+ - - "~>"
136
+ - !ruby/object:Gem::Version
137
+ version: 3.0.1
138
+ - !ruby/object:Gem::Dependency
139
+ name: pry
140
+ requirement: !ruby/object:Gem::Requirement
141
+ requirements:
142
+ - - "~>"
143
+ - !ruby/object:Gem::Version
144
+ version: 0.16.0
145
+ type: :development
146
+ prerelease: false
147
+ version_requirements: !ruby/object:Gem::Requirement
148
+ requirements:
149
+ - - "~>"
150
+ - !ruby/object:Gem::Version
151
+ version: 0.16.0
152
+ - !ruby/object:Gem::Dependency
153
+ name: rake
154
+ requirement: !ruby/object:Gem::Requirement
155
+ requirements:
156
+ - - "~>"
157
+ - !ruby/object:Gem::Version
158
+ version: 13.3.1
159
+ type: :development
160
+ prerelease: false
161
+ version_requirements: !ruby/object:Gem::Requirement
162
+ requirements:
163
+ - - "~>"
164
+ - !ruby/object:Gem::Version
165
+ version: 13.3.1
166
+ - !ruby/object:Gem::Dependency
167
+ name: rubocop-rails-omakase
168
+ requirement: !ruby/object:Gem::Requirement
169
+ requirements:
170
+ - - "~>"
171
+ - !ruby/object:Gem::Version
172
+ version: 1.1.0
173
+ type: :development
174
+ prerelease: false
175
+ version_requirements: !ruby/object:Gem::Requirement
176
+ requirements:
177
+ - - "~>"
178
+ - !ruby/object:Gem::Version
179
+ version: 1.1.0
180
+ - !ruby/object:Gem::Dependency
181
+ name: simplecov
182
+ requirement: !ruby/object:Gem::Requirement
183
+ requirements:
184
+ - - "~>"
185
+ - !ruby/object:Gem::Version
186
+ version: 0.22.0
187
+ type: :development
188
+ prerelease: false
189
+ version_requirements: !ruby/object:Gem::Requirement
190
+ requirements:
191
+ - - "~>"
192
+ - !ruby/object:Gem::Version
193
+ version: 0.22.0
194
+ - !ruby/object:Gem::Dependency
195
+ name: timecop
196
+ requirement: !ruby/object:Gem::Requirement
197
+ requirements:
198
+ - - "~>"
199
+ - !ruby/object:Gem::Version
200
+ version: 0.9.10
201
+ type: :development
202
+ prerelease: false
203
+ version_requirements: !ruby/object:Gem::Requirement
204
+ requirements:
205
+ - - "~>"
206
+ - !ruby/object:Gem::Version
207
+ version: 0.9.10
208
+ - !ruby/object:Gem::Dependency
209
+ name: webmock
210
+ requirement: !ruby/object:Gem::Requirement
211
+ requirements:
212
+ - - "~>"
213
+ - !ruby/object:Gem::Version
214
+ version: 3.26.1
215
+ type: :development
216
+ prerelease: false
217
+ version_requirements: !ruby/object:Gem::Requirement
218
+ requirements:
219
+ - - "~>"
220
+ - !ruby/object:Gem::Version
221
+ version: 3.26.1
222
+ description: A gem that extracts the styling and theming components from my Rails
223
+ applications for reuse across multiple projects
224
+ email:
225
+ - contact@jasonchalom.com
226
+ executables: []
227
+ extensions: []
228
+ extra_rdoc_files: []
229
+ files:
230
+ - ".ai-reviewer-config.yml"
231
+ - ".ai-reviewer/README.md"
232
+ - ".ai-reviewer/ai-reviewer.sh"
233
+ - ".ai-reviewer/build-system-prompt.sh"
234
+ - ".ai-reviewer/extract-claude-sections.sh"
235
+ - ".ai-reviewer/test-ai-reviewer.sh"
236
+ - ".github/dependabot.yml"
237
+ - ".github/settings.yml"
238
+ - ".github/workflows/ai-pr-review-on-comment.yml"
239
+ - ".github/workflows/ai-pr-review.yml"
240
+ - ".github/workflows/license-check.yml"
241
+ - ".github/workflows/lint.yml"
242
+ - ".github/workflows/security.yml"
243
+ - ".github/workflows/semgrep.yml"
244
+ - ".github/workflows/test.yml"
245
+ - ".gitignore"
246
+ - ".rubocop.yml"
247
+ - ".ruby-version"
248
+ - ".simplecov"
249
+ - ".stylelintignore"
250
+ - ".stylelintrc.json"
251
+ - AGENTS.md
252
+ - CHANGELOG.md
253
+ - CLAUDE.md
254
+ - Gemfile
255
+ - Gemfile.lock
256
+ - LICENSE
257
+ - README.md
258
+ - Rakefile
259
+ - app/assets/images/cherry_blossom.svg
260
+ - app/assets/images/cherry_blossom_tree.png
261
+ - app/assets/images/prysm-icon.png
262
+ - app/assets/stylesheets/base.css
263
+ - app/assets/stylesheets/components.css
264
+ - app/assets/stylesheets/forms.css
265
+ - app/assets/stylesheets/loading.css
266
+ - app/assets/stylesheets/neon_sakura.css
267
+ - app/assets/stylesheets/pagy-tailwind.css
268
+ - app/assets/stylesheets/theme-default.css
269
+ - app/assets/stylesheets/theme-green.css
270
+ - app/assets/stylesheets/theme-purple.css
271
+ - app/assets/stylesheets/theme-red.css
272
+ - app/assets/stylesheets/utility-borders.css
273
+ - app/assets/stylesheets/utility-colors.css
274
+ - app/assets/stylesheets/utility-effects.css
275
+ - app/assets/stylesheets/utility-gradients.css
276
+ - app/assets/stylesheets/utility-layout.css
277
+ - app/assets/stylesheets/utility-reset.css
278
+ - app/assets/stylesheets/utility-responsive.css
279
+ - app/assets/stylesheets/utility-sizing.css
280
+ - app/assets/stylesheets/utility-spacing.css
281
+ - app/assets/stylesheets/utility-typography.css
282
+ - app/controllers/errors_controller.rb
283
+ - app/controllers/style_guide_controller.rb
284
+ - app/helpers/errors_helper.rb
285
+ - app/helpers/neon_sakura/navbar_helper.rb
286
+ - app/helpers/style_guide_helper.rb
287
+ - app/javascript/neon_sakura/dropdown.js
288
+ - app/javascript/neon_sakura/navbar.js
289
+ - app/javascript/neon_sakura/theme_switcher.js
290
+ - app/views/errors/show.html.erb
291
+ - app/views/layouts/error.html.erb
292
+ - app/views/layouts/mission_control/jobs/_application_selection.html.erb
293
+ - app/views/layouts/mission_control/jobs/_navigation.html.erb
294
+ - app/views/layouts/mission_control/jobs/application.html.erb
295
+ - app/views/layouts/style_guide.html.erb
296
+ - app/views/shared/_file_upload.html.erb
297
+ - app/views/shared/_footer.html.erb
298
+ - app/views/shared/_header.html.erb
299
+ - app/views/shared/_navbar.html.erb
300
+ - app/views/shared/_profile_image_selector.html.erb
301
+ - app/views/shared/_theme_switcher.html.erb
302
+ - app/views/shared/icons/_adjustments.html.erb
303
+ - app/views/shared/icons/_alert_circle.html.erb
304
+ - app/views/shared/icons/_alert_triangle.html.erb
305
+ - app/views/shared/icons/_archive.html.erb
306
+ - app/views/shared/icons/_arrow_down.html.erb
307
+ - app/views/shared/icons/_arrow_left.html.erb
308
+ - app/views/shared/icons/_arrow_up.html.erb
309
+ - app/views/shared/icons/_arrows_pointing_in.html.erb
310
+ - app/views/shared/icons/_arrows_pointing_out.html.erb
311
+ - app/views/shared/icons/_artemis_logo.html.erb
312
+ - app/views/shared/icons/_auth_banner.html.erb
313
+ - app/views/shared/icons/_bars.html.erb
314
+ - app/views/shared/icons/_bell.html.erb
315
+ - app/views/shared/icons/_book.html.erb
316
+ - app/views/shared/icons/_bookmark.html.erb
317
+ - app/views/shared/icons/_box.html.erb
318
+ - app/views/shared/icons/_brain.html.erb
319
+ - app/views/shared/icons/_briefcase.html.erb
320
+ - app/views/shared/icons/_calendar.html.erb
321
+ - app/views/shared/icons/_camera.html.erb
322
+ - app/views/shared/icons/_chart_bar.html.erb
323
+ - app/views/shared/icons/_chart_line.html.erb
324
+ - app/views/shared/icons/_chart_pie.html.erb
325
+ - app/views/shared/icons/_chat.html.erb
326
+ - app/views/shared/icons/_check.html.erb
327
+ - app/views/shared/icons/_check_circle.html.erb
328
+ - app/views/shared/icons/_cherry_blossom.html.erb
329
+ - app/views/shared/icons/_cherry_blossom_silhouette.html.erb
330
+ - app/views/shared/icons/_cherry_blossom_single_flower.html.erb
331
+ - app/views/shared/icons/_cherry_blossom_tree.html.erb
332
+ - app/views/shared/icons/_chevron_down.html.erb
333
+ - app/views/shared/icons/_chevron_right.html.erb
334
+ - app/views/shared/icons/_clipboard.html.erb
335
+ - app/views/shared/icons/_clock.html.erb
336
+ - app/views/shared/icons/_close.html.erb
337
+ - app/views/shared/icons/_cog.html.erb
338
+ - app/views/shared/icons/_crop.html.erb
339
+ - app/views/shared/icons/_crown.html.erb
340
+ - app/views/shared/icons/_disc.html.erb
341
+ - app/views/shared/icons/_download.html.erb
342
+ - app/views/shared/icons/_dragonfly.html.erb
343
+ - app/views/shared/icons/_duplicate.html.erb
344
+ - app/views/shared/icons/_edit.html.erb
345
+ - app/views/shared/icons/_envelope.html.erb
346
+ - app/views/shared/icons/_eraser.html.erb
347
+ - app/views/shared/icons/_external_link.html.erb
348
+ - app/views/shared/icons/_eye.html.erb
349
+ - app/views/shared/icons/_file_csv.html.erb
350
+ - app/views/shared/icons/_file_export.html.erb
351
+ - app/views/shared/icons/_file_image.html.erb
352
+ - app/views/shared/icons/_file_import.html.erb
353
+ - app/views/shared/icons/_file_question.html.erb
354
+ - app/views/shared/icons/_film.html.erb
355
+ - app/views/shared/icons/_filter.html.erb
356
+ - app/views/shared/icons/_folder.html.erb
357
+ - app/views/shared/icons/_folder_open.html.erb
358
+ - app/views/shared/icons/_folder_plus.html.erb
359
+ - app/views/shared/icons/_globe.html.erb
360
+ - app/views/shared/icons/_google.html.erb
361
+ - app/views/shared/icons/_heart.html.erb
362
+ - app/views/shared/icons/_heart_broken.html.erb
363
+ - app/views/shared/icons/_heart_pulse.html.erb
364
+ - app/views/shared/icons/_history.html.erb
365
+ - app/views/shared/icons/_home.html.erb
366
+ - app/views/shared/icons/_image.html.erb
367
+ - app/views/shared/icons/_inbox.html.erb
368
+ - app/views/shared/icons/_info_circle.html.erb
369
+ - app/views/shared/icons/_key.html.erb
370
+ - app/views/shared/icons/_layers.html.erb
371
+ - app/views/shared/icons/_lightbulb.html.erb
372
+ - app/views/shared/icons/_lightning.html.erb
373
+ - app/views/shared/icons/_list.html.erb
374
+ - app/views/shared/icons/_lock.html.erb
375
+ - app/views/shared/icons/_logout.html.erb
376
+ - app/views/shared/icons/_magazine.html.erb
377
+ - app/views/shared/icons/_magic.html.erb
378
+ - app/views/shared/icons/_minus.html.erb
379
+ - app/views/shared/icons/_mobile.html.erb
380
+ - app/views/shared/icons/_moon.html.erb
381
+ - app/views/shared/icons/_network.html.erb
382
+ - app/views/shared/icons/_new_item_banner.html.erb
383
+ - app/views/shared/icons/_ouroboros.html.erb
384
+ - app/views/shared/icons/_package.html.erb
385
+ - app/views/shared/icons/_palette.html.erb
386
+ - app/views/shared/icons/_paper_plane.html.erb
387
+ - app/views/shared/icons/_photo.html.erb
388
+ - app/views/shared/icons/_play.html.erb
389
+ - app/views/shared/icons/_plus.html.erb
390
+ - app/views/shared/icons/_pocket.html.erb
391
+ - app/views/shared/icons/_prysm-icon.html.erb
392
+ - app/views/shared/icons/_prysm.html.erb
393
+ - app/views/shared/icons/_pushbullet-1.html.erb
394
+ - app/views/shared/icons/_pushbullet-2.html.erb
395
+ - app/views/shared/icons/_puzzle.html.erb
396
+ - app/views/shared/icons/_qrcode.html.erb
397
+ - app/views/shared/icons/_question.html.erb
398
+ - app/views/shared/icons/_receipt.html.erb
399
+ - app/views/shared/icons/_redo.html.erb
400
+ - app/views/shared/icons/_refresh.html.erb
401
+ - app/views/shared/icons/_rocket.html.erb
402
+ - app/views/shared/icons/_rss.html.erb
403
+ - app/views/shared/icons/_save.html.erb
404
+ - app/views/shared/icons/_search.html.erb
405
+ - app/views/shared/icons/_search_minus.html.erb
406
+ - app/views/shared/icons/_search_plus.html.erb
407
+ - app/views/shared/icons/_server_error.html.erb
408
+ - app/views/shared/icons/_share.html.erb
409
+ - app/views/shared/icons/_shield_check.html.erb
410
+ - app/views/shared/icons/_sign_in.html.erb
411
+ - app/views/shared/icons/_spinner.html.erb
412
+ - app/views/shared/icons/_star.html.erb
413
+ - app/views/shared/icons/_store.html.erb
414
+ - app/views/shared/icons/_sun.html.erb
415
+ - app/views/shared/icons/_sync.html.erb
416
+ - app/views/shared/icons/_table.html.erb
417
+ - app/views/shared/icons/_tag.html.erb
418
+ - app/views/shared/icons/_tags.html.erb
419
+ - app/views/shared/icons/_tools.html.erb
420
+ - app/views/shared/icons/_trash.html.erb
421
+ - app/views/shared/icons/_undo.html.erb
422
+ - app/views/shared/icons/_unlock.html.erb
423
+ - app/views/shared/icons/_upload.html.erb
424
+ - app/views/shared/icons/_user.html.erb
425
+ - app/views/shared/icons/_user_circle.html.erb
426
+ - app/views/shared/icons/_user_plus.html.erb
427
+ - app/views/shared/icons/_video.html.erb
428
+ - app/views/shared/icons/_wrench.html.erb
429
+ - app/views/style_guide/index.html.erb
430
+ - app/views/style_guide/sections/_alerts.html.erb
431
+ - app/views/style_guide/sections/_badges.html.erb
432
+ - app/views/style_guide/sections/_buttons.html.erb
433
+ - app/views/style_guide/sections/_cards.html.erb
434
+ - app/views/style_guide/sections/_colors.html.erb
435
+ - app/views/style_guide/sections/_file_upload.html.erb
436
+ - app/views/style_guide/sections/_forms.html.erb
437
+ - app/views/style_guide/sections/_gradients.html.erb
438
+ - app/views/style_guide/sections/_header.html.erb
439
+ - app/views/style_guide/sections/_icons.html.erb
440
+ - app/views/style_guide/sections/_images.html.erb
441
+ - app/views/style_guide/sections/_loading.html.erb
442
+ - app/views/style_guide/sections/_pagination.html.erb
443
+ - app/views/style_guide/sections/_profile_components.html.erb
444
+ - app/views/style_guide/sections/_theme_switcher.html.erb
445
+ - app/views/style_guide/sections/_typography.html.erb
446
+ - bin/ai-optimize-claude-md
447
+ - bin/ai-review-local
448
+ - bin/ai-security-review
449
+ - bin/brakeman
450
+ - bin/install-hooks
451
+ - bin/rake
452
+ - bin/rubocop
453
+ - bin/verify_setup.rb
454
+ - config/brakeman.ignore
455
+ - config/initializers/neon_sakura.rb
456
+ - config/license_overrides.yml
457
+ - config/routes.rb
458
+ - config/theme_mappings.yml
459
+ - docs/PRYSM_ASSETS.md
460
+ - docs/plans/extract_ai_reviewer_plan.md
461
+ - docs/plans/neon_sakura_gem_plan.md
462
+ - lib/neon_sakura.rb
463
+ - lib/neon_sakura/configuration.rb
464
+ - lib/neon_sakura/engine.rb
465
+ - lib/neon_sakura/icon_helper.rb
466
+ - lib/neon_sakura/profile_helper.rb
467
+ - lib/neon_sakura/stylesheet_helper.rb
468
+ - lib/neon_sakura/theme_helper.rb
469
+ - lib/neon_sakura/theme_importer.rb
470
+ - lib/neon_sakura/version.rb
471
+ - neon_sakura.gemspec
472
+ - package.json
473
+ - scripts/git-hooks/post-merge
474
+ - scripts/git-hooks/pre-commit
475
+ - scripts/git-hooks/pre-push
476
+ - scripts/license-check.rb
477
+ - settings.local.json
478
+ - yarn.lock
479
+ homepage: https://github.com/trex22/neon_sakura
480
+ licenses:
481
+ - MIT
482
+ metadata:
483
+ source_code_uri: https://github.com/trex22/neon_sakura
484
+ changelog_uri: https://github.com/trex22/neon_sakura/blob/main/CHANGELOG.md
485
+ bug_tracker_uri: https://github.com/trex22/neon_sakura/issues
486
+ rdoc_options: []
487
+ require_paths:
488
+ - lib
489
+ required_ruby_version: !ruby/object:Gem::Requirement
490
+ requirements:
491
+ - - ">="
492
+ - !ruby/object:Gem::Version
493
+ version: 3.4.7
494
+ required_rubygems_version: !ruby/object:Gem::Requirement
495
+ requirements:
496
+ - - ">="
497
+ - !ruby/object:Gem::Version
498
+ version: '0'
499
+ requirements: []
500
+ rubygems_version: 4.0.3
501
+ specification_version: 4
502
+ summary: Shared styling and theming components for Rails applications
503
+ test_files: []