Ruby has Integer(...) and Float(...), but does it have Boolean(…) for things like:

Boolean(ENV[“SOME_FLAG”])

What's the Ruby idiom here?

@getajobmike I’m also a big fan of Array()
@veganstraightedge @getajobmike Array() has caught me out a few times with Array(Time.now). Hence I always rely on Array.wrap when ActiveSupport land.