not_pressed-core 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (157) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +41 -0
  3. data/README.md +285 -0
  4. data/app/assets/javascripts/not_pressed/lightbox.js +110 -0
  5. data/app/assets/stylesheets/not_pressed/admin.css +1161 -0
  6. data/app/assets/stylesheets/not_pressed/content.css +193 -0
  7. data/app/assets/stylesheets/not_pressed/gallery.css +117 -0
  8. data/app/assets/stylesheets/not_pressed/themes/starter.css +118 -0
  9. data/app/controllers/not_pressed/admin/base_controller.rb +21 -0
  10. data/app/controllers/not_pressed/admin/categories_controller.rb +53 -0
  11. data/app/controllers/not_pressed/admin/content_blocks_controller.rb +73 -0
  12. data/app/controllers/not_pressed/admin/dashboard_controller.rb +19 -0
  13. data/app/controllers/not_pressed/admin/forms_controller.rb +86 -0
  14. data/app/controllers/not_pressed/admin/media_attachments_controller.rb +94 -0
  15. data/app/controllers/not_pressed/admin/pages_controller.rb +122 -0
  16. data/app/controllers/not_pressed/admin/plugins_controller.rb +121 -0
  17. data/app/controllers/not_pressed/admin/settings_controller.rb +19 -0
  18. data/app/controllers/not_pressed/admin/tags_controller.rb +37 -0
  19. data/app/controllers/not_pressed/admin/themes_controller.rb +104 -0
  20. data/app/controllers/not_pressed/application_controller.rb +6 -0
  21. data/app/controllers/not_pressed/blog_controller.rb +83 -0
  22. data/app/controllers/not_pressed/form_submissions_controller.rb +70 -0
  23. data/app/controllers/not_pressed/pages_controller.rb +36 -0
  24. data/app/controllers/not_pressed/robots_controller.rb +34 -0
  25. data/app/controllers/not_pressed/sitemaps_controller.rb +12 -0
  26. data/app/helpers/not_pressed/admin_helper.rb +41 -0
  27. data/app/helpers/not_pressed/application_helper.rb +6 -0
  28. data/app/helpers/not_pressed/code_injection_helper.rb +29 -0
  29. data/app/helpers/not_pressed/content_helper.rb +13 -0
  30. data/app/helpers/not_pressed/form_helper.rb +80 -0
  31. data/app/helpers/not_pressed/media_helper.rb +28 -0
  32. data/app/helpers/not_pressed/seo_helper.rb +69 -0
  33. data/app/helpers/not_pressed/theme_helper.rb +42 -0
  34. data/app/mailers/not_pressed/application_mailer.rb +10 -0
  35. data/app/mailers/not_pressed/form_mailer.rb +15 -0
  36. data/app/models/concerns/not_pressed/sluggable.rb +43 -0
  37. data/app/models/not_pressed/category.rb +16 -0
  38. data/app/models/not_pressed/content_block.rb +46 -0
  39. data/app/models/not_pressed/form.rb +55 -0
  40. data/app/models/not_pressed/form_field.rb +23 -0
  41. data/app/models/not_pressed/form_submission.rb +19 -0
  42. data/app/models/not_pressed/media_attachment.rb +68 -0
  43. data/app/models/not_pressed/page.rb +182 -0
  44. data/app/models/not_pressed/page_version.rb +15 -0
  45. data/app/models/not_pressed/setting.rb +20 -0
  46. data/app/models/not_pressed/tag.rb +15 -0
  47. data/app/models/not_pressed/tagging.rb +12 -0
  48. data/app/plugins/not_pressed/analytics_plugin.rb +106 -0
  49. data/app/plugins/not_pressed/callout_block_plugin.rb +43 -0
  50. data/app/themes/not_pressed/starter_theme.rb +26 -0
  51. data/app/views/layouts/not_pressed/admin.html.erb +745 -0
  52. data/app/views/layouts/not_pressed/application.html.erb +12 -0
  53. data/app/views/layouts/not_pressed/page.html.erb +22 -0
  54. data/app/views/not_pressed/admin/categories/index.html.erb +58 -0
  55. data/app/views/not_pressed/admin/content_blocks/_block.html.erb +18 -0
  56. data/app/views/not_pressed/admin/content_blocks/_block_picker.html.erb +32 -0
  57. data/app/views/not_pressed/admin/content_blocks/create.turbo_stream.erb +3 -0
  58. data/app/views/not_pressed/admin/content_blocks/destroy.turbo_stream.erb +1 -0
  59. data/app/views/not_pressed/admin/content_blocks/editors/_callout.html.erb +38 -0
  60. data/app/views/not_pressed/admin/content_blocks/editors/_code.html.erb +26 -0
  61. data/app/views/not_pressed/admin/content_blocks/editors/_divider.html.erb +4 -0
  62. data/app/views/not_pressed/admin/content_blocks/editors/_form.html.erb +16 -0
  63. data/app/views/not_pressed/admin/content_blocks/editors/_gallery.html.erb +75 -0
  64. data/app/views/not_pressed/admin/content_blocks/editors/_heading.html.erb +26 -0
  65. data/app/views/not_pressed/admin/content_blocks/editors/_html.html.erb +13 -0
  66. data/app/views/not_pressed/admin/content_blocks/editors/_image.html.erb +56 -0
  67. data/app/views/not_pressed/admin/content_blocks/editors/_quote.html.erb +24 -0
  68. data/app/views/not_pressed/admin/content_blocks/editors/_text.html.erb +28 -0
  69. data/app/views/not_pressed/admin/content_blocks/editors/_video.html.erb +25 -0
  70. data/app/views/not_pressed/admin/dashboard/index.html.erb +60 -0
  71. data/app/views/not_pressed/admin/forms/_field_row.html.erb +33 -0
  72. data/app/views/not_pressed/admin/forms/_form.html.erb +75 -0
  73. data/app/views/not_pressed/admin/forms/edit.html.erb +1 -0
  74. data/app/views/not_pressed/admin/forms/index.html.erb +32 -0
  75. data/app/views/not_pressed/admin/forms/new.html.erb +1 -0
  76. data/app/views/not_pressed/admin/forms/submissions.html.erb +34 -0
  77. data/app/views/not_pressed/admin/media_attachments/_media_card.html.erb +21 -0
  78. data/app/views/not_pressed/admin/media_attachments/_picker.html.erb +19 -0
  79. data/app/views/not_pressed/admin/media_attachments/edit.html.erb +57 -0
  80. data/app/views/not_pressed/admin/media_attachments/index.html.erb +48 -0
  81. data/app/views/not_pressed/admin/pages/_form.html.erb +177 -0
  82. data/app/views/not_pressed/admin/pages/_page_tree_node.html.erb +32 -0
  83. data/app/views/not_pressed/admin/pages/edit.html.erb +69 -0
  84. data/app/views/not_pressed/admin/pages/index.html.erb +21 -0
  85. data/app/views/not_pressed/admin/pages/new.html.erb +1 -0
  86. data/app/views/not_pressed/admin/pages/preview.html.erb +17 -0
  87. data/app/views/not_pressed/admin/plugins/_settings_form.html.erb +59 -0
  88. data/app/views/not_pressed/admin/plugins/index.html.erb +48 -0
  89. data/app/views/not_pressed/admin/plugins/show.html.erb +54 -0
  90. data/app/views/not_pressed/admin/settings/code_injection.html.erb +21 -0
  91. data/app/views/not_pressed/admin/shared/_breadcrumbs.html.erb +14 -0
  92. data/app/views/not_pressed/admin/shared/_flash.html.erb +7 -0
  93. data/app/views/not_pressed/admin/shared/_modal.html.erb +9 -0
  94. data/app/views/not_pressed/admin/shared/_sidebar.html.erb +18 -0
  95. data/app/views/not_pressed/admin/tags/index.html.erb +52 -0
  96. data/app/views/not_pressed/admin/themes/index.html.erb +60 -0
  97. data/app/views/not_pressed/admin/themes/show.html.erb +66 -0
  98. data/app/views/not_pressed/blog/_post_card.html.erb +24 -0
  99. data/app/views/not_pressed/blog/feed.rss.builder +22 -0
  100. data/app/views/not_pressed/blog/index.html.erb +56 -0
  101. data/app/views/not_pressed/blog/show.html.erb +41 -0
  102. data/app/views/not_pressed/form_mailer/submission_notification.text.erb +8 -0
  103. data/app/views/not_pressed/pages/show.html.erb +4 -0
  104. data/app/views/themes/starter/layouts/not_pressed/default.html.erb +36 -0
  105. data/app/views/themes/starter/layouts/not_pressed/full_width.html.erb +36 -0
  106. data/app/views/themes/starter/layouts/not_pressed/sidebar.html.erb +41 -0
  107. data/config/routes.rb +81 -0
  108. data/db/migrate/20260310000001_create_not_pressed_pages.rb +20 -0
  109. data/db/migrate/20260310000002_create_not_pressed_content_blocks.rb +17 -0
  110. data/db/migrate/20260310000003_create_not_pressed_media_attachments.rb +14 -0
  111. data/db/migrate/20260310000004_add_content_type_to_not_pressed_pages.rb +8 -0
  112. data/db/migrate/20260310000005_add_publishing_fields_to_not_pressed_pages.rb +8 -0
  113. data/db/migrate/20260310000006_create_not_pressed_page_versions.rb +16 -0
  114. data/db/migrate/20260310000007_add_settings_fields_to_not_pressed_pages.rb +11 -0
  115. data/db/migrate/20260311000001_create_not_pressed_forms.rb +42 -0
  116. data/db/migrate/20260311000002_add_seo_fields_to_not_pressed_pages.rb +10 -0
  117. data/db/migrate/20260311000003_add_code_injection_to_not_pressed_pages.rb +8 -0
  118. data/db/migrate/20260311000004_create_not_pressed_settings.rb +14 -0
  119. data/db/migrate/20260312000001_create_not_pressed_categories.rb +16 -0
  120. data/db/migrate/20260312000002_create_not_pressed_tags.rb +15 -0
  121. data/db/migrate/20260312000003_create_not_pressed_taggings.rb +14 -0
  122. data/db/migrate/20260312000004_add_category_id_to_not_pressed_pages.rb +7 -0
  123. data/lib/generators/not_pressed/install/install_generator.rb +52 -0
  124. data/lib/generators/not_pressed/install/templates/initializer.rb.tt +89 -0
  125. data/lib/generators/not_pressed/install/templates/seeds.rb.tt +131 -0
  126. data/lib/generators/not_pressed/plugin/plugin_generator.rb +37 -0
  127. data/lib/generators/not_pressed/plugin/templates/plugin.rb.tt +23 -0
  128. data/lib/not_pressed/admin/authentication.rb +48 -0
  129. data/lib/not_pressed/admin/menu_registry.rb +100 -0
  130. data/lib/not_pressed/configuration.rb +77 -0
  131. data/lib/not_pressed/content_type.rb +23 -0
  132. data/lib/not_pressed/content_type_builder.rb +51 -0
  133. data/lib/not_pressed/content_type_registry.rb +45 -0
  134. data/lib/not_pressed/engine.rb +132 -0
  135. data/lib/not_pressed/hooks.rb +166 -0
  136. data/lib/not_pressed/navigation/builder.rb +148 -0
  137. data/lib/not_pressed/navigation/menu.rb +54 -0
  138. data/lib/not_pressed/navigation/menu_item.rb +33 -0
  139. data/lib/not_pressed/navigation/node.rb +45 -0
  140. data/lib/not_pressed/navigation/partial_parser.rb +96 -0
  141. data/lib/not_pressed/navigation/route_inspector.rb +98 -0
  142. data/lib/not_pressed/navigation.rb +6 -0
  143. data/lib/not_pressed/plugin.rb +354 -0
  144. data/lib/not_pressed/plugin_importer.rb +133 -0
  145. data/lib/not_pressed/plugin_manager.rb +196 -0
  146. data/lib/not_pressed/plugin_packager.rb +129 -0
  147. data/lib/not_pressed/rendering/block_renderer.rb +222 -0
  148. data/lib/not_pressed/rendering/renderer_registry.rb +154 -0
  149. data/lib/not_pressed/rendering.rb +8 -0
  150. data/lib/not_pressed/seo/sitemap_builder.rb +61 -0
  151. data/lib/not_pressed/theme.rb +191 -0
  152. data/lib/not_pressed/theme_importer.rb +133 -0
  153. data/lib/not_pressed/theme_packager.rb +180 -0
  154. data/lib/not_pressed/theme_registry.rb +123 -0
  155. data/lib/not_pressed/version.rb +5 -0
  156. data/lib/not_pressed.rb +65 -0
  157. metadata +258 -0
metadata ADDED
@@ -0,0 +1,258 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: not_pressed-core
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - NotPressed Contributors
8
+ bindir: bin
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'
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'
26
+ - !ruby/object:Gem::Dependency
27
+ name: importmap-rails
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - "~>"
31
+ - !ruby/object:Gem::Version
32
+ version: '2.0'
33
+ type: :runtime
34
+ prerelease: false
35
+ version_requirements: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '2.0'
40
+ - !ruby/object:Gem::Dependency
41
+ name: csv
42
+ requirement: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: '3.0'
47
+ type: :runtime
48
+ prerelease: false
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: '3.0'
54
+ - !ruby/object:Gem::Dependency
55
+ name: rubyzip
56
+ requirement: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - "~>"
59
+ - !ruby/object:Gem::Version
60
+ version: '2.3'
61
+ type: :runtime
62
+ prerelease: false
63
+ version_requirements: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - "~>"
66
+ - !ruby/object:Gem::Version
67
+ version: '2.3'
68
+ description: not_pressed-core is the foundational engine behind NotPressed, a fully
69
+ open-source, batteries-included CMS for Rails 8. It provides hierarchical pages,
70
+ a block-based content editor, automatic navigation discovery from routes and view
71
+ partials, a media library backed by Active Storage, a pluggable admin panel with
72
+ configurable auth, and a content type registry — all built on Hotwire with zero
73
+ external JS dependencies.
74
+ executables: []
75
+ extensions: []
76
+ extra_rdoc_files: []
77
+ files:
78
+ - LICENSE.txt
79
+ - README.md
80
+ - app/assets/javascripts/not_pressed/lightbox.js
81
+ - app/assets/stylesheets/not_pressed/admin.css
82
+ - app/assets/stylesheets/not_pressed/content.css
83
+ - app/assets/stylesheets/not_pressed/gallery.css
84
+ - app/assets/stylesheets/not_pressed/themes/starter.css
85
+ - app/controllers/not_pressed/admin/base_controller.rb
86
+ - app/controllers/not_pressed/admin/categories_controller.rb
87
+ - app/controllers/not_pressed/admin/content_blocks_controller.rb
88
+ - app/controllers/not_pressed/admin/dashboard_controller.rb
89
+ - app/controllers/not_pressed/admin/forms_controller.rb
90
+ - app/controllers/not_pressed/admin/media_attachments_controller.rb
91
+ - app/controllers/not_pressed/admin/pages_controller.rb
92
+ - app/controllers/not_pressed/admin/plugins_controller.rb
93
+ - app/controllers/not_pressed/admin/settings_controller.rb
94
+ - app/controllers/not_pressed/admin/tags_controller.rb
95
+ - app/controllers/not_pressed/admin/themes_controller.rb
96
+ - app/controllers/not_pressed/application_controller.rb
97
+ - app/controllers/not_pressed/blog_controller.rb
98
+ - app/controllers/not_pressed/form_submissions_controller.rb
99
+ - app/controllers/not_pressed/pages_controller.rb
100
+ - app/controllers/not_pressed/robots_controller.rb
101
+ - app/controllers/not_pressed/sitemaps_controller.rb
102
+ - app/helpers/not_pressed/admin_helper.rb
103
+ - app/helpers/not_pressed/application_helper.rb
104
+ - app/helpers/not_pressed/code_injection_helper.rb
105
+ - app/helpers/not_pressed/content_helper.rb
106
+ - app/helpers/not_pressed/form_helper.rb
107
+ - app/helpers/not_pressed/media_helper.rb
108
+ - app/helpers/not_pressed/seo_helper.rb
109
+ - app/helpers/not_pressed/theme_helper.rb
110
+ - app/mailers/not_pressed/application_mailer.rb
111
+ - app/mailers/not_pressed/form_mailer.rb
112
+ - app/models/concerns/not_pressed/sluggable.rb
113
+ - app/models/not_pressed/category.rb
114
+ - app/models/not_pressed/content_block.rb
115
+ - app/models/not_pressed/form.rb
116
+ - app/models/not_pressed/form_field.rb
117
+ - app/models/not_pressed/form_submission.rb
118
+ - app/models/not_pressed/media_attachment.rb
119
+ - app/models/not_pressed/page.rb
120
+ - app/models/not_pressed/page_version.rb
121
+ - app/models/not_pressed/setting.rb
122
+ - app/models/not_pressed/tag.rb
123
+ - app/models/not_pressed/tagging.rb
124
+ - app/plugins/not_pressed/analytics_plugin.rb
125
+ - app/plugins/not_pressed/callout_block_plugin.rb
126
+ - app/themes/not_pressed/starter_theme.rb
127
+ - app/views/layouts/not_pressed/admin.html.erb
128
+ - app/views/layouts/not_pressed/application.html.erb
129
+ - app/views/layouts/not_pressed/page.html.erb
130
+ - app/views/not_pressed/admin/categories/index.html.erb
131
+ - app/views/not_pressed/admin/content_blocks/_block.html.erb
132
+ - app/views/not_pressed/admin/content_blocks/_block_picker.html.erb
133
+ - app/views/not_pressed/admin/content_blocks/create.turbo_stream.erb
134
+ - app/views/not_pressed/admin/content_blocks/destroy.turbo_stream.erb
135
+ - app/views/not_pressed/admin/content_blocks/editors/_callout.html.erb
136
+ - app/views/not_pressed/admin/content_blocks/editors/_code.html.erb
137
+ - app/views/not_pressed/admin/content_blocks/editors/_divider.html.erb
138
+ - app/views/not_pressed/admin/content_blocks/editors/_form.html.erb
139
+ - app/views/not_pressed/admin/content_blocks/editors/_gallery.html.erb
140
+ - app/views/not_pressed/admin/content_blocks/editors/_heading.html.erb
141
+ - app/views/not_pressed/admin/content_blocks/editors/_html.html.erb
142
+ - app/views/not_pressed/admin/content_blocks/editors/_image.html.erb
143
+ - app/views/not_pressed/admin/content_blocks/editors/_quote.html.erb
144
+ - app/views/not_pressed/admin/content_blocks/editors/_text.html.erb
145
+ - app/views/not_pressed/admin/content_blocks/editors/_video.html.erb
146
+ - app/views/not_pressed/admin/dashboard/index.html.erb
147
+ - app/views/not_pressed/admin/forms/_field_row.html.erb
148
+ - app/views/not_pressed/admin/forms/_form.html.erb
149
+ - app/views/not_pressed/admin/forms/edit.html.erb
150
+ - app/views/not_pressed/admin/forms/index.html.erb
151
+ - app/views/not_pressed/admin/forms/new.html.erb
152
+ - app/views/not_pressed/admin/forms/submissions.html.erb
153
+ - app/views/not_pressed/admin/media_attachments/_media_card.html.erb
154
+ - app/views/not_pressed/admin/media_attachments/_picker.html.erb
155
+ - app/views/not_pressed/admin/media_attachments/edit.html.erb
156
+ - app/views/not_pressed/admin/media_attachments/index.html.erb
157
+ - app/views/not_pressed/admin/pages/_form.html.erb
158
+ - app/views/not_pressed/admin/pages/_page_tree_node.html.erb
159
+ - app/views/not_pressed/admin/pages/edit.html.erb
160
+ - app/views/not_pressed/admin/pages/index.html.erb
161
+ - app/views/not_pressed/admin/pages/new.html.erb
162
+ - app/views/not_pressed/admin/pages/preview.html.erb
163
+ - app/views/not_pressed/admin/plugins/_settings_form.html.erb
164
+ - app/views/not_pressed/admin/plugins/index.html.erb
165
+ - app/views/not_pressed/admin/plugins/show.html.erb
166
+ - app/views/not_pressed/admin/settings/code_injection.html.erb
167
+ - app/views/not_pressed/admin/shared/_breadcrumbs.html.erb
168
+ - app/views/not_pressed/admin/shared/_flash.html.erb
169
+ - app/views/not_pressed/admin/shared/_modal.html.erb
170
+ - app/views/not_pressed/admin/shared/_sidebar.html.erb
171
+ - app/views/not_pressed/admin/tags/index.html.erb
172
+ - app/views/not_pressed/admin/themes/index.html.erb
173
+ - app/views/not_pressed/admin/themes/show.html.erb
174
+ - app/views/not_pressed/blog/_post_card.html.erb
175
+ - app/views/not_pressed/blog/feed.rss.builder
176
+ - app/views/not_pressed/blog/index.html.erb
177
+ - app/views/not_pressed/blog/show.html.erb
178
+ - app/views/not_pressed/form_mailer/submission_notification.text.erb
179
+ - app/views/not_pressed/pages/show.html.erb
180
+ - app/views/themes/starter/layouts/not_pressed/default.html.erb
181
+ - app/views/themes/starter/layouts/not_pressed/full_width.html.erb
182
+ - app/views/themes/starter/layouts/not_pressed/sidebar.html.erb
183
+ - config/routes.rb
184
+ - db/migrate/20260310000001_create_not_pressed_pages.rb
185
+ - db/migrate/20260310000002_create_not_pressed_content_blocks.rb
186
+ - db/migrate/20260310000003_create_not_pressed_media_attachments.rb
187
+ - db/migrate/20260310000004_add_content_type_to_not_pressed_pages.rb
188
+ - db/migrate/20260310000005_add_publishing_fields_to_not_pressed_pages.rb
189
+ - db/migrate/20260310000006_create_not_pressed_page_versions.rb
190
+ - db/migrate/20260310000007_add_settings_fields_to_not_pressed_pages.rb
191
+ - db/migrate/20260311000001_create_not_pressed_forms.rb
192
+ - db/migrate/20260311000002_add_seo_fields_to_not_pressed_pages.rb
193
+ - db/migrate/20260311000003_add_code_injection_to_not_pressed_pages.rb
194
+ - db/migrate/20260311000004_create_not_pressed_settings.rb
195
+ - db/migrate/20260312000001_create_not_pressed_categories.rb
196
+ - db/migrate/20260312000002_create_not_pressed_tags.rb
197
+ - db/migrate/20260312000003_create_not_pressed_taggings.rb
198
+ - db/migrate/20260312000004_add_category_id_to_not_pressed_pages.rb
199
+ - lib/generators/not_pressed/install/install_generator.rb
200
+ - lib/generators/not_pressed/install/templates/initializer.rb.tt
201
+ - lib/generators/not_pressed/install/templates/seeds.rb.tt
202
+ - lib/generators/not_pressed/plugin/plugin_generator.rb
203
+ - lib/generators/not_pressed/plugin/templates/plugin.rb.tt
204
+ - lib/not_pressed.rb
205
+ - lib/not_pressed/admin/authentication.rb
206
+ - lib/not_pressed/admin/menu_registry.rb
207
+ - lib/not_pressed/configuration.rb
208
+ - lib/not_pressed/content_type.rb
209
+ - lib/not_pressed/content_type_builder.rb
210
+ - lib/not_pressed/content_type_registry.rb
211
+ - lib/not_pressed/engine.rb
212
+ - lib/not_pressed/hooks.rb
213
+ - lib/not_pressed/navigation.rb
214
+ - lib/not_pressed/navigation/builder.rb
215
+ - lib/not_pressed/navigation/menu.rb
216
+ - lib/not_pressed/navigation/menu_item.rb
217
+ - lib/not_pressed/navigation/node.rb
218
+ - lib/not_pressed/navigation/partial_parser.rb
219
+ - lib/not_pressed/navigation/route_inspector.rb
220
+ - lib/not_pressed/plugin.rb
221
+ - lib/not_pressed/plugin_importer.rb
222
+ - lib/not_pressed/plugin_manager.rb
223
+ - lib/not_pressed/plugin_packager.rb
224
+ - lib/not_pressed/rendering.rb
225
+ - lib/not_pressed/rendering/block_renderer.rb
226
+ - lib/not_pressed/rendering/renderer_registry.rb
227
+ - lib/not_pressed/seo/sitemap_builder.rb
228
+ - lib/not_pressed/theme.rb
229
+ - lib/not_pressed/theme_importer.rb
230
+ - lib/not_pressed/theme_packager.rb
231
+ - lib/not_pressed/theme_registry.rb
232
+ - lib/not_pressed/version.rb
233
+ homepage: https://github.com/Cherdenko/not_pressed-core
234
+ licenses:
235
+ - NPL-1.0
236
+ metadata:
237
+ homepage_uri: https://github.com/Cherdenko/not_pressed-core
238
+ source_code_uri: https://github.com/Cherdenko/not_pressed-core
239
+ changelog_uri: https://github.com/Cherdenko/not_pressed-core/blob/main/CHANGELOG.md
240
+ rdoc_options: []
241
+ require_paths:
242
+ - lib
243
+ required_ruby_version: !ruby/object:Gem::Requirement
244
+ requirements:
245
+ - - ">="
246
+ - !ruby/object:Gem::Version
247
+ version: '3.2'
248
+ required_rubygems_version: !ruby/object:Gem::Requirement
249
+ requirements:
250
+ - - ">="
251
+ - !ruby/object:Gem::Version
252
+ version: '0'
253
+ requirements: []
254
+ rubygems_version: 3.7.2
255
+ specification_version: 4
256
+ summary: Core engine for the NotPressed CMS — a drop-in, open-source CMS for Rails
257
+ 8
258
+ test_files: []