smug 0.1.4 → 0.1.5
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5f5f3be25154060d93776a4b74de4c9848761a44
|
4
|
+
data.tar.gz: ebab361ccadfdb1ae8f07216e34397da6c5713ba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 344137638ef29ff70a0b2ef90e6d28b956e8c954022c92f96f9b6c5a1ca4fdd0789a06ed26b69bad5d570cbd8051560ceee569beb344db9f28c7b04ff128432d
|
7
|
+
data.tar.gz: 784be452d3a8f3fdfa1654742ca0ace95d568c5c5c5960cdddee5a0f8a738dfe293f45f830fcb16e07a4a4cb790de9a0b923a915d3473e142879cc9dd47cdf0f
|
@@ -3,6 +3,6 @@
|
|
3
3
|
= link_to 'Home', admin_dashboard_path
|
4
4
|
= horizontal do
|
5
5
|
= nav class: 'navbar-right' do
|
6
|
-
- Smug::Plugin.all.each do |plugin|
|
6
|
+
- Smug::Plugin.all.select { |p| p.display_in_nav? }.each do |plugin|
|
7
7
|
= link_to plugin.model_name.human(count: 2),
|
8
8
|
[:admin, plugin.route_key]
|
data/lib/smug/plugin.rb
CHANGED
data/lib/smug/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: smug
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nick Bolt
|
@@ -295,6 +295,7 @@ files:
|
|
295
295
|
- app/assets/stylesheets/smug/admin/application.scss
|
296
296
|
- app/assets/stylesheets/smug/admin/list.scss
|
297
297
|
- app/assets/stylesheets/smug/admin/space.scss
|
298
|
+
- app/controllers/concerns/dashboard_inspection.rb
|
298
299
|
- app/controllers/concerns/model_inspection.rb
|
299
300
|
- app/controllers/concerns/route_inspection.rb
|
300
301
|
- app/controllers/smug/admin/base_controller.rb
|