-
What is the difference between using |
Beta Was this translation helpful? Give feedback.
Answered by
lsegal
May 14, 2020
Replies: 1 comment
-
Unfortunately using the |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
lsegal
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
--no-api
does not take a TAG argument (optparse makes this hard to show) and will ignore objects that do not have an@api
tag attached. It's equivalent to--api every --api other --api api --api used
. See specs for examples.--hide-api TAG
will hide objects for a particular API tag.Unfortunately using the
--[no-]
prefix in optparse does not allow you to take an argument afterward, hence the use of--hide-api
for that behavior.