Removed the setup rake task to run bundler and replaced it with a shell script

This commit is contained in:
2023-07-06 11:49:48 -04:00
parent 7655b75410
commit b8bec03357
2 changed files with 6 additions and 7 deletions

6
bin/setup-dev.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
# Configure bundler to use local vendor path
bundle config set --local path 'vendor/bundle'
# Install gems
bundle install