Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable rubyconfig to work with array ENV variables
With this flag set environment variables with sequential suffixes can be used to set array Settings. For example, ``` export SETTINGS__BIB_RETRIEVER__DEFAULT__QUERY__0="cql.serverChoice='^C%{bib_id}'" export SETTINGS__BIB_RETRIEVER__DEFAULT__QUERY__1="cql.serverChoice exact '%{bib_id}'" export SETTINGS__BIB_RETRIEVER__DEFAULT__QUERY__2="cql.serverChoice='%{bib_id}'" ``` will result in ``` Settings.bib_retriever.default.query # ["cql.serverChoice='^C%{bib_id}'", "cql.serverChoice exact '%{bib_id}'", "cql.serverChoice='%{bib_id}'"] ```
- Loading branch information