summaryrefslogtreecommitdiff
path: root/man/bundle-exec.ronn
diff options
context:
space:
mode:
authorHiro Asari <asari.ruby@gmail.com>2018-05-17 21:52:08 -0400
committerHiro Asari <asari.ruby@gmail.com>2018-05-17 22:06:57 -0400
commit2e7a0ea035a12cf5dfc6664058e1490f94b3d819 (patch)
treee5b316d4a4dc42cadbf29340b8fc06abeadca4a6 /man/bundle-exec.ronn
parent0c5d3b8c1f391aa5175321675ecd91ee6a1f231b (diff)
downloadbundler-2e7a0ea035a12cf5dfc6664058e1490f94b3d819.tar.gz
Fix man page links
With markup [`bundle platform(1)`][bundle-platform(1)] ronn creates this HTML fragment <dt><a href="bundle-platform.html"><code>bundle platform(1)</code></a></dt><dd><p>Display platform compatibility information</p></dd> At the same time, it generates HTML file `bundle-platform.1.html` based on the man page section, and this results in certain inter-man-page links 404. We resolve this inconsistency by spelling out the href attributes.
Diffstat (limited to 'man/bundle-exec.ronn')
-rw-r--r--man/bundle-exec.ronn4
1 files changed, 2 insertions, 2 deletions
diff --git a/man/bundle-exec.ronn b/man/bundle-exec.ronn
index 7b63cc7b47..aa680f4c5d 100644
--- a/man/bundle-exec.ronn
+++ b/man/bundle-exec.ronn
@@ -12,7 +12,7 @@ This command executes the command, making all gems specified in the
Essentially, if you would normally have run something like
`rspec spec/my_spec.rb`, and you want to use the gems specified
-in the [`Gemfile(5)`][Gemfile(5)] and installed via [bundle install(1)][bundle-install(1)], you
+in the [`Gemfile(5)`][Gemfile(5)] and installed via [bundle install(1)](bundle-install.1.html), you
should run `bundle exec rspec spec/my_spec.rb`.
Note that `bundle exec` does not require that an executable is
@@ -27,7 +27,7 @@ available on your shell's `$PATH`.
## BUNDLE INSTALL --BINSTUBS
-If you use the `--binstubs` flag in [bundle install(1)][bundle-install(1)], Bundler will
+If you use the `--binstubs` flag in [bundle install(1)](bundle-install.1.html), Bundler will
automatically create a directory (which defaults to `app_root/bin`)
containing all of the executables available from gems in the bundle.