Skip to content

Commit

Permalink
Update and add helper files and scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
kronn committed Dec 22, 2023
1 parent 8e1255e commit 9ea23a9
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.7.3
3.0.6
6 changes: 3 additions & 3 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
ruby 2.7.3
nodejs 14.18.1
yarn 1.22.17
ruby 3.0.6
nodejs 16.15.0
yarn 1.22.19
10 changes: 10 additions & 0 deletions bin/rspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/usr/bin/env bash

# shellcheck disable=SC2068
# SC2068: Double quote array expansions to avoid re-splitting elements.

if [[ $DISABLE_SPRING ]]; then
bundle exec rspec $@
else
bundle exec spring rspec $@
fi
7 changes: 7 additions & 0 deletions bin/wagon
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/usr/bin/env bash

set -euo pipefail
IFS=$'\n\t'

cd ../hitobito
bin/wagon $@
Empty file added config/environment.rb
Empty file.

0 comments on commit 9ea23a9

Please sign in to comment.