.envrc
### External Testing Controls
export K_SOUP_COV_DO=true # Means you want code coverage
export K_SOUP_COV_FORMATTERS="html,tty"
export K_SOUP_COV_MIN_BRANCH=71 # Means you want to enforce X% branch coverage
export K_SOUP_COV_MIN_LINE=89 # Means you want to enforce X% line coverage
export K_SOUP_COV_MIN_HARD=true # Means you want the build to fail if the coverage thresholds are not met
# Available formats are html, xml, rcov, lcov, json, tty
export K_SOUP_COV_MULTI_FORMATTERS=true
export MAX_ROWS=5 # Setting for simplecov-console gem for tty output, limits to the worst N rows of bad coverage
export DEBUG=true # allow byebug statements
export RAILS_VERSION="~> 7.2"
export RAILS_MAJOR_MINOR=7.2