git clone ...
cd ...
bundle install
- create wordle_cli.rb and bin/wordle
- change permissions of bin/wordle(
chmod 777 bin/wordle
) - call wordle_cli from bin/wordle and pass ARGV capture
- ARGV is basically the array of inputs from the command line
bin/wordle
bin/wordle help hello
bin/wordle hello world
- set up a basic dictionary
- change the wordle CLI to take guesses using say/ask
- show results
- word must be in the list of words
- player can retry as many times as possible on invalid words
- player limited to retry 6 times on valid word failures
- display guess with colors if a letter matches
- extract and clean up code a bit
- dictionary file
- document options and accept them with fallback
- file parsing
- clean up code
- show all letters and their current status
- add specs?