228982a0a8
- giant refactoring - add aliases and functions to ease work - apply linters / fixers / fmt to most files
6 lines
190 B
Bash
6 lines
190 B
Bash
#!/usr/bin/env bash
|
|
# Install bundler for managing ruby dependencies and Gemfile
|
|
echo "Installing bundler for managing ruby dependencies and Gemfile"
|
|
sudo gem install bundler
|
|
bundle install
|