Automate Dependency Updates
Learn about automating the dependency updates in our Rails application.
We'll cover the following...
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 satisfy what is in Gemfile
.
If we’ve followed the policy above, that should give us the latest ...