-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove version option from subcommands
- Loading branch information
1 parent
1bd3c89
commit 55b0f04
Showing
11 changed files
with
33 additions
and
66 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{name} {version} | ||
{authors} | ||
{description} | ||
sheldon 0.6.5 | ||
Ross MacArthur <[email protected]> | ||
Fast, configurable, shell plugin manager. | ||
|
||
USAGE: | ||
{name} [OPTIONS] <SUBCOMMAND> | ||
sheldon [OPTIONS] <SUBCOMMAND> | ||
|
||
OPTIONS: | ||
-q, --quiet Suppress any informational output | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
{name}-init {version} | ||
sheldon-init | ||
Initialize a new config file | ||
|
||
USAGE: | ||
{name} init [OPTIONS] | ||
sheldon init [OPTIONS] | ||
|
||
OPTIONS: | ||
--shell <SHELL> The type of shell, accepted values are: bash, zsh | ||
-h, --help Print help information | ||
-V, --version Print version information |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
{name}-lock {version} | ||
sheldon-lock | ||
Install the plugins sources and generate the lock file | ||
|
||
USAGE: | ||
{name} lock [OPTIONS] | ||
sheldon lock [OPTIONS] | ||
|
||
OPTIONS: | ||
--update Update all plugin sources | ||
--reinstall Reinstall all plugin sources | ||
-h, --help Print help information | ||
-V, --version Print version information |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
{name}-source {version} | ||
sheldon-source | ||
Generate and print out the script | ||
|
||
USAGE: | ||
{name} source [OPTIONS] | ||
sheldon source [OPTIONS] | ||
|
||
OPTIONS: | ||
--relock Regenerate the lock file | ||
--update Update all plugin sources (implies --relock) | ||
--reinstall Reinstall all plugin sources (implies --relock) | ||
-h, --help Print help information | ||
-V, --version Print version information |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
error: '{name}' requires a subcommand, but one was not provided | ||
error: 'sheldon' requires a subcommand, but one was not provided | ||
|
||
USAGE: | ||
{name} [OPTIONS] <SUBCOMMAND> | ||
sheldon [OPTIONS] <SUBCOMMAND> | ||
|
||
For more information try --help |