Tim Morgan
Tim Morgan
- [ ] people are in no households by default - [ ] admins can add a person to a household - [ ] people can exist in more than...

It is possible to specify one or more "roles" for a group membership, e.g. "leader", "student", etc. These are just simple strings. Currently the only way to set these strings...
Currently, every sign up creates a new person and a new family record. It would be nice to give the user a button so they can request to join an...
In #590 I had to ignore a few warnings. They are commented with `// NOLINT FIXME` here: - https://github.com/natalie-lang/natalie/blob/746f03affae36a052e1755e685b5e4dea15669a4/src/integer.cpp#L295 - https://github.com/natalie-lang/natalie/blob/746f03affae36a052e1755e685b5e4dea15669a4/src/array_object.cpp#L1754 - https://github.com/natalie-lang/natalie/blob/746f03affae36a052e1755e685b5e4dea15669a4/src/env.cpp#L234 You can run clang-tidy locally with `rake...
Our main approach is to work on one spec from [ruby/spec](https://github.com/ruby/spec/tree/master/core/string) at a time, implementing as much of the spec as possible, then check it off the list: - [x]...
1. Remove "skip-test" comment from top of a `spec/core/array/pack/*_spec.rb` file. 2. Modify ArrayPacker and/or StringPacker to make the specs pass 3. Commit! (EASY! :laughing:) - [x] a_spec.rb - [x] at_spec.rb...
We currently have CI running a few files through Valgrind, but it would be better to integrate AddressSanitizer (supported by both gcc and clang) so we find bugs faster. Also,...