From 07eb3d7d9cc72dc5d398ee67cd79ca6efa38777a Mon Sep 17 00:00:00 2001 From: Andrik Albuquerque Date: Thu, 11 Apr 2019 17:18:15 -0300 Subject: [PATCH] bundle: add backticks to Gemfile and Gemfile.lock (#2894) --- pages/common/bundle.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/common/bundle.md b/pages/common/bundle.md index 3b63b5549..d5143e742 100644 --- a/pages/common/bundle.md +++ b/pages/common/bundle.md @@ -2,15 +2,15 @@ > Dependency manager for the Ruby programming language. -- Install all gems defined in the gemfile expected in the working directory: +- Install all gems defined in the `Gemfile` expected in the working directory: `bundle install` -- Update all gems by the rules defined in the gemfile and regenerate gemfile.lock: +- Update all gems by the rules defined in the `Gemfile` and regenerate `Gemfile.lock`: `bundle update` -- Update one specific gem defined in the gemfile: +- Update one specific gem defined in the `Gemfile`: `bundle update --source {{gemname}}`