envied
envied copied to clipboard
Ensures presence and type of your app's ENV-variables (mirror)
Rails 6 depends on `thor ~> 1.0.0`, which caused envied to resolve to version `0.5.0`. This patch updates thor dependency to `~> 1.0.1` If you need me to add something...
I've added support for conditional variables using the syntax: ``` ruby conditional :foo do variable :bar end ``` This implements issue #13.
Our app was recently tripped up because a `uri` variable was set to `server.example.com` instead of `https://server.example.com` (as both can be parsed by `URI.parse`). We were using: ```ruby variable :SERVER_URL,...