admin_suite 0.1.0 → 0.1.1
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/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 +18 -3
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
779b8d659160590188c0642593c35a5df6e84bf258fa58b6e8d5e8ccfa620a8c36e911e98a2736ebfd699b1359e726ab30c27ab8a6ef25ed10d9fadacaff451f
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- TechWright Labs
|
|
@@ -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,18 @@ 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
|
+
- docs/README.md
|
|
170
|
+
- docs/actions.md
|
|
171
|
+
- docs/configuration.md
|
|
172
|
+
- docs/development.md
|
|
173
|
+
- docs/docs_viewer.md
|
|
174
|
+
- docs/fields.md
|
|
175
|
+
- docs/installation.md
|
|
176
|
+
- docs/portals.md
|
|
177
|
+
- docs/releasing.md
|
|
178
|
+
- docs/resources.md
|
|
179
|
+
- docs/theming.md
|
|
180
|
+
- docs/troubleshooting.md
|
|
168
181
|
- lib/admin/base/action_executor.rb
|
|
169
182
|
- lib/admin/base/action_handler.rb
|
|
170
183
|
- lib/admin/base/filter_builder.rb
|
|
@@ -239,11 +252,13 @@ files:
|
|
|
239
252
|
- test/lib/markdown_renderer_test.rb
|
|
240
253
|
- test/lib/theme_palette_test.rb
|
|
241
254
|
- test/test_helper.rb
|
|
242
|
-
homepage: https://
|
|
255
|
+
homepage: https://github.com/techwright-lab/admin_suite
|
|
243
256
|
licenses:
|
|
244
257
|
- MIT
|
|
245
258
|
metadata:
|
|
246
259
|
rubygems_mfa_required: 'true'
|
|
260
|
+
source_code_uri: https://github.com/techwright-lab/admin_suite
|
|
261
|
+
changelog_uri: https://github.com/techwright-lab/admin_suite/blob/main/CHANGELOG.md
|
|
247
262
|
rdoc_options: []
|
|
248
263
|
require_paths:
|
|
249
264
|
- lib
|
|
@@ -258,7 +273,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
258
273
|
- !ruby/object:Gem::Version
|
|
259
274
|
version: '0'
|
|
260
275
|
requirements: []
|
|
261
|
-
rubygems_version: 3.6.
|
|
276
|
+
rubygems_version: 3.6.7
|
|
262
277
|
specification_version: 4
|
|
263
278
|
summary: Reusable admin suite engine for Gleania products.
|
|
264
279
|
test_files: []
|