sunitparekh / data-anonymization

Want to use production data for testing, data-anonymization can help you.
MIT License
459 stars 92 forks source link

Fix clashing class variable names #82

Closed purinkle closed 1 year ago

purinkle commented 1 year ago

Before, after upgrading to Ruby 3.1, we saw DataAnon::Utils::Logging's class variable clashed. Projects using the gem would complain that it was overtaking @@logger. We fixed the clashing variable name by renaming it to @@utils_logger.

Closes #79