rails / thor

Thor is a toolkit for building powerful command-line interfaces.
http://whatisthor.com/
MIT License
5.14k stars 553 forks source link

Document the '--skip-' option for boolean options. #876

Closed andrewn617 closed 9 months ago

andrewn617 commented 9 months ago

When specifying a boolean option foo, Thor will accept --skip-foo as an options (the same as --no-foo). This behaviour was previously undocumented.

This PR updates the documentation in the repo and also the usage method to make this feature more discoverable.