activeadmin_friendly_id_disabler 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/README.md +4 -0
- data/lib/activeadmin_friendly_id_disabler/version.rb +1 -1
- data/lib/activeadmin_friendly_id_disabler.rb +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 04f126a118422f028715c49077e7b27d54584f2fd9e165fe7bb5252519b8a15b
|
4
|
+
data.tar.gz: 655b90b647670f1225153a62601733684fcb0add5fe80c76c317fca7af0b621b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7a5bbb4263d13491599bcc450bedbeb9b199e116789888f9e7f46f96cdc1ca7a25c9bcf772629f75a7f797216404f358191ead82944739e90af0019042ec4b8b
|
7
|
+
data.tar.gz: 2ceeb8517c0ca0ff89dd3d2177d9c9f0e617a3522d5844158fe60b3412dae9bfec6dffcd7499682b9e76e6446debc3a19916288e56bbf6bc121cd58b5160aa6f
|
data/README.md
CHANGED
@@ -60,6 +60,10 @@ end
|
|
60
60
|
|
61
61
|
By default, the gem will automatically disable `FriendlyId` only for the duration of an action within ActiveAdmin controllers. If you need more granular control or need to disable `FriendlyId` in other parts of your application, consider implementing additional custom logic.
|
62
62
|
|
63
|
+
## Background and Acknowledgments
|
64
|
+
|
65
|
+
This gem was inspired by discussions around the need to selectively disable FriendlyId, as highlighted in [this GitHub issue](https://github.com/norman/friendly_id/issues/691). Special thanks to [Fabio Napoleoni](https://github.com/fabn) for contributing ideas that helped shape this solution.
|
66
|
+
|
63
67
|
## Contributing
|
64
68
|
|
65
69
|
Bug reports and pull requests are welcome on GitHub at [https://github.com/gordienko/activeadmin_friendly_id_disabler](https://github.com/gordienko/activeadmin_friendly_id_disabler).
|