summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
Diffstat (limited to 'man')
-rw-r--r--man/gemfile.5.ronn9
1 files changed, 4 insertions, 5 deletions
diff --git a/man/gemfile.5.ronn b/man/gemfile.5.ronn
index 9fe4176a30..4bb7c2df0d 100644
--- a/man/gemfile.5.ronn
+++ b/man/gemfile.5.ronn
@@ -310,14 +310,13 @@ Git repositories support a number of additional options.
* `branch`, `tag`, and `ref`:
You `MUST` only specify at most one of these options. The default
- is `:branch => "master"`
- * For example:
+ 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)