admin_suite 0.1.0 → 0.1.2
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/.gitignore +1 -0
- data/CHANGELOG.md +17 -0
- data/README.md +137 -1
- data/config/importmap.rb +1 -0
- data/config/routes.rb +29 -0
- data/docs/README.md +26 -0
- data/docs/actions.md +98 -0
- data/docs/configuration.md +198 -0
- data/docs/development.md +64 -0
- data/docs/docs_viewer.md +79 -0
- data/docs/fields.md +188 -0
- data/docs/installation.md +80 -0
- data/docs/portals.md +98 -0
- data/docs/releasing.md +38 -0
- data/docs/resources.md +237 -0
- data/docs/theming.md +63 -0
- data/docs/troubleshooting.md +50 -0
- data/lib/admin_suite/version.rb +1 -1
- data/test/dummy/log/test.log +109 -403
- data/test/dummy/tmp/local_secret.txt +1 -1
- metadata +22 -5
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
779b8d659160590188c0642593c35a5df6e84bf258fa58b6e8d5e8ccfa620a8c36e911e98a2736ebfd699b1359e726ab30c27ab8a6ef25ed10d9fadacaff451f
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: admin_suite
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- TechWright Labs
|
|
8
8
|
bindir: bin
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date:
|
|
10
|
+
date: 2026-02-07 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: rails
|
|
@@ -114,6 +114,7 @@ extensions: []
|
|
|
114
114
|
extra_rdoc_files: []
|
|
115
115
|
files:
|
|
116
116
|
- ".gitignore"
|
|
117
|
+
- CHANGELOG.md
|
|
117
118
|
- Gemfile
|
|
118
119
|
- LICENSE.txt
|
|
119
120
|
- README.md
|
|
@@ -165,6 +166,20 @@ files:
|
|
|
165
166
|
- app/views/admin_suite/shared/_toggle_cell.html.erb
|
|
166
167
|
- app/views/admin_suite/shared/_topbar.html.erb
|
|
167
168
|
- app/views/layouts/admin_suite/application.html.erb
|
|
169
|
+
- config/importmap.rb
|
|
170
|
+
- config/routes.rb
|
|
171
|
+
- docs/README.md
|
|
172
|
+
- docs/actions.md
|
|
173
|
+
- docs/configuration.md
|
|
174
|
+
- docs/development.md
|
|
175
|
+
- docs/docs_viewer.md
|
|
176
|
+
- docs/fields.md
|
|
177
|
+
- docs/installation.md
|
|
178
|
+
- docs/portals.md
|
|
179
|
+
- docs/releasing.md
|
|
180
|
+
- docs/resources.md
|
|
181
|
+
- docs/theming.md
|
|
182
|
+
- docs/troubleshooting.md
|
|
168
183
|
- lib/admin/base/action_executor.rb
|
|
169
184
|
- lib/admin/base/action_handler.rb
|
|
170
185
|
- lib/admin/base/filter_builder.rb
|
|
@@ -239,11 +254,13 @@ files:
|
|
|
239
254
|
- test/lib/markdown_renderer_test.rb
|
|
240
255
|
- test/lib/theme_palette_test.rb
|
|
241
256
|
- test/test_helper.rb
|
|
242
|
-
homepage: https://
|
|
257
|
+
homepage: https://github.com/techwright-lab/admin_suite
|
|
243
258
|
licenses:
|
|
244
259
|
- MIT
|
|
245
260
|
metadata:
|
|
246
261
|
rubygems_mfa_required: 'true'
|
|
262
|
+
source_code_uri: https://github.com/techwright-lab/admin_suite
|
|
263
|
+
changelog_uri: https://github.com/techwright-lab/admin_suite/blob/main/CHANGELOG.md
|
|
247
264
|
rdoc_options: []
|
|
248
265
|
require_paths:
|
|
249
266
|
- lib
|
|
@@ -258,7 +275,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
258
275
|
- !ruby/object:Gem::Version
|
|
259
276
|
version: '0'
|
|
260
277
|
requirements: []
|
|
261
|
-
rubygems_version: 3.6.
|
|
278
|
+
rubygems_version: 3.6.2
|
|
262
279
|
specification_version: 4
|
|
263
|
-
summary: Reusable admin suite engine
|
|
280
|
+
summary: Reusable admin suite engine
|
|
264
281
|
test_files: []
|