Automate Dependency Updates
Learn about automating the dependency updates in our Rails application.
We'll cover the following...
Let’s automate dependency updates for our app by creating bin/update
. This will do a few things. First, it will run bundle update
. This command instructs Bundler to find the latest version of all dependencies that ...