Geoff Hubbard
Geoff Hubbard
The order of exercises within the exercises array of config.json is significant. The documentation: https://github.com/exercism/docs/blob/master/language-tracks/configuration/exercises.md should be updated to mention this.
There are 6 subdirectories of this repository. * about Seems to cover what the project is about and an overview of the components. That I understand. But what is the...
Should we create stub files for exercises? These would be empty or partially complete solution files. For example the "hello-world" exercise requires that the `hello_world.rb` file exists. I think this...
Many of the solutions submitted would fail this test: ``` def test_array_with_nils assert_equal [nil, nil, nil], [1,nil,2,nil,3,nil].keep(&:nil?) end ``` Should we include it in the tests?
Following on from the discussion on an exercism.io PR: https://github.com/exercism/exercism.io/pull/3114 The current xruby Rubocop configuration is too strict. Which Rubocop options are important here?
When I first start the app, I worked out I needed to put in my API key, did that and hit save, I'm still on the configuration screen. What do...
Play a full game. Rewind to the start. Redo the moves - everything works. Rewind to the start. Rotate the board. Redo the moves - Nothing happens. Expected behavior: The...
In the canonical data for the "say" problem: https://github.com/exercism/x-common/blob/master/exercises/say/canonical-data.json * The descriptions should be descriptive. In most cases the description is the same as the output. ``` { "description": "zero",...
There is a json schema definition for the `canoncial-data.json` file. https://github.com/exercism/problem-specifications/blob/master/canonical-schema.json However this still allows for arbitrary keys containing spaces. These keys are often used for specifying test input arguments....