Update README.md

This commit is contained in:
James 2024-11-01 15:43:52 -05:00
parent c05c3d3a89
commit 57462f98fc

View file

@ -46,7 +46,10 @@ Run the bundle install command from the project's root directory
``` ```
sudo apt install ruby ruby-bundler ruby-dev gcc pkgconf make g++ sudo apt install ruby ruby-bundler ruby-dev gcc pkgconf make g++
bundle config set --local path 'vendor/bundle' echo 'gem: --no-document' >> ~/.gemrc
sudo cp ~/.gemrc /root/
bundle config set --global path 'vendor/bundle'
sudo cp -r .bundle /root/
cd my-project cd my-project
bundle install bundle install
@ -61,7 +64,8 @@ sudo apt install ruby ruby-dev gcc pkgconf make g++
echo 'gem: --no-document' >> ~/.gemrc echo 'gem: --no-document' >> ~/.gemrc
sudo cp ~/.gemrc /root/ sudo cp ~/.gemrc /root/
sudo gem install bundler sudo gem install bundler
bundle config set --local path 'vendor/bundle' bundle config set --global path 'vendor/bundle'
sudo cp -r .bundle /root/
cd my-project cd my-project
bundle install bundle install