What happens
In README.md, the "How to use" section instructs new contributors to install dependencies with:
Make sure you have [Ruby](https://www.ruby-lang.org/) 3.4+ and
[Bundler](https://bundler.io/) installed. Then:
bundle up
bundle exec rake
There is no bundle up subcommand. Running it produces Could not find command "up" and Bundler exits non-zero. The intended command is bundle install (first install) or bundle update (refresh).
A new contributor following the README literally will hit a hard failure on the very first instruction. Since swarm-template is, by name and purpose, the entry point for users creating their first Zerocracy swarm, this defect is hit on minute one of every adoption.
What should happen
Replace bundle up with the intended command:
bundle install
bundle exec rake
Result: the README's quick-start instructions actually work for a fresh checkout.
What happens
In
README.md, the "How to use" section instructs new contributors to install dependencies with:There is no
bundle upsubcommand. Running it producesCould not find command "up"and Bundler exits non-zero. The intended command isbundle install(first install) orbundle update(refresh).A new contributor following the README literally will hit a hard failure on the very first instruction. Since
swarm-templateis, by name and purpose, the entry point for users creating their first Zerocracy swarm, this defect is hit on minute one of every adoption.What should happen
Replace
bundle upwith the intended command:Result: the README's quick-start instructions actually work for a fresh checkout.