From baab4ce64fa55666d10fdd45e47adba549b5dbb0 Mon Sep 17 00:00:00 2001 From: Erik Schierboom Date: Tue, 25 Oct 2016 19:44:48 +0200 Subject: [PATCH] Remove obsolete problems key The `problems` key has been obsoleted as per [this issue](https://github.com/exercism/x-api/pull/137). This has already been succesfully implemented by the [C#](exercism/xcsharp#130), [F#](exercism/xfsharp#224) and [Haskell](https://github.com/exercism/xhaskell/pull/399) tracks, so API-wise this is a safe action. Removing the `problems` key also makes it very impossible for people to only add a new exercise in the old, obsolete `problems` key. --- config.json | 73 ----------------------------------------------------- 1 file changed, 73 deletions(-) diff --git a/config.json b/config.json index 2b4f0481..f9e86ceb 100644 --- a/config.json +++ b/config.json @@ -4,79 +4,6 @@ "repository": "https://github.com/exercism/xlua", "active": true, "test_pattern": ".*spec[.]lua$", - "problems": [ - "hello-world", - "accumulate", - "hamming", - "house", - "raindrops", - "bob", - "difference-of-squares", - "anagram", - "octal", - "binary-search", - "bracket-push", - "flatten-array", - "word-count", - "pangram", - "matrix", - "beer-song", - "isogram", - "perfect-numbers", - "etl", - "nucleotide-count", - "food-chain", - "sum-of-multiples", - "rna-transcription", - "phone-number", - "bank-account", - "protein-translation", - "grade-school", - "nth-prime", - "diamond", - "run-length-encoding", - "sublist", - "robot-name", - "robot-simulator", - "pythagorean-triplet", - "leap", - "space-age", - "pascals-triangle", - "sieve", - "grains", - "kindergarten-garden", - "custom-set", - "gigasecond", - "word-search", - "luhn", - "triangle", - "clock", - "series", - "linked-list", - "ocr-numbers", - "pig-latin", - "minesweeper", - "crypto-square", - "list-ops", - "atbash-cipher", - "scrabble-score", - "largest-series-product", - "rail-fence-cipher", - "roman-numerals", - "transpose", - "circular-buffer", - "binary-search-tree", - "bowling", - "binary", - "alphametics", - "prime-factors", - "acronym", - "all-your-base", - "rectangles", - "allergies", - "pov", - "change" - ], "exercises": [{ "slug": "hello-world", "difficulty": 1,