Chris Moran

Results 7 issues of Chris Moran

Added Direnv support. Updated product versions, library versions, gradle version, etc. **Note:** I understand that these updates may not be in line with your goals For example, I've changed the...

Fixes: https://github.com/ashald/EnvFile/issues/213 If EnvFile encounters a well-formed YAML configuration file that contains values other than literal strings, it will fail with a `ClassCastException`. This change should have no effect on...

The yaml spec supports strings with or without single or double quotes. The following are considered identical: ``` Sample String "Sample String" 'Sample String' ``` EnvFile can read yaml files...

Update the regexp to conditionally (naively?) change the current start,end delimiters for the regexp from the hard-coded '' to '{','}' when the compiler encounters a pattern that has syntax that...

In the conversation for #1204, @hperl commented: > From an implementation point of view, this would require: > > * adding support for this expression in the OPL parser >...

Configurable max evaluation cost for conditions over hard-coded value. ## Description The `DefaultMaxConditionEvaluationCost` is hard-coded at 100. This is the minimum allowable value in order to prevent API compatibility problems...

Note: I'm on a time-crunch and decided at the last minute to open a PR instead of "going it alone". I'll circle back and flesh this out more when I...