6 lines
190 B
Bash
Executable File
6 lines
190 B
Bash
Executable File
#!/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
|