Skip to content

Commit 60cb3b8

Browse files
committed
🎨 kettle-dev v1.1.20 re-template
1 parent 7eebf05 commit 60cb3b8

File tree

6 files changed

+161
-19
lines changed

6 files changed

+161
-19
lines changed

.env.local.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export FLOSS_FUNDING_DEBUG=false # extra logging to help diagnose issues (overri
1010
export AUTOGEN_FIXTURE_CLEANUP=false # autogenerated gem fixture cleanup after every RSpec run
1111
export GIT_HOOK_FOOTER_APPEND=false
1212
export GIT_HOOK_FOOTER_APPEND_DEBUG=false
13-
export GIT_HOOK_FOOTER_SENTINEL="⚡️ A message from a fellow meat-based-AI ⚡️"
13+
export GIT_HOOK_FOOTER_SENTINEL="⚡️ A message from a fellow meat-based-AI"
1414

1515
# Tokens used by ci:act and CI helpers for reading workflow/pipeline status via APIs
1616
# GitHub (either GITHUB_TOKEN or GH_TOKEN will be used; fine-grained recommended)

.junie/guidelines.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,13 @@ This document captures project-specific knowledge to streamline setup, testing,
9090
- If your code relies on environment variables that drive activation (see "Activation env vars" below), prefer using rspec-stubbed_env:
9191
- it does not support stubbing with blocks, but it does automatically clean up after itself.
9292
- outside the example:
93+
```ruby
9394
include_context 'with stubbed env'
95+
```
9496
- in a before hook, or in an example:
97+
```ruby
9598
stub_env("FLOSS_FUNDING_MY_NS" => "Free-as-in-beer")
96-
# example code continues
99+
```
97100
- If your spec needs to assert on console output, tag it with :check_output. By default, STDOUT is silenced.
98101
- Use Timecop for deterministic time-sensitive behavior as needed (require config/timecop is already done by spec_helper).
99102

0 commit comments

Comments
 (0)