Code Smell 207 - Dynamic Methods
TL;DR: Don't add dynamic behavior with metaprogramming
Problems
Readability
Maintainability
Harder to debug (The code is generated dynamically at runtime)
Security Issues (if the configuration file is not properly sanitized)
Single Responsibili...
maximilianocontieri.com2 min read