From 8770b6802b7a3b1000c1783dfdebbcc76a787579 Mon Sep 17 00:00:00 2001 From: James Hannah Date: Wed, 5 Oct 2016 19:28:20 -0700 Subject: [PATCH 1/2] first pass for updating config.json to new specification --- config.json | 72 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) diff --git a/config.json b/config.json index 9200d58..8010da5 100644 --- a/config.json +++ b/config.json @@ -20,6 +20,78 @@ "raindrops", "nth-prime" ], + "exercises": [ + { + "slug": "binary", + "difficulty": 1, + "topics": [] + }, + { + "slug": "octal", + "difficulty": 1, + "topics": [] + }, + { + "slug": "trinary", + "difficulty": 1, + "topics": [] + }, + { + "slug": "hexadecimal", + "difficulty": 1, + "topics": [] + }, + { + "slug": "leap", + "difficulty": 1, + "topics": [] + }, + { + "slug": "difference-of-squares", + "difficulty": 1, + "topics": [] + }, + { + "slug": "hamming", + "difficulty": 1, + "topics": [] + }, + { + "slug": "rna-transcription", + "difficulty": 1, + "topics": [] + }, + { + "slug": "isogram", + "difficulty": 1, + "topics": [] + }, + { + "slug": "triangle", + "difficulty": 1, + "topics": [] + }, + { + "slug": "atbash-cipher", + "difficulty": 1, + "topics": [] + }, + { + "slug": "scrabble-score", + "difficulty": 1, + "topics": [] + }, + { + "slug": "raindrops", + "difficulty": 1, + "topics": [] + }, + { + "slug": "nth-prime", + "difficulty": 1, + "topics": [] + } + ], "deprecated": [ ], From db1ef8cefc8977877ae0d96acae0c05e962d502e Mon Sep 17 00:00:00 2001 From: James Hannah Date: Thu, 13 Oct 2016 07:42:48 -0700 Subject: [PATCH 2/2] removed problem key from config.json --- config.json | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/config.json b/config.json index 8010da5..4042147 100644 --- a/config.json +++ b/config.json @@ -4,22 +4,6 @@ "repository": "https://github.com/exercism/xmips", "active": true, "test_pattern": "runner.mips", - "problems": [ - "binary", - "octal", - "trinary", - "hexadecimal", - "leap", - "difference-of-squares", - "hamming", - "rna-transcription", - "isogram", - "triangle", - "atbash-cipher", - "scrabble-score", - "raindrops", - "nth-prime" - ], "exercises": [ { "slug": "binary",