Thomas Carr
Thomas Carr
Maybe something like this? ```ruby # acronyms.rb def apply_to(word, capitalize: true) if capitalize @rules[word.downcase] || word.capitalize else word end end ``` or as a one-liner ```ruby # acronyms.rb def apply_to(word,...
This does break the expectation on these tests, but I guess my question here is, aren't they strange assumptions on lower camelcase? The last two seem especially strange, I'm not...
@solnic / @flash-gordon, I wanted to check in on this. I'm running into a similar issue (where the APII am integrating with does not always return the full set of...
As a somewhat philosophical point, since external API schemas are out of the control of the API wrapper library, it might make more sense if all attributes were assumed optional,...
Is there any update on this? I have the same issue. On restart my dev environment user requires sudo with docker commands
@rcuhljr, so if you set either the UnsafeLegacyServerConnect or UnsafeLegacyRenegotiation as options in the openssl configuration, does that not automatically get loaded into ruby? I'm running into this issue where,...