Pigeon-Ruby/README.md

54 lines
1.9 KiB
Markdown
Raw Normal View History

2019-10-10 00:32:54 +00:00
![](logo.png)
2019-09-22 02:30:03 +00:00
# Pigeon Ruby
A WIP pigeon protocol client.
# How to Use
This is a pre-release skeleton project. There is no gem yet. The gem will be released after we are fully compliant with the spec and have high test coverage stats.
To get started, clone this repo and run `./pigeon-cli` in place of `pigeon`.
Eg: `pigeon identity show` becomes `./pigeon-cli show`.
# Current Status
- [X] pigeon identity new
- [X] pigeon identity show
- [X] pigeon status
2019-09-22 02:31:01 +00:00
- [X] pigeon blob set
2019-09-22 11:00:19 +00:00
- [X] pigeon blob get
- [X] pigeon peer add
- [X] pigeon peer remove
- [X] pigeon peer block
2019-09-25 01:31:32 +00:00
- [X] pigeon peer all
- [X] 100% coverage
- [X] Convert `".sig.ed25519"` literals to constants
- [X] Rename numerous "pigeon message ..." commands to "pigeon draft ..."
2020-03-14 03:41:31 +00:00
- [X] pigeon draft create
- [X] pigeon draft append
- [X] pigeon draft current
- [X] pigeon draft save
- [X] pigeon bundle create
- [X] Use JSON.stringify() for string keys (instead of `inspect`)
- [X] Move literals into `Pigeon` module as constants, again.
2020-03-14 03:41:31 +00:00
- [ ] pigeon message find
2020-03-15 18:12:26 +00:00
- [ ] 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!
2020-03-14 03:41:31 +00:00
- [ ] Remove all `.current` "singletons" / hacks
2019-09-23 01:09:04 +00:00
- [ ] 100% documentation
2020-03-12 12:34:22 +00:00
- [ ] Validate inputs for `Draft#[]=`.
- [ ] Update spec to look [like this](https://gist.github.com/RickCarlino/3ff4178db4a75fd135832c403cd313d4)
2020-03-15 18:12:26 +00:00
- [ ] 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
- [ ] Performance tuning (DO THIS LAST!)
# Idea Bin
- [ ] Map/reduce plugin support for custom indices?
- [ ] Ability to add a blob in one swoop using File objects and `Message#[]=`, maybe?