base_editing_bootstrap 0.10.0 → 0.10.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/app/controllers/base_editing_controller.rb +1 -1
- data/lib/base_editing_bootstrap/VERSION +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0cfab325e65eaeb13a6e34182d3c1a151c2d017ef22b6ad738018f8371c9ad91
|
4
|
+
data.tar.gz: 73ea49a506e054334cb49990a3b5cd6acbae01914ff1d6432715d2239f39968b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 71569182d6f892535f8a780e09d4fbf842e042ba23b365f650761d8913d033abc1b703e4d4219b1bc10f0c6de5110debed48b4078619957aee25be0cbec2ef66
|
7
|
+
data.tar.gz: 8c7211b8e0342d014870df332e469697f7d7253f5e7fac39e8c72bdc6be13a90d3bc78d7dd7d55840795b2016f724b92998911dc07a9917024ee0c966b07e6a9
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,12 @@
|
|
2
2
|
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
|
3
3
|
|
4
4
|
- - -
|
5
|
+
## 0.10.1 - 2024-07-25
|
6
|
+
#### Bug Fixes
|
7
|
+
- Change from controller_name to controller_path (#3) - (8b123a4) - Jury Ghidinelli
|
8
|
+
|
9
|
+
- - -
|
10
|
+
|
5
11
|
## 0.10.0 - 2024-06-26
|
6
12
|
#### Features
|
7
13
|
- Add sort configuration per controller - (0cca665) - Marino Bonetti
|
@@ -86,7 +86,7 @@ class BaseEditingController < RestrictedAreaController
|
|
86
86
|
|
87
87
|
def base_class
|
88
88
|
return @_base_class if @_base_class
|
89
|
-
controller =
|
89
|
+
controller = controller_path
|
90
90
|
modello = controller.singularize.camelize.safe_constantize
|
91
91
|
logger.debug { "Editazione del controller:#{controller} per modello: #{modello.to_s}" }
|
92
92
|
raise "Non riesco a restituire la classe base per il controller #{controller}" if modello.nil?
|
@@ -1 +1 @@
|
|
1
|
-
0.10.
|
1
|
+
0.10.1
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: base_editing_bootstrap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.10.
|
4
|
+
version: 0.10.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marino Bonetti
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-07-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|