-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Improve human readable fallback version of CLI help messages #3921
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CI failure should get fixed by ruby/ruby#3497. |
ruby-core fix was merged. I'll retry CI in 24h to make sure that github actions' ruby-head has picked up the fix. |
b6aac46
to
b67d2c2
Compare
This was referenced Sep 2, 2020
Merged
Since it's easier to update.
It makes it easier for replacing the txt versions, and also consistent since `man/gemfile.5.ronn` is already named with this criteria.
Make `map` actually do something useful.
Use the ronn sources as the human readable fallback.
b67d2c2
to
8795edc
Compare
PR rebased. Will merge after CI passes since I can only see upsides and it's a hard PR to keep up to date with the default branch. |
Thank you! |
deivid-rodriguez
added a commit
that referenced
this pull request
Oct 5, 2020
Improve human readable fallback version of CLI help messages (cherry picked from commit b7cabde)
deivid-rodriguez
added a commit
that referenced
this pull request
Oct 5, 2020
Improve human readable fallback version of CLI help messages (cherry picked from commit b7cabde)
deivid-rodriguez
added a commit
that referenced
this pull request
Oct 5, 2020
Improve human readable fallback version of CLI help messages (cherry picked from commit b7cabde)
deivid-rodriguez
added a commit
that referenced
this pull request
Oct 6, 2020
Improve human readable fallback version of CLI help messages (cherry picked from commit b7cabde)
deivid-rodriguez
added a commit
that referenced
this pull request
Oct 6, 2020
Improve human readable fallback version of CLI help messages (cherry picked from commit b7cabde)
deivid-rodriguez
added a commit
that referenced
this pull request
Oct 6, 2020
Improve human readable fallback version of CLI help messages (cherry picked from commit b7cabde)
hsbt
added a commit
to ruby/ruby
that referenced
this pull request
Oct 15, 2020
tnir
added a commit
to tnir/bundler-site
that referenced
this pull request
Jun 22, 2022
Dead links to source Git happen on both for v2.3 and earlier man pages. This regression has happened since 2020-09-04 with rubygems/rubygems#3921 rubygems/rubygems#3921 but most of them was resolved in PR 542. rubygems#542 Due to missing tags for Bundler 2.0.2 and 2.1.4 on GitHub, we need to link the latest patch versions available on GitHub. Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
tnir
added a commit
to tnir/bundler-site
that referenced
this pull request
Jun 23, 2022
Dead links to source Git happen on both for v2.3 and earlier man pages. This regression has happened since 2020-09-04 with rubygems/rubygems#3921 rubygems/rubygems#3921 but most of them was resolved in PR 542. rubygems#542 Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
tnir
added a commit
to tnir/bundler-site
that referenced
this pull request
Jun 23, 2022
This regression has happened since 2020-09-04 with rubygems/rubygems#3921 - rubygems/rubygems#3921 but most of them was resolved in PR 542. - rubygems#542 Links from each man page will be fixed in PR 615 apart from this - rubygems#615 Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
tnir
added a commit
to tnir/bundler-site
that referenced
this pull request
Jun 23, 2022
Dead links to source Git happen on both for v2.3 and earlier man pages. This regression has happened since 2020-09-04 with rubygems/rubygems#3921 rubygems/rubygems#3921 but most of them was resolved in PR 542. rubygems#542 Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
tnir
added a commit
to tnir/bundler-site
that referenced
this pull request
Jun 24, 2022
Dead links to source Git happen on both for v2.3 and earlier man pages. This regression has happened since 2020-09-04 with rubygems/rubygems#3921 rubygems/rubygems#3921 but most of them was resolved in PR 542. rubygems#542 Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
purecodecoach
added a commit
to purecodecoach/bundler-site
that referenced
this pull request
Jan 13, 2023
This regression has happened since 2020-09-04 with rubygems/rubygems#3921 - rubygems/rubygems#3921 but most of them was resolved in PR 542. - rubygems/bundler-site#542 Links from each man page will be fixed in PR 615 apart from this - rubygems/bundler-site#615 Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
purecodecoach
added a commit
to purecodecoach/bundler-site
that referenced
this pull request
Jan 13, 2023
Dead links to source Git happen on both for v2.3 and earlier man pages. This regression has happened since 2020-09-04 with rubygems/rubygems#3921 rubygems/rubygems#3921 but most of them was resolved in PR 542. rubygems/bundler-site#542 Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Generating the txt version of man pages with
groff
is inconvenient for contributors since:groff
versions.These pages are only built to be able to provide a human readable version of man pages as a fallback when
man
is not available.But we can use the original
.ronn
sources for that.This PR implements that, and I actually find the new output more readable, so I'm going to sell this as a documentation improvement 😄.
Before:
After:
Closes #3918.
Closes #3193 as a side effect from removing txt versions of man pages.
Tasks:
I will abide by the code of conduct.