Skip to content

Commit bf46d9c

Browse files
committed
🔧 Improved integration with direnv for development
1 parent ebc5d2a commit bf46d9c

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

.envrc

+27
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# Run any command in this library's bin/ without the bin/ prefix!
2+
PATH_add bin
3+
4+
# Only add things to this file that should be shared with the team.
5+
6+
# **dotenv** (See end of file for .env.local integration)
7+
# .env would override anything in this file, if enabled.
8+
# .env is a DOCKER standard, and if we use it, it would be in deployed, or DOCKER, environments.
9+
# Override and customize anything below in your own .env.local
10+
# If you are using dotenv and not direnv,
11+
# copy the following `export` statements to your own .env file.
12+
13+
### General Ruby ###
14+
# Turn off Ruby Warnings about deprecated code
15+
# export RUBYOPT="-W0"
16+
117
### External Testing Controls
218
export K_SOUP_COV_DO=true # Means you want code coverage
319
# Available formats are html, xml, rcov, lcov, json, tty
@@ -9,3 +25,14 @@ export K_SOUP_COV_MIN_HARD=true # Means you want the build to fail if the covera
925
export K_SOUP_COV_MULTI_FORMATTERS=true
1026
export MAX_ROWS=5 # Setting for simplecov-console gem for tty output, limits to the worst N rows of bad coverage
1127
export DEBUG=true # allow byebug statements
28+
29+
# Internal Debugging Controls
30+
export DEBUG=false # do not allow byebug statements (override in .env.local)
31+
32+
# .env would override anything in this file, if `dotenv` is uncommented below.
33+
# .env is a DOCKER standard, and if we use it, it would be in deployed, or DOCKER, environments,
34+
# and that is why we generally want to leave it commented out.
35+
# dotenv
36+
37+
# .env.local will override anything in this file.
38+
dotenv_if_exists .env.local

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Fixed
1111
### Removed
1212

13+
## 2.0.2 - 2024-09-20
14+
### Added
15+
- Improved integration with direnv for development
16+
1317
## 2.0.1 - 2024-09-05
1418
### Added
1519
- CHANGELOG.md

0 commit comments

Comments
 (0)