Improving the bundle config (1) man page and web page #7533
Closed
dogweather
started this conversation in
Ideas
Replies: 1 comment 5 replies
-
Thank you. Yes, documentation improvements are always welcome! First thing I'd fix is any contradictory information, and then I'd focus on other improvements. Can you point out where you saw the following?
|
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
User Story
As an application developer, I want to run
bundle install
in CI, skipping installation ofproduction
anddevelopment
groups.I know that the existing way things were done (
bundle install --without ...
) is deprecated, so I need to learn the new syntax.What I expected
Docs on the website that I could read/browse within a minute or two, to just learn the new syntax.
What I saw
install
page, advising to useconfig
.config
page, advising to useinstall
orcache
for per-app settings (which is what the deprecated syntax does, if I'm right.)without
syntax onconfig
that seem to conflict with each other.I couldn't figure out how the sections are related. I ended up just installing everything with
bundle install
because of the doc sections that seemed to conflict.What I propose
I think this page could use a lot of help. I'd like to start a series of small PRs with gradual improvements.
For starters, I'd fix—or clarify—the
without
syntax. Currently, the page has this in one spot:and this in another:
Next, I'd add an Examples section containing the common use case in my user story. I have more ideas.
Thanks! Just checking if a PR would be welcomed.
Beta Was this translation helpful? Give feedback.
All reactions