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 ad82dc9 commit b88c670
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 2 deletions.
1 change: 1 addition & 0 deletions .rspec
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
--color
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
3 changes: 3 additions & 0 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
ruby 3.0.6
nodejs 16.15.0
yarn 1.22.19
6 changes: 5 additions & 1 deletion bin/rspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,8 @@
# shellcheck disable=SC2068
# SC2068: Double quote array expansions to avoid re-splitting elements.

bundle exec spring rspec $@
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 b88c670

Please sign in to comment.