Formatting updates

This commit is contained in:
Netscape Navigator 2020-03-15 13:12:26 -05:00
parent 46e1a659f6
commit f296a71890
2 changed files with 14 additions and 14 deletions

View File

@ -33,16 +33,16 @@ Eg: `pigeon identity show` becomes `./pigeon-cli show`.
- [X] pigeon bundle create
- [X] Use JSON.stringify() for string keys (instead of `inspect`)
- [X] Move literals into `Pigeon` module as constants, again.
- [ ] pigeon bundle consume
- [ ] pigeon message find
- [ ] pigeon message find-all
- [ ] Perform message verification at time of disk write
- [ ] pigeon message find-all (then refactor ::Bundle.create to use it!)
- [ ] pigeon bundle consume
- [ ] add parsers and validators for all CLI inputs
- [ ] Ensure all disks writes perform verification!
- [ ] Remove all `.current` "singletons" / hacks
- [ ] 100% documentation
- [ ] add parsers and validators for all CLI inputs
- [ ] Validate inputs for `Draft#[]=`.
- [ ] Update spec to look [like this](https://gist.github.com/RickCarlino/3ff4178db4a75fd135832c403cd313d4)
- [ ] Reduce whole darn repo into single module to aide portability
- [ ] Reduce whole darn repo into single module to aide portability. Maybe a second `::Support` module is OK.
- [ ] Add Lipmaa links like the Bamboo folks do.
- [ ] Publish a RubyGem
- [ ] Performance benchmarks

View File

@ -144,20 +144,20 @@ module Pigeon
"
end
desc "identity SUBCOMMAND ...ARGS", "Manage `.pigeon` identity"
subcommand "identity", Identity
desc "blob SUBCOMMAND ...ARGS", "Manage blob storage"
subcommand "blob", Blob
desc "peer SUBCOMMAND ...ARGS", "Manage blob storage"
subcommand "peer", Peer
desc "message SUBCOMMAND ...ARGS", "Manage messages"
subcommand "draft", PigeonDraft
desc "bundle SUBCOMMAND ...ARGS", "Consume and create bundle files"
subcommand "bundle", PigeonBundle
desc "draft SUBCOMMAND ...ARGS", "Manage drafts"
subcommand "draft", PigeonDraft
desc "identity SUBCOMMAND ...ARGS", "Manage `.pigeon` identity"
subcommand "identity", Identity
desc "peer SUBCOMMAND ...ARGS", "Manage blob storage"
subcommand "peer", Peer
end
end