envied icon indicating copy to clipboard operation
envied copied to clipboard

Ensures presence and type of your app's ENV-variables (mirror)

Results 4 envied issues
Sort by recently updated
recently updated
newest added

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.

enhancement

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,...

bug