From 56229c4e5d9856abdd39a51a5875a7d4d0076ce0 Mon Sep 17 00:00:00 2001 From: David Rodríguez Date: Fri, 26 Jul 2019 11:39:41 +0200 Subject: [bundler/bundler] Fix `git` options examples https://github.com/bundler/bundler/commit/bda0fa02c4 --- man/gemfile.5.ronn | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/man/gemfile.5.ronn b/man/gemfile.5.ronn index 41f1062fe1..4bb7c2df0d 100644 --- a/man/gemfile.5.ronn +++ b/man/gemfile.5.ronn @@ -312,11 +312,11 @@ Git repositories support a number of additional options. You `MUST` only specify at most one of these options. The default is `:branch => "master"`. For example: - git "https://github.com/rails/rails.git", :branch => "5-0-stable" do + gem "rails", :git => "https://github.com/rails/rails.git", :branch => "5-0-stable" - git "https://github.com/rails/rails.git", :tag => "v5.0.0" do + gem "rails", :git => "https://github.com/rails/rails.git", :tag => "v5.0.0" - git "https://github.com/rails/rails.git", :ref => "4aded" do + gem "rails", :git => "https://github.com/rails/rails.git", :ref => "4aded" * `submodules`: For reference, a [git submodule](https://git-scm.com/book/en/v2/Git-Tools-Submodules) -- cgit v1.2.3