diff options
author | David RodrÃguez <deivid.rodriguez@riseup.net> | 2019-07-10 17:26:55 +0200 |
---|---|---|
committer | SHIBATA Hiroshi <hsbt@ruby-lang.org> | 2019-08-16 14:30:23 +0900 |
commit | f48a61fb46304d35043d013c8cf4539c5be1ecab (patch) | |
tree | 9ef047a4a3baf8e9f28f8fd0a6d6291f3e8a381e /man/gemfile.5 | |
parent | 8f28ae65a861ba714be824ea3122817abe9f862d (diff) | |
download | bundler-f48a61fb46304d35043d013c8cf4539c5be1ecab.tar.gz |
[bundler/bundler] Commit man pages to source control
This has the benefit that:
* Allows the installation of bundler as a default gem from rubygems to
include man pages.
* Removes the need to build man pages during our tests.
* Makes working with the manifest easier, because we only have source
controlled files, and not a mix of source control and generated files.
To make sure they never fall out of sync, we replace the previous
`man:build` CI task with a `man:check` task that makes sure the
generated man pages are up to date.
https://github.com/bundler/bundler/commit/23de1d0177
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 |