diff options
Diffstat (limited to 'man/gemfile.5')
-rw-r--r-- | man/gemfile.5 | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/man/gemfile.5 b/man/gemfile.5 index fbe214e0e2..884a1c5cd2 100644 --- a/man/gemfile.5 +++ b/man/gemfile.5 @@ -1,7 +1,7 @@ .\" generated with Ronn/v0.7.3 .\" http://github.com/rtomayko/ronn/tree/0.7.3 . -.TH "GEMFILE" "5" "April 2019" "" "" +.TH "GEMFILE" "5" "August 2019" "" "" . .SH "NAME" \fBGemfile\fR \- A format for describing gem dependencies for Ruby programs @@ -409,19 +409,16 @@ Git repositories support a number of additional options\. . .TP \fBbranch\fR, \fBtag\fR, and \fBref\fR -You \fBMUST\fR only specify at most one of these options\. The default is \fB:branch => "master"\fR -. -.TP -For example: +You \fBMUST\fR only specify at most one of these options\. The default is \fB:branch => "master"\fR\. For example: . .IP -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" . .IP -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" . .IP -git "https://github\.com/rails/rails\.git", :ref => "4aded" do +gem "rails", :git => "https://github\.com/rails/rails\.git", :ref => "4aded" . .TP \fBsubmodules\fR |