Closed techgique closed 3 years ago
I checked the updates are working by running the Rails app locally as well as running rails test
on the command line to make sure tests still pass :+1:
Also now deployed on dev1 for testing: https://cdrhdev1.unl.edu/api/v1/ And upon quick glance apps using that seem to be working
Fyi, the RVM documentation reminded me that rvm @global do gem install bundler
will save us the hassle of having to run gem install bundler
for each gemset using a Ruby version :man_facepalming:
This is just done by manually changing
.ruby-version
for the first commit, runningcd .
so RVM picks up that you want to use a different version of Ruby,gem install bundler
so it has Bundler 2+, and then runningbundle update
so Bundler pulls the latest version of all the dependencies. This last step is what pulls in a newer version of Rails which addresses the mimemagic mess.