Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ENV deletes keys on []= with non-string values.
ENV is like a hash but it's not a hash. `ENV['x'] = nil` will remove the 'x' key. It's magic: ✨ ```ruby ENV["x"] = "true" => "true" ENV.keys.grep(/x/) => ["x"] ENV["x"] = nil => nil ENV.keys.grep(/x/) => [] ``` Cleans up the change in #5266
- Loading branch information